+
+ {this.props.blockProps.showSpeakers ? speakerElement : ""}
- {this.props.blockProps.showTimecodes ? timecodeElement : ''}
+ {this.props.blockProps.showTimecodes ? timecodeElement : ""}
-
);
diff --git a/src/lib/TranscriptEditor/TimedTextEditor/WrapperBlock.module.css b/packages/timed-text-editor/src/WrapperBlock/index.module.css
similarity index 60%
rename from src/lib/TranscriptEditor/TimedTextEditor/WrapperBlock.module.css
rename to packages/timed-text-editor/src/WrapperBlock/index.module.css
index aee318a8..dfd14e1a 100644
--- a/src/lib/TranscriptEditor/TimedTextEditor/WrapperBlock.module.css
+++ b/packages/timed-text-editor/src/WrapperBlock/index.module.css
@@ -1,8 +1,7 @@
-@value color-labs-red, color-light-grey, color-mid-grey, color-dark-grey from '../colours.module.css';
+@value color-labs-red, color-light-grey, color-mid-grey, color-dark-grey from '@bbc-transcript-editor/style-guide/colours.module.css';
/* Desktop size */
@media (min-width: 768px) {
-
.markers {
display: grid;
grid-template-columns: 2fr 1fr;
@@ -13,26 +12,14 @@
overflow: hidden;
display: grid;
grid-template-columns: [col-speaker] minmax(200px, 18%) [col-text] minmax(
- 50%,
- 81%
- );
+ 50%,
+ 81%
+ );
grid-column-gap: 1%;
justify-content: center;
align-content: center;
}
- .speaker {
- color: color-mid-grey;
- font-weight: bold;
- text-transform: uppercase;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- justify-self: start;
- max-width: 100px;
- text-align: left;
- }
-
.text {
font-size: 1em;
float: right;
@@ -42,7 +29,6 @@
/* Mobile devices */
@media (max-width: 768px) {
-
.markers {
width: 100%;
font-size: 0.8em;
@@ -57,19 +43,6 @@
overflow: hidden;
}
- .speaker {
- padding-right: 2em;
- vertical-align: middle;
- color: color-mid-grey;
- font-weight: bold;
- text-transform: uppercase;
- text-align: right;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- text-align: left;
- }
-
.text {
width: 100%;
font-size: 1em;
@@ -90,11 +63,3 @@
/* color: blue; */
}
-
-.speaker {
- cursor: pointer;
-}
-
-.EditLabel {
- margin-right: 0.5em;
-}
diff --git a/packages/timed-text-editor/src/get-adapter.js b/packages/timed-text-editor/src/get-adapter.js
new file mode 100644
index 00000000..da03bf5c
--- /dev/null
+++ b/packages/timed-text-editor/src/get-adapter.js
@@ -0,0 +1,35 @@
+import amazonTranscribeAdapter from "@bbc-transcript-editor/adapter-amazon-transcribe";
+import autoeditAdapter from "@bbc-transcript-editor/adapter-autoedit-2";
+import bbcKaldiAdapter from "@bbc-transcript-editor/adapter-bbc-kaldi";
+import speechmaticsAdapter from "@bbc-transcript-editor/adapter-speechmatics";
+import createEntityMap from "@bbc-transcript-editor/util-create-entity-map";
+
+const getAdapter = (transcriptData, sttJsonType) => {
+ let blocks;
+ switch (sttJsonType) {
+ case "bbckaldi":
+ blocks = bbcKaldiAdapter(transcriptData);
+
+ return { blocks, entityMap: createEntityMap(blocks) };
+ case "autoedit2":
+ blocks = autoeditAdapter(transcriptData);
+
+ return { blocks, entityMap: createEntityMap(blocks) };
+ case "speechmatics":
+ blocks = speechmaticsAdapter(transcriptData);
+
+ return { blocks, entityMap: createEntityMap(blocks) };
+ case "draftjs":
+ return transcriptData; // (typeof transcriptData === 'string')? JSON.parse(transcriptData): transcriptData;
+
+ case "amazontranscribe":
+ blocks = amazonTranscribeAdapter(transcriptData);
+
+ return { blocks, entityMap: createEntityMap(blocks) };
+ default:
+ // code block
+ console.error("not recognised the stt enginge");
+ }
+};
+
+export default getAdapter;
diff --git a/packages/timed-text-editor/src/get-exporter.js b/packages/timed-text-editor/src/get-exporter.js
new file mode 100644
index 00000000..0e2ee2e5
--- /dev/null
+++ b/packages/timed-text-editor/src/get-exporter.js
@@ -0,0 +1,21 @@
+import textExporter from "@bbc-transcript-editor/exporter-text";
+
+/**
+ * Adapters for Draft.js conversion
+ * @param {json} blockData - Draft.js blocks
+ * @param {string} exportFormat - the type of file supported by the available adapters
+ */
+
+const getExporter = (blockData, exportFormat) => {
+ switch (exportFormat) {
+ case "draftjs":
+ return { data: JSON.stringify(blockData, null, 2), ext: "json" };
+ case "txt":
+ return { data: textExporter(blockData), ext: "txt" };
+ default:
+ // code block
+ console.error("Did not recognise the export format");
+ }
+};
+
+export default getExporter;
diff --git a/src/lib/TranscriptEditor/TimedTextEditor/index.js b/packages/timed-text-editor/src/index.js
similarity index 66%
rename from src/lib/TranscriptEditor/TimedTextEditor/index.js
rename to packages/timed-text-editor/src/index.js
index cfa1a948..136a5c03 100644
--- a/src/lib/TranscriptEditor/TimedTextEditor/index.js
+++ b/packages/timed-text-editor/src/index.js
@@ -1,6 +1,5 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
+import React from "react";
+import PropTypes from "prop-types";
import {
Editor,
EditorState,
@@ -9,14 +8,14 @@ import {
convertToRaw,
getDefaultKeyBinding,
Modifier
-} from 'draft-js';
+} from "draft-js";
-import Word from './Word';
-import WrapperBlock from './WrapperBlock';
+import Word from "./Word";
+import WrapperBlock from "./WrapperBlock";
+import getAdapter from "./get-adapter";
+import getExporter from "./get-exporter";
-import sttJsonAdapter from '../../Util/adapters/index.js';
-import exportAdapter from '../../Util/export-adapters/index.js';
-import style from './index.module.css';
+import style from "./index.module.css";
class TimedTextEditor extends React.Component {
constructor(props) {
@@ -41,7 +40,6 @@ class TimedTextEditor extends React.Component {
static getDerivedStateFromProps(nextProps) {
if (nextProps.transcriptData !== null) {
-
return {
transcriptData: nextProps.transcriptData,
isEditable: nextProps.isEditable,
@@ -56,14 +54,17 @@ class TimedTextEditor extends React.Component {
componentDidUpdate(prevProps, prevState) {
if (
- (prevState.transcriptData !== this.state.transcriptData)
- && ( this.props.mediaUrl !== null && !this.isPresentInLocalStorage(this.props.mediaUrl) )
+ prevState.transcriptData !== this.state.transcriptData &&
+ (this.props.mediaUrl !== null &&
+ !this.isPresentInLocalStorage(this.props.mediaUrl))
) {
this.loadData();
}
- if (prevState.timecodeOffset !== this.state.timecodeOffset
- || prevState.showSpeakers !== this.state.showSpeakers
- || prevState.showTimecodes !== this.state.showTimecodes) {
+ if (
+ prevState.timecodeOffset !== this.state.timecodeOffset ||
+ prevState.showSpeakers !== this.state.showSpeakers ||
+ prevState.showTimecodes !== this.state.showTimecodes
+ ) {
// forcing a re-render is an expensive operation and
// there might be a way of optimising this at a later refactor (?)
// the issue is that WrapperBlock is not update on TimedTextEditor
@@ -75,13 +76,16 @@ class TimedTextEditor extends React.Component {
}
}
- onChange = (editorState) => {
+ onChange = editorState => {
// https://draftjs.org/docs/api-reference-editor-state#lastchangetype
// https://draftjs.org/docs/api-reference-editor-change-type
// doing editorStateChangeType === 'insert-characters' is triggered even
// outside of draftJS eg when clicking play button so using this instead
// see issue https://github.com/facebook/draft-js/issues/1060
- if (this.state.editorState.getCurrentContent() !== editorState.getCurrentContent()) {
+ if (
+ this.state.editorState.getCurrentContent() !==
+ editorState.getCurrentContent()
+ ) {
if (this.props.isPauseWhileTypingOn) {
if (this.props.isPlaying()) {
this.props.playMedia(false);
@@ -89,57 +93,69 @@ class TimedTextEditor extends React.Component {
const pauseWhileTypingIntervalInMilliseconds = 3000;
// resets timeout
clearTimeout(this.plauseWhileTypingTimeOut);
- this.plauseWhileTypingTimeOut = setTimeout(function() {
- // after timeout starts playing again
- this.props.playMedia(true);
- }.bind(this), pauseWhileTypingIntervalInMilliseconds);
+ this.plauseWhileTypingTimeOut = setTimeout(
+ function() {
+ // after timeout starts playing again
+ this.props.playMedia(true);
+ }.bind(this),
+ pauseWhileTypingIntervalInMilliseconds
+ );
}
}
}
if (this.state.isEditable) {
- this.setState(() => ({
- editorState
- }), () => {
- // saving when user has stopped typing for more then five seconds
- if (this.saveTimer !== undefined) {
- clearTimeout(this.saveTimer);
+ this.setState(
+ () => ({
+ editorState
+ }),
+ () => {
+ // saving when user has stopped typing for more then five seconds
+ if (this.saveTimer !== undefined) {
+ clearTimeout(this.saveTimer);
+ }
+ this.saveTimer = setTimeout(() => {
+ this.localSave(this.props.mediaUrl);
+ }, 1000);
}
- this.saveTimer = setTimeout(() => {
- this.localSave(this.props.mediaUrl);
- }, 1000);
- });
+ );
}
- }
+ };
loadData() {
if (this.props.transcriptData !== null) {
- const blocks = sttJsonAdapter(this.props.transcriptData, this.props.sttJsonType);
+ const blocks = getAdapter(
+ this.props.transcriptData,
+ this.props.sttJsonType
+ );
this.setEditorContentState(blocks);
}
}
getEditorContent(exportFormat) {
- const format = exportFormat || 'draftjs';
+ const format = exportFormat || "draftjs";
- return exportAdapter(convertToRaw(this.state.editorState.getCurrentContent()), format);
+ return getExporter(
+ convertToRaw(this.state.editorState.getCurrentContent()),
+ format
+ );
}
// click on words - for navigation
// eslint-disable-next-line class-methods-use-this
- handleDoubleClick = (event) => {
+ handleDoubleClick = event => {
// nativeEvent --> React giving you the DOM event
let element = event.nativeEvent.target;
// find the parent in Word that contains span with time-code start attribute
- while (!element.hasAttribute('data-start') && element.parentElement) {
+ while (!element.hasAttribute("data-start") && element.parentElement) {
element = element.parentElement;
}
- if (element.hasAttribute('data-start')) {
- const t = parseFloat(element.getAttribute('data-start'));
+ if (element.hasAttribute("data-start")) {
+ const t = parseFloat(element.getAttribute("data-start"));
this.props.onWordClick(t);
}
- }
+ };
localSave = () => {
clearTimeout(this.saveTimer);
@@ -147,28 +163,28 @@ class TimedTextEditor extends React.Component {
// if using local media instead of using random blob name
// that makes it impossible to retrieve from on page refresh
// use file name
- if (this.props.mediaUrl.includes('blob')) {
+ if (this.props.mediaUrl.includes("blob")) {
mediaUrlName = this.props.fileName;
}
const data = convertToRaw(this.state.editorState.getCurrentContent());
- localStorage.setItem(`draftJs-${ mediaUrlName }`, JSON.stringify(data));
+ localStorage.setItem(`draftJs-${mediaUrlName}`, JSON.stringify(data));
const newLastLocalSavedDate = new Date().toString();
- localStorage.setItem(`timestamp-${ mediaUrlName }`, newLastLocalSavedDate);
+ localStorage.setItem(`timestamp-${mediaUrlName}`, newLastLocalSavedDate);
// return newLastLocalSavedDate;
- }
+ };
// eslint-disable-next-line class-methods-use-this
isPresentInLocalStorage(mediaUrl) {
if (mediaUrl !== null) {
let mediaUrlName = mediaUrl;
- if (mediaUrl.includes('blob')) {
+ if (mediaUrl.includes("blob")) {
mediaUrlName = this.props.fileName;
}
- const data = localStorage.getItem(`draftJs-${ mediaUrlName }`);
+ const data = localStorage.getItem(`draftJs-${mediaUrlName}`);
if (data !== null) {
return true;
}
@@ -181,53 +197,55 @@ class TimedTextEditor extends React.Component {
loadLocalSavedData(mediaUrl) {
let mediaUrlName = mediaUrl;
- if (mediaUrl.includes('blob')) {
+ if (mediaUrl.includes("blob")) {
mediaUrlName = this.props.fileName;
}
- const data = JSON.parse(localStorage.getItem(`draftJs-${ mediaUrlName }`));
+ const data = JSON.parse(localStorage.getItem(`draftJs-${mediaUrlName}`));
if (data !== null) {
- const lastLocalSavedDate = localStorage.getItem(`timestamp-${ mediaUrlName }`);
+ const lastLocalSavedDate = localStorage.getItem(
+ `timestamp-${mediaUrlName}`
+ );
this.setEditorContentState(data);
return lastLocalSavedDate;
}
- return '';
+ return "";
}
// originally from
// https://github.com/draft-js-plugins/draft-js-plugins/blob/master/draft-js-counter-plugin/src/WordCounter/index.js#L12
- getWordCount = (editorState) => {
- const plainText = editorState.getCurrentContent().getPlainText('');
+ getWordCount = editorState => {
+ const plainText = editorState.getCurrentContent().getPlainText("");
const regex = /(?:\r\n|\r|\n)/g; // new line, carriage return, line feed
- const cleanString = plainText.replace(regex, ' ').trim(); // replace above characters w/ space
+ const cleanString = plainText.replace(regex, " ").trim(); // replace above characters w/ space
const wordArray = cleanString.match(/\S+/g); // matches words according to whitespace
return wordArray ? wordArray.length : 0;
- }
+ };
/**
- * @param {object} data.entityMap - draftJs entity maps - used by convertFromRaw
- * @param {object} data.blocks - draftJs blocks - used by convertFromRaw
- * set DraftJS Editor content state from blocks
- * contains blocks and entityMap
- */
- setEditorContentState = (data) => {
+ * @param {object} data.entityMap - draftJs entity maps - used by convertFromRaw
+ * @param {object} data.blocks - draftJs blocks - used by convertFromRaw
+ * set DraftJS Editor content state from blocks
+ * contains blocks and entityMap
+ */
+ setEditorContentState = data => {
const contentState = convertFromRaw(data);
// eslint-disable-next-line no-use-before-define
const editorState = EditorState.createWithContent(contentState, decorator);
if (this.props.handleAnalyticsEvents !== undefined) {
this.props.handleAnalyticsEvents({
- category: 'TimedTextEditor',
- action: 'setEditorContentState',
- name: 'getWordCount',
+ category: "TimedTextEditor",
+ action: "setEditorContentState",
+ name: "getWordCount",
value: this.getWordCount(editorState)
});
}
this.setState({ editorState });
- }
+ };
// Helper function to re-render this component
// used to re-render WrapperBlock on timecode offset change
@@ -237,74 +255,76 @@ class TimedTextEditor extends React.Component {
const contentState = this.state.editorState.getCurrentContent();
const decorator = this.state.editorState.getDecorator();
- const newState = EditorState.createWithContent(
- contentState,
- decorator
- );
+ const newState = EditorState.createWithContent(contentState, decorator);
// this.setEditorNewContentState(newState);
const newEditorState = EditorState.push(newState, contentState);
this.setState({ editorState: newEditorState });
- }
+ };
/**
- * Update Editor content state
- */
- setEditorNewContentState = (newContentState) => {
- const newEditorState = EditorState.push(this.state.editorState, newContentState);
+ * Update Editor content state
+ */
+ setEditorNewContentState = newContentState => {
+ const newEditorState = EditorState.push(
+ this.state.editorState,
+ newContentState
+ );
this.setState({ editorState: newEditorState });
- }
+ };
/**
* Listen for draftJs custom key bindings
*/
- customKeyBindingFn = (e) => {
+ customKeyBindingFn = e => {
const enterKey = 13;
const spaceKey = 32;
const kKey = 75;
const lKey = 76;
const jKey = 74;
- const equalKey = 187;//used for +
+ const equalKey = 187; //used for +
const minusKey = 189; // -
const rKey = 82;
const tKey = 84;
- if (e.keyCode === enterKey ) {
- return 'split-paragraph';
+ if (e.keyCode === enterKey) {
+ return "split-paragraph";
}
// if alt key is pressed in combination with these other keys
- if (e.altKey && ((e.keyCode === spaceKey)
- || (e.keyCode === spaceKey)
- || (e.keyCode === kKey)
- || (e.keyCode === lKey)
- || (e.keyCode === jKey)
- || (e.keyCode === equalKey)
- || (e.keyCode === minusKey)
- || (e.keyCode === rKey)
- || (e.keyCode === tKey))
+ if (
+ e.altKey &&
+ (e.keyCode === spaceKey ||
+ e.keyCode === spaceKey ||
+ e.keyCode === kKey ||
+ e.keyCode === lKey ||
+ e.keyCode === jKey ||
+ e.keyCode === equalKey ||
+ e.keyCode === minusKey ||
+ e.keyCode === rKey ||
+ e.keyCode === tKey)
) {
e.preventDefault();
- return 'keyboard-shortcuts';
+ return "keyboard-shortcuts";
}
return getDefaultKeyBinding(e);
- }
+ };
/**
* Handle draftJs custom key commands
*/
- handleKeyCommand = (command) => {
- if (command === 'split-paragraph') {
+ handleKeyCommand = command => {
+ if (command === "split-paragraph") {
this.splitParagraph();
}
- if (command === 'keyboard-shortcuts') {
- return 'handled';
+ if (command === "keyboard-shortcuts") {
+ return "handled";
}
- return 'not-handled';
- }
+ return "not-handled";
+ };
/**
* Helper function to handle splitting paragraphs with return key
@@ -321,31 +341,45 @@ class TimedTextEditor extends React.Component {
if (currentSelection.isCollapsed()) {
const currentContent = this.state.editorState.getCurrentContent();
// https://draftjs.org/docs/api-reference-modifier#splitblock
- const newContentState = Modifier.splitBlock(currentContent, currentSelection);
+ const newContentState = Modifier.splitBlock(
+ currentContent,
+ currentSelection
+ );
// https://draftjs.org/docs/api-reference-editor-state#push
- const splitState = EditorState.push(this.state.editorState, newContentState, 'split-block');
+ const splitState = EditorState.push(
+ this.state.editorState,
+ newContentState,
+ "split-block"
+ );
const targetSelection = splitState.getSelection();
- const originalBlock = currentContent.blockMap.get(newContentState.selectionBefore.getStartKey());
+ const originalBlock = currentContent.blockMap.get(
+ newContentState.selectionBefore.getStartKey()
+ );
const originalBlockData = originalBlock.getData();
- const blockSpeaker = originalBlockData.get('speaker');
+ const blockSpeaker = originalBlockData.get("speaker");
- let wordStartTime = 'NA';
+ let wordStartTime = "NA";
// eslint-disable-next-line prefer-const
let isEndOfParagraph = false;
// identify the entity (word) at the selection/cursor point on split.
// eslint-disable-next-line prefer-const
- let entityKey = originalBlock.getEntityAt(currentSelection.getStartOffset());
+ let entityKey = originalBlock.getEntityAt(
+ currentSelection.getStartOffset()
+ );
// if there is no word entity associated with a char then there is no entity key
// at that selection point
if (entityKey === null) {
- const closestEntityToSelection = this.findClosestEntityKeyToSelectionPoint(currentSelection, originalBlock);
+ const closestEntityToSelection = this.findClosestEntityKeyToSelectionPoint(
+ currentSelection,
+ originalBlock
+ );
entityKey = closestEntityToSelection.entityKey;
isEndOfParagraph = closestEntityToSelection.isEndOfParagraph;
// handle edge case when it doesn't find a closest entity (word)
// eg pres enter on an empty line
if (entityKey === null) {
- return 'not-handled';
+ return "not-handled";
}
}
// if there is an entityKey at or close to the selection point
@@ -355,8 +389,7 @@ class TimedTextEditor extends React.Component {
if (isEndOfParagraph) {
// if it's end of paragraph use end time of word for new paragraph
wordStartTime = entityData.end;
- }
- else {
+ } else {
wordStartTime = entityData.start;
}
// split paragraph
@@ -365,17 +398,17 @@ class TimedTextEditor extends React.Component {
splitState.getCurrentContent(),
targetSelection,
{
- 'start': wordStartTime,
- 'speaker': blockSpeaker
+ start: wordStartTime,
+ speaker: blockSpeaker
}
);
this.setEditorNewContentState(afterMergeContentState);
- return 'handled';
+ return "handled";
}
- return 'not-handled';
- }
+ return "not-handled";
+ };
/**
* Helper function for splitParagraph
@@ -394,11 +427,12 @@ class TimedTextEditor extends React.Component {
// length of the plain text for the ContentBlock
const lengthPlainTextForTheBlock = originalBlock.getLength();
// number of char from selection point to end of paragraph
- const remainingCharNumber = lengthPlainTextForTheBlock - startSelectionOffsetKey;
+ const remainingCharNumber =
+ lengthPlainTextForTheBlock - startSelectionOffsetKey;
// if it's the last char in the paragraph - get previous entity
- if (remainingCharNumber === 0 ) {
+ if (remainingCharNumber === 0) {
isEndOfParagraph = true;
- for (let j = lengthPlainTextForTheBlock; j > 0 ; j--) {
+ for (let j = lengthPlainTextForTheBlock; j > 0; j--) {
entityKey = originalBlock.getEntityAt(j);
if (entityKey !== null) {
// if it finds it then return
@@ -409,7 +443,7 @@ class TimedTextEditor extends React.Component {
// if it's first char or another within the block - get next entity
else {
let initialSelectionOffset = currentSelection.getStartOffset();
- for (let i = 0; i < remainingCharNumber ; i++) {
+ for (let i = 0; i < remainingCharNumber; i++) {
initialSelectionOffset += i;
entityKey = originalBlock.getEntityAt(initialSelectionOffset);
// if it finds it then return
@@ -421,7 +455,7 @@ class TimedTextEditor extends React.Component {
// cover edge cases where it doesn't find it
return { entityKey, isEndOfParagraph };
- }
+ };
renderBlockWithTimecodes = () => {
return {
@@ -437,12 +471,12 @@ class TimedTextEditor extends React.Component {
handleAnalyticsEvents: this.props.handleAnalyticsEvents
}
};
- }
+ };
getCurrentWord = () => {
const currentWord = {
- start: 'NA',
- end: 'NA'
+ start: "NA",
+ end: "NA"
};
if (this.state.transcriptData) {
@@ -455,72 +489,87 @@ class TimedTextEditor extends React.Component {
const entity = entityMap[entityKey];
const word = entity.data;
- if (word.start <= this.props.currentTime && word.end >= this.props.currentTime) {
+ if (
+ word.start <= this.props.currentTime &&
+ word.end >= this.props.currentTime
+ ) {
currentWord.start = word.start;
currentWord.end = word.end;
}
}
}
- if (currentWord.start !== 'NA') {
+ if (currentWord.start !== "NA") {
if (this.props.isScrollIntoViewOn) {
- const currentWordElement = document.querySelector(`span.Word[data-start="${ currentWord.start }"]`);
- currentWordElement.scrollIntoView({ block: 'nearest', inline: 'center' });
+ const currentWordElement = document.querySelector(
+ `span.Word[data-start="${currentWord.start}"]`
+ );
+ currentWordElement.scrollIntoView({
+ block: "nearest",
+ inline: "center"
+ });
}
}
return currentWord;
- }
+ };
render() {
const currentWord = this.getCurrentWord();
- const highlightColour = '#69e3c2';
- const unplayedColor = '#767676';
- const correctionBorder = '1px dotted blue';
+ const highlightColour = "#69e3c2";
+ const unplayedColor = "#767676";
+ const correctionBorder = "1px dotted blue";
// Time to the nearest half second
const time = Math.round(this.props.currentTime * 4.0) / 4.0;
const editor = (
this.handleDoubleClick(event) }
+ onDoubleClick={event => this.handleDoubleClick(event)}
// TODO: decide if on mobile want to have a way to "click" on words
// to play corresponding media
// a double tap would be the ideal solution
// onTouchStart={ event => this.handleDoubleClick(event) }
>
this.handleKeyCommand(command) }
- keyBindingFn={ e => this.customKeyBindingFn(e) }
+ blockRendererFn={this.renderBlockWithTimecodes}
+ handleKeyCommand={command => this.handleKeyCommand(command)}
+ keyBindingFn={e => this.customKeyBindingFn(e)}
/>
);
return (
-
- { this.props.transcriptData !== null ? editor : null }
-
+
{this.props.transcriptData !== null ? editor : null}
);
}
}
// DraftJs decorator to recognize which entity is which
// and know what to apply to what component
-const getEntityStrategy = mutability => (contentBlock, callback, contentState) => {
- contentBlock.findEntityRanges((character) => {
+const getEntityStrategy = mutability => (
+ contentBlock,
+ callback,
+ contentState
+) => {
+ contentBlock.findEntityRanges(character => {
const entityKey = character.getEntity();
if (entityKey === null) {
return false;
@@ -534,9 +583,9 @@ const getEntityStrategy = mutability => (contentBlock, callback, contentState) =
// defines what to use to render the entity
const decorator = new CompositeDecorator([
{
- strategy: getEntityStrategy('MUTABLE'),
- component: Word,
- },
+ strategy: getEntityStrategy("MUTABLE"),
+ component: Word
+ }
]);
TimedTextEditor.propTypes = {
diff --git a/src/lib/TranscriptEditor/TimedTextEditor/index.module.css b/packages/timed-text-editor/src/index.module.css
similarity index 84%
rename from src/lib/TranscriptEditor/TimedTextEditor/index.module.css
rename to packages/timed-text-editor/src/index.module.css
index d2cc7c33..5a16a29c 100644
--- a/src/lib/TranscriptEditor/TimedTextEditor/index.module.css
+++ b/packages/timed-text-editor/src/index.module.css
@@ -1,8 +1,4 @@
-@value color-subt-green, color-darkest-grey, color-labs-red from '../colours.module.css';
-
-.DraftEditor-root {
- background: #f9f9f9;
-}
+@value color-subt-green, color-darkest-grey, color-labs-red from '@bbc-transcript-editor/style-guide/colours.module.css';
/*
Giving the editor a oveflow
@@ -18,7 +14,6 @@ https://github.com/facebook/draft-js/issues/528
/* Mobile devices */
@media (max-width: 768px) {
-
.editor :global(.public-DraftEditor-content) {
margin: 0 auto;
}
diff --git a/packages/timed-text-editor/stories/fixtures/bbc-kaldi.json b/packages/timed-text-editor/stories/fixtures/bbc-kaldi.json
new file mode 100644
index 00000000..081ab84f
--- /dev/null
+++ b/packages/timed-text-editor/stories/fixtures/bbc-kaldi.json
@@ -0,0 +1,13708 @@
+{
+ "action": "audio-transcribe",
+ "retval": {
+ "status": true,
+ "wonid": "octo:2692ea33-d595-41d8-bfd5-aa7f2d2f89ee",
+ "punct": "There is a day. About ten years ago when I asked a friend to hold a baby dinosaur robot upside down. It was a toy called plea. All that he'd ordered and I was really excited about it because I've always loved about this one has really caught technical features. It had more orders and touch sensors. It had an infra red camera and one of the things that had was a tilt sensor so it. Knew what direction. It was facing. If and when you held it upside down. I thought. It's a super courts are showing off to my friend and I said to hold it, but he'll see what debts. We were watching the theatrics of this robe that struggle and cry out and and after a few seconds. The first. After my little and I said o.k. That's enough. Now, let's put him back down and pepper, about to make it. Stop crying and I was kind of a weird experience for me one thing, wasn't the most maternal person at the time. Although, since then I've become a mother and nine months ago. And that is a score when hold them up to now, but my response to this robot was also interesting because I knew exactly how this machine work it. And yet. I still felt compelled to be kind to it. And that observation sparked that curiosity that I spent the fat, the past decade pursuing it. Why did they comfort this robe. One of the things I discovered was that my treatment of this machine was more than just an awkward moment in my living room that in a world were increasingly integrating robots into our lives and things like that might actually have consequences because the first thing that I discovered is that. It's not just me in two thousand seven. The Washington Post reported that the United States military was testing this robot diffused landmines. We workers were shaped like a stick insect would walk around a minefield on its legs and every time he stepped on a mine. One of the legs would blow up would continue on the other legs to block your minds in the colonel was in charge of this testing exercise for calling it off because he says it's too inhumane to watch this damage robot drag itself along the minefield. What would cause a hardened military officer and someone like myself to have this response to row. But what. Of course for prime for science fiction, pop culture really want to personify these things, but it goes a little bit deeper than that it turns out that we are biologically hard wired to project intent and life onto any movement in a physical space. It seems I promised us some people treat all sort of robots like their life. These bomb disposal units get names. They get medals of honour had funeral for them with gun salutes. Research shows that we do this. Even with very simple household robots like the room. A vacuum cleaner. Just a desk that runs around the floor and clean it just the fact that it's moving around on his own will cause people to name the marimba and feel bad for the room. But when he gets stuck under the couch. We can design about specifically to invoke this response using eyes and faces were movement. People are magically subconsciously associate with state of mind. There's an entire body of research called Human robot interaction that really shows how all this works so. For example. Researchers at Stamford University found out that makes people really uncomfortable and asked them to touch her about his private parts from this from any other studies. We know. We know that people respond to the cues given to them by the lifelike machines. Even if they know that they're not real. We're heading towards a world where robots are everywhere about the technology is moving out from behind factory was entering workplaces households and as these machines. They can sense and make a ton of my decisions and learn enter into the shared spaces. I think that maybe the best analogy. We have for this is our relationship with animals. Thousands of years ago, we started to domesticate animals and we train them for work and weaponry and companionship. Throughout history. We've treated. Some animals like tools are the products and other animals. We treated with kindness and given a place in society as our companions. I think it's possible. We might start to integrate Robartes, but similar weights animals are alive. Robert and that. And I can tell you from working. What about the sister were pretty far away from developing robots. They can feel anything there, but we feel for that. And that matters because if we're trying to integrate robots into the shared spaces need to understand that people treat them differently than other devices that in some cases. For example, the case of a soldier who becomes emotionally attached to the robot. They work. Well, if that can be anything from inefficient to dangerous. But in other cases. It can actually be used for the faster this emotional connection to, but we're really seeing some great use cases. For example, robots working with autistic children to engage them in ways that we haven't seen previously robot's working with teachers to engage kids and learning with new results and it's not just for kids early studies show that we can help doctors and patients and health care settings and this is the pirate b. b. c. But it's used in nursing homes with dementia patients has been around for a while I remember years ago. Being a party and telling someone about this throwback and her response was on my cart. I can't believe we're giving people robots instead of human care. And this is a really common response and I think it's absolutely correct because that would be terrible. And in this case. It's not with this robot replace it with this robot replaces his animal therapy in context which he was real animals. We can use robots because people consistently treat them like more. More like an animal and have it acknowledging this emotional connection. Robert, can also help us anticipate challenges as these devices. Move into more intimate areas of people's lives and for example is it. o.k. If your child's teddy bear robot records private conversations. Is it. o.k. If your sex robot has compelling in our purchasers because rope. That's plus capitalism equals questions around consumer protection and privacy and those aren't the only reason, said her behaviour around these machines could, madam. A few years after that first initial experience. I had with this baby dinosaur robot do workshop with her friend Hannah Scott. Scott, then we took five of these baby dinosaur about we give them. The five teams of people. We had the name them and play with them and interact with them for about an hour. Then we unveiled a him or a hatchet and we told them to torture and kill the row and then this turned out to be a little more dramatic than we expected it to be because none of the participants wouldn't even so much as straight. A robot. So we had to improvise. End at some point. He said o.k. You can save your team's robot. If you destroy another team throw. I I. And anyone that didn't work. They couldn't do it. So finally said, We're gonna destroy all the robots are someone takes a hatchet to one of them. This guy stood up and he took the hatchet and the whole room, Winston. See brother had to down on the robot's neck and there was this half joking. Half serious moment of silence in the room from this farm and but so that was a really interesting experience. It wasn't a controlled study up your sleeve, but it did lead to some leader research that I did. i. t. With plush, London. Cynthia busy. Or we had people come into the lab and smash these Hex bugs that move around in a really lifelike way, like insects. So instead of choosing something huge. People are trying to reach for something more basic. And what we found was that high embassy people would hesitate, more hit the heck's bucks. This is just a little study, but it's part of a large body of research that is starting to indicate that there may be a connection between people's tendencies for empathy and their behaviour around, Rover. But my question for the coming era of human robot interaction is not to. We empathise with throw, but it. Can robots change people's thinking, Is there reason to. For example, prevent the child from kicking about Doc That just out of respect for property because the child may be more likely to take a real dark and again. It's not just kids and this is the violent video games question, but it's a completely new level because of this visceral physicality that we respond more intensely. Two images on a screen, we behave violently towards Robarts specifically robots that are designed to mimic life is that a healthy outlook from the behaviour or is that training cruelty muscles. The answer to this question has the potential impact human behaviour has the potential impact social norms. It has the potential to inspire rules around. What we can and can't do certain Robarts animal cruelty, but because even if robots can't fuel our behaviour towards a matter for us and regardless of whether we end up changing ovals robots might be able to help us come to a new understanding of ourselves. Most of what learned over the past ten years have not been about technology. A It's been about human psychology and empathy and how we relate to others. And because when a child is kind to her room. But when a soldier tries to save a robot on the battlefield. When a group of people refuses to harm her about a baby dinosaur. Those robots aren't just motors in years and a groom's. Their reflections of our own humanity.",
+ "words": [
+ {
+ "start": 13.02,
+ "confidence": 0.68,
+ "end": 13.17,
+ "word": "there",
+ "punct": "There",
+ "index": 0
+ },
+ {
+ "start": 13.17,
+ "confidence": 0.61,
+ "end": 13.38,
+ "word": "is",
+ "punct": "is",
+ "index": 1
+ },
+ {
+ "start": 13.38,
+ "confidence": 0.99,
+ "end": 13.44,
+ "word": "a",
+ "punct": "a",
+ "index": 2
+ },
+ {
+ "start": 13.44,
+ "confidence": 1,
+ "end": 13.86,
+ "word": "day",
+ "punct": "day.",
+ "index": 3
+ },
+ {
+ "start": 13.86,
+ "confidence": 1,
+ "end": 14.13,
+ "word": "about",
+ "punct": "About",
+ "index": 4
+ },
+ {
+ "start": 14.13,
+ "confidence": 1,
+ "end": 14.38,
+ "word": "ten",
+ "punct": "ten",
+ "index": 5
+ },
+ {
+ "start": 14.38,
+ "confidence": 1,
+ "end": 14.61,
+ "word": "years",
+ "punct": "years",
+ "index": 6
+ },
+ {
+ "start": 14.61,
+ "confidence": 1,
+ "end": 15.15,
+ "word": "ago",
+ "punct": "ago",
+ "index": 7
+ },
+ {
+ "start": 15.47,
+ "confidence": 0.78,
+ "end": 15.59,
+ "word": "when",
+ "punct": "when",
+ "index": 8
+ },
+ {
+ "start": 15.68,
+ "confidence": 0.98,
+ "end": 15.84,
+ "word": "i",
+ "punct": "I",
+ "index": 9
+ },
+ {
+ "start": 15.86,
+ "confidence": 1,
+ "end": 16.19,
+ "word": "asked",
+ "punct": "asked",
+ "index": 10
+ },
+ {
+ "start": 16.19,
+ "confidence": 0.95,
+ "end": 16.28,
+ "word": "a",
+ "punct": "a",
+ "index": 11
+ },
+ {
+ "start": 16.28,
+ "confidence": 1,
+ "end": 16.65,
+ "word": "friend",
+ "punct": "friend",
+ "index": 12
+ },
+ {
+ "start": 16.65,
+ "confidence": 1,
+ "end": 16.74,
+ "word": "to",
+ "punct": "to",
+ "index": 13
+ },
+ {
+ "start": 16.74,
+ "confidence": 1,
+ "end": 17.2,
+ "word": "hold",
+ "punct": "hold",
+ "index": 14
+ },
+ {
+ "start": 17.23,
+ "confidence": 0.88,
+ "end": 17.33,
+ "word": "a",
+ "punct": "a",
+ "index": 15
+ },
+ {
+ "start": 17.33,
+ "confidence": 1,
+ "end": 17.63,
+ "word": "baby",
+ "punct": "baby",
+ "index": 16
+ },
+ {
+ "start": 17.63,
+ "confidence": 1,
+ "end": 18.14,
+ "word": "dinosaur",
+ "punct": "dinosaur",
+ "index": 17
+ },
+ {
+ "start": 18.14,
+ "confidence": 0.98,
+ "end": 18.59,
+ "word": "robot",
+ "punct": "robot",
+ "index": 18
+ },
+ {
+ "start": 18.72,
+ "confidence": 1,
+ "end": 19.17,
+ "word": "upside",
+ "punct": "upside",
+ "index": 19
+ },
+ {
+ "start": 19.17,
+ "confidence": 1,
+ "end": 19.58,
+ "word": "down",
+ "punct": "down.",
+ "index": 20
+ },
+ {
+ "start": 21.83,
+ "confidence": 0.61,
+ "end": 21.9,
+ "word": "it",
+ "punct": "It",
+ "index": 21
+ },
+ {
+ "start": 21.95,
+ "confidence": 0.95,
+ "end": 22.09,
+ "word": "was",
+ "punct": "was",
+ "index": 22
+ },
+ {
+ "start": 22.1,
+ "confidence": 0.38,
+ "end": 22.22,
+ "word": "a",
+ "punct": "a",
+ "index": 23
+ },
+ {
+ "start": 22.23,
+ "confidence": 1,
+ "end": 22.68,
+ "word": "toy",
+ "punct": "toy",
+ "index": 24
+ },
+ {
+ "start": 22.72,
+ "confidence": 0.48,
+ "end": 22.99,
+ "word": "called",
+ "punct": "called",
+ "index": 25
+ },
+ {
+ "start": 23.03,
+ "confidence": 0.51,
+ "end": 23.39,
+ "word": "plea",
+ "punct": "plea.",
+ "index": 26
+ },
+ {
+ "start": 23.45,
+ "confidence": 0.42,
+ "end": 23.82,
+ "word": "all",
+ "punct": "All",
+ "index": 27
+ },
+ {
+ "start": 24.2,
+ "confidence": 1,
+ "end": 24.6,
+ "word": "that",
+ "punct": "that",
+ "index": 28
+ },
+ {
+ "start": 24.65,
+ "confidence": 0.59,
+ "end": 24.84,
+ "word": "he'd",
+ "punct": "he'd",
+ "index": 29
+ },
+ {
+ "start": 24.86,
+ "confidence": 0.94,
+ "end": 25.3,
+ "word": "ordered",
+ "punct": "ordered",
+ "index": 30
+ },
+ {
+ "start": 25.3,
+ "confidence": 0.84,
+ "end": 25.42,
+ "word": "and",
+ "punct": "and",
+ "index": 31
+ },
+ {
+ "start": 25.42,
+ "confidence": 0.96,
+ "end": 25.49,
+ "word": "i",
+ "punct": "I",
+ "index": 32
+ },
+ {
+ "start": 25.49,
+ "confidence": 1,
+ "end": 25.66,
+ "word": "was",
+ "punct": "was",
+ "index": 33
+ },
+ {
+ "start": 25.66,
+ "confidence": 1,
+ "end": 25.88,
+ "word": "really",
+ "punct": "really",
+ "index": 34
+ },
+ {
+ "start": 25.88,
+ "confidence": 1,
+ "end": 26.49,
+ "word": "excited",
+ "punct": "excited",
+ "index": 35
+ },
+ {
+ "start": 26.49,
+ "confidence": 1,
+ "end": 26.82,
+ "word": "about",
+ "punct": "about",
+ "index": 36
+ },
+ {
+ "start": 26.82,
+ "confidence": 1,
+ "end": 27.04,
+ "word": "it",
+ "punct": "it",
+ "index": 37
+ },
+ {
+ "start": 27.04,
+ "confidence": 1,
+ "end": 27.77,
+ "word": "because",
+ "punct": "because",
+ "index": 38
+ },
+ {
+ "start": 28.35,
+ "confidence": 0.79,
+ "end": 28.47,
+ "word": "i've",
+ "punct": "I've",
+ "index": 39
+ },
+ {
+ "start": 28.59,
+ "confidence": 1,
+ "end": 28.79,
+ "word": "always",
+ "punct": "always",
+ "index": 40
+ },
+ {
+ "start": 28.79,
+ "confidence": 1,
+ "end": 29.03,
+ "word": "loved",
+ "punct": "loved",
+ "index": 41
+ },
+ {
+ "start": 29.09,
+ "confidence": 0.52,
+ "end": 29.6,
+ "word": "about",
+ "punct": "about",
+ "index": 42
+ },
+ {
+ "start": 29.8,
+ "confidence": 1,
+ "end": 30.04,
+ "word": "this",
+ "punct": "this",
+ "index": 43
+ },
+ {
+ "start": 30.04,
+ "confidence": 0.99,
+ "end": 30.2,
+ "word": "one",
+ "punct": "one",
+ "index": 44
+ },
+ {
+ "start": 30.2,
+ "confidence": 1,
+ "end": 30.46,
+ "word": "has",
+ "punct": "has",
+ "index": 45
+ },
+ {
+ "start": 30.46,
+ "confidence": 1,
+ "end": 30.76,
+ "word": "really",
+ "punct": "really",
+ "index": 46
+ },
+ {
+ "start": 30.76,
+ "confidence": 0.78,
+ "end": 30.96,
+ "word": "caught",
+ "punct": "caught",
+ "index": 47
+ },
+ {
+ "start": 30.96,
+ "confidence": 1,
+ "end": 31.34,
+ "word": "technical",
+ "punct": "technical",
+ "index": 48
+ },
+ {
+ "start": 31.34,
+ "confidence": 0.99,
+ "end": 31.8,
+ "word": "features",
+ "punct": "features.",
+ "index": 49
+ },
+ {
+ "start": 31.8,
+ "confidence": 0.99,
+ "end": 31.93,
+ "word": "it",
+ "punct": "It",
+ "index": 50
+ },
+ {
+ "start": 31.93,
+ "confidence": 0.99,
+ "end": 32.12,
+ "word": "had",
+ "punct": "had",
+ "index": 51
+ },
+ {
+ "start": 32.12,
+ "confidence": 0.5,
+ "end": 32.45,
+ "word": "more",
+ "punct": "more",
+ "index": 52
+ },
+ {
+ "start": 32.45,
+ "confidence": 0.5,
+ "end": 32.76,
+ "word": "orders",
+ "punct": "orders",
+ "index": 53
+ },
+ {
+ "start": 32.76,
+ "confidence": 0.89,
+ "end": 32.92,
+ "word": "and",
+ "punct": "and",
+ "index": 54
+ },
+ {
+ "start": 32.92,
+ "confidence": 1,
+ "end": 33.18,
+ "word": "touch",
+ "punct": "touch",
+ "index": 55
+ },
+ {
+ "start": 33.18,
+ "confidence": 0.98,
+ "end": 33.88,
+ "word": "sensors",
+ "punct": "sensors.",
+ "index": 56
+ },
+ {
+ "start": 34.27,
+ "confidence": 0.68,
+ "end": 34.51,
+ "word": "it",
+ "punct": "It",
+ "index": 57
+ },
+ {
+ "start": 34.51,
+ "confidence": 0.93,
+ "end": 34.7,
+ "word": "had",
+ "punct": "had",
+ "index": 58
+ },
+ {
+ "start": 34.7,
+ "confidence": 1,
+ "end": 34.81,
+ "word": "an",
+ "punct": "an",
+ "index": 59
+ },
+ {
+ "start": 34.81,
+ "confidence": 0.53,
+ "end": 34.97,
+ "word": "infra",
+ "punct": "infra",
+ "index": 60
+ },
+ {
+ "start": 34.97,
+ "confidence": 0.53,
+ "end": 35.32,
+ "word": "red",
+ "punct": "red",
+ "index": 61
+ },
+ {
+ "start": 35.31,
+ "confidence": 0.99,
+ "end": 35.97,
+ "word": "camera",
+ "punct": "camera",
+ "index": 62
+ },
+ {
+ "start": 36.45,
+ "confidence": 0.93,
+ "end": 36.61,
+ "word": "and",
+ "punct": "and",
+ "index": 63
+ },
+ {
+ "start": 36.64,
+ "confidence": 1,
+ "end": 36.79,
+ "word": "one",
+ "punct": "one",
+ "index": 64
+ },
+ {
+ "start": 36.79,
+ "confidence": 1,
+ "end": 36.87,
+ "word": "of",
+ "punct": "of",
+ "index": 65
+ },
+ {
+ "start": 36.87,
+ "confidence": 1,
+ "end": 36.98,
+ "word": "the",
+ "punct": "the",
+ "index": 66
+ },
+ {
+ "start": 36.98,
+ "confidence": 1,
+ "end": 37.22,
+ "word": "things",
+ "punct": "things",
+ "index": 67
+ },
+ {
+ "start": 37.22,
+ "confidence": 0.94,
+ "end": 37.33,
+ "word": "that",
+ "punct": "that",
+ "index": 68
+ },
+ {
+ "start": 37.33,
+ "confidence": 0.98,
+ "end": 37.53,
+ "word": "had",
+ "punct": "had",
+ "index": 69
+ },
+ {
+ "start": 37.53,
+ "confidence": 1,
+ "end": 37.69,
+ "word": "was",
+ "punct": "was",
+ "index": 70
+ },
+ {
+ "start": 37.69,
+ "confidence": 0.98,
+ "end": 37.83,
+ "word": "a",
+ "punct": "a",
+ "index": 71
+ },
+ {
+ "start": 37.95,
+ "confidence": 0.98,
+ "end": 38.39,
+ "word": "tilt",
+ "punct": "tilt",
+ "index": 72
+ },
+ {
+ "start": 38.39,
+ "confidence": 0.99,
+ "end": 39.01,
+ "word": "sensor",
+ "punct": "sensor",
+ "index": 73
+ },
+ {
+ "start": 39.24,
+ "confidence": 1,
+ "end": 39.51,
+ "word": "so",
+ "punct": "so",
+ "index": 74
+ },
+ {
+ "start": 39.51,
+ "confidence": 0.88,
+ "end": 39.61,
+ "word": "it",
+ "punct": "it.",
+ "index": 75
+ },
+ {
+ "start": 39.62,
+ "confidence": 0.99,
+ "end": 39.82,
+ "word": "knew",
+ "punct": "Knew",
+ "index": 76
+ },
+ {
+ "start": 39.82,
+ "confidence": 1,
+ "end": 39.96,
+ "word": "what",
+ "punct": "what",
+ "index": 77
+ },
+ {
+ "start": 39.96,
+ "confidence": 1,
+ "end": 40.54,
+ "word": "direction",
+ "punct": "direction.",
+ "index": 78
+ },
+ {
+ "start": 40.54,
+ "confidence": 1,
+ "end": 40.65,
+ "word": "it",
+ "punct": "It",
+ "index": 79
+ },
+ {
+ "start": 40.65,
+ "confidence": 1,
+ "end": 40.94,
+ "word": "was",
+ "punct": "was",
+ "index": 80
+ },
+ {
+ "start": 40.97,
+ "confidence": 0.97,
+ "end": 41.55,
+ "word": "facing",
+ "punct": "facing.",
+ "index": 81
+ },
+ {
+ "start": 41.68,
+ "confidence": 0.95,
+ "end": 42,
+ "word": "if",
+ "punct": "If",
+ "index": 82
+ },
+ {
+ "start": 42.04,
+ "confidence": 0.64,
+ "end": 42.14,
+ "word": "and",
+ "punct": "and",
+ "index": 83
+ },
+ {
+ "start": 42.14,
+ "confidence": 0.66,
+ "end": 42.22,
+ "word": "when",
+ "punct": "when",
+ "index": 84
+ },
+ {
+ "start": 42.27,
+ "confidence": 0.9,
+ "end": 42.42,
+ "word": "you",
+ "punct": "you",
+ "index": 85
+ },
+ {
+ "start": 42.42,
+ "confidence": 0.77,
+ "end": 42.62,
+ "word": "held",
+ "punct": "held",
+ "index": 86
+ },
+ {
+ "start": 42.63,
+ "confidence": 0.89,
+ "end": 42.73,
+ "word": "it",
+ "punct": "it",
+ "index": 87
+ },
+ {
+ "start": 42.73,
+ "confidence": 1,
+ "end": 43.05,
+ "word": "upside",
+ "punct": "upside",
+ "index": 88
+ },
+ {
+ "start": 43.05,
+ "confidence": 1,
+ "end": 43.61,
+ "word": "down",
+ "punct": "down.",
+ "index": 89
+ },
+ {
+ "start": 46.53,
+ "confidence": 0.95,
+ "end": 46.68,
+ "word": "i",
+ "punct": "I",
+ "index": 90
+ },
+ {
+ "start": 46.69,
+ "confidence": 0.94,
+ "end": 46.89,
+ "word": "thought",
+ "punct": "thought.",
+ "index": 91
+ },
+ {
+ "start": 46.9,
+ "confidence": 0.35,
+ "end": 47.1,
+ "word": "it's",
+ "punct": "It's",
+ "index": 92
+ },
+ {
+ "start": 47.12,
+ "confidence": 0.41,
+ "end": 47.21,
+ "word": "a",
+ "punct": "a",
+ "index": 93
+ },
+ {
+ "start": 47.21,
+ "confidence": 0.99,
+ "end": 47.65,
+ "word": "super",
+ "punct": "super",
+ "index": 94
+ },
+ {
+ "start": 47.65,
+ "confidence": 0.72,
+ "end": 48.09,
+ "word": "courts",
+ "punct": "courts",
+ "index": 95
+ },
+ {
+ "start": 48.11,
+ "confidence": 0.51,
+ "end": 48.26,
+ "word": "are",
+ "punct": "are",
+ "index": 96
+ },
+ {
+ "start": 48.28,
+ "confidence": 0.95,
+ "end": 48.67,
+ "word": "showing",
+ "punct": "showing",
+ "index": 97
+ },
+ {
+ "start": 48.66,
+ "confidence": 0.79,
+ "end": 48.79,
+ "word": "off",
+ "punct": "off",
+ "index": 98
+ },
+ {
+ "start": 48.79,
+ "confidence": 0.81,
+ "end": 48.94,
+ "word": "to",
+ "punct": "to",
+ "index": 99
+ },
+ {
+ "start": 48.94,
+ "confidence": 1,
+ "end": 49.04,
+ "word": "my",
+ "punct": "my",
+ "index": 100
+ },
+ {
+ "start": 49.04,
+ "confidence": 1,
+ "end": 49.56,
+ "word": "friend",
+ "punct": "friend",
+ "index": 101
+ },
+ {
+ "start": 50,
+ "confidence": 0.98,
+ "end": 50.14,
+ "word": "and",
+ "punct": "and",
+ "index": 102
+ },
+ {
+ "start": 50.15,
+ "confidence": 0.75,
+ "end": 50.21,
+ "word": "i",
+ "punct": "I",
+ "index": 103
+ },
+ {
+ "start": 50.21,
+ "confidence": 1,
+ "end": 50.42,
+ "word": "said",
+ "punct": "said",
+ "index": 104
+ },
+ {
+ "start": 50.42,
+ "confidence": 0.8,
+ "end": 50.58,
+ "word": "to",
+ "punct": "to",
+ "index": 105
+ },
+ {
+ "start": 50.58,
+ "confidence": 0.95,
+ "end": 50.83,
+ "word": "hold",
+ "punct": "hold",
+ "index": 106
+ },
+ {
+ "start": 50.83,
+ "confidence": 0.37,
+ "end": 50.97,
+ "word": "it",
+ "punct": "it,",
+ "index": 107
+ },
+ {
+ "start": 50.97,
+ "confidence": 0.29,
+ "end": 51.16,
+ "word": "but",
+ "punct": "but",
+ "index": 108
+ },
+ {
+ "start": 51.22,
+ "confidence": 0.94,
+ "end": 51.49,
+ "word": "he'll",
+ "punct": "he'll",
+ "index": 109
+ },
+ {
+ "start": 51.48,
+ "confidence": 0.97,
+ "end": 51.65,
+ "word": "see",
+ "punct": "see",
+ "index": 110
+ },
+ {
+ "start": 51.66,
+ "confidence": 0.6,
+ "end": 51.79,
+ "word": "what",
+ "punct": "what",
+ "index": 111
+ },
+ {
+ "start": 51.82,
+ "confidence": 0.54,
+ "end": 52.31,
+ "word": "debts",
+ "punct": "debts.",
+ "index": 112
+ },
+ {
+ "start": 55.22,
+ "confidence": 0.63,
+ "end": 55.29,
+ "word": "we",
+ "punct": "We",
+ "index": 113
+ },
+ {
+ "start": 55.36,
+ "confidence": 0.78,
+ "end": 55.51,
+ "word": "were",
+ "punct": "were",
+ "index": 114
+ },
+ {
+ "start": 55.51,
+ "confidence": 1,
+ "end": 55.93,
+ "word": "watching",
+ "punct": "watching",
+ "index": 115
+ },
+ {
+ "start": 55.93,
+ "confidence": 0.98,
+ "end": 56.01,
+ "word": "the",
+ "punct": "the",
+ "index": 116
+ },
+ {
+ "start": 56.01,
+ "confidence": 1,
+ "end": 56.92,
+ "word": "theatrics",
+ "punct": "theatrics",
+ "index": 117
+ },
+ {
+ "start": 56.92,
+ "confidence": 0.93,
+ "end": 57.01,
+ "word": "of",
+ "punct": "of",
+ "index": 118
+ },
+ {
+ "start": 57.01,
+ "confidence": 1,
+ "end": 57.25,
+ "word": "this",
+ "punct": "this",
+ "index": 119
+ },
+ {
+ "start": 57.25,
+ "confidence": 0.54,
+ "end": 57.52,
+ "word": "robe",
+ "punct": "robe",
+ "index": 120
+ },
+ {
+ "start": 57.53,
+ "confidence": 0.66,
+ "end": 58.02,
+ "word": "that",
+ "punct": "that",
+ "index": 121
+ },
+ {
+ "start": 58.88,
+ "confidence": 1,
+ "end": 59.84,
+ "word": "struggle",
+ "punct": "struggle",
+ "index": 122
+ },
+ {
+ "start": 59.89,
+ "confidence": 0.94,
+ "end": 60.08,
+ "word": "and",
+ "punct": "and",
+ "index": 123
+ },
+ {
+ "start": 60.08,
+ "confidence": 1,
+ "end": 60.71,
+ "word": "cry",
+ "punct": "cry",
+ "index": 124
+ },
+ {
+ "start": 60.71,
+ "confidence": 1,
+ "end": 61.07,
+ "word": "out",
+ "punct": "out",
+ "index": 125
+ },
+ {
+ "start": 61.86,
+ "confidence": 0.63,
+ "end": 61.9,
+ "word": "and",
+ "punct": "and",
+ "index": 126
+ },
+ {
+ "start": 62.77,
+ "confidence": 0.85,
+ "end": 63.06,
+ "word": "and",
+ "punct": "and",
+ "index": 127
+ },
+ {
+ "start": 63.25,
+ "confidence": 1,
+ "end": 63.53,
+ "word": "after",
+ "punct": "after",
+ "index": 128
+ },
+ {
+ "start": 63.53,
+ "confidence": 0.99,
+ "end": 63.57,
+ "word": "a",
+ "punct": "a",
+ "index": 129
+ },
+ {
+ "start": 63.57,
+ "confidence": 0.99,
+ "end": 63.73,
+ "word": "few",
+ "punct": "few",
+ "index": 130
+ },
+ {
+ "start": 63.73,
+ "confidence": 0.99,
+ "end": 64.47,
+ "word": "seconds",
+ "punct": "seconds.",
+ "index": 131
+ },
+ {
+ "start": 64.73,
+ "confidence": 0.58,
+ "end": 64.92,
+ "word": "the",
+ "punct": "The",
+ "index": 132
+ },
+ {
+ "start": 64.94,
+ "confidence": 0.73,
+ "end": 65.33,
+ "word": "first",
+ "punct": "first.",
+ "index": 133
+ },
+ {
+ "start": 65.42,
+ "confidence": 0.37,
+ "end": 65.78,
+ "word": "after",
+ "punct": "After",
+ "index": 134
+ },
+ {
+ "start": 65.79,
+ "confidence": 0.53,
+ "end": 66,
+ "word": "my",
+ "punct": "my",
+ "index": 135
+ },
+ {
+ "start": 66.01,
+ "confidence": 0.83,
+ "end": 66.47,
+ "word": "little",
+ "punct": "little",
+ "index": 136
+ },
+ {
+ "start": 67.66,
+ "confidence": 0.93,
+ "end": 67.79,
+ "word": "and",
+ "punct": "and",
+ "index": 137
+ },
+ {
+ "start": 67.87,
+ "confidence": 1,
+ "end": 67.96,
+ "word": "i",
+ "punct": "I",
+ "index": 138
+ },
+ {
+ "start": 67.96,
+ "confidence": 1,
+ "end": 68.22,
+ "word": "said",
+ "punct": "said",
+ "index": 139
+ },
+ {
+ "start": 68.22,
+ "confidence": 0.96,
+ "end": 68.9,
+ "word": "o.k.",
+ "punct": "o.k.",
+ "index": 140
+ },
+ {
+ "start": 69.99,
+ "confidence": 0.99,
+ "end": 70.22,
+ "word": "that's",
+ "punct": "That's",
+ "index": 141
+ },
+ {
+ "start": 70.22,
+ "confidence": 1,
+ "end": 70.58,
+ "word": "enough",
+ "punct": "enough.",
+ "index": 142
+ },
+ {
+ "start": 70.58,
+ "confidence": 1,
+ "end": 71.11,
+ "word": "now",
+ "punct": "Now,",
+ "index": 143
+ },
+ {
+ "start": 71.81,
+ "confidence": 0.8,
+ "end": 71.98,
+ "word": "let's",
+ "punct": "let's",
+ "index": 144
+ },
+ {
+ "start": 72.12,
+ "confidence": 0.95,
+ "end": 72.25,
+ "word": "put",
+ "punct": "put",
+ "index": 145
+ },
+ {
+ "start": 72.25,
+ "confidence": 0.71,
+ "end": 72.33,
+ "word": "him",
+ "punct": "him",
+ "index": 146
+ },
+ {
+ "start": 72.33,
+ "confidence": 1,
+ "end": 72.55,
+ "word": "back",
+ "punct": "back",
+ "index": 147
+ },
+ {
+ "start": 72.55,
+ "confidence": 1,
+ "end": 73.12,
+ "word": "down",
+ "punct": "down",
+ "index": 148
+ },
+ {
+ "start": 74.27,
+ "confidence": 0.87,
+ "end": 74.59,
+ "word": "and",
+ "punct": "and",
+ "index": 149
+ },
+ {
+ "start": 74.64,
+ "confidence": 0.97,
+ "end": 75.03,
+ "word": "pepper",
+ "punct": "pepper,",
+ "index": 150
+ },
+ {
+ "start": 75.04,
+ "confidence": 0.77,
+ "end": 75.31,
+ "word": "about",
+ "punct": "about",
+ "index": 151
+ },
+ {
+ "start": 75.34,
+ "confidence": 0.87,
+ "end": 75.43,
+ "word": "to",
+ "punct": "to",
+ "index": 152
+ },
+ {
+ "start": 75.44,
+ "confidence": 1,
+ "end": 75.57,
+ "word": "make",
+ "punct": "make",
+ "index": 153
+ },
+ {
+ "start": 75.57,
+ "confidence": 0.84,
+ "end": 75.66,
+ "word": "it",
+ "punct": "it.",
+ "index": 154
+ },
+ {
+ "start": 75.67,
+ "confidence": 0.94,
+ "end": 75.92,
+ "word": "stop",
+ "punct": "Stop",
+ "index": 155
+ },
+ {
+ "start": 75.92,
+ "confidence": 1,
+ "end": 76.47,
+ "word": "crying",
+ "punct": "crying",
+ "index": 156
+ },
+ {
+ "start": 76.75,
+ "confidence": 0.88,
+ "end": 76.8,
+ "word": "and",
+ "punct": "and",
+ "index": 157
+ },
+ {
+ "start": 77.75,
+ "confidence": 0.54,
+ "end": 77.79,
+ "word": "i",
+ "punct": "I",
+ "index": 158
+ },
+ {
+ "start": 79.1,
+ "confidence": 0.94,
+ "end": 79.29,
+ "word": "was",
+ "punct": "was",
+ "index": 159
+ },
+ {
+ "start": 79.29,
+ "confidence": 1,
+ "end": 79.44,
+ "word": "kind",
+ "punct": "kind",
+ "index": 160
+ },
+ {
+ "start": 79.44,
+ "confidence": 1,
+ "end": 79.51,
+ "word": "of",
+ "punct": "of",
+ "index": 161
+ },
+ {
+ "start": 79.51,
+ "confidence": 1,
+ "end": 79.65,
+ "word": "a",
+ "punct": "a",
+ "index": 162
+ },
+ {
+ "start": 79.65,
+ "confidence": 1,
+ "end": 79.93,
+ "word": "weird",
+ "punct": "weird",
+ "index": 163
+ },
+ {
+ "start": 79.93,
+ "confidence": 1,
+ "end": 80.65,
+ "word": "experience",
+ "punct": "experience",
+ "index": 164
+ },
+ {
+ "start": 80.65,
+ "confidence": 1,
+ "end": 80.78,
+ "word": "for",
+ "punct": "for",
+ "index": 165
+ },
+ {
+ "start": 80.78,
+ "confidence": 1,
+ "end": 81.18,
+ "word": "me",
+ "punct": "me",
+ "index": 166
+ },
+ {
+ "start": 82.09,
+ "confidence": 0.97,
+ "end": 82.33,
+ "word": "one",
+ "punct": "one",
+ "index": 167
+ },
+ {
+ "start": 82.35,
+ "confidence": 1,
+ "end": 82.7,
+ "word": "thing",
+ "punct": "thing,",
+ "index": 168
+ },
+ {
+ "start": 83.02,
+ "confidence": 0.78,
+ "end": 83.28,
+ "word": "wasn't",
+ "punct": "wasn't",
+ "index": 169
+ },
+ {
+ "start": 83.31,
+ "confidence": 1,
+ "end": 83.38,
+ "word": "the",
+ "punct": "the",
+ "index": 170
+ },
+ {
+ "start": 83.38,
+ "confidence": 1,
+ "end": 83.75,
+ "word": "most",
+ "punct": "most",
+ "index": 171
+ },
+ {
+ "start": 83.78,
+ "confidence": 1,
+ "end": 84.39,
+ "word": "maternal",
+ "punct": "maternal",
+ "index": 172
+ },
+ {
+ "start": 84.39,
+ "confidence": 1,
+ "end": 84.94,
+ "word": "person",
+ "punct": "person",
+ "index": 173
+ },
+ {
+ "start": 84.94,
+ "confidence": 0.99,
+ "end": 85.08,
+ "word": "at",
+ "punct": "at",
+ "index": 174
+ },
+ {
+ "start": 85.08,
+ "confidence": 0.56,
+ "end": 85.15,
+ "word": "the",
+ "punct": "the",
+ "index": 175
+ },
+ {
+ "start": 85.15,
+ "confidence": 1,
+ "end": 85.81,
+ "word": "time",
+ "punct": "time.",
+ "index": 176
+ },
+ {
+ "start": 86.66,
+ "confidence": 0.64,
+ "end": 86.9,
+ "word": "although",
+ "punct": "Although,",
+ "index": 177
+ },
+ {
+ "start": 86.94,
+ "confidence": 0.98,
+ "end": 87.16,
+ "word": "since",
+ "punct": "since",
+ "index": 178
+ },
+ {
+ "start": 87.16,
+ "confidence": 0.9,
+ "end": 87.27,
+ "word": "then",
+ "punct": "then",
+ "index": 179
+ },
+ {
+ "start": 87.27,
+ "confidence": 0.97,
+ "end": 87.38,
+ "word": "i've",
+ "punct": "I've",
+ "index": 180
+ },
+ {
+ "start": 87.38,
+ "confidence": 1,
+ "end": 87.62,
+ "word": "become",
+ "punct": "become",
+ "index": 181
+ },
+ {
+ "start": 87.61,
+ "confidence": 0.96,
+ "end": 87.67,
+ "word": "a",
+ "punct": "a",
+ "index": 182
+ },
+ {
+ "start": 87.67,
+ "confidence": 0.96,
+ "end": 87.95,
+ "word": "mother",
+ "punct": "mother",
+ "index": 183
+ },
+ {
+ "start": 87.96,
+ "confidence": 0.39,
+ "end": 88.04,
+ "word": "and",
+ "punct": "and",
+ "index": 184
+ },
+ {
+ "start": 88.05,
+ "confidence": 1,
+ "end": 88.26,
+ "word": "nine",
+ "punct": "nine",
+ "index": 185
+ },
+ {
+ "start": 88.26,
+ "confidence": 1,
+ "end": 88.49,
+ "word": "months",
+ "punct": "months",
+ "index": 186
+ },
+ {
+ "start": 88.49,
+ "confidence": 1,
+ "end": 88.91,
+ "word": "ago",
+ "punct": "ago.",
+ "index": 187
+ },
+ {
+ "start": 89.46,
+ "confidence": 0.9,
+ "end": 89.64,
+ "word": "and",
+ "punct": "And",
+ "index": 188
+ },
+ {
+ "start": 89.86,
+ "confidence": 0.45,
+ "end": 90.1,
+ "word": "that",
+ "punct": "that",
+ "index": 189
+ },
+ {
+ "start": 90.14,
+ "confidence": 0.59,
+ "end": 90.45,
+ "word": "is",
+ "punct": "is",
+ "index": 190
+ },
+ {
+ "start": 90.49,
+ "confidence": 0.46,
+ "end": 90.71,
+ "word": "a",
+ "punct": "a",
+ "index": 191
+ },
+ {
+ "start": 90.71,
+ "confidence": 0.45,
+ "end": 91,
+ "word": "score",
+ "punct": "score",
+ "index": 192
+ },
+ {
+ "start": 91.05,
+ "confidence": 0.4,
+ "end": 91.21,
+ "word": "when",
+ "punct": "when",
+ "index": 193
+ },
+ {
+ "start": 91.24,
+ "confidence": 0.58,
+ "end": 91.41,
+ "word": "hold",
+ "punct": "hold",
+ "index": 194
+ },
+ {
+ "start": 91.41,
+ "confidence": 0.83,
+ "end": 91.53,
+ "word": "them",
+ "punct": "them",
+ "index": 195
+ },
+ {
+ "start": 91.53,
+ "confidence": 0.79,
+ "end": 91.65,
+ "word": "up",
+ "punct": "up",
+ "index": 196
+ },
+ {
+ "start": 91.65,
+ "confidence": 0.43,
+ "end": 91.79,
+ "word": "to",
+ "punct": "to",
+ "index": 197
+ },
+ {
+ "start": 91.8,
+ "confidence": 0.93,
+ "end": 92.1,
+ "word": "now",
+ "punct": "now,",
+ "index": 198
+ },
+ {
+ "start": 95.03,
+ "confidence": 1,
+ "end": 95.27,
+ "word": "but",
+ "punct": "but",
+ "index": 199
+ },
+ {
+ "start": 95.27,
+ "confidence": 1,
+ "end": 95.49,
+ "word": "my",
+ "punct": "my",
+ "index": 200
+ },
+ {
+ "start": 95.49,
+ "confidence": 1,
+ "end": 95.88,
+ "word": "response",
+ "punct": "response",
+ "index": 201
+ },
+ {
+ "start": 95.88,
+ "confidence": 0.52,
+ "end": 95.91,
+ "word": "to",
+ "punct": "to",
+ "index": 202
+ },
+ {
+ "start": 95.92,
+ "confidence": 1,
+ "end": 96.12,
+ "word": "this",
+ "punct": "this",
+ "index": 203
+ },
+ {
+ "start": 96.12,
+ "confidence": 0.87,
+ "end": 96.43,
+ "word": "robot",
+ "punct": "robot",
+ "index": 204
+ },
+ {
+ "start": 96.43,
+ "confidence": 1,
+ "end": 96.57,
+ "word": "was",
+ "punct": "was",
+ "index": 205
+ },
+ {
+ "start": 96.57,
+ "confidence": 1,
+ "end": 96.85,
+ "word": "also",
+ "punct": "also",
+ "index": 206
+ },
+ {
+ "start": 96.85,
+ "confidence": 1,
+ "end": 97.26,
+ "word": "interesting",
+ "punct": "interesting",
+ "index": 207
+ },
+ {
+ "start": 97.26,
+ "confidence": 1,
+ "end": 97.7,
+ "word": "because",
+ "punct": "because",
+ "index": 208
+ },
+ {
+ "start": 97.87,
+ "confidence": 0.8,
+ "end": 97.98,
+ "word": "i",
+ "punct": "I",
+ "index": 209
+ },
+ {
+ "start": 98.01,
+ "confidence": 0.8,
+ "end": 98.17,
+ "word": "knew",
+ "punct": "knew",
+ "index": 210
+ },
+ {
+ "start": 98.17,
+ "confidence": 1,
+ "end": 98.91,
+ "word": "exactly",
+ "punct": "exactly",
+ "index": 211
+ },
+ {
+ "start": 98.91,
+ "confidence": 1,
+ "end": 99.18,
+ "word": "how",
+ "punct": "how",
+ "index": 212
+ },
+ {
+ "start": 99.18,
+ "confidence": 1,
+ "end": 99.4,
+ "word": "this",
+ "punct": "this",
+ "index": 213
+ },
+ {
+ "start": 99.4,
+ "confidence": 1,
+ "end": 100.03,
+ "word": "machine",
+ "punct": "machine",
+ "index": 214
+ },
+ {
+ "start": 100.07,
+ "confidence": 0.91,
+ "end": 100.54,
+ "word": "work",
+ "punct": "work",
+ "index": 215
+ },
+ {
+ "start": 100.57,
+ "confidence": 0.97,
+ "end": 100.87,
+ "word": "it",
+ "punct": "it.",
+ "index": 216
+ },
+ {
+ "start": 101.49,
+ "confidence": 0.73,
+ "end": 101.64,
+ "word": "and",
+ "punct": "And",
+ "index": 217
+ },
+ {
+ "start": 101.67,
+ "confidence": 0.99,
+ "end": 101.84,
+ "word": "yet",
+ "punct": "yet.",
+ "index": 218
+ },
+ {
+ "start": 101.87,
+ "confidence": 1,
+ "end": 101.97,
+ "word": "i",
+ "punct": "I",
+ "index": 219
+ },
+ {
+ "start": 101.97,
+ "confidence": 1,
+ "end": 102.37,
+ "word": "still",
+ "punct": "still",
+ "index": 220
+ },
+ {
+ "start": 102.37,
+ "confidence": 1,
+ "end": 102.65,
+ "word": "felt",
+ "punct": "felt",
+ "index": 221
+ },
+ {
+ "start": 102.65,
+ "confidence": 1,
+ "end": 103.39,
+ "word": "compelled",
+ "punct": "compelled",
+ "index": 222
+ },
+ {
+ "start": 103.39,
+ "confidence": 1,
+ "end": 103.51,
+ "word": "to",
+ "punct": "to",
+ "index": 223
+ },
+ {
+ "start": 103.51,
+ "confidence": 1,
+ "end": 103.67,
+ "word": "be",
+ "punct": "be",
+ "index": 224
+ },
+ {
+ "start": 103.67,
+ "confidence": 1,
+ "end": 104.38,
+ "word": "kind",
+ "punct": "kind",
+ "index": 225
+ },
+ {
+ "start": 104.41,
+ "confidence": 1,
+ "end": 104.59,
+ "word": "to",
+ "punct": "to",
+ "index": 226
+ },
+ {
+ "start": 104.59,
+ "confidence": 1,
+ "end": 104.79,
+ "word": "it",
+ "punct": "it.",
+ "index": 227
+ },
+ {
+ "start": 106.41,
+ "confidence": 0.94,
+ "end": 106.61,
+ "word": "and",
+ "punct": "And",
+ "index": 228
+ },
+ {
+ "start": 106.62,
+ "confidence": 0.99,
+ "end": 106.9,
+ "word": "that",
+ "punct": "that",
+ "index": 229
+ },
+ {
+ "start": 106.93,
+ "confidence": 0.93,
+ "end": 107.71,
+ "word": "observation",
+ "punct": "observation",
+ "index": 230
+ },
+ {
+ "start": 107.71,
+ "confidence": 0.98,
+ "end": 108.1,
+ "word": "sparked",
+ "punct": "sparked",
+ "index": 231
+ },
+ {
+ "start": 108.1,
+ "confidence": 0.5,
+ "end": 108.17,
+ "word": "that",
+ "punct": "that",
+ "index": 232
+ },
+ {
+ "start": 108.18,
+ "confidence": 1,
+ "end": 109.13,
+ "word": "curiosity",
+ "punct": "curiosity",
+ "index": 233
+ },
+ {
+ "start": 109.13,
+ "confidence": 1,
+ "end": 109.32,
+ "word": "that",
+ "punct": "that",
+ "index": 234
+ },
+ {
+ "start": 109.32,
+ "confidence": 0.96,
+ "end": 109.41,
+ "word": "i",
+ "punct": "I",
+ "index": 235
+ },
+ {
+ "start": 109.41,
+ "confidence": 0.78,
+ "end": 109.74,
+ "word": "spent",
+ "punct": "spent",
+ "index": 236
+ },
+ {
+ "start": 109.74,
+ "confidence": 0.97,
+ "end": 109.81,
+ "word": "the",
+ "punct": "the",
+ "index": 237
+ },
+ {
+ "start": 109.81,
+ "confidence": 0.88,
+ "end": 110.27,
+ "word": "fat",
+ "punct": "fat,",
+ "index": 238
+ },
+ {
+ "start": 110.27,
+ "confidence": 0.98,
+ "end": 110.36,
+ "word": "the",
+ "punct": "the",
+ "index": 239
+ },
+ {
+ "start": 110.36,
+ "confidence": 1,
+ "end": 110.7,
+ "word": "past",
+ "punct": "past",
+ "index": 240
+ },
+ {
+ "start": 110.75,
+ "confidence": 1,
+ "end": 111.28,
+ "word": "decade",
+ "punct": "decade",
+ "index": 241
+ },
+ {
+ "start": 111.28,
+ "confidence": 1,
+ "end": 112.01,
+ "word": "pursuing",
+ "punct": "pursuing",
+ "index": 242
+ },
+ {
+ "start": 112.48,
+ "confidence": 0.25,
+ "end": 112.52,
+ "word": "it",
+ "punct": "it.",
+ "index": 243
+ },
+ {
+ "start": 112.93,
+ "confidence": 1,
+ "end": 113.18,
+ "word": "why",
+ "punct": "Why",
+ "index": 244
+ },
+ {
+ "start": 113.18,
+ "confidence": 0.69,
+ "end": 113.33,
+ "word": "did",
+ "punct": "did",
+ "index": 245
+ },
+ {
+ "start": 113.33,
+ "confidence": 0.88,
+ "end": 113.44,
+ "word": "they",
+ "punct": "they",
+ "index": 246
+ },
+ {
+ "start": 113.45,
+ "confidence": 0.5,
+ "end": 113.84,
+ "word": "comfort",
+ "punct": "comfort",
+ "index": 247
+ },
+ {
+ "start": 113.92,
+ "confidence": 0.99,
+ "end": 114.17,
+ "word": "this",
+ "punct": "this",
+ "index": 248
+ },
+ {
+ "start": 114.17,
+ "confidence": 0.67,
+ "end": 114.6,
+ "word": "robe",
+ "punct": "robe.",
+ "index": 249
+ },
+ {
+ "start": 116.26,
+ "confidence": 1,
+ "end": 116.48,
+ "word": "one",
+ "punct": "One",
+ "index": 250
+ },
+ {
+ "start": 116.48,
+ "confidence": 1,
+ "end": 116.57,
+ "word": "of",
+ "punct": "of",
+ "index": 251
+ },
+ {
+ "start": 116.57,
+ "confidence": 1,
+ "end": 116.65,
+ "word": "the",
+ "punct": "the",
+ "index": 252
+ },
+ {
+ "start": 116.65,
+ "confidence": 1,
+ "end": 116.87,
+ "word": "things",
+ "punct": "things",
+ "index": 253
+ },
+ {
+ "start": 116.87,
+ "confidence": 0.77,
+ "end": 116.93,
+ "word": "i",
+ "punct": "I",
+ "index": 254
+ },
+ {
+ "start": 116.93,
+ "confidence": 1,
+ "end": 117.57,
+ "word": "discovered",
+ "punct": "discovered",
+ "index": 255
+ },
+ {
+ "start": 117.57,
+ "confidence": 1,
+ "end": 117.77,
+ "word": "was",
+ "punct": "was",
+ "index": 256
+ },
+ {
+ "start": 117.77,
+ "confidence": 1,
+ "end": 118.22,
+ "word": "that",
+ "punct": "that",
+ "index": 257
+ },
+ {
+ "start": 118.45,
+ "confidence": 1,
+ "end": 118.61,
+ "word": "my",
+ "punct": "my",
+ "index": 258
+ },
+ {
+ "start": 118.61,
+ "confidence": 1,
+ "end": 119.2,
+ "word": "treatment",
+ "punct": "treatment",
+ "index": 259
+ },
+ {
+ "start": 119.2,
+ "confidence": 0.73,
+ "end": 119.26,
+ "word": "of",
+ "punct": "of",
+ "index": 260
+ },
+ {
+ "start": 119.26,
+ "confidence": 1,
+ "end": 119.45,
+ "word": "this",
+ "punct": "this",
+ "index": 261
+ },
+ {
+ "start": 119.45,
+ "confidence": 1,
+ "end": 119.8,
+ "word": "machine",
+ "punct": "machine",
+ "index": 262
+ },
+ {
+ "start": 119.8,
+ "confidence": 1,
+ "end": 119.95,
+ "word": "was",
+ "punct": "was",
+ "index": 263
+ },
+ {
+ "start": 119.95,
+ "confidence": 1,
+ "end": 120.21,
+ "word": "more",
+ "punct": "more",
+ "index": 264
+ },
+ {
+ "start": 120.21,
+ "confidence": 1,
+ "end": 120.36,
+ "word": "than",
+ "punct": "than",
+ "index": 265
+ },
+ {
+ "start": 120.36,
+ "confidence": 1,
+ "end": 120.86,
+ "word": "just",
+ "punct": "just",
+ "index": 266
+ },
+ {
+ "start": 120.98,
+ "confidence": 1,
+ "end": 121.16,
+ "word": "an",
+ "punct": "an",
+ "index": 267
+ },
+ {
+ "start": 121.19,
+ "confidence": 1,
+ "end": 121.6,
+ "word": "awkward",
+ "punct": "awkward",
+ "index": 268
+ },
+ {
+ "start": 121.6,
+ "confidence": 1,
+ "end": 122.08,
+ "word": "moment",
+ "punct": "moment",
+ "index": 269
+ },
+ {
+ "start": 122.08,
+ "confidence": 0.99,
+ "end": 122.16,
+ "word": "in",
+ "punct": "in",
+ "index": 270
+ },
+ {
+ "start": 122.16,
+ "confidence": 1,
+ "end": 122.3,
+ "word": "my",
+ "punct": "my",
+ "index": 271
+ },
+ {
+ "start": 122.3,
+ "confidence": 1,
+ "end": 122.62,
+ "word": "living",
+ "punct": "living",
+ "index": 272
+ },
+ {
+ "start": 122.62,
+ "confidence": 1,
+ "end": 123,
+ "word": "room",
+ "punct": "room",
+ "index": 273
+ },
+ {
+ "start": 123.45,
+ "confidence": 0.84,
+ "end": 123.63,
+ "word": "that",
+ "punct": "that",
+ "index": 274
+ },
+ {
+ "start": 123.74,
+ "confidence": 0.64,
+ "end": 123.81,
+ "word": "in",
+ "punct": "in",
+ "index": 275
+ },
+ {
+ "start": 123.81,
+ "confidence": 0.51,
+ "end": 123.95,
+ "word": "a",
+ "punct": "a",
+ "index": 276
+ },
+ {
+ "start": 123.95,
+ "confidence": 0.98,
+ "end": 124.42,
+ "word": "world",
+ "punct": "world",
+ "index": 277
+ },
+ {
+ "start": 124.45,
+ "confidence": 0.82,
+ "end": 124.63,
+ "word": "were",
+ "punct": "were",
+ "index": 278
+ },
+ {
+ "start": 124.64,
+ "confidence": 1,
+ "end": 125.43,
+ "word": "increasingly",
+ "punct": "increasingly",
+ "index": 279
+ },
+ {
+ "start": 125.46,
+ "confidence": 0.62,
+ "end": 126.07,
+ "word": "integrating",
+ "punct": "integrating",
+ "index": 280
+ },
+ {
+ "start": 126.21,
+ "confidence": 0.83,
+ "end": 127.02,
+ "word": "robots",
+ "punct": "robots",
+ "index": 281
+ },
+ {
+ "start": 127.22,
+ "confidence": 1,
+ "end": 127.57,
+ "word": "into",
+ "punct": "into",
+ "index": 282
+ },
+ {
+ "start": 127.57,
+ "confidence": 1,
+ "end": 127.66,
+ "word": "our",
+ "punct": "our",
+ "index": 283
+ },
+ {
+ "start": 127.66,
+ "confidence": 1,
+ "end": 128.54,
+ "word": "lives",
+ "punct": "lives",
+ "index": 284
+ },
+ {
+ "start": 128.85,
+ "confidence": 0.51,
+ "end": 128.96,
+ "word": "and",
+ "punct": "and",
+ "index": 285
+ },
+ {
+ "start": 129.1,
+ "confidence": 0.39,
+ "end": 129.36,
+ "word": "things",
+ "punct": "things",
+ "index": 286
+ },
+ {
+ "start": 129.39,
+ "confidence": 0.63,
+ "end": 129.75,
+ "word": "like",
+ "punct": "like",
+ "index": 287
+ },
+ {
+ "start": 129.75,
+ "confidence": 1,
+ "end": 130.04,
+ "word": "that",
+ "punct": "that",
+ "index": 288
+ },
+ {
+ "start": 130.04,
+ "confidence": 0.98,
+ "end": 130.29,
+ "word": "might",
+ "punct": "might",
+ "index": 289
+ },
+ {
+ "start": 130.39,
+ "confidence": 1,
+ "end": 130.75,
+ "word": "actually",
+ "punct": "actually",
+ "index": 290
+ },
+ {
+ "start": 130.75,
+ "confidence": 1,
+ "end": 130.89,
+ "word": "have",
+ "punct": "have",
+ "index": 291
+ },
+ {
+ "start": 130.89,
+ "confidence": 1,
+ "end": 132.15,
+ "word": "consequences",
+ "punct": "consequences",
+ "index": 292
+ },
+ {
+ "start": 133.44,
+ "confidence": 1,
+ "end": 133.68,
+ "word": "because",
+ "punct": "because",
+ "index": 293
+ },
+ {
+ "start": 133.68,
+ "confidence": 1,
+ "end": 133.76,
+ "word": "the",
+ "punct": "the",
+ "index": 294
+ },
+ {
+ "start": 133.76,
+ "confidence": 1,
+ "end": 134.02,
+ "word": "first",
+ "punct": "first",
+ "index": 295
+ },
+ {
+ "start": 134.02,
+ "confidence": 1,
+ "end": 134.17,
+ "word": "thing",
+ "punct": "thing",
+ "index": 296
+ },
+ {
+ "start": 134.17,
+ "confidence": 0.51,
+ "end": 134.23,
+ "word": "that",
+ "punct": "that",
+ "index": 297
+ },
+ {
+ "start": 134.23,
+ "confidence": 0.62,
+ "end": 134.33,
+ "word": "i",
+ "punct": "I",
+ "index": 298
+ },
+ {
+ "start": 134.33,
+ "confidence": 1,
+ "end": 135.12,
+ "word": "discovered",
+ "punct": "discovered",
+ "index": 299
+ },
+ {
+ "start": 135.16,
+ "confidence": 0.96,
+ "end": 135.35,
+ "word": "is",
+ "punct": "is",
+ "index": 300
+ },
+ {
+ "start": 135.35,
+ "confidence": 0.97,
+ "end": 135.53,
+ "word": "that",
+ "punct": "that.",
+ "index": 301
+ },
+ {
+ "start": 135.56,
+ "confidence": 1,
+ "end": 135.8,
+ "word": "it's",
+ "punct": "It's",
+ "index": 302
+ },
+ {
+ "start": 135.8,
+ "confidence": 1,
+ "end": 136.05,
+ "word": "not",
+ "punct": "not",
+ "index": 303
+ },
+ {
+ "start": 136.05,
+ "confidence": 1,
+ "end": 136.39,
+ "word": "just",
+ "punct": "just",
+ "index": 304
+ },
+ {
+ "start": 136.39,
+ "confidence": 1,
+ "end": 136.9,
+ "word": "me",
+ "punct": "me",
+ "index": 305
+ },
+ {
+ "start": 139.25,
+ "confidence": 1,
+ "end": 139.42,
+ "word": "in",
+ "punct": "in",
+ "index": 306
+ },
+ {
+ "start": 139.42,
+ "confidence": 1,
+ "end": 139.58,
+ "word": "two",
+ "punct": "two",
+ "index": 307
+ },
+ {
+ "start": 139.58,
+ "confidence": 1,
+ "end": 140.08,
+ "word": "thousand",
+ "punct": "thousand",
+ "index": 308
+ },
+ {
+ "start": 140.08,
+ "confidence": 1,
+ "end": 140.69,
+ "word": "seven",
+ "punct": "seven.",
+ "index": 309
+ },
+ {
+ "start": 140.75,
+ "confidence": 1,
+ "end": 140.88,
+ "word": "the",
+ "punct": "The",
+ "index": 310
+ },
+ {
+ "start": 140.88,
+ "confidence": 1,
+ "end": 141.4,
+ "word": "washington",
+ "punct": "Washington",
+ "index": 311
+ },
+ {
+ "start": 141.4,
+ "confidence": 1,
+ "end": 141.74,
+ "word": "post",
+ "punct": "Post",
+ "index": 312
+ },
+ {
+ "start": 141.74,
+ "confidence": 1,
+ "end": 142.27,
+ "word": "reported",
+ "punct": "reported",
+ "index": 313
+ },
+ {
+ "start": 142.27,
+ "confidence": 1,
+ "end": 142.42,
+ "word": "that",
+ "punct": "that",
+ "index": 314
+ },
+ {
+ "start": 142.42,
+ "confidence": 1,
+ "end": 142.51,
+ "word": "the",
+ "punct": "the",
+ "index": 315
+ },
+ {
+ "start": 142.51,
+ "confidence": 1,
+ "end": 142.94,
+ "word": "united",
+ "punct": "United",
+ "index": 316
+ },
+ {
+ "start": 142.94,
+ "confidence": 0.98,
+ "end": 143.21,
+ "word": "states",
+ "punct": "States",
+ "index": 317
+ },
+ {
+ "start": 143.21,
+ "confidence": 1,
+ "end": 144.05,
+ "word": "military",
+ "punct": "military",
+ "index": 318
+ },
+ {
+ "start": 144.08,
+ "confidence": 0.92,
+ "end": 144.28,
+ "word": "was",
+ "punct": "was",
+ "index": 319
+ },
+ {
+ "start": 144.28,
+ "confidence": 1,
+ "end": 144.82,
+ "word": "testing",
+ "punct": "testing",
+ "index": 320
+ },
+ {
+ "start": 144.82,
+ "confidence": 1,
+ "end": 145.12,
+ "word": "this",
+ "punct": "this",
+ "index": 321
+ },
+ {
+ "start": 145.33,
+ "confidence": 0.99,
+ "end": 145.86,
+ "word": "robot",
+ "punct": "robot",
+ "index": 322
+ },
+ {
+ "start": 145.91,
+ "confidence": 0.58,
+ "end": 146.46,
+ "word": "diffused",
+ "punct": "diffused",
+ "index": 323
+ },
+ {
+ "start": 146.6,
+ "confidence": 0.95,
+ "end": 147.31,
+ "word": "landmines",
+ "punct": "landmines.",
+ "index": 324
+ },
+ {
+ "start": 147.42,
+ "confidence": 0.9,
+ "end": 147.67,
+ "word": "we",
+ "punct": "We",
+ "index": 325
+ },
+ {
+ "start": 147.74,
+ "confidence": 0.67,
+ "end": 148.11,
+ "word": "workers",
+ "punct": "workers",
+ "index": 326
+ },
+ {
+ "start": 148.35,
+ "confidence": 0.34,
+ "end": 148.52,
+ "word": "were",
+ "punct": "were",
+ "index": 327
+ },
+ {
+ "start": 148.57,
+ "confidence": 0.98,
+ "end": 148.95,
+ "word": "shaped",
+ "punct": "shaped",
+ "index": 328
+ },
+ {
+ "start": 148.95,
+ "confidence": 1,
+ "end": 149.09,
+ "word": "like",
+ "punct": "like",
+ "index": 329
+ },
+ {
+ "start": 149.09,
+ "confidence": 1,
+ "end": 149.16,
+ "word": "a",
+ "punct": "a",
+ "index": 330
+ },
+ {
+ "start": 149.16,
+ "confidence": 1,
+ "end": 149.56,
+ "word": "stick",
+ "punct": "stick",
+ "index": 331
+ },
+ {
+ "start": 149.56,
+ "confidence": 1,
+ "end": 150.1,
+ "word": "insect",
+ "punct": "insect",
+ "index": 332
+ },
+ {
+ "start": 150.16,
+ "confidence": 0.93,
+ "end": 150.68,
+ "word": "would",
+ "punct": "would",
+ "index": 333
+ },
+ {
+ "start": 150.7,
+ "confidence": 0.99,
+ "end": 150.94,
+ "word": "walk",
+ "punct": "walk",
+ "index": 334
+ },
+ {
+ "start": 150.94,
+ "confidence": 0.99,
+ "end": 151.16,
+ "word": "around",
+ "punct": "around",
+ "index": 335
+ },
+ {
+ "start": 151.16,
+ "confidence": 0.91,
+ "end": 151.2,
+ "word": "a",
+ "punct": "a",
+ "index": 336
+ },
+ {
+ "start": 151.2,
+ "confidence": 1,
+ "end": 151.8,
+ "word": "minefield",
+ "punct": "minefield",
+ "index": 337
+ },
+ {
+ "start": 151.8,
+ "confidence": 0.53,
+ "end": 151.9,
+ "word": "on",
+ "punct": "on",
+ "index": 338
+ },
+ {
+ "start": 151.9,
+ "confidence": 0.9,
+ "end": 152.06,
+ "word": "its",
+ "punct": "its",
+ "index": 339
+ },
+ {
+ "start": 152.06,
+ "confidence": 1,
+ "end": 152.57,
+ "word": "legs",
+ "punct": "legs",
+ "index": 340
+ },
+ {
+ "start": 152.82,
+ "confidence": 0.73,
+ "end": 152.93,
+ "word": "and",
+ "punct": "and",
+ "index": 341
+ },
+ {
+ "start": 153.07,
+ "confidence": 1,
+ "end": 153.29,
+ "word": "every",
+ "punct": "every",
+ "index": 342
+ },
+ {
+ "start": 153.29,
+ "confidence": 1,
+ "end": 153.47,
+ "word": "time",
+ "punct": "time",
+ "index": 343
+ },
+ {
+ "start": 153.47,
+ "confidence": 0.97,
+ "end": 153.55,
+ "word": "he",
+ "punct": "he",
+ "index": 344
+ },
+ {
+ "start": 153.55,
+ "confidence": 1,
+ "end": 153.9,
+ "word": "stepped",
+ "punct": "stepped",
+ "index": 345
+ },
+ {
+ "start": 153.9,
+ "confidence": 1,
+ "end": 153.98,
+ "word": "on",
+ "punct": "on",
+ "index": 346
+ },
+ {
+ "start": 153.98,
+ "confidence": 1,
+ "end": 154.04,
+ "word": "a",
+ "punct": "a",
+ "index": 347
+ },
+ {
+ "start": 154.04,
+ "confidence": 1,
+ "end": 154.45,
+ "word": "mine",
+ "punct": "mine.",
+ "index": 348
+ },
+ {
+ "start": 154.48,
+ "confidence": 1,
+ "end": 154.64,
+ "word": "one",
+ "punct": "One",
+ "index": 349
+ },
+ {
+ "start": 154.64,
+ "confidence": 1,
+ "end": 154.73,
+ "word": "of",
+ "punct": "of",
+ "index": 350
+ },
+ {
+ "start": 154.73,
+ "confidence": 0.84,
+ "end": 154.83,
+ "word": "the",
+ "punct": "the",
+ "index": 351
+ },
+ {
+ "start": 154.83,
+ "confidence": 1,
+ "end": 155.09,
+ "word": "legs",
+ "punct": "legs",
+ "index": 352
+ },
+ {
+ "start": 155.09,
+ "confidence": 0.78,
+ "end": 155.21,
+ "word": "would",
+ "punct": "would",
+ "index": 353
+ },
+ {
+ "start": 155.21,
+ "confidence": 1,
+ "end": 155.47,
+ "word": "blow",
+ "punct": "blow",
+ "index": 354
+ },
+ {
+ "start": 155.47,
+ "confidence": 1,
+ "end": 155.76,
+ "word": "up",
+ "punct": "up",
+ "index": 355
+ },
+ {
+ "start": 155.82,
+ "confidence": 0.45,
+ "end": 155.99,
+ "word": "would",
+ "punct": "would",
+ "index": 356
+ },
+ {
+ "start": 156.01,
+ "confidence": 0.98,
+ "end": 156.53,
+ "word": "continue",
+ "punct": "continue",
+ "index": 357
+ },
+ {
+ "start": 156.53,
+ "confidence": 0.92,
+ "end": 156.63,
+ "word": "on",
+ "punct": "on",
+ "index": 358
+ },
+ {
+ "start": 156.63,
+ "confidence": 1,
+ "end": 156.72,
+ "word": "the",
+ "punct": "the",
+ "index": 359
+ },
+ {
+ "start": 156.72,
+ "confidence": 1,
+ "end": 156.93,
+ "word": "other",
+ "punct": "other",
+ "index": 360
+ },
+ {
+ "start": 156.93,
+ "confidence": 0.64,
+ "end": 157.28,
+ "word": "legs",
+ "punct": "legs",
+ "index": 361
+ },
+ {
+ "start": 157.28,
+ "confidence": 1,
+ "end": 157.39,
+ "word": "to",
+ "punct": "to",
+ "index": 362
+ },
+ {
+ "start": 157.39,
+ "confidence": 0.95,
+ "end": 157.71,
+ "word": "block",
+ "punct": "block",
+ "index": 363
+ },
+ {
+ "start": 157.71,
+ "confidence": 0.44,
+ "end": 157.9,
+ "word": "your",
+ "punct": "your",
+ "index": 364
+ },
+ {
+ "start": 157.9,
+ "confidence": 0.3,
+ "end": 158.45,
+ "word": "minds",
+ "punct": "minds",
+ "index": 365
+ },
+ {
+ "start": 159.23,
+ "confidence": 0.77,
+ "end": 159.5,
+ "word": "in",
+ "punct": "in",
+ "index": 366
+ },
+ {
+ "start": 159.53,
+ "confidence": 0.98,
+ "end": 159.68,
+ "word": "the",
+ "punct": "the",
+ "index": 367
+ },
+ {
+ "start": 159.68,
+ "confidence": 0.99,
+ "end": 160.16,
+ "word": "colonel",
+ "punct": "colonel",
+ "index": 368
+ },
+ {
+ "start": 160.16,
+ "confidence": 0.68,
+ "end": 160.34,
+ "word": "was",
+ "punct": "was",
+ "index": 369
+ },
+ {
+ "start": 160.36,
+ "confidence": 1,
+ "end": 160.45,
+ "word": "in",
+ "punct": "in",
+ "index": 370
+ },
+ {
+ "start": 160.45,
+ "confidence": 1,
+ "end": 160.94,
+ "word": "charge",
+ "punct": "charge",
+ "index": 371
+ },
+ {
+ "start": 160.94,
+ "confidence": 1,
+ "end": 161.03,
+ "word": "of",
+ "punct": "of",
+ "index": 372
+ },
+ {
+ "start": 161.03,
+ "confidence": 0.71,
+ "end": 161.19,
+ "word": "this",
+ "punct": "this",
+ "index": 373
+ },
+ {
+ "start": 161.2,
+ "confidence": 1,
+ "end": 161.72,
+ "word": "testing",
+ "punct": "testing",
+ "index": 374
+ },
+ {
+ "start": 161.72,
+ "confidence": 0.89,
+ "end": 162.68,
+ "word": "exercise",
+ "punct": "exercise",
+ "index": 375
+ },
+ {
+ "start": 163.09,
+ "confidence": 0.47,
+ "end": 163.23,
+ "word": "for",
+ "punct": "for",
+ "index": 376
+ },
+ {
+ "start": 163.32,
+ "confidence": 0.99,
+ "end": 163.8,
+ "word": "calling",
+ "punct": "calling",
+ "index": 377
+ },
+ {
+ "start": 163.8,
+ "confidence": 1,
+ "end": 163.9,
+ "word": "it",
+ "punct": "it",
+ "index": 378
+ },
+ {
+ "start": 163.9,
+ "confidence": 1,
+ "end": 164.42,
+ "word": "off",
+ "punct": "off",
+ "index": 379
+ },
+ {
+ "start": 165.19,
+ "confidence": 1,
+ "end": 165.61,
+ "word": "because",
+ "punct": "because",
+ "index": 380
+ },
+ {
+ "start": 165.61,
+ "confidence": 0.97,
+ "end": 165.74,
+ "word": "he",
+ "punct": "he",
+ "index": 381
+ },
+ {
+ "start": 165.74,
+ "confidence": 1,
+ "end": 166.16,
+ "word": "says",
+ "punct": "says",
+ "index": 382
+ },
+ {
+ "start": 166.19,
+ "confidence": 0.95,
+ "end": 166.49,
+ "word": "it's",
+ "punct": "it's",
+ "index": 383
+ },
+ {
+ "start": 166.49,
+ "confidence": 0.87,
+ "end": 166.78,
+ "word": "too",
+ "punct": "too",
+ "index": 384
+ },
+ {
+ "start": 166.78,
+ "confidence": 1,
+ "end": 167.63,
+ "word": "inhumane",
+ "punct": "inhumane",
+ "index": 385
+ },
+ {
+ "start": 167.63,
+ "confidence": 1,
+ "end": 167.82,
+ "word": "to",
+ "punct": "to",
+ "index": 386
+ },
+ {
+ "start": 167.82,
+ "confidence": 1,
+ "end": 168.37,
+ "word": "watch",
+ "punct": "watch",
+ "index": 387
+ },
+ {
+ "start": 168.37,
+ "confidence": 1,
+ "end": 168.6,
+ "word": "this",
+ "punct": "this",
+ "index": 388
+ },
+ {
+ "start": 168.6,
+ "confidence": 0.54,
+ "end": 169.13,
+ "word": "damage",
+ "punct": "damage",
+ "index": 389
+ },
+ {
+ "start": 169.14,
+ "confidence": 0.77,
+ "end": 169.55,
+ "word": "robot",
+ "punct": "robot",
+ "index": 390
+ },
+ {
+ "start": 169.6,
+ "confidence": 0.63,
+ "end": 170.06,
+ "word": "drag",
+ "punct": "drag",
+ "index": 391
+ },
+ {
+ "start": 170.09,
+ "confidence": 0.62,
+ "end": 170.46,
+ "word": "itself",
+ "punct": "itself",
+ "index": 392
+ },
+ {
+ "start": 170.46,
+ "confidence": 1,
+ "end": 170.98,
+ "word": "along",
+ "punct": "along",
+ "index": 393
+ },
+ {
+ "start": 171.34,
+ "confidence": 0.92,
+ "end": 171.43,
+ "word": "the",
+ "punct": "the",
+ "index": 394
+ },
+ {
+ "start": 171.44,
+ "confidence": 0.95,
+ "end": 172.15,
+ "word": "minefield",
+ "punct": "minefield.",
+ "index": 395
+ },
+ {
+ "start": 175.1,
+ "confidence": 1,
+ "end": 175.41,
+ "word": "what",
+ "punct": "What",
+ "index": 396
+ },
+ {
+ "start": 175.41,
+ "confidence": 0.96,
+ "end": 175.54,
+ "word": "would",
+ "punct": "would",
+ "index": 397
+ },
+ {
+ "start": 175.54,
+ "confidence": 0.99,
+ "end": 176.17,
+ "word": "cause",
+ "punct": "cause",
+ "index": 398
+ },
+ {
+ "start": 176.23,
+ "confidence": 0.87,
+ "end": 176.4,
+ "word": "a",
+ "punct": "a",
+ "index": 399
+ },
+ {
+ "start": 176.42,
+ "confidence": 0.93,
+ "end": 176.96,
+ "word": "hardened",
+ "punct": "hardened",
+ "index": 400
+ },
+ {
+ "start": 176.96,
+ "confidence": 0.98,
+ "end": 177.67,
+ "word": "military",
+ "punct": "military",
+ "index": 401
+ },
+ {
+ "start": 177.67,
+ "confidence": 0.99,
+ "end": 178.51,
+ "word": "officer",
+ "punct": "officer",
+ "index": 402
+ },
+ {
+ "start": 178.75,
+ "confidence": 0.38,
+ "end": 178.85,
+ "word": "and",
+ "punct": "and",
+ "index": 403
+ },
+ {
+ "start": 179.04,
+ "confidence": 1,
+ "end": 179.44,
+ "word": "someone",
+ "punct": "someone",
+ "index": 404
+ },
+ {
+ "start": 179.44,
+ "confidence": 1,
+ "end": 179.6,
+ "word": "like",
+ "punct": "like",
+ "index": 405
+ },
+ {
+ "start": 179.6,
+ "confidence": 1,
+ "end": 180.33,
+ "word": "myself",
+ "punct": "myself",
+ "index": 406
+ },
+ {
+ "start": 180.95,
+ "confidence": 1,
+ "end": 181.1,
+ "word": "to",
+ "punct": "to",
+ "index": 407
+ },
+ {
+ "start": 181.1,
+ "confidence": 1,
+ "end": 181.29,
+ "word": "have",
+ "punct": "have",
+ "index": 408
+ },
+ {
+ "start": 181.29,
+ "confidence": 1,
+ "end": 181.44,
+ "word": "this",
+ "punct": "this",
+ "index": 409
+ },
+ {
+ "start": 181.44,
+ "confidence": 1,
+ "end": 181.94,
+ "word": "response",
+ "punct": "response",
+ "index": 410
+ },
+ {
+ "start": 181.94,
+ "confidence": 0.98,
+ "end": 182.07,
+ "word": "to",
+ "punct": "to",
+ "index": 411
+ },
+ {
+ "start": 182.07,
+ "confidence": 0.83,
+ "end": 182.25,
+ "word": "row",
+ "punct": "row.",
+ "index": 412
+ },
+ {
+ "start": 182.25,
+ "confidence": 1,
+ "end": 182.77,
+ "word": "but",
+ "punct": "But",
+ "index": 413
+ },
+ {
+ "start": 183.53,
+ "confidence": 1,
+ "end": 183.99,
+ "word": "what",
+ "punct": "what.",
+ "index": 414
+ },
+ {
+ "start": 184.07,
+ "confidence": 1,
+ "end": 184.22,
+ "word": "of",
+ "punct": "Of",
+ "index": 415
+ },
+ {
+ "start": 184.22,
+ "confidence": 1,
+ "end": 184.51,
+ "word": "course",
+ "punct": "course",
+ "index": 416
+ },
+ {
+ "start": 184.51,
+ "confidence": 0.85,
+ "end": 184.62,
+ "word": "for",
+ "punct": "for",
+ "index": 417
+ },
+ {
+ "start": 184.62,
+ "confidence": 0.34,
+ "end": 185.08,
+ "word": "prime",
+ "punct": "prime",
+ "index": 418
+ },
+ {
+ "start": 185.2,
+ "confidence": 0.51,
+ "end": 185.35,
+ "word": "for",
+ "punct": "for",
+ "index": 419
+ },
+ {
+ "start": 185.35,
+ "confidence": 1,
+ "end": 185.78,
+ "word": "science",
+ "punct": "science",
+ "index": 420
+ },
+ {
+ "start": 185.78,
+ "confidence": 1,
+ "end": 186.09,
+ "word": "fiction",
+ "punct": "fiction,",
+ "index": 421
+ },
+ {
+ "start": 186.09,
+ "confidence": 1,
+ "end": 186.44,
+ "word": "pop",
+ "punct": "pop",
+ "index": 422
+ },
+ {
+ "start": 186.44,
+ "confidence": 0.98,
+ "end": 186.87,
+ "word": "culture",
+ "punct": "culture",
+ "index": 423
+ },
+ {
+ "start": 186.91,
+ "confidence": 0.95,
+ "end": 187.17,
+ "word": "really",
+ "punct": "really",
+ "index": 424
+ },
+ {
+ "start": 187.17,
+ "confidence": 0.57,
+ "end": 187.27,
+ "word": "want",
+ "punct": "want",
+ "index": 425
+ },
+ {
+ "start": 187.27,
+ "confidence": 0.59,
+ "end": 187.38,
+ "word": "to",
+ "punct": "to",
+ "index": 426
+ },
+ {
+ "start": 187.38,
+ "confidence": 0.77,
+ "end": 188.05,
+ "word": "personify",
+ "punct": "personify",
+ "index": 427
+ },
+ {
+ "start": 188.05,
+ "confidence": 0.68,
+ "end": 188.28,
+ "word": "these",
+ "punct": "these",
+ "index": 428
+ },
+ {
+ "start": 188.29,
+ "confidence": 1,
+ "end": 188.94,
+ "word": "things",
+ "punct": "things,",
+ "index": 429
+ },
+ {
+ "start": 189.45,
+ "confidence": 0.92,
+ "end": 189.72,
+ "word": "but",
+ "punct": "but",
+ "index": 430
+ },
+ {
+ "start": 189.74,
+ "confidence": 0.86,
+ "end": 189.87,
+ "word": "it",
+ "punct": "it",
+ "index": 431
+ },
+ {
+ "start": 189.88,
+ "confidence": 0.84,
+ "end": 190.07,
+ "word": "goes",
+ "punct": "goes",
+ "index": 432
+ },
+ {
+ "start": 190.07,
+ "confidence": 1,
+ "end": 190.15,
+ "word": "a",
+ "punct": "a",
+ "index": 433
+ },
+ {
+ "start": 190.15,
+ "confidence": 0.95,
+ "end": 190.34,
+ "word": "little",
+ "punct": "little",
+ "index": 434
+ },
+ {
+ "start": 190.34,
+ "confidence": 1,
+ "end": 190.48,
+ "word": "bit",
+ "punct": "bit",
+ "index": 435
+ },
+ {
+ "start": 190.48,
+ "confidence": 1,
+ "end": 190.8,
+ "word": "deeper",
+ "punct": "deeper",
+ "index": 436
+ },
+ {
+ "start": 190.8,
+ "confidence": 1,
+ "end": 190.94,
+ "word": "than",
+ "punct": "than",
+ "index": 437
+ },
+ {
+ "start": 190.94,
+ "confidence": 1,
+ "end": 191.27,
+ "word": "that",
+ "punct": "that",
+ "index": 438
+ },
+ {
+ "start": 192.25,
+ "confidence": 1,
+ "end": 192.38,
+ "word": "it",
+ "punct": "it",
+ "index": 439
+ },
+ {
+ "start": 192.38,
+ "confidence": 0.97,
+ "end": 192.7,
+ "word": "turns",
+ "punct": "turns",
+ "index": 440
+ },
+ {
+ "start": 192.7,
+ "confidence": 1,
+ "end": 192.81,
+ "word": "out",
+ "punct": "out",
+ "index": 441
+ },
+ {
+ "start": 192.81,
+ "confidence": 1,
+ "end": 192.95,
+ "word": "that",
+ "punct": "that",
+ "index": 442
+ },
+ {
+ "start": 192.95,
+ "confidence": 1,
+ "end": 193.03,
+ "word": "we",
+ "punct": "we",
+ "index": 443
+ },
+ {
+ "start": 193.03,
+ "confidence": 1,
+ "end": 193.08,
+ "word": "are",
+ "punct": "are",
+ "index": 444
+ },
+ {
+ "start": 193.08,
+ "confidence": 1,
+ "end": 193.95,
+ "word": "biologically",
+ "punct": "biologically",
+ "index": 445
+ },
+ {
+ "start": 193.95,
+ "confidence": 1,
+ "end": 194.49,
+ "word": "hard",
+ "punct": "hard",
+ "index": 446
+ },
+ {
+ "start": 194.49,
+ "confidence": 1,
+ "end": 194.96,
+ "word": "wired",
+ "punct": "wired",
+ "index": 447
+ },
+ {
+ "start": 194.96,
+ "confidence": 1,
+ "end": 195.09,
+ "word": "to",
+ "punct": "to",
+ "index": 448
+ },
+ {
+ "start": 195.09,
+ "confidence": 1,
+ "end": 195.84,
+ "word": "project",
+ "punct": "project",
+ "index": 449
+ },
+ {
+ "start": 196.1,
+ "confidence": 0.99,
+ "end": 196.89,
+ "word": "intent",
+ "punct": "intent",
+ "index": 450
+ },
+ {
+ "start": 196.92,
+ "confidence": 0.96,
+ "end": 197.17,
+ "word": "and",
+ "punct": "and",
+ "index": 451
+ },
+ {
+ "start": 197.19,
+ "confidence": 0.72,
+ "end": 197.63,
+ "word": "life",
+ "punct": "life",
+ "index": 452
+ },
+ {
+ "start": 197.69,
+ "confidence": 0.45,
+ "end": 198.27,
+ "word": "onto",
+ "punct": "onto",
+ "index": 453
+ },
+ {
+ "start": 198.58,
+ "confidence": 0.98,
+ "end": 198.81,
+ "word": "any",
+ "punct": "any",
+ "index": 454
+ },
+ {
+ "start": 198.81,
+ "confidence": 1,
+ "end": 199.38,
+ "word": "movement",
+ "punct": "movement",
+ "index": 455
+ },
+ {
+ "start": 199.38,
+ "confidence": 0.91,
+ "end": 199.49,
+ "word": "in",
+ "punct": "in",
+ "index": 456
+ },
+ {
+ "start": 199.49,
+ "confidence": 0.87,
+ "end": 199.57,
+ "word": "a",
+ "punct": "a",
+ "index": 457
+ },
+ {
+ "start": 199.58,
+ "confidence": 1,
+ "end": 200.12,
+ "word": "physical",
+ "punct": "physical",
+ "index": 458
+ },
+ {
+ "start": 200.12,
+ "confidence": 1,
+ "end": 200.52,
+ "word": "space",
+ "punct": "space.",
+ "index": 459
+ },
+ {
+ "start": 200.52,
+ "confidence": 0.99,
+ "end": 200.68,
+ "word": "it",
+ "punct": "It",
+ "index": 460
+ },
+ {
+ "start": 200.68,
+ "confidence": 1,
+ "end": 201.15,
+ "word": "seems",
+ "punct": "seems",
+ "index": 461
+ },
+ {
+ "start": 201.15,
+ "confidence": 0.58,
+ "end": 201.23,
+ "word": "i",
+ "punct": "I",
+ "index": 462
+ },
+ {
+ "start": 201.28,
+ "confidence": 0.57,
+ "end": 201.86,
+ "word": "promised",
+ "punct": "promised",
+ "index": 463
+ },
+ {
+ "start": 201.92,
+ "confidence": 0.89,
+ "end": 202.37,
+ "word": "us",
+ "punct": "us",
+ "index": 464
+ },
+ {
+ "start": 202.96,
+ "confidence": 0.4,
+ "end": 203.14,
+ "word": "some",
+ "punct": "some",
+ "index": 465
+ },
+ {
+ "start": 203.37,
+ "confidence": 1,
+ "end": 203.74,
+ "word": "people",
+ "punct": "people",
+ "index": 466
+ },
+ {
+ "start": 203.75,
+ "confidence": 1,
+ "end": 204,
+ "word": "treat",
+ "punct": "treat",
+ "index": 467
+ },
+ {
+ "start": 204.03,
+ "confidence": 0.98,
+ "end": 204.23,
+ "word": "all",
+ "punct": "all",
+ "index": 468
+ },
+ {
+ "start": 204.23,
+ "confidence": 0.66,
+ "end": 204.47,
+ "word": "sort",
+ "punct": "sort",
+ "index": 469
+ },
+ {
+ "start": 204.47,
+ "confidence": 0.99,
+ "end": 204.59,
+ "word": "of",
+ "punct": "of",
+ "index": 470
+ },
+ {
+ "start": 204.59,
+ "confidence": 0.97,
+ "end": 204.95,
+ "word": "robots",
+ "punct": "robots",
+ "index": 471
+ },
+ {
+ "start": 204.95,
+ "confidence": 0.99,
+ "end": 205.13,
+ "word": "like",
+ "punct": "like",
+ "index": 472
+ },
+ {
+ "start": 205.13,
+ "confidence": 0.68,
+ "end": 205.3,
+ "word": "their",
+ "punct": "their",
+ "index": 473
+ },
+ {
+ "start": 205.31,
+ "confidence": 0.99,
+ "end": 205.86,
+ "word": "life",
+ "punct": "life.",
+ "index": 474
+ },
+ {
+ "start": 206.65,
+ "confidence": 0.92,
+ "end": 206.9,
+ "word": "these",
+ "punct": "These",
+ "index": 475
+ },
+ {
+ "start": 206.93,
+ "confidence": 1,
+ "end": 207.25,
+ "word": "bomb",
+ "punct": "bomb",
+ "index": 476
+ },
+ {
+ "start": 207.25,
+ "confidence": 1,
+ "end": 208.02,
+ "word": "disposal",
+ "punct": "disposal",
+ "index": 477
+ },
+ {
+ "start": 208.05,
+ "confidence": 0.59,
+ "end": 208.58,
+ "word": "units",
+ "punct": "units",
+ "index": 478
+ },
+ {
+ "start": 208.58,
+ "confidence": 0.99,
+ "end": 208.77,
+ "word": "get",
+ "punct": "get",
+ "index": 479
+ },
+ {
+ "start": 208.77,
+ "confidence": 0.94,
+ "end": 209.4,
+ "word": "names",
+ "punct": "names.",
+ "index": 480
+ },
+ {
+ "start": 209.44,
+ "confidence": 0.97,
+ "end": 209.54,
+ "word": "they",
+ "punct": "They",
+ "index": 481
+ },
+ {
+ "start": 209.54,
+ "confidence": 1,
+ "end": 209.73,
+ "word": "get",
+ "punct": "get",
+ "index": 482
+ },
+ {
+ "start": 209.73,
+ "confidence": 1,
+ "end": 210.18,
+ "word": "medals",
+ "punct": "medals",
+ "index": 483
+ },
+ {
+ "start": 210.18,
+ "confidence": 1,
+ "end": 210.27,
+ "word": "of",
+ "punct": "of",
+ "index": 484
+ },
+ {
+ "start": 210.27,
+ "confidence": 1,
+ "end": 210.67,
+ "word": "honour",
+ "punct": "honour",
+ "index": 485
+ },
+ {
+ "start": 211.13,
+ "confidence": 0.97,
+ "end": 211.4,
+ "word": "had",
+ "punct": "had",
+ "index": 486
+ },
+ {
+ "start": 211.4,
+ "confidence": 0.58,
+ "end": 211.97,
+ "word": "funeral",
+ "punct": "funeral",
+ "index": 487
+ },
+ {
+ "start": 211.98,
+ "confidence": 0.43,
+ "end": 212.18,
+ "word": "for",
+ "punct": "for",
+ "index": 488
+ },
+ {
+ "start": 212.19,
+ "confidence": 0.87,
+ "end": 212.37,
+ "word": "them",
+ "punct": "them",
+ "index": 489
+ },
+ {
+ "start": 212.37,
+ "confidence": 0.74,
+ "end": 212.49,
+ "word": "with",
+ "punct": "with",
+ "index": 490
+ },
+ {
+ "start": 212.52,
+ "confidence": 0.9,
+ "end": 212.79,
+ "word": "gun",
+ "punct": "gun",
+ "index": 491
+ },
+ {
+ "start": 212.78,
+ "confidence": 0.57,
+ "end": 213.28,
+ "word": "salutes",
+ "punct": "salutes.",
+ "index": 492
+ },
+ {
+ "start": 214.85,
+ "confidence": 0.53,
+ "end": 215.08,
+ "word": "research",
+ "punct": "Research",
+ "index": 493
+ },
+ {
+ "start": 215.16,
+ "confidence": 0.52,
+ "end": 215.53,
+ "word": "shows",
+ "punct": "shows",
+ "index": 494
+ },
+ {
+ "start": 215.55,
+ "confidence": 0.67,
+ "end": 215.67,
+ "word": "that",
+ "punct": "that",
+ "index": 495
+ },
+ {
+ "start": 215.67,
+ "confidence": 0.98,
+ "end": 215.76,
+ "word": "we",
+ "punct": "we",
+ "index": 496
+ },
+ {
+ "start": 215.76,
+ "confidence": 0.95,
+ "end": 215.88,
+ "word": "do",
+ "punct": "do",
+ "index": 497
+ },
+ {
+ "start": 215.88,
+ "confidence": 1,
+ "end": 216.06,
+ "word": "this",
+ "punct": "this.",
+ "index": 498
+ },
+ {
+ "start": 216.09,
+ "confidence": 0.97,
+ "end": 216.33,
+ "word": "even",
+ "punct": "Even",
+ "index": 499
+ },
+ {
+ "start": 216.33,
+ "confidence": 1,
+ "end": 216.49,
+ "word": "with",
+ "punct": "with",
+ "index": 500
+ },
+ {
+ "start": 216.5,
+ "confidence": 1,
+ "end": 216.8,
+ "word": "very",
+ "punct": "very",
+ "index": 501
+ },
+ {
+ "start": 216.8,
+ "confidence": 1,
+ "end": 217.22,
+ "word": "simple",
+ "punct": "simple",
+ "index": 502
+ },
+ {
+ "start": 217.22,
+ "confidence": 1,
+ "end": 217.77,
+ "word": "household",
+ "punct": "household",
+ "index": 503
+ },
+ {
+ "start": 217.77,
+ "confidence": 0.98,
+ "end": 218.27,
+ "word": "robots",
+ "punct": "robots",
+ "index": 504
+ },
+ {
+ "start": 218.27,
+ "confidence": 1,
+ "end": 218.57,
+ "word": "like",
+ "punct": "like",
+ "index": 505
+ },
+ {
+ "start": 218.84,
+ "confidence": 0.97,
+ "end": 219.02,
+ "word": "the",
+ "punct": "the",
+ "index": 506
+ },
+ {
+ "start": 219.02,
+ "confidence": 0.95,
+ "end": 219.3,
+ "word": "room",
+ "punct": "room.",
+ "index": 507
+ },
+ {
+ "start": 219.3,
+ "confidence": 0.68,
+ "end": 219.4,
+ "word": "a",
+ "punct": "A",
+ "index": 508
+ },
+ {
+ "start": 219.4,
+ "confidence": 1,
+ "end": 219.85,
+ "word": "vacuum",
+ "punct": "vacuum",
+ "index": 509
+ },
+ {
+ "start": 219.85,
+ "confidence": 1,
+ "end": 220.31,
+ "word": "cleaner",
+ "punct": "cleaner.",
+ "index": 510
+ },
+ {
+ "start": 221.68,
+ "confidence": 1,
+ "end": 221.94,
+ "word": "just",
+ "punct": "Just",
+ "index": 511
+ },
+ {
+ "start": 221.94,
+ "confidence": 0.88,
+ "end": 222,
+ "word": "a",
+ "punct": "a",
+ "index": 512
+ },
+ {
+ "start": 222,
+ "confidence": 0.54,
+ "end": 222.53,
+ "word": "desk",
+ "punct": "desk",
+ "index": 513
+ },
+ {
+ "start": 222.53,
+ "confidence": 1,
+ "end": 222.69,
+ "word": "that",
+ "punct": "that",
+ "index": 514
+ },
+ {
+ "start": 222.69,
+ "confidence": 0.98,
+ "end": 222.99,
+ "word": "runs",
+ "punct": "runs",
+ "index": 515
+ },
+ {
+ "start": 222.99,
+ "confidence": 1,
+ "end": 223.28,
+ "word": "around",
+ "punct": "around",
+ "index": 516
+ },
+ {
+ "start": 223.28,
+ "confidence": 0.88,
+ "end": 223.36,
+ "word": "the",
+ "punct": "the",
+ "index": 517
+ },
+ {
+ "start": 223.36,
+ "confidence": 0.9,
+ "end": 223.74,
+ "word": "floor",
+ "punct": "floor",
+ "index": 518
+ },
+ {
+ "start": 223.74,
+ "confidence": 0.49,
+ "end": 223.83,
+ "word": "and",
+ "punct": "and",
+ "index": 519
+ },
+ {
+ "start": 223.86,
+ "confidence": 1,
+ "end": 224.23,
+ "word": "clean",
+ "punct": "clean",
+ "index": 520
+ },
+ {
+ "start": 224.23,
+ "confidence": 1,
+ "end": 224.46,
+ "word": "it",
+ "punct": "it",
+ "index": 521
+ },
+ {
+ "start": 224.83,
+ "confidence": 0.64,
+ "end": 225,
+ "word": "just",
+ "punct": "just",
+ "index": 522
+ },
+ {
+ "start": 225.02,
+ "confidence": 1,
+ "end": 225.1,
+ "word": "the",
+ "punct": "the",
+ "index": 523
+ },
+ {
+ "start": 225.1,
+ "confidence": 1,
+ "end": 225.45,
+ "word": "fact",
+ "punct": "fact",
+ "index": 524
+ },
+ {
+ "start": 225.45,
+ "confidence": 0.96,
+ "end": 225.57,
+ "word": "that",
+ "punct": "that",
+ "index": 525
+ },
+ {
+ "start": 225.57,
+ "confidence": 0.94,
+ "end": 225.75,
+ "word": "it's",
+ "punct": "it's",
+ "index": 526
+ },
+ {
+ "start": 225.75,
+ "confidence": 1,
+ "end": 226.23,
+ "word": "moving",
+ "punct": "moving",
+ "index": 527
+ },
+ {
+ "start": 226.23,
+ "confidence": 1,
+ "end": 226.56,
+ "word": "around",
+ "punct": "around",
+ "index": 528
+ },
+ {
+ "start": 226.56,
+ "confidence": 1,
+ "end": 226.67,
+ "word": "on",
+ "punct": "on",
+ "index": 529
+ },
+ {
+ "start": 226.67,
+ "confidence": 0.93,
+ "end": 226.81,
+ "word": "his",
+ "punct": "his",
+ "index": 530
+ },
+ {
+ "start": 226.84,
+ "confidence": 1,
+ "end": 227.12,
+ "word": "own",
+ "punct": "own",
+ "index": 531
+ },
+ {
+ "start": 227.12,
+ "confidence": 0.81,
+ "end": 227.21,
+ "word": "will",
+ "punct": "will",
+ "index": 532
+ },
+ {
+ "start": 227.21,
+ "confidence": 0.98,
+ "end": 227.56,
+ "word": "cause",
+ "punct": "cause",
+ "index": 533
+ },
+ {
+ "start": 227.56,
+ "confidence": 1,
+ "end": 227.8,
+ "word": "people",
+ "punct": "people",
+ "index": 534
+ },
+ {
+ "start": 227.8,
+ "confidence": 1,
+ "end": 227.97,
+ "word": "to",
+ "punct": "to",
+ "index": 535
+ },
+ {
+ "start": 227.97,
+ "confidence": 1,
+ "end": 228.43,
+ "word": "name",
+ "punct": "name",
+ "index": 536
+ },
+ {
+ "start": 228.43,
+ "confidence": 0.65,
+ "end": 228.62,
+ "word": "the",
+ "punct": "the",
+ "index": 537
+ },
+ {
+ "start": 228.62,
+ "confidence": 0.61,
+ "end": 229.02,
+ "word": "marimba",
+ "punct": "marimba",
+ "index": 538
+ },
+ {
+ "start": 229.27,
+ "confidence": 0.78,
+ "end": 229.42,
+ "word": "and",
+ "punct": "and",
+ "index": 539
+ },
+ {
+ "start": 229.47,
+ "confidence": 1,
+ "end": 229.7,
+ "word": "feel",
+ "punct": "feel",
+ "index": 540
+ },
+ {
+ "start": 229.7,
+ "confidence": 1,
+ "end": 230.13,
+ "word": "bad",
+ "punct": "bad",
+ "index": 541
+ },
+ {
+ "start": 230.13,
+ "confidence": 1,
+ "end": 230.29,
+ "word": "for",
+ "punct": "for",
+ "index": 542
+ },
+ {
+ "start": 230.29,
+ "confidence": 0.98,
+ "end": 230.4,
+ "word": "the",
+ "punct": "the",
+ "index": 543
+ },
+ {
+ "start": 230.4,
+ "confidence": 0.95,
+ "end": 230.62,
+ "word": "room",
+ "punct": "room.",
+ "index": 544
+ },
+ {
+ "start": 230.61,
+ "confidence": 0.64,
+ "end": 230.74,
+ "word": "but",
+ "punct": "But",
+ "index": 545
+ },
+ {
+ "start": 230.75,
+ "confidence": 0.76,
+ "end": 230.85,
+ "word": "when",
+ "punct": "when",
+ "index": 546
+ },
+ {
+ "start": 230.85,
+ "confidence": 0.47,
+ "end": 230.91,
+ "word": "he",
+ "punct": "he",
+ "index": 547
+ },
+ {
+ "start": 230.92,
+ "confidence": 0.67,
+ "end": 231.12,
+ "word": "gets",
+ "punct": "gets",
+ "index": 548
+ },
+ {
+ "start": 231.12,
+ "confidence": 1,
+ "end": 231.45,
+ "word": "stuck",
+ "punct": "stuck",
+ "index": 549
+ },
+ {
+ "start": 231.44,
+ "confidence": 0.68,
+ "end": 231.62,
+ "word": "under",
+ "punct": "under",
+ "index": 550
+ },
+ {
+ "start": 231.63,
+ "confidence": 0.99,
+ "end": 231.73,
+ "word": "the",
+ "punct": "the",
+ "index": 551
+ },
+ {
+ "start": 231.73,
+ "confidence": 1,
+ "end": 232.57,
+ "word": "couch",
+ "punct": "couch.",
+ "index": 552
+ },
+ {
+ "start": 234.54,
+ "confidence": 1,
+ "end": 234.71,
+ "word": "we",
+ "punct": "We",
+ "index": 553
+ },
+ {
+ "start": 234.71,
+ "confidence": 1,
+ "end": 234.86,
+ "word": "can",
+ "punct": "can",
+ "index": 554
+ },
+ {
+ "start": 234.86,
+ "confidence": 0.8,
+ "end": 235.36,
+ "word": "design",
+ "punct": "design",
+ "index": 555
+ },
+ {
+ "start": 235.38,
+ "confidence": 1,
+ "end": 235.67,
+ "word": "about",
+ "punct": "about",
+ "index": 556
+ },
+ {
+ "start": 235.67,
+ "confidence": 1,
+ "end": 236.49,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 557
+ },
+ {
+ "start": 236.49,
+ "confidence": 1,
+ "end": 236.66,
+ "word": "to",
+ "punct": "to",
+ "index": 558
+ },
+ {
+ "start": 236.66,
+ "confidence": 0.72,
+ "end": 236.96,
+ "word": "invoke",
+ "punct": "invoke",
+ "index": 559
+ },
+ {
+ "start": 237,
+ "confidence": 1,
+ "end": 237.21,
+ "word": "this",
+ "punct": "this",
+ "index": 560
+ },
+ {
+ "start": 237.21,
+ "confidence": 1,
+ "end": 237.78,
+ "word": "response",
+ "punct": "response",
+ "index": 561
+ },
+ {
+ "start": 237.78,
+ "confidence": 1,
+ "end": 238.15,
+ "word": "using",
+ "punct": "using",
+ "index": 562
+ },
+ {
+ "start": 238.24,
+ "confidence": 1,
+ "end": 238.91,
+ "word": "eyes",
+ "punct": "eyes",
+ "index": 563
+ },
+ {
+ "start": 239.16,
+ "confidence": 0.95,
+ "end": 239.33,
+ "word": "and",
+ "punct": "and",
+ "index": 564
+ },
+ {
+ "start": 239.34,
+ "confidence": 1,
+ "end": 240.23,
+ "word": "faces",
+ "punct": "faces",
+ "index": 565
+ },
+ {
+ "start": 240.44,
+ "confidence": 0.36,
+ "end": 240.62,
+ "word": "were",
+ "punct": "were",
+ "index": 566
+ },
+ {
+ "start": 240.66,
+ "confidence": 0.92,
+ "end": 241.28,
+ "word": "movement",
+ "punct": "movement.",
+ "index": 567
+ },
+ {
+ "start": 241.32,
+ "confidence": 1,
+ "end": 241.71,
+ "word": "people",
+ "punct": "People",
+ "index": 568
+ },
+ {
+ "start": 241.74,
+ "confidence": 0.96,
+ "end": 241.97,
+ "word": "are",
+ "punct": "are",
+ "index": 569
+ },
+ {
+ "start": 241.97,
+ "confidence": 1,
+ "end": 242.53,
+ "word": "magically",
+ "punct": "magically",
+ "index": 570
+ },
+ {
+ "start": 242.53,
+ "confidence": 0.95,
+ "end": 243.47,
+ "word": "subconsciously",
+ "punct": "subconsciously",
+ "index": 571
+ },
+ {
+ "start": 243.48,
+ "confidence": 0.84,
+ "end": 244.36,
+ "word": "associate",
+ "punct": "associate",
+ "index": 572
+ },
+ {
+ "start": 244.56,
+ "confidence": 0.92,
+ "end": 244.72,
+ "word": "with",
+ "punct": "with",
+ "index": 573
+ },
+ {
+ "start": 244.73,
+ "confidence": 0.96,
+ "end": 245.08,
+ "word": "state",
+ "punct": "state",
+ "index": 574
+ },
+ {
+ "start": 245.08,
+ "confidence": 1,
+ "end": 245.17,
+ "word": "of",
+ "punct": "of",
+ "index": 575
+ },
+ {
+ "start": 245.17,
+ "confidence": 1,
+ "end": 245.86,
+ "word": "mind",
+ "punct": "mind.",
+ "index": 576
+ },
+ {
+ "start": 246.58,
+ "confidence": 0.45,
+ "end": 246.77,
+ "word": "there's",
+ "punct": "There's",
+ "index": 577
+ },
+ {
+ "start": 246.83,
+ "confidence": 0.77,
+ "end": 246.94,
+ "word": "an",
+ "punct": "an",
+ "index": 578
+ },
+ {
+ "start": 246.94,
+ "confidence": 1,
+ "end": 247.36,
+ "word": "entire",
+ "punct": "entire",
+ "index": 579
+ },
+ {
+ "start": 247.36,
+ "confidence": 1,
+ "end": 247.58,
+ "word": "body",
+ "punct": "body",
+ "index": 580
+ },
+ {
+ "start": 247.58,
+ "confidence": 0.96,
+ "end": 247.69,
+ "word": "of",
+ "punct": "of",
+ "index": 581
+ },
+ {
+ "start": 247.69,
+ "confidence": 1,
+ "end": 248.1,
+ "word": "research",
+ "punct": "research",
+ "index": 582
+ },
+ {
+ "start": 248.11,
+ "confidence": 0.3,
+ "end": 248.35,
+ "word": "called",
+ "punct": "called",
+ "index": 583
+ },
+ {
+ "start": 248.34,
+ "confidence": 0.91,
+ "end": 248.58,
+ "word": "human",
+ "punct": "Human",
+ "index": 584
+ },
+ {
+ "start": 248.59,
+ "confidence": 0.88,
+ "end": 248.86,
+ "word": "robot",
+ "punct": "robot",
+ "index": 585
+ },
+ {
+ "start": 248.87,
+ "confidence": 0.88,
+ "end": 249.34,
+ "word": "interaction",
+ "punct": "interaction",
+ "index": 586
+ },
+ {
+ "start": 249.36,
+ "confidence": 0.95,
+ "end": 249.59,
+ "word": "that",
+ "punct": "that",
+ "index": 587
+ },
+ {
+ "start": 249.66,
+ "confidence": 1,
+ "end": 249.92,
+ "word": "really",
+ "punct": "really",
+ "index": 588
+ },
+ {
+ "start": 249.92,
+ "confidence": 1,
+ "end": 250.4,
+ "word": "shows",
+ "punct": "shows",
+ "index": 589
+ },
+ {
+ "start": 250.4,
+ "confidence": 1,
+ "end": 250.61,
+ "word": "how",
+ "punct": "how",
+ "index": 590
+ },
+ {
+ "start": 250.61,
+ "confidence": 0.65,
+ "end": 250.7,
+ "word": "all",
+ "punct": "all",
+ "index": 591
+ },
+ {
+ "start": 250.7,
+ "confidence": 1,
+ "end": 250.89,
+ "word": "this",
+ "punct": "this",
+ "index": 592
+ },
+ {
+ "start": 250.89,
+ "confidence": 1,
+ "end": 251.33,
+ "word": "works",
+ "punct": "works",
+ "index": 593
+ },
+ {
+ "start": 251.65,
+ "confidence": 1,
+ "end": 251.88,
+ "word": "so",
+ "punct": "so.",
+ "index": 594
+ },
+ {
+ "start": 251.88,
+ "confidence": 1,
+ "end": 252.01,
+ "word": "for",
+ "punct": "For",
+ "index": 595
+ },
+ {
+ "start": 252.01,
+ "confidence": 1,
+ "end": 252.58,
+ "word": "example",
+ "punct": "example.",
+ "index": 596
+ },
+ {
+ "start": 252.58,
+ "confidence": 1,
+ "end": 253.13,
+ "word": "researchers",
+ "punct": "Researchers",
+ "index": 597
+ },
+ {
+ "start": 253.13,
+ "confidence": 1,
+ "end": 253.38,
+ "word": "at",
+ "punct": "at",
+ "index": 598
+ },
+ {
+ "start": 253.44,
+ "confidence": 0.57,
+ "end": 253.98,
+ "word": "stamford",
+ "punct": "Stamford",
+ "index": 599
+ },
+ {
+ "start": 253.98,
+ "confidence": 1,
+ "end": 254.48,
+ "word": "university",
+ "punct": "University",
+ "index": 600
+ },
+ {
+ "start": 254.48,
+ "confidence": 1,
+ "end": 254.77,
+ "word": "found",
+ "punct": "found",
+ "index": 601
+ },
+ {
+ "start": 254.77,
+ "confidence": 1,
+ "end": 254.94,
+ "word": "out",
+ "punct": "out",
+ "index": 602
+ },
+ {
+ "start": 254.94,
+ "confidence": 0.93,
+ "end": 255.08,
+ "word": "that",
+ "punct": "that",
+ "index": 603
+ },
+ {
+ "start": 255.1,
+ "confidence": 0.98,
+ "end": 255.32,
+ "word": "makes",
+ "punct": "makes",
+ "index": 604
+ },
+ {
+ "start": 255.32,
+ "confidence": 1,
+ "end": 255.66,
+ "word": "people",
+ "punct": "people",
+ "index": 605
+ },
+ {
+ "start": 255.66,
+ "confidence": 1,
+ "end": 255.92,
+ "word": "really",
+ "punct": "really",
+ "index": 606
+ },
+ {
+ "start": 255.92,
+ "confidence": 1,
+ "end": 256.6,
+ "word": "uncomfortable",
+ "punct": "uncomfortable",
+ "index": 607
+ },
+ {
+ "start": 256.63,
+ "confidence": 0.74,
+ "end": 256.76,
+ "word": "and",
+ "punct": "and",
+ "index": 608
+ },
+ {
+ "start": 256.79,
+ "confidence": 0.53,
+ "end": 257.05,
+ "word": "asked",
+ "punct": "asked",
+ "index": 609
+ },
+ {
+ "start": 257.05,
+ "confidence": 0.83,
+ "end": 257.17,
+ "word": "them",
+ "punct": "them",
+ "index": 610
+ },
+ {
+ "start": 257.17,
+ "confidence": 1,
+ "end": 257.27,
+ "word": "to",
+ "punct": "to",
+ "index": 611
+ },
+ {
+ "start": 257.27,
+ "confidence": 1,
+ "end": 257.54,
+ "word": "touch",
+ "punct": "touch",
+ "index": 612
+ },
+ {
+ "start": 257.54,
+ "confidence": 0.73,
+ "end": 257.66,
+ "word": "her",
+ "punct": "her",
+ "index": 613
+ },
+ {
+ "start": 257.66,
+ "confidence": 0.9,
+ "end": 257.87,
+ "word": "about",
+ "punct": "about",
+ "index": 614
+ },
+ {
+ "start": 257.86,
+ "confidence": 0.69,
+ "end": 257.95,
+ "word": "his",
+ "punct": "his",
+ "index": 615
+ },
+ {
+ "start": 257.96,
+ "confidence": 1,
+ "end": 258.37,
+ "word": "private",
+ "punct": "private",
+ "index": 616
+ },
+ {
+ "start": 258.37,
+ "confidence": 1,
+ "end": 258.94,
+ "word": "parts",
+ "punct": "parts",
+ "index": 617
+ },
+ {
+ "start": 261.63,
+ "confidence": 1,
+ "end": 261.93,
+ "word": "from",
+ "punct": "from",
+ "index": 618
+ },
+ {
+ "start": 261.93,
+ "confidence": 1,
+ "end": 262.11,
+ "word": "this",
+ "punct": "this",
+ "index": 619
+ },
+ {
+ "start": 262.18,
+ "confidence": 0.78,
+ "end": 262.48,
+ "word": "from",
+ "punct": "from",
+ "index": 620
+ },
+ {
+ "start": 262.48,
+ "confidence": 0.59,
+ "end": 262.71,
+ "word": "any",
+ "punct": "any",
+ "index": 621
+ },
+ {
+ "start": 262.8,
+ "confidence": 1,
+ "end": 262.99,
+ "word": "other",
+ "punct": "other",
+ "index": 622
+ },
+ {
+ "start": 262.99,
+ "confidence": 0.8,
+ "end": 263.39,
+ "word": "studies",
+ "punct": "studies.",
+ "index": 623
+ },
+ {
+ "start": 263.39,
+ "confidence": 1,
+ "end": 263.55,
+ "word": "we",
+ "punct": "We",
+ "index": 624
+ },
+ {
+ "start": 263.55,
+ "confidence": 0.66,
+ "end": 264.09,
+ "word": "know",
+ "punct": "know.",
+ "index": 625
+ },
+ {
+ "start": 264.48,
+ "confidence": 1,
+ "end": 264.67,
+ "word": "we",
+ "punct": "We",
+ "index": 626
+ },
+ {
+ "start": 264.67,
+ "confidence": 1,
+ "end": 265.1,
+ "word": "know",
+ "punct": "know",
+ "index": 627
+ },
+ {
+ "start": 265.1,
+ "confidence": 0.79,
+ "end": 265.25,
+ "word": "that",
+ "punct": "that",
+ "index": 628
+ },
+ {
+ "start": 265.25,
+ "confidence": 1,
+ "end": 265.79,
+ "word": "people",
+ "punct": "people",
+ "index": 629
+ },
+ {
+ "start": 265.79,
+ "confidence": 1,
+ "end": 266.42,
+ "word": "respond",
+ "punct": "respond",
+ "index": 630
+ },
+ {
+ "start": 266.42,
+ "confidence": 1,
+ "end": 266.52,
+ "word": "to",
+ "punct": "to",
+ "index": 631
+ },
+ {
+ "start": 266.52,
+ "confidence": 1,
+ "end": 266.65,
+ "word": "the",
+ "punct": "the",
+ "index": 632
+ },
+ {
+ "start": 266.65,
+ "confidence": 0.61,
+ "end": 267.28,
+ "word": "cues",
+ "punct": "cues",
+ "index": 633
+ },
+ {
+ "start": 267.28,
+ "confidence": 1,
+ "end": 267.56,
+ "word": "given",
+ "punct": "given",
+ "index": 634
+ },
+ {
+ "start": 267.56,
+ "confidence": 1,
+ "end": 267.67,
+ "word": "to",
+ "punct": "to",
+ "index": 635
+ },
+ {
+ "start": 267.67,
+ "confidence": 1,
+ "end": 267.88,
+ "word": "them",
+ "punct": "them",
+ "index": 636
+ },
+ {
+ "start": 267.88,
+ "confidence": 1,
+ "end": 268,
+ "word": "by",
+ "punct": "by",
+ "index": 637
+ },
+ {
+ "start": 268,
+ "confidence": 0.86,
+ "end": 268.17,
+ "word": "the",
+ "punct": "the",
+ "index": 638
+ },
+ {
+ "start": 268.19,
+ "confidence": 0.91,
+ "end": 268.67,
+ "word": "lifelike",
+ "punct": "lifelike",
+ "index": 639
+ },
+ {
+ "start": 268.69,
+ "confidence": 0.99,
+ "end": 269.46,
+ "word": "machines",
+ "punct": "machines.",
+ "index": 640
+ },
+ {
+ "start": 269.9,
+ "confidence": 1,
+ "end": 270.19,
+ "word": "even",
+ "punct": "Even",
+ "index": 641
+ },
+ {
+ "start": 270.19,
+ "confidence": 0.9,
+ "end": 270.29,
+ "word": "if",
+ "punct": "if",
+ "index": 642
+ },
+ {
+ "start": 270.29,
+ "confidence": 1,
+ "end": 270.43,
+ "word": "they",
+ "punct": "they",
+ "index": 643
+ },
+ {
+ "start": 270.43,
+ "confidence": 1,
+ "end": 270.68,
+ "word": "know",
+ "punct": "know",
+ "index": 644
+ },
+ {
+ "start": 270.68,
+ "confidence": 0.87,
+ "end": 270.82,
+ "word": "that",
+ "punct": "that",
+ "index": 645
+ },
+ {
+ "start": 270.82,
+ "confidence": 1,
+ "end": 270.99,
+ "word": "they're",
+ "punct": "they're",
+ "index": 646
+ },
+ {
+ "start": 270.99,
+ "confidence": 1,
+ "end": 271.28,
+ "word": "not",
+ "punct": "not",
+ "index": 647
+ },
+ {
+ "start": 271.3,
+ "confidence": 0.77,
+ "end": 271.58,
+ "word": "real",
+ "punct": "real.",
+ "index": 648
+ },
+ {
+ "start": 274.49,
+ "confidence": 0.97,
+ "end": 274.69,
+ "word": "we're",
+ "punct": "We're",
+ "index": 649
+ },
+ {
+ "start": 274.69,
+ "confidence": 0.7,
+ "end": 274.96,
+ "word": "heading",
+ "punct": "heading",
+ "index": 650
+ },
+ {
+ "start": 274.96,
+ "confidence": 0.97,
+ "end": 275.21,
+ "word": "towards",
+ "punct": "towards",
+ "index": 651
+ },
+ {
+ "start": 275.21,
+ "confidence": 0.92,
+ "end": 275.28,
+ "word": "a",
+ "punct": "a",
+ "index": 652
+ },
+ {
+ "start": 275.28,
+ "confidence": 1,
+ "end": 275.71,
+ "word": "world",
+ "punct": "world",
+ "index": 653
+ },
+ {
+ "start": 275.71,
+ "confidence": 1,
+ "end": 275.9,
+ "word": "where",
+ "punct": "where",
+ "index": 654
+ },
+ {
+ "start": 275.9,
+ "confidence": 0.91,
+ "end": 276.33,
+ "word": "robots",
+ "punct": "robots",
+ "index": 655
+ },
+ {
+ "start": 276.34,
+ "confidence": 0.82,
+ "end": 276.52,
+ "word": "are",
+ "punct": "are",
+ "index": 656
+ },
+ {
+ "start": 276.55,
+ "confidence": 1,
+ "end": 277.18,
+ "word": "everywhere",
+ "punct": "everywhere",
+ "index": 657
+ },
+ {
+ "start": 277.71,
+ "confidence": 0.87,
+ "end": 277.96,
+ "word": "about",
+ "punct": "about",
+ "index": 658
+ },
+ {
+ "start": 277.96,
+ "confidence": 0.75,
+ "end": 278.02,
+ "word": "the",
+ "punct": "the",
+ "index": 659
+ },
+ {
+ "start": 278.02,
+ "confidence": 0.98,
+ "end": 278.61,
+ "word": "technology",
+ "punct": "technology",
+ "index": 660
+ },
+ {
+ "start": 278.61,
+ "confidence": 0.99,
+ "end": 278.81,
+ "word": "is",
+ "punct": "is",
+ "index": 661
+ },
+ {
+ "start": 278.84,
+ "confidence": 1,
+ "end": 279.24,
+ "word": "moving",
+ "punct": "moving",
+ "index": 662
+ },
+ {
+ "start": 279.24,
+ "confidence": 1,
+ "end": 279.41,
+ "word": "out",
+ "punct": "out",
+ "index": 663
+ },
+ {
+ "start": 279.41,
+ "confidence": 1,
+ "end": 279.57,
+ "word": "from",
+ "punct": "from",
+ "index": 664
+ },
+ {
+ "start": 279.57,
+ "confidence": 1,
+ "end": 279.84,
+ "word": "behind",
+ "punct": "behind",
+ "index": 665
+ },
+ {
+ "start": 279.84,
+ "confidence": 1,
+ "end": 280.26,
+ "word": "factory",
+ "punct": "factory",
+ "index": 666
+ },
+ {
+ "start": 280.26,
+ "confidence": 0.97,
+ "end": 280.81,
+ "word": "was",
+ "punct": "was",
+ "index": 667
+ },
+ {
+ "start": 280.88,
+ "confidence": 0.81,
+ "end": 281.36,
+ "word": "entering",
+ "punct": "entering",
+ "index": 668
+ },
+ {
+ "start": 281.4,
+ "confidence": 0.52,
+ "end": 282.33,
+ "word": "workplaces",
+ "punct": "workplaces",
+ "index": 669
+ },
+ {
+ "start": 282.34,
+ "confidence": 0.91,
+ "end": 283.29,
+ "word": "households",
+ "punct": "households",
+ "index": 670
+ },
+ {
+ "start": 283.61,
+ "confidence": 0.61,
+ "end": 283.81,
+ "word": "and",
+ "punct": "and",
+ "index": 671
+ },
+ {
+ "start": 284.11,
+ "confidence": 1,
+ "end": 284.34,
+ "word": "as",
+ "punct": "as",
+ "index": 672
+ },
+ {
+ "start": 284.34,
+ "confidence": 0.99,
+ "end": 284.55,
+ "word": "these",
+ "punct": "these",
+ "index": 673
+ },
+ {
+ "start": 284.55,
+ "confidence": 1,
+ "end": 285.22,
+ "word": "machines",
+ "punct": "machines.",
+ "index": 674
+ },
+ {
+ "start": 285.22,
+ "confidence": 0.69,
+ "end": 285.32,
+ "word": "they",
+ "punct": "They",
+ "index": 675
+ },
+ {
+ "start": 285.33,
+ "confidence": 0.96,
+ "end": 285.89,
+ "word": "can",
+ "punct": "can",
+ "index": 676
+ },
+ {
+ "start": 285.92,
+ "confidence": 1,
+ "end": 286.63,
+ "word": "sense",
+ "punct": "sense",
+ "index": 677
+ },
+ {
+ "start": 286.63,
+ "confidence": 1,
+ "end": 286.99,
+ "word": "and",
+ "punct": "and",
+ "index": 678
+ },
+ {
+ "start": 287.21,
+ "confidence": 0.93,
+ "end": 287.45,
+ "word": "make",
+ "punct": "make",
+ "index": 679
+ },
+ {
+ "start": 287.45,
+ "confidence": 0.92,
+ "end": 287.48,
+ "word": "a",
+ "punct": "a",
+ "index": 680
+ },
+ {
+ "start": 287.49,
+ "confidence": 0.62,
+ "end": 287.78,
+ "word": "ton",
+ "punct": "ton",
+ "index": 681
+ },
+ {
+ "start": 287.77,
+ "confidence": 0.66,
+ "end": 287.89,
+ "word": "of",
+ "punct": "of",
+ "index": 682
+ },
+ {
+ "start": 287.89,
+ "confidence": 0.44,
+ "end": 288.02,
+ "word": "my",
+ "punct": "my",
+ "index": 683
+ },
+ {
+ "start": 288.04,
+ "confidence": 1,
+ "end": 288.69,
+ "word": "decisions",
+ "punct": "decisions",
+ "index": 684
+ },
+ {
+ "start": 288.69,
+ "confidence": 1,
+ "end": 288.92,
+ "word": "and",
+ "punct": "and",
+ "index": 685
+ },
+ {
+ "start": 288.99,
+ "confidence": 0.82,
+ "end": 289.54,
+ "word": "learn",
+ "punct": "learn",
+ "index": 686
+ },
+ {
+ "start": 290.05,
+ "confidence": 0.91,
+ "end": 290.37,
+ "word": "enter",
+ "punct": "enter",
+ "index": 687
+ },
+ {
+ "start": 290.37,
+ "confidence": 0.99,
+ "end": 290.58,
+ "word": "into",
+ "punct": "into",
+ "index": 688
+ },
+ {
+ "start": 290.58,
+ "confidence": 0.97,
+ "end": 290.72,
+ "word": "the",
+ "punct": "the",
+ "index": 689
+ },
+ {
+ "start": 290.72,
+ "confidence": 0.96,
+ "end": 291.09,
+ "word": "shared",
+ "punct": "shared",
+ "index": 690
+ },
+ {
+ "start": 291.09,
+ "confidence": 1,
+ "end": 292.16,
+ "word": "spaces",
+ "punct": "spaces.",
+ "index": 691
+ },
+ {
+ "start": 292.68,
+ "confidence": 0.97,
+ "end": 292.77,
+ "word": "i",
+ "punct": "I",
+ "index": 692
+ },
+ {
+ "start": 292.78,
+ "confidence": 1,
+ "end": 293.01,
+ "word": "think",
+ "punct": "think",
+ "index": 693
+ },
+ {
+ "start": 293.01,
+ "confidence": 1,
+ "end": 293.19,
+ "word": "that",
+ "punct": "that",
+ "index": 694
+ },
+ {
+ "start": 293.19,
+ "confidence": 0.66,
+ "end": 293.39,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 695
+ },
+ {
+ "start": 293.42,
+ "confidence": 1,
+ "end": 293.51,
+ "word": "the",
+ "punct": "the",
+ "index": 696
+ },
+ {
+ "start": 293.51,
+ "confidence": 1,
+ "end": 293.76,
+ "word": "best",
+ "punct": "best",
+ "index": 697
+ },
+ {
+ "start": 293.76,
+ "confidence": 1,
+ "end": 294.32,
+ "word": "analogy",
+ "punct": "analogy.",
+ "index": 698
+ },
+ {
+ "start": 294.32,
+ "confidence": 0.98,
+ "end": 294.45,
+ "word": "we",
+ "punct": "We",
+ "index": 699
+ },
+ {
+ "start": 294.45,
+ "confidence": 0.96,
+ "end": 294.76,
+ "word": "have",
+ "punct": "have",
+ "index": 700
+ },
+ {
+ "start": 294.76,
+ "confidence": 0.65,
+ "end": 294.84,
+ "word": "for",
+ "punct": "for",
+ "index": 701
+ },
+ {
+ "start": 294.84,
+ "confidence": 1,
+ "end": 295.08,
+ "word": "this",
+ "punct": "this",
+ "index": 702
+ },
+ {
+ "start": 295.08,
+ "confidence": 0.93,
+ "end": 295.21,
+ "word": "is",
+ "punct": "is",
+ "index": 703
+ },
+ {
+ "start": 295.2,
+ "confidence": 0.5,
+ "end": 295.32,
+ "word": "our",
+ "punct": "our",
+ "index": 704
+ },
+ {
+ "start": 295.32,
+ "confidence": 1,
+ "end": 296.04,
+ "word": "relationship",
+ "punct": "relationship",
+ "index": 705
+ },
+ {
+ "start": 296.04,
+ "confidence": 1,
+ "end": 296.21,
+ "word": "with",
+ "punct": "with",
+ "index": 706
+ },
+ {
+ "start": 296.34,
+ "confidence": 1,
+ "end": 297.08,
+ "word": "animals",
+ "punct": "animals.",
+ "index": 707
+ },
+ {
+ "start": 297.49,
+ "confidence": 1,
+ "end": 297.99,
+ "word": "thousands",
+ "punct": "Thousands",
+ "index": 708
+ },
+ {
+ "start": 297.99,
+ "confidence": 1,
+ "end": 298.08,
+ "word": "of",
+ "punct": "of",
+ "index": 709
+ },
+ {
+ "start": 298.08,
+ "confidence": 1,
+ "end": 298.32,
+ "word": "years",
+ "punct": "years",
+ "index": 710
+ },
+ {
+ "start": 298.32,
+ "confidence": 1,
+ "end": 298.82,
+ "word": "ago",
+ "punct": "ago,",
+ "index": 711
+ },
+ {
+ "start": 299.29,
+ "confidence": 1,
+ "end": 299.44,
+ "word": "we",
+ "punct": "we",
+ "index": 712
+ },
+ {
+ "start": 299.44,
+ "confidence": 1,
+ "end": 299.76,
+ "word": "started",
+ "punct": "started",
+ "index": 713
+ },
+ {
+ "start": 299.76,
+ "confidence": 1,
+ "end": 299.86,
+ "word": "to",
+ "punct": "to",
+ "index": 714
+ },
+ {
+ "start": 299.86,
+ "confidence": 1,
+ "end": 300.54,
+ "word": "domesticate",
+ "punct": "domesticate",
+ "index": 715
+ },
+ {
+ "start": 300.54,
+ "confidence": 1,
+ "end": 301.15,
+ "word": "animals",
+ "punct": "animals",
+ "index": 716
+ },
+ {
+ "start": 301.3,
+ "confidence": 0.55,
+ "end": 301.37,
+ "word": "and",
+ "punct": "and",
+ "index": 717
+ },
+ {
+ "start": 301.51,
+ "confidence": 1,
+ "end": 301.64,
+ "word": "we",
+ "punct": "we",
+ "index": 718
+ },
+ {
+ "start": 301.64,
+ "confidence": 0.74,
+ "end": 301.99,
+ "word": "train",
+ "punct": "train",
+ "index": 719
+ },
+ {
+ "start": 301.99,
+ "confidence": 1,
+ "end": 302.15,
+ "word": "them",
+ "punct": "them",
+ "index": 720
+ },
+ {
+ "start": 302.15,
+ "confidence": 1,
+ "end": 302.34,
+ "word": "for",
+ "punct": "for",
+ "index": 721
+ },
+ {
+ "start": 302.34,
+ "confidence": 1,
+ "end": 302.89,
+ "word": "work",
+ "punct": "work",
+ "index": 722
+ },
+ {
+ "start": 302.92,
+ "confidence": 0.72,
+ "end": 303.14,
+ "word": "and",
+ "punct": "and",
+ "index": 723
+ },
+ {
+ "start": 303.14,
+ "confidence": 1,
+ "end": 303.83,
+ "word": "weaponry",
+ "punct": "weaponry",
+ "index": 724
+ },
+ {
+ "start": 303.86,
+ "confidence": 0.92,
+ "end": 303.95,
+ "word": "and",
+ "punct": "and",
+ "index": 725
+ },
+ {
+ "start": 303.94,
+ "confidence": 1,
+ "end": 305,
+ "word": "companionship",
+ "punct": "companionship.",
+ "index": 726
+ },
+ {
+ "start": 305.64,
+ "confidence": 1,
+ "end": 305.91,
+ "word": "throughout",
+ "punct": "Throughout",
+ "index": 727
+ },
+ {
+ "start": 305.91,
+ "confidence": 1,
+ "end": 306.43,
+ "word": "history",
+ "punct": "history.",
+ "index": 728
+ },
+ {
+ "start": 306.43,
+ "confidence": 0.49,
+ "end": 306.58,
+ "word": "we've",
+ "punct": "We've",
+ "index": 729
+ },
+ {
+ "start": 306.6,
+ "confidence": 0.69,
+ "end": 306.92,
+ "word": "treated",
+ "punct": "treated.",
+ "index": 730
+ },
+ {
+ "start": 306.94,
+ "confidence": 1,
+ "end": 307.2,
+ "word": "some",
+ "punct": "Some",
+ "index": 731
+ },
+ {
+ "start": 307.24,
+ "confidence": 1,
+ "end": 307.75,
+ "word": "animals",
+ "punct": "animals",
+ "index": 732
+ },
+ {
+ "start": 307.75,
+ "confidence": 1,
+ "end": 307.93,
+ "word": "like",
+ "punct": "like",
+ "index": 733
+ },
+ {
+ "start": 307.96,
+ "confidence": 0.86,
+ "end": 308.67,
+ "word": "tools",
+ "punct": "tools",
+ "index": 734
+ },
+ {
+ "start": 308.82,
+ "confidence": 0.4,
+ "end": 309.03,
+ "word": "are",
+ "punct": "are",
+ "index": 735
+ },
+ {
+ "start": 309.05,
+ "confidence": 0.39,
+ "end": 309.16,
+ "word": "the",
+ "punct": "the",
+ "index": 736
+ },
+ {
+ "start": 309.17,
+ "confidence": 0.99,
+ "end": 310.11,
+ "word": "products",
+ "punct": "products",
+ "index": 737
+ },
+ {
+ "start": 310.52,
+ "confidence": 0.94,
+ "end": 310.74,
+ "word": "and",
+ "punct": "and",
+ "index": 738
+ },
+ {
+ "start": 310.77,
+ "confidence": 0.95,
+ "end": 310.99,
+ "word": "other",
+ "punct": "other",
+ "index": 739
+ },
+ {
+ "start": 310.99,
+ "confidence": 1,
+ "end": 311.33,
+ "word": "animals",
+ "punct": "animals.",
+ "index": 740
+ },
+ {
+ "start": 311.33,
+ "confidence": 0.89,
+ "end": 311.45,
+ "word": "we",
+ "punct": "We",
+ "index": 741
+ },
+ {
+ "start": 311.45,
+ "confidence": 1,
+ "end": 311.73,
+ "word": "treated",
+ "punct": "treated",
+ "index": 742
+ },
+ {
+ "start": 311.73,
+ "confidence": 1,
+ "end": 311.87,
+ "word": "with",
+ "punct": "with",
+ "index": 743
+ },
+ {
+ "start": 311.87,
+ "confidence": 1,
+ "end": 312.58,
+ "word": "kindness",
+ "punct": "kindness",
+ "index": 744
+ },
+ {
+ "start": 312.61,
+ "confidence": 0.97,
+ "end": 312.79,
+ "word": "and",
+ "punct": "and",
+ "index": 745
+ },
+ {
+ "start": 312.87,
+ "confidence": 0.99,
+ "end": 313.09,
+ "word": "given",
+ "punct": "given",
+ "index": 746
+ },
+ {
+ "start": 313.09,
+ "confidence": 0.86,
+ "end": 313.16,
+ "word": "a",
+ "punct": "a",
+ "index": 747
+ },
+ {
+ "start": 313.16,
+ "confidence": 1,
+ "end": 313.56,
+ "word": "place",
+ "punct": "place",
+ "index": 748
+ },
+ {
+ "start": 313.56,
+ "confidence": 1,
+ "end": 313.64,
+ "word": "in",
+ "punct": "in",
+ "index": 749
+ },
+ {
+ "start": 313.64,
+ "confidence": 1,
+ "end": 314.12,
+ "word": "society",
+ "punct": "society",
+ "index": 750
+ },
+ {
+ "start": 314.12,
+ "confidence": 0.82,
+ "end": 314.24,
+ "word": "as",
+ "punct": "as",
+ "index": 751
+ },
+ {
+ "start": 314.24,
+ "confidence": 0.58,
+ "end": 314.3,
+ "word": "our",
+ "punct": "our",
+ "index": 752
+ },
+ {
+ "start": 314.31,
+ "confidence": 1,
+ "end": 315.18,
+ "word": "companions",
+ "punct": "companions.",
+ "index": 753
+ },
+ {
+ "start": 315.81,
+ "confidence": 1,
+ "end": 315.94,
+ "word": "i",
+ "punct": "I",
+ "index": 754
+ },
+ {
+ "start": 315.94,
+ "confidence": 1,
+ "end": 316.1,
+ "word": "think",
+ "punct": "think",
+ "index": 755
+ },
+ {
+ "start": 316.1,
+ "confidence": 0.97,
+ "end": 316.23,
+ "word": "it's",
+ "punct": "it's",
+ "index": 756
+ },
+ {
+ "start": 316.23,
+ "confidence": 0.96,
+ "end": 316.7,
+ "word": "possible",
+ "punct": "possible.",
+ "index": 757
+ },
+ {
+ "start": 316.7,
+ "confidence": 0.98,
+ "end": 316.82,
+ "word": "we",
+ "punct": "We",
+ "index": 758
+ },
+ {
+ "start": 316.82,
+ "confidence": 1,
+ "end": 317.04,
+ "word": "might",
+ "punct": "might",
+ "index": 759
+ },
+ {
+ "start": 317.04,
+ "confidence": 0.99,
+ "end": 317.26,
+ "word": "start",
+ "punct": "start",
+ "index": 760
+ },
+ {
+ "start": 317.26,
+ "confidence": 0.97,
+ "end": 317.33,
+ "word": "to",
+ "punct": "to",
+ "index": 761
+ },
+ {
+ "start": 317.36,
+ "confidence": 0.98,
+ "end": 317.78,
+ "word": "integrate",
+ "punct": "integrate",
+ "index": 762
+ },
+ {
+ "start": 317.78,
+ "confidence": 0.32,
+ "end": 318.16,
+ "word": "robartes",
+ "punct": "Robartes,",
+ "index": 763
+ },
+ {
+ "start": 318.16,
+ "confidence": 0.37,
+ "end": 318.45,
+ "word": "but",
+ "punct": "but",
+ "index": 764
+ },
+ {
+ "start": 318.47,
+ "confidence": 0.78,
+ "end": 318.91,
+ "word": "similar",
+ "punct": "similar",
+ "index": 765
+ },
+ {
+ "start": 318.91,
+ "confidence": 0.72,
+ "end": 319.62,
+ "word": "weights",
+ "punct": "weights",
+ "index": 766
+ },
+ {
+ "start": 323.05,
+ "confidence": 1,
+ "end": 323.52,
+ "word": "animals",
+ "punct": "animals",
+ "index": 767
+ },
+ {
+ "start": 323.52,
+ "confidence": 0.96,
+ "end": 323.71,
+ "word": "are",
+ "punct": "are",
+ "index": 768
+ },
+ {
+ "start": 323.71,
+ "confidence": 0.72,
+ "end": 324.18,
+ "word": "alive",
+ "punct": "alive.",
+ "index": 769
+ },
+ {
+ "start": 324.57,
+ "confidence": 0.83,
+ "end": 325.02,
+ "word": "robert",
+ "punct": "Robert",
+ "index": 770
+ },
+ {
+ "start": 325.03,
+ "confidence": 0.64,
+ "end": 325.17,
+ "word": "and",
+ "punct": "and",
+ "index": 771
+ },
+ {
+ "start": 325.16,
+ "confidence": 0.9,
+ "end": 325.43,
+ "word": "that",
+ "punct": "that.",
+ "index": 772
+ },
+ {
+ "start": 327.58,
+ "confidence": 0.85,
+ "end": 327.73,
+ "word": "and",
+ "punct": "And",
+ "index": 773
+ },
+ {
+ "start": 327.81,
+ "confidence": 1,
+ "end": 327.89,
+ "word": "i",
+ "punct": "I",
+ "index": 774
+ },
+ {
+ "start": 327.89,
+ "confidence": 1,
+ "end": 328.03,
+ "word": "can",
+ "punct": "can",
+ "index": 775
+ },
+ {
+ "start": 328.03,
+ "confidence": 1,
+ "end": 328.25,
+ "word": "tell",
+ "punct": "tell",
+ "index": 776
+ },
+ {
+ "start": 328.25,
+ "confidence": 1,
+ "end": 328.35,
+ "word": "you",
+ "punct": "you",
+ "index": 777
+ },
+ {
+ "start": 328.35,
+ "confidence": 1,
+ "end": 328.62,
+ "word": "from",
+ "punct": "from",
+ "index": 778
+ },
+ {
+ "start": 328.62,
+ "confidence": 1,
+ "end": 328.94,
+ "word": "working",
+ "punct": "working.",
+ "index": 779
+ },
+ {
+ "start": 328.94,
+ "confidence": 0.88,
+ "end": 329.07,
+ "word": "what",
+ "punct": "What",
+ "index": 780
+ },
+ {
+ "start": 329.07,
+ "confidence": 1,
+ "end": 329.32,
+ "word": "about",
+ "punct": "about",
+ "index": 781
+ },
+ {
+ "start": 329.33,
+ "confidence": 0.39,
+ "end": 329.44,
+ "word": "the",
+ "punct": "the",
+ "index": 782
+ },
+ {
+ "start": 329.44,
+ "confidence": 0.5,
+ "end": 329.8,
+ "word": "sister",
+ "punct": "sister",
+ "index": 783
+ },
+ {
+ "start": 329.82,
+ "confidence": 0.52,
+ "end": 330.03,
+ "word": "were",
+ "punct": "were",
+ "index": 784
+ },
+ {
+ "start": 330.22,
+ "confidence": 0.95,
+ "end": 330.52,
+ "word": "pretty",
+ "punct": "pretty",
+ "index": 785
+ },
+ {
+ "start": 330.52,
+ "confidence": 0.99,
+ "end": 330.73,
+ "word": "far",
+ "punct": "far",
+ "index": 786
+ },
+ {
+ "start": 330.73,
+ "confidence": 1,
+ "end": 331.02,
+ "word": "away",
+ "punct": "away",
+ "index": 787
+ },
+ {
+ "start": 331.02,
+ "confidence": 1,
+ "end": 331.24,
+ "word": "from",
+ "punct": "from",
+ "index": 788
+ },
+ {
+ "start": 331.24,
+ "confidence": 1,
+ "end": 331.72,
+ "word": "developing",
+ "punct": "developing",
+ "index": 789
+ },
+ {
+ "start": 331.72,
+ "confidence": 0.8,
+ "end": 332.04,
+ "word": "robots",
+ "punct": "robots.",
+ "index": 790
+ },
+ {
+ "start": 332.04,
+ "confidence": 0.49,
+ "end": 332.11,
+ "word": "they",
+ "punct": "They",
+ "index": 791
+ },
+ {
+ "start": 332.11,
+ "confidence": 1,
+ "end": 332.28,
+ "word": "can",
+ "punct": "can",
+ "index": 792
+ },
+ {
+ "start": 332.28,
+ "confidence": 1,
+ "end": 332.69,
+ "word": "feel",
+ "punct": "feel",
+ "index": 793
+ },
+ {
+ "start": 332.69,
+ "confidence": 1,
+ "end": 333.21,
+ "word": "anything",
+ "punct": "anything",
+ "index": 794
+ },
+ {
+ "start": 334.13,
+ "confidence": 0.35,
+ "end": 334.17,
+ "word": "there",
+ "punct": "there,",
+ "index": 795
+ },
+ {
+ "start": 334.9,
+ "confidence": 0.74,
+ "end": 335.1,
+ "word": "but",
+ "punct": "but",
+ "index": 796
+ },
+ {
+ "start": 335.24,
+ "confidence": 1,
+ "end": 335.53,
+ "word": "we",
+ "punct": "we",
+ "index": 797
+ },
+ {
+ "start": 335.53,
+ "confidence": 1,
+ "end": 335.78,
+ "word": "feel",
+ "punct": "feel",
+ "index": 798
+ },
+ {
+ "start": 335.78,
+ "confidence": 1,
+ "end": 335.97,
+ "word": "for",
+ "punct": "for",
+ "index": 799
+ },
+ {
+ "start": 335.97,
+ "confidence": 0.96,
+ "end": 336.22,
+ "word": "that",
+ "punct": "that.",
+ "index": 800
+ },
+ {
+ "start": 337.77,
+ "confidence": 0.78,
+ "end": 337.9,
+ "word": "and",
+ "punct": "And",
+ "index": 801
+ },
+ {
+ "start": 337.97,
+ "confidence": 1,
+ "end": 338.22,
+ "word": "that",
+ "punct": "that",
+ "index": 802
+ },
+ {
+ "start": 338.22,
+ "confidence": 1,
+ "end": 339,
+ "word": "matters",
+ "punct": "matters",
+ "index": 803
+ },
+ {
+ "start": 339.03,
+ "confidence": 1,
+ "end": 339.55,
+ "word": "because",
+ "punct": "because",
+ "index": 804
+ },
+ {
+ "start": 339.58,
+ "confidence": 1,
+ "end": 339.78,
+ "word": "if",
+ "punct": "if",
+ "index": 805
+ },
+ {
+ "start": 339.78,
+ "confidence": 0.62,
+ "end": 339.86,
+ "word": "we're",
+ "punct": "we're",
+ "index": 806
+ },
+ {
+ "start": 339.86,
+ "confidence": 0.81,
+ "end": 340.17,
+ "word": "trying",
+ "punct": "trying",
+ "index": 807
+ },
+ {
+ "start": 340.17,
+ "confidence": 0.81,
+ "end": 340.29,
+ "word": "to",
+ "punct": "to",
+ "index": 808
+ },
+ {
+ "start": 340.32,
+ "confidence": 1,
+ "end": 340.94,
+ "word": "integrate",
+ "punct": "integrate",
+ "index": 809
+ },
+ {
+ "start": 340.94,
+ "confidence": 0.48,
+ "end": 341.41,
+ "word": "robots",
+ "punct": "robots",
+ "index": 810
+ },
+ {
+ "start": 341.41,
+ "confidence": 0.48,
+ "end": 341.54,
+ "word": "into",
+ "punct": "into",
+ "index": 811
+ },
+ {
+ "start": 341.55,
+ "confidence": 0.54,
+ "end": 341.7,
+ "word": "the",
+ "punct": "the",
+ "index": 812
+ },
+ {
+ "start": 341.7,
+ "confidence": 0.98,
+ "end": 342.05,
+ "word": "shared",
+ "punct": "shared",
+ "index": 813
+ },
+ {
+ "start": 342.05,
+ "confidence": 0.99,
+ "end": 342.68,
+ "word": "spaces",
+ "punct": "spaces",
+ "index": 814
+ },
+ {
+ "start": 342.73,
+ "confidence": 1,
+ "end": 342.96,
+ "word": "need",
+ "punct": "need",
+ "index": 815
+ },
+ {
+ "start": 342.96,
+ "confidence": 1,
+ "end": 343.05,
+ "word": "to",
+ "punct": "to",
+ "index": 816
+ },
+ {
+ "start": 343.08,
+ "confidence": 1,
+ "end": 343.81,
+ "word": "understand",
+ "punct": "understand",
+ "index": 817
+ },
+ {
+ "start": 343.81,
+ "confidence": 0.94,
+ "end": 343.93,
+ "word": "that",
+ "punct": "that",
+ "index": 818
+ },
+ {
+ "start": 343.93,
+ "confidence": 1,
+ "end": 344.35,
+ "word": "people",
+ "punct": "people",
+ "index": 819
+ },
+ {
+ "start": 344.37,
+ "confidence": 1,
+ "end": 344.63,
+ "word": "treat",
+ "punct": "treat",
+ "index": 820
+ },
+ {
+ "start": 344.63,
+ "confidence": 1,
+ "end": 344.78,
+ "word": "them",
+ "punct": "them",
+ "index": 821
+ },
+ {
+ "start": 344.78,
+ "confidence": 1,
+ "end": 345.38,
+ "word": "differently",
+ "punct": "differently",
+ "index": 822
+ },
+ {
+ "start": 345.38,
+ "confidence": 1,
+ "end": 345.53,
+ "word": "than",
+ "punct": "than",
+ "index": 823
+ },
+ {
+ "start": 345.53,
+ "confidence": 0.93,
+ "end": 345.73,
+ "word": "other",
+ "punct": "other",
+ "index": 824
+ },
+ {
+ "start": 345.74,
+ "confidence": 1,
+ "end": 346.6,
+ "word": "devices",
+ "punct": "devices",
+ "index": 825
+ },
+ {
+ "start": 347.39,
+ "confidence": 0.8,
+ "end": 347.64,
+ "word": "that",
+ "punct": "that",
+ "index": 826
+ },
+ {
+ "start": 347.65,
+ "confidence": 1,
+ "end": 347.77,
+ "word": "in",
+ "punct": "in",
+ "index": 827
+ },
+ {
+ "start": 347.77,
+ "confidence": 1,
+ "end": 348.08,
+ "word": "some",
+ "punct": "some",
+ "index": 828
+ },
+ {
+ "start": 348.08,
+ "confidence": 1,
+ "end": 348.94,
+ "word": "cases",
+ "punct": "cases.",
+ "index": 829
+ },
+ {
+ "start": 349.19,
+ "confidence": 1,
+ "end": 349.36,
+ "word": "for",
+ "punct": "For",
+ "index": 830
+ },
+ {
+ "start": 349.36,
+ "confidence": 1,
+ "end": 349.98,
+ "word": "example",
+ "punct": "example,",
+ "index": 831
+ },
+ {
+ "start": 349.98,
+ "confidence": 0.99,
+ "end": 350.1,
+ "word": "the",
+ "punct": "the",
+ "index": 832
+ },
+ {
+ "start": 350.1,
+ "confidence": 0.96,
+ "end": 350.39,
+ "word": "case",
+ "punct": "case",
+ "index": 833
+ },
+ {
+ "start": 350.39,
+ "confidence": 0.99,
+ "end": 350.47,
+ "word": "of",
+ "punct": "of",
+ "index": 834
+ },
+ {
+ "start": 350.47,
+ "confidence": 0.97,
+ "end": 350.53,
+ "word": "a",
+ "punct": "a",
+ "index": 835
+ },
+ {
+ "start": 350.53,
+ "confidence": 0.99,
+ "end": 351.02,
+ "word": "soldier",
+ "punct": "soldier",
+ "index": 836
+ },
+ {
+ "start": 351.02,
+ "confidence": 0.59,
+ "end": 351.08,
+ "word": "who",
+ "punct": "who",
+ "index": 837
+ },
+ {
+ "start": 351.09,
+ "confidence": 1,
+ "end": 351.42,
+ "word": "becomes",
+ "punct": "becomes",
+ "index": 838
+ },
+ {
+ "start": 351.42,
+ "confidence": 1,
+ "end": 351.99,
+ "word": "emotionally",
+ "punct": "emotionally",
+ "index": 839
+ },
+ {
+ "start": 351.99,
+ "confidence": 1,
+ "end": 352.52,
+ "word": "attached",
+ "punct": "attached",
+ "index": 840
+ },
+ {
+ "start": 352.52,
+ "confidence": 1,
+ "end": 352.62,
+ "word": "to",
+ "punct": "to",
+ "index": 841
+ },
+ {
+ "start": 352.62,
+ "confidence": 0.96,
+ "end": 352.75,
+ "word": "the",
+ "punct": "the",
+ "index": 842
+ },
+ {
+ "start": 352.75,
+ "confidence": 0.9,
+ "end": 353.1,
+ "word": "robot",
+ "punct": "robot.",
+ "index": 843
+ },
+ {
+ "start": 353.14,
+ "confidence": 1,
+ "end": 353.34,
+ "word": "they",
+ "punct": "They",
+ "index": 844
+ },
+ {
+ "start": 353.34,
+ "confidence": 0.83,
+ "end": 353.59,
+ "word": "work",
+ "punct": "work.",
+ "index": 845
+ },
+ {
+ "start": 353.61,
+ "confidence": 0.52,
+ "end": 353.81,
+ "word": "well",
+ "punct": "Well,",
+ "index": 846
+ },
+ {
+ "start": 353.84,
+ "confidence": 0.87,
+ "end": 354.41,
+ "word": "if",
+ "punct": "if",
+ "index": 847
+ },
+ {
+ "start": 354.45,
+ "confidence": 0.88,
+ "end": 354.64,
+ "word": "that",
+ "punct": "that",
+ "index": 848
+ },
+ {
+ "start": 354.65,
+ "confidence": 0.98,
+ "end": 354.8,
+ "word": "can",
+ "punct": "can",
+ "index": 849
+ },
+ {
+ "start": 354.8,
+ "confidence": 1,
+ "end": 354.92,
+ "word": "be",
+ "punct": "be",
+ "index": 850
+ },
+ {
+ "start": 354.95,
+ "confidence": 1,
+ "end": 355.31,
+ "word": "anything",
+ "punct": "anything",
+ "index": 851
+ },
+ {
+ "start": 355.31,
+ "confidence": 0.99,
+ "end": 355.46,
+ "word": "from",
+ "punct": "from",
+ "index": 852
+ },
+ {
+ "start": 355.49,
+ "confidence": 0.74,
+ "end": 355.93,
+ "word": "inefficient",
+ "punct": "inefficient",
+ "index": 853
+ },
+ {
+ "start": 355.96,
+ "confidence": 0.39,
+ "end": 356.12,
+ "word": "to",
+ "punct": "to",
+ "index": 854
+ },
+ {
+ "start": 356.14,
+ "confidence": 1,
+ "end": 356.98,
+ "word": "dangerous",
+ "punct": "dangerous.",
+ "index": 855
+ },
+ {
+ "start": 358.5,
+ "confidence": 0.86,
+ "end": 358.63,
+ "word": "but",
+ "punct": "But",
+ "index": 856
+ },
+ {
+ "start": 358.67,
+ "confidence": 1,
+ "end": 358.8,
+ "word": "in",
+ "punct": "in",
+ "index": 857
+ },
+ {
+ "start": 358.8,
+ "confidence": 1,
+ "end": 359.02,
+ "word": "other",
+ "punct": "other",
+ "index": 858
+ },
+ {
+ "start": 359.02,
+ "confidence": 1,
+ "end": 359.43,
+ "word": "cases",
+ "punct": "cases.",
+ "index": 859
+ },
+ {
+ "start": 359.43,
+ "confidence": 0.86,
+ "end": 359.49,
+ "word": "it",
+ "punct": "It",
+ "index": 860
+ },
+ {
+ "start": 359.49,
+ "confidence": 1,
+ "end": 359.63,
+ "word": "can",
+ "punct": "can",
+ "index": 861
+ },
+ {
+ "start": 359.63,
+ "confidence": 1,
+ "end": 359.94,
+ "word": "actually",
+ "punct": "actually",
+ "index": 862
+ },
+ {
+ "start": 359.94,
+ "confidence": 1,
+ "end": 360.16,
+ "word": "be",
+ "punct": "be",
+ "index": 863
+ },
+ {
+ "start": 360.16,
+ "confidence": 0.85,
+ "end": 360.49,
+ "word": "used",
+ "punct": "used",
+ "index": 864
+ },
+ {
+ "start": 360.49,
+ "confidence": 0.85,
+ "end": 360.67,
+ "word": "for",
+ "punct": "for",
+ "index": 865
+ },
+ {
+ "start": 360.68,
+ "confidence": 0.95,
+ "end": 360.77,
+ "word": "the",
+ "punct": "the",
+ "index": 866
+ },
+ {
+ "start": 360.77,
+ "confidence": 0.98,
+ "end": 361.34,
+ "word": "faster",
+ "punct": "faster",
+ "index": 867
+ },
+ {
+ "start": 361.35,
+ "confidence": 0.62,
+ "end": 361.51,
+ "word": "this",
+ "punct": "this",
+ "index": 868
+ },
+ {
+ "start": 361.51,
+ "confidence": 1,
+ "end": 361.92,
+ "word": "emotional",
+ "punct": "emotional",
+ "index": 869
+ },
+ {
+ "start": 361.92,
+ "confidence": 1,
+ "end": 362.45,
+ "word": "connection",
+ "punct": "connection",
+ "index": 870
+ },
+ {
+ "start": 362.45,
+ "confidence": 1,
+ "end": 362.56,
+ "word": "to",
+ "punct": "to,",
+ "index": 871
+ },
+ {
+ "start": 362.61,
+ "confidence": 0.89,
+ "end": 363.28,
+ "word": "but",
+ "punct": "but",
+ "index": 872
+ },
+ {
+ "start": 364.16,
+ "confidence": 0.87,
+ "end": 364.38,
+ "word": "we're",
+ "punct": "we're",
+ "index": 873
+ },
+ {
+ "start": 364.38,
+ "confidence": 0.9,
+ "end": 364.63,
+ "word": "really",
+ "punct": "really",
+ "index": 874
+ },
+ {
+ "start": 364.63,
+ "confidence": 0.87,
+ "end": 364.96,
+ "word": "seeing",
+ "punct": "seeing",
+ "index": 875
+ },
+ {
+ "start": 364.96,
+ "confidence": 1,
+ "end": 365.15,
+ "word": "some",
+ "punct": "some",
+ "index": 876
+ },
+ {
+ "start": 365.15,
+ "confidence": 1,
+ "end": 365.5,
+ "word": "great",
+ "punct": "great",
+ "index": 877
+ },
+ {
+ "start": 365.5,
+ "confidence": 0.89,
+ "end": 365.75,
+ "word": "use",
+ "punct": "use",
+ "index": 878
+ },
+ {
+ "start": 365.75,
+ "confidence": 0.82,
+ "end": 366.26,
+ "word": "cases",
+ "punct": "cases.",
+ "index": 879
+ },
+ {
+ "start": 366.26,
+ "confidence": 1,
+ "end": 366.38,
+ "word": "for",
+ "punct": "For",
+ "index": 880
+ },
+ {
+ "start": 366.38,
+ "confidence": 1,
+ "end": 366.87,
+ "word": "example",
+ "punct": "example,",
+ "index": 881
+ },
+ {
+ "start": 366.87,
+ "confidence": 0.53,
+ "end": 367.29,
+ "word": "robots",
+ "punct": "robots",
+ "index": 882
+ },
+ {
+ "start": 367.29,
+ "confidence": 1,
+ "end": 367.59,
+ "word": "working",
+ "punct": "working",
+ "index": 883
+ },
+ {
+ "start": 367.59,
+ "confidence": 1,
+ "end": 367.78,
+ "word": "with",
+ "punct": "with",
+ "index": 884
+ },
+ {
+ "start": 367.81,
+ "confidence": 0.62,
+ "end": 368.41,
+ "word": "autistic",
+ "punct": "autistic",
+ "index": 885
+ },
+ {
+ "start": 368.41,
+ "confidence": 1,
+ "end": 368.95,
+ "word": "children",
+ "punct": "children",
+ "index": 886
+ },
+ {
+ "start": 368.95,
+ "confidence": 1,
+ "end": 369.1,
+ "word": "to",
+ "punct": "to",
+ "index": 887
+ },
+ {
+ "start": 369.13,
+ "confidence": 1,
+ "end": 369.67,
+ "word": "engage",
+ "punct": "engage",
+ "index": 888
+ },
+ {
+ "start": 369.67,
+ "confidence": 1,
+ "end": 369.93,
+ "word": "them",
+ "punct": "them",
+ "index": 889
+ },
+ {
+ "start": 369.93,
+ "confidence": 1,
+ "end": 370.1,
+ "word": "in",
+ "punct": "in",
+ "index": 890
+ },
+ {
+ "start": 370.1,
+ "confidence": 0.99,
+ "end": 370.39,
+ "word": "ways",
+ "punct": "ways",
+ "index": 891
+ },
+ {
+ "start": 370.39,
+ "confidence": 0.97,
+ "end": 370.48,
+ "word": "that",
+ "punct": "that",
+ "index": 892
+ },
+ {
+ "start": 370.48,
+ "confidence": 1,
+ "end": 370.58,
+ "word": "we",
+ "punct": "we",
+ "index": 893
+ },
+ {
+ "start": 370.58,
+ "confidence": 1,
+ "end": 370.96,
+ "word": "haven't",
+ "punct": "haven't",
+ "index": 894
+ },
+ {
+ "start": 370.96,
+ "confidence": 1,
+ "end": 371.18,
+ "word": "seen",
+ "punct": "seen",
+ "index": 895
+ },
+ {
+ "start": 371.18,
+ "confidence": 1,
+ "end": 372.03,
+ "word": "previously",
+ "punct": "previously",
+ "index": 896
+ },
+ {
+ "start": 372.7,
+ "confidence": 0.36,
+ "end": 373.1,
+ "word": "robot's",
+ "punct": "robot's",
+ "index": 897
+ },
+ {
+ "start": 373.17,
+ "confidence": 1,
+ "end": 373.51,
+ "word": "working",
+ "punct": "working",
+ "index": 898
+ },
+ {
+ "start": 373.51,
+ "confidence": 0.62,
+ "end": 373.64,
+ "word": "with",
+ "punct": "with",
+ "index": 899
+ },
+ {
+ "start": 373.64,
+ "confidence": 0.97,
+ "end": 374.23,
+ "word": "teachers",
+ "punct": "teachers",
+ "index": 900
+ },
+ {
+ "start": 374.23,
+ "confidence": 1,
+ "end": 374.35,
+ "word": "to",
+ "punct": "to",
+ "index": 901
+ },
+ {
+ "start": 374.35,
+ "confidence": 1,
+ "end": 374.75,
+ "word": "engage",
+ "punct": "engage",
+ "index": 902
+ },
+ {
+ "start": 374.75,
+ "confidence": 0.99,
+ "end": 375.03,
+ "word": "kids",
+ "punct": "kids",
+ "index": 903
+ },
+ {
+ "start": 375.03,
+ "confidence": 0.53,
+ "end": 375.21,
+ "word": "and",
+ "punct": "and",
+ "index": 904
+ },
+ {
+ "start": 375.2,
+ "confidence": 0.26,
+ "end": 375.55,
+ "word": "learning",
+ "punct": "learning",
+ "index": 905
+ },
+ {
+ "start": 375.61,
+ "confidence": 0.91,
+ "end": 375.76,
+ "word": "with",
+ "punct": "with",
+ "index": 906
+ },
+ {
+ "start": 375.76,
+ "confidence": 0.41,
+ "end": 375.89,
+ "word": "new",
+ "punct": "new",
+ "index": 907
+ },
+ {
+ "start": 375.89,
+ "confidence": 1,
+ "end": 376.65,
+ "word": "results",
+ "punct": "results",
+ "index": 908
+ },
+ {
+ "start": 377.34,
+ "confidence": 0.82,
+ "end": 377.45,
+ "word": "and",
+ "punct": "and",
+ "index": 909
+ },
+ {
+ "start": 377.52,
+ "confidence": 0.99,
+ "end": 377.7,
+ "word": "it's",
+ "punct": "it's",
+ "index": 910
+ },
+ {
+ "start": 377.7,
+ "confidence": 1,
+ "end": 377.88,
+ "word": "not",
+ "punct": "not",
+ "index": 911
+ },
+ {
+ "start": 377.88,
+ "confidence": 1,
+ "end": 378.07,
+ "word": "just",
+ "punct": "just",
+ "index": 912
+ },
+ {
+ "start": 378.07,
+ "confidence": 1,
+ "end": 378.18,
+ "word": "for",
+ "punct": "for",
+ "index": 913
+ },
+ {
+ "start": 378.18,
+ "confidence": 0.99,
+ "end": 378.87,
+ "word": "kids",
+ "punct": "kids",
+ "index": 914
+ },
+ {
+ "start": 379.75,
+ "confidence": 0.78,
+ "end": 380.04,
+ "word": "early",
+ "punct": "early",
+ "index": 915
+ },
+ {
+ "start": 380.04,
+ "confidence": 0.99,
+ "end": 380.42,
+ "word": "studies",
+ "punct": "studies",
+ "index": 916
+ },
+ {
+ "start": 380.42,
+ "confidence": 1,
+ "end": 380.74,
+ "word": "show",
+ "punct": "show",
+ "index": 917
+ },
+ {
+ "start": 380.74,
+ "confidence": 1,
+ "end": 381.05,
+ "word": "that",
+ "punct": "that",
+ "index": 918
+ },
+ {
+ "start": 381.07,
+ "confidence": 0.39,
+ "end": 381.26,
+ "word": "we",
+ "punct": "we",
+ "index": 919
+ },
+ {
+ "start": 381.38,
+ "confidence": 1,
+ "end": 381.54,
+ "word": "can",
+ "punct": "can",
+ "index": 920
+ },
+ {
+ "start": 381.54,
+ "confidence": 1,
+ "end": 381.75,
+ "word": "help",
+ "punct": "help",
+ "index": 921
+ },
+ {
+ "start": 381.75,
+ "confidence": 1,
+ "end": 382.27,
+ "word": "doctors",
+ "punct": "doctors",
+ "index": 922
+ },
+ {
+ "start": 382.27,
+ "confidence": 0.91,
+ "end": 382.41,
+ "word": "and",
+ "punct": "and",
+ "index": 923
+ },
+ {
+ "start": 382.41,
+ "confidence": 0.92,
+ "end": 383.01,
+ "word": "patients",
+ "punct": "patients",
+ "index": 924
+ },
+ {
+ "start": 383.01,
+ "confidence": 0.7,
+ "end": 383.07,
+ "word": "and",
+ "punct": "and",
+ "index": 925
+ },
+ {
+ "start": 383.07,
+ "confidence": 0.83,
+ "end": 383.37,
+ "word": "health",
+ "punct": "health",
+ "index": 926
+ },
+ {
+ "start": 383.38,
+ "confidence": 0.83,
+ "end": 383.66,
+ "word": "care",
+ "punct": "care",
+ "index": 927
+ },
+ {
+ "start": 383.66,
+ "confidence": 1,
+ "end": 384.4,
+ "word": "settings",
+ "punct": "settings",
+ "index": 928
+ },
+ {
+ "start": 384.94,
+ "confidence": 0.65,
+ "end": 385,
+ "word": "and",
+ "punct": "and",
+ "index": 929
+ },
+ {
+ "start": 385.54,
+ "confidence": 1,
+ "end": 385.74,
+ "word": "this",
+ "punct": "this",
+ "index": 930
+ },
+ {
+ "start": 385.74,
+ "confidence": 1,
+ "end": 385.9,
+ "word": "is",
+ "punct": "is",
+ "index": 931
+ },
+ {
+ "start": 385.9,
+ "confidence": 0.98,
+ "end": 385.98,
+ "word": "the",
+ "punct": "the",
+ "index": 932
+ },
+ {
+ "start": 385.98,
+ "confidence": 0.68,
+ "end": 386.41,
+ "word": "pirate",
+ "punct": "pirate",
+ "index": 933
+ },
+ {
+ "start": 386.41,
+ "confidence": 0.62,
+ "end": 386.59,
+ "word": "b.",
+ "punct": "b.",
+ "index": 934
+ },
+ {
+ "start": 386.59,
+ "confidence": 0.62,
+ "end": 386.76,
+ "word": "b.",
+ "punct": "b.",
+ "index": 935
+ },
+ {
+ "start": 386.76,
+ "confidence": 0.62,
+ "end": 386.91,
+ "word": "c.",
+ "punct": "c.",
+ "index": 936
+ },
+ {
+ "start": 387.01,
+ "confidence": 0.54,
+ "end": 387.33,
+ "word": "but",
+ "punct": "But",
+ "index": 937
+ },
+ {
+ "start": 387.36,
+ "confidence": 0.64,
+ "end": 387.56,
+ "word": "it's",
+ "punct": "it's",
+ "index": 938
+ },
+ {
+ "start": 387.56,
+ "confidence": 1,
+ "end": 387.9,
+ "word": "used",
+ "punct": "used",
+ "index": 939
+ },
+ {
+ "start": 387.93,
+ "confidence": 1,
+ "end": 388.05,
+ "word": "in",
+ "punct": "in",
+ "index": 940
+ },
+ {
+ "start": 388.05,
+ "confidence": 1,
+ "end": 388.47,
+ "word": "nursing",
+ "punct": "nursing",
+ "index": 941
+ },
+ {
+ "start": 388.47,
+ "confidence": 0.88,
+ "end": 388.94,
+ "word": "homes",
+ "punct": "homes",
+ "index": 942
+ },
+ {
+ "start": 388.97,
+ "confidence": 1,
+ "end": 389.16,
+ "word": "with",
+ "punct": "with",
+ "index": 943
+ },
+ {
+ "start": 389.16,
+ "confidence": 1,
+ "end": 389.63,
+ "word": "dementia",
+ "punct": "dementia",
+ "index": 944
+ },
+ {
+ "start": 389.63,
+ "confidence": 0.72,
+ "end": 390.37,
+ "word": "patients",
+ "punct": "patients",
+ "index": 945
+ },
+ {
+ "start": 390.53,
+ "confidence": 0.59,
+ "end": 390.66,
+ "word": "has",
+ "punct": "has",
+ "index": 946
+ },
+ {
+ "start": 390.65,
+ "confidence": 0.99,
+ "end": 390.78,
+ "word": "been",
+ "punct": "been",
+ "index": 947
+ },
+ {
+ "start": 390.78,
+ "confidence": 1,
+ "end": 391.08,
+ "word": "around",
+ "punct": "around",
+ "index": 948
+ },
+ {
+ "start": 391.08,
+ "confidence": 1,
+ "end": 391.22,
+ "word": "for",
+ "punct": "for",
+ "index": 949
+ },
+ {
+ "start": 391.22,
+ "confidence": 1,
+ "end": 391.31,
+ "word": "a",
+ "punct": "a",
+ "index": 950
+ },
+ {
+ "start": 391.31,
+ "confidence": 1,
+ "end": 391.83,
+ "word": "while",
+ "punct": "while",
+ "index": 951
+ },
+ {
+ "start": 392.3,
+ "confidence": 0.97,
+ "end": 392.47,
+ "word": "i",
+ "punct": "I",
+ "index": 952
+ },
+ {
+ "start": 392.48,
+ "confidence": 1,
+ "end": 393.08,
+ "word": "remember",
+ "punct": "remember",
+ "index": 953
+ },
+ {
+ "start": 393.37,
+ "confidence": 1,
+ "end": 393.81,
+ "word": "years",
+ "punct": "years",
+ "index": 954
+ },
+ {
+ "start": 393.81,
+ "confidence": 1,
+ "end": 394.06,
+ "word": "ago",
+ "punct": "ago.",
+ "index": 955
+ },
+ {
+ "start": 394.06,
+ "confidence": 0.98,
+ "end": 394.25,
+ "word": "being",
+ "punct": "Being",
+ "index": 956
+ },
+ {
+ "start": 394.28,
+ "confidence": 0.99,
+ "end": 394.37,
+ "word": "a",
+ "punct": "a",
+ "index": 957
+ },
+ {
+ "start": 394.37,
+ "confidence": 1,
+ "end": 395.1,
+ "word": "party",
+ "punct": "party",
+ "index": 958
+ },
+ {
+ "start": 395.59,
+ "confidence": 0.88,
+ "end": 395.73,
+ "word": "and",
+ "punct": "and",
+ "index": 959
+ },
+ {
+ "start": 395.75,
+ "confidence": 1,
+ "end": 396.19,
+ "word": "telling",
+ "punct": "telling",
+ "index": 960
+ },
+ {
+ "start": 396.19,
+ "confidence": 1,
+ "end": 396.44,
+ "word": "someone",
+ "punct": "someone",
+ "index": 961
+ },
+ {
+ "start": 396.44,
+ "confidence": 1,
+ "end": 396.7,
+ "word": "about",
+ "punct": "about",
+ "index": 962
+ },
+ {
+ "start": 396.7,
+ "confidence": 0.39,
+ "end": 396.81,
+ "word": "this",
+ "punct": "this",
+ "index": 963
+ },
+ {
+ "start": 396.84,
+ "confidence": 0.56,
+ "end": 397.34,
+ "word": "throwback",
+ "punct": "throwback",
+ "index": 964
+ },
+ {
+ "start": 397.78,
+ "confidence": 0.42,
+ "end": 397.97,
+ "word": "and",
+ "punct": "and",
+ "index": 965
+ },
+ {
+ "start": 398.32,
+ "confidence": 1,
+ "end": 398.54,
+ "word": "her",
+ "punct": "her",
+ "index": 966
+ },
+ {
+ "start": 398.54,
+ "confidence": 1,
+ "end": 399.06,
+ "word": "response",
+ "punct": "response",
+ "index": 967
+ },
+ {
+ "start": 399.06,
+ "confidence": 1,
+ "end": 399.65,
+ "word": "was",
+ "punct": "was",
+ "index": 968
+ },
+ {
+ "start": 400.28,
+ "confidence": 0.83,
+ "end": 400.5,
+ "word": "on",
+ "punct": "on",
+ "index": 969
+ },
+ {
+ "start": 400.5,
+ "confidence": 0.71,
+ "end": 400.63,
+ "word": "my",
+ "punct": "my",
+ "index": 970
+ },
+ {
+ "start": 400.64,
+ "confidence": 0.85,
+ "end": 401.24,
+ "word": "cart",
+ "punct": "cart.",
+ "index": 971
+ },
+ {
+ "start": 405.04,
+ "confidence": 0.93,
+ "end": 405.11,
+ "word": "i",
+ "punct": "I",
+ "index": 972
+ },
+ {
+ "start": 405.13,
+ "confidence": 1,
+ "end": 405.45,
+ "word": "can't",
+ "punct": "can't",
+ "index": 973
+ },
+ {
+ "start": 405.45,
+ "confidence": 1,
+ "end": 405.78,
+ "word": "believe",
+ "punct": "believe",
+ "index": 974
+ },
+ {
+ "start": 405.78,
+ "confidence": 0.44,
+ "end": 405.89,
+ "word": "we're",
+ "punct": "we're",
+ "index": 975
+ },
+ {
+ "start": 405.89,
+ "confidence": 1,
+ "end": 406.17,
+ "word": "giving",
+ "punct": "giving",
+ "index": 976
+ },
+ {
+ "start": 406.17,
+ "confidence": 1,
+ "end": 406.5,
+ "word": "people",
+ "punct": "people",
+ "index": 977
+ },
+ {
+ "start": 406.51,
+ "confidence": 0.93,
+ "end": 407.09,
+ "word": "robots",
+ "punct": "robots",
+ "index": 978
+ },
+ {
+ "start": 407.11,
+ "confidence": 1,
+ "end": 407.45,
+ "word": "instead",
+ "punct": "instead",
+ "index": 979
+ },
+ {
+ "start": 407.45,
+ "confidence": 1,
+ "end": 407.54,
+ "word": "of",
+ "punct": "of",
+ "index": 980
+ },
+ {
+ "start": 407.54,
+ "confidence": 1,
+ "end": 407.89,
+ "word": "human",
+ "punct": "human",
+ "index": 981
+ },
+ {
+ "start": 407.89,
+ "confidence": 1,
+ "end": 408.49,
+ "word": "care",
+ "punct": "care.",
+ "index": 982
+ },
+ {
+ "start": 410.45,
+ "confidence": 0.54,
+ "end": 410.53,
+ "word": "and",
+ "punct": "And",
+ "index": 983
+ },
+ {
+ "start": 410.64,
+ "confidence": 1,
+ "end": 410.83,
+ "word": "this",
+ "punct": "this",
+ "index": 984
+ },
+ {
+ "start": 410.83,
+ "confidence": 1,
+ "end": 410.94,
+ "word": "is",
+ "punct": "is",
+ "index": 985
+ },
+ {
+ "start": 410.94,
+ "confidence": 1,
+ "end": 411.03,
+ "word": "a",
+ "punct": "a",
+ "index": 986
+ },
+ {
+ "start": 411.03,
+ "confidence": 1,
+ "end": 411.35,
+ "word": "really",
+ "punct": "really",
+ "index": 987
+ },
+ {
+ "start": 411.35,
+ "confidence": 1,
+ "end": 411.68,
+ "word": "common",
+ "punct": "common",
+ "index": 988
+ },
+ {
+ "start": 411.68,
+ "confidence": 0.99,
+ "end": 412.39,
+ "word": "response",
+ "punct": "response",
+ "index": 989
+ },
+ {
+ "start": 412.42,
+ "confidence": 0.99,
+ "end": 412.68,
+ "word": "and",
+ "punct": "and",
+ "index": 990
+ },
+ {
+ "start": 412.71,
+ "confidence": 0.99,
+ "end": 412.81,
+ "word": "i",
+ "punct": "I",
+ "index": 991
+ },
+ {
+ "start": 412.81,
+ "confidence": 1,
+ "end": 413.01,
+ "word": "think",
+ "punct": "think",
+ "index": 992
+ },
+ {
+ "start": 413.01,
+ "confidence": 0.87,
+ "end": 413.17,
+ "word": "it's",
+ "punct": "it's",
+ "index": 993
+ },
+ {
+ "start": 413.26,
+ "confidence": 1,
+ "end": 414.05,
+ "word": "absolutely",
+ "punct": "absolutely",
+ "index": 994
+ },
+ {
+ "start": 414.05,
+ "confidence": 0.97,
+ "end": 414.72,
+ "word": "correct",
+ "punct": "correct",
+ "index": 995
+ },
+ {
+ "start": 414.93,
+ "confidence": 1,
+ "end": 415.3,
+ "word": "because",
+ "punct": "because",
+ "index": 996
+ },
+ {
+ "start": 415.3,
+ "confidence": 1,
+ "end": 415.61,
+ "word": "that",
+ "punct": "that",
+ "index": 997
+ },
+ {
+ "start": 415.61,
+ "confidence": 1,
+ "end": 415.91,
+ "word": "would",
+ "punct": "would",
+ "index": 998
+ },
+ {
+ "start": 415.91,
+ "confidence": 1,
+ "end": 416.15,
+ "word": "be",
+ "punct": "be",
+ "index": 999
+ },
+ {
+ "start": 416.18,
+ "confidence": 1,
+ "end": 417.01,
+ "word": "terrible",
+ "punct": "terrible.",
+ "index": 1000
+ },
+ {
+ "start": 417.44,
+ "confidence": 0.43,
+ "end": 417.49,
+ "word": "and",
+ "punct": "And",
+ "index": 1001
+ },
+ {
+ "start": 417.89,
+ "confidence": 1,
+ "end": 418.05,
+ "word": "in",
+ "punct": "in",
+ "index": 1002
+ },
+ {
+ "start": 418.05,
+ "confidence": 1,
+ "end": 418.24,
+ "word": "this",
+ "punct": "this",
+ "index": 1003
+ },
+ {
+ "start": 418.24,
+ "confidence": 1,
+ "end": 418.46,
+ "word": "case",
+ "punct": "case.",
+ "index": 1004
+ },
+ {
+ "start": 418.46,
+ "confidence": 0.91,
+ "end": 418.6,
+ "word": "it's",
+ "punct": "It's",
+ "index": 1005
+ },
+ {
+ "start": 418.6,
+ "confidence": 1,
+ "end": 418.81,
+ "word": "not",
+ "punct": "not",
+ "index": 1006
+ },
+ {
+ "start": 418.81,
+ "confidence": 0.68,
+ "end": 418.9,
+ "word": "with",
+ "punct": "with",
+ "index": 1007
+ },
+ {
+ "start": 418.9,
+ "confidence": 0.99,
+ "end": 419.08,
+ "word": "this",
+ "punct": "this",
+ "index": 1008
+ },
+ {
+ "start": 419.08,
+ "confidence": 1,
+ "end": 419.41,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1009
+ },
+ {
+ "start": 419.41,
+ "confidence": 0.95,
+ "end": 419.93,
+ "word": "replace",
+ "punct": "replace",
+ "index": 1010
+ },
+ {
+ "start": 419.97,
+ "confidence": 0.89,
+ "end": 420.27,
+ "word": "it",
+ "punct": "it",
+ "index": 1011
+ },
+ {
+ "start": 420.83,
+ "confidence": 0.99,
+ "end": 420.99,
+ "word": "with",
+ "punct": "with",
+ "index": 1012
+ },
+ {
+ "start": 420.99,
+ "confidence": 0.99,
+ "end": 421.18,
+ "word": "this",
+ "punct": "this",
+ "index": 1013
+ },
+ {
+ "start": 421.18,
+ "confidence": 1,
+ "end": 421.54,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1014
+ },
+ {
+ "start": 421.54,
+ "confidence": 0.99,
+ "end": 422.25,
+ "word": "replaces",
+ "punct": "replaces",
+ "index": 1015
+ },
+ {
+ "start": 422.28,
+ "confidence": 0.65,
+ "end": 422.49,
+ "word": "his",
+ "punct": "his",
+ "index": 1016
+ },
+ {
+ "start": 422.55,
+ "confidence": 0.99,
+ "end": 422.9,
+ "word": "animal",
+ "punct": "animal",
+ "index": 1017
+ },
+ {
+ "start": 422.9,
+ "confidence": 1,
+ "end": 423.62,
+ "word": "therapy",
+ "punct": "therapy",
+ "index": 1018
+ },
+ {
+ "start": 423.98,
+ "confidence": 1,
+ "end": 424.14,
+ "word": "in",
+ "punct": "in",
+ "index": 1019
+ },
+ {
+ "start": 424.14,
+ "confidence": 1,
+ "end": 424.84,
+ "word": "context",
+ "punct": "context",
+ "index": 1020
+ },
+ {
+ "start": 424.86,
+ "confidence": 0.71,
+ "end": 425.16,
+ "word": "which",
+ "punct": "which",
+ "index": 1021
+ },
+ {
+ "start": 425.19,
+ "confidence": 0.83,
+ "end": 425.61,
+ "word": "he",
+ "punct": "he",
+ "index": 1022
+ },
+ {
+ "start": 425.61,
+ "confidence": 0.81,
+ "end": 425.82,
+ "word": "was",
+ "punct": "was",
+ "index": 1023
+ },
+ {
+ "start": 425.83,
+ "confidence": 0.72,
+ "end": 426.14,
+ "word": "real",
+ "punct": "real",
+ "index": 1024
+ },
+ {
+ "start": 426.14,
+ "confidence": 1,
+ "end": 426.87,
+ "word": "animals",
+ "punct": "animals.",
+ "index": 1025
+ },
+ {
+ "start": 427.23,
+ "confidence": 1,
+ "end": 427.44,
+ "word": "we",
+ "punct": "We",
+ "index": 1026
+ },
+ {
+ "start": 427.44,
+ "confidence": 1,
+ "end": 427.78,
+ "word": "can",
+ "punct": "can",
+ "index": 1027
+ },
+ {
+ "start": 427.78,
+ "confidence": 1,
+ "end": 427.95,
+ "word": "use",
+ "punct": "use",
+ "index": 1028
+ },
+ {
+ "start": 427.98,
+ "confidence": 0.64,
+ "end": 428.38,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1029
+ },
+ {
+ "start": 428.38,
+ "confidence": 1,
+ "end": 428.66,
+ "word": "because",
+ "punct": "because",
+ "index": 1030
+ },
+ {
+ "start": 428.66,
+ "confidence": 1,
+ "end": 428.98,
+ "word": "people",
+ "punct": "people",
+ "index": 1031
+ },
+ {
+ "start": 429.04,
+ "confidence": 1,
+ "end": 429.96,
+ "word": "consistently",
+ "punct": "consistently",
+ "index": 1032
+ },
+ {
+ "start": 429.96,
+ "confidence": 0.99,
+ "end": 430.32,
+ "word": "treat",
+ "punct": "treat",
+ "index": 1033
+ },
+ {
+ "start": 430.32,
+ "confidence": 0.99,
+ "end": 430.63,
+ "word": "them",
+ "punct": "them",
+ "index": 1034
+ },
+ {
+ "start": 430.66,
+ "confidence": 1,
+ "end": 430.87,
+ "word": "like",
+ "punct": "like",
+ "index": 1035
+ },
+ {
+ "start": 430.87,
+ "confidence": 1,
+ "end": 431.33,
+ "word": "more",
+ "punct": "more.",
+ "index": 1036
+ },
+ {
+ "start": 431.72,
+ "confidence": 1,
+ "end": 431.99,
+ "word": "more",
+ "punct": "More",
+ "index": 1037
+ },
+ {
+ "start": 431.99,
+ "confidence": 1,
+ "end": 432.23,
+ "word": "like",
+ "punct": "like",
+ "index": 1038
+ },
+ {
+ "start": 432.23,
+ "confidence": 0.96,
+ "end": 432.3,
+ "word": "an",
+ "punct": "an",
+ "index": 1039
+ },
+ {
+ "start": 432.34,
+ "confidence": 1,
+ "end": 432.88,
+ "word": "animal",
+ "punct": "animal",
+ "index": 1040
+ },
+ {
+ "start": 432.91,
+ "confidence": 0.92,
+ "end": 433.12,
+ "word": "and",
+ "punct": "and",
+ "index": 1041
+ },
+ {
+ "start": 433.14,
+ "confidence": 0.68,
+ "end": 433.32,
+ "word": "have",
+ "punct": "have",
+ "index": 1042
+ },
+ {
+ "start": 433.41,
+ "confidence": 0.82,
+ "end": 433.67,
+ "word": "it",
+ "punct": "it",
+ "index": 1043
+ },
+ {
+ "start": 435.5,
+ "confidence": 1,
+ "end": 436.19,
+ "word": "acknowledging",
+ "punct": "acknowledging",
+ "index": 1044
+ },
+ {
+ "start": 436.19,
+ "confidence": 0.79,
+ "end": 436.35,
+ "word": "this",
+ "punct": "this",
+ "index": 1045
+ },
+ {
+ "start": 436.36,
+ "confidence": 1,
+ "end": 436.74,
+ "word": "emotional",
+ "punct": "emotional",
+ "index": 1046
+ },
+ {
+ "start": 436.74,
+ "confidence": 1,
+ "end": 437.21,
+ "word": "connection",
+ "punct": "connection.",
+ "index": 1047
+ },
+ {
+ "start": 437.23,
+ "confidence": 0.51,
+ "end": 437.52,
+ "word": "robert",
+ "punct": "Robert,",
+ "index": 1048
+ },
+ {
+ "start": 437.58,
+ "confidence": 1,
+ "end": 437.73,
+ "word": "can",
+ "punct": "can",
+ "index": 1049
+ },
+ {
+ "start": 437.73,
+ "confidence": 1,
+ "end": 438.02,
+ "word": "also",
+ "punct": "also",
+ "index": 1050
+ },
+ {
+ "start": 438.02,
+ "confidence": 1,
+ "end": 438.24,
+ "word": "help",
+ "punct": "help",
+ "index": 1051
+ },
+ {
+ "start": 438.24,
+ "confidence": 0.99,
+ "end": 438.41,
+ "word": "us",
+ "punct": "us",
+ "index": 1052
+ },
+ {
+ "start": 438.41,
+ "confidence": 0.92,
+ "end": 438.93,
+ "word": "anticipate",
+ "punct": "anticipate",
+ "index": 1053
+ },
+ {
+ "start": 438.93,
+ "confidence": 0.99,
+ "end": 439.85,
+ "word": "challenges",
+ "punct": "challenges",
+ "index": 1054
+ },
+ {
+ "start": 439.88,
+ "confidence": 1,
+ "end": 440.13,
+ "word": "as",
+ "punct": "as",
+ "index": 1055
+ },
+ {
+ "start": 440.13,
+ "confidence": 0.98,
+ "end": 440.28,
+ "word": "these",
+ "punct": "these",
+ "index": 1056
+ },
+ {
+ "start": 440.28,
+ "confidence": 0.99,
+ "end": 440.87,
+ "word": "devices",
+ "punct": "devices.",
+ "index": 1057
+ },
+ {
+ "start": 440.87,
+ "confidence": 0.83,
+ "end": 441.23,
+ "word": "move",
+ "punct": "Move",
+ "index": 1058
+ },
+ {
+ "start": 441.23,
+ "confidence": 0.82,
+ "end": 441.42,
+ "word": "into",
+ "punct": "into",
+ "index": 1059
+ },
+ {
+ "start": 441.43,
+ "confidence": 0.99,
+ "end": 441.57,
+ "word": "more",
+ "punct": "more",
+ "index": 1060
+ },
+ {
+ "start": 441.6,
+ "confidence": 1,
+ "end": 442,
+ "word": "intimate",
+ "punct": "intimate",
+ "index": 1061
+ },
+ {
+ "start": 442,
+ "confidence": 1,
+ "end": 442.34,
+ "word": "areas",
+ "punct": "areas",
+ "index": 1062
+ },
+ {
+ "start": 442.34,
+ "confidence": 1,
+ "end": 442.43,
+ "word": "of",
+ "punct": "of",
+ "index": 1063
+ },
+ {
+ "start": 442.43,
+ "confidence": 0.99,
+ "end": 442.78,
+ "word": "people's",
+ "punct": "people's",
+ "index": 1064
+ },
+ {
+ "start": 442.78,
+ "confidence": 1,
+ "end": 443.4,
+ "word": "lives",
+ "punct": "lives",
+ "index": 1065
+ },
+ {
+ "start": 443.74,
+ "confidence": 0.42,
+ "end": 443.79,
+ "word": "and",
+ "punct": "and",
+ "index": 1066
+ },
+ {
+ "start": 444.1,
+ "confidence": 1,
+ "end": 444.23,
+ "word": "for",
+ "punct": "for",
+ "index": 1067
+ },
+ {
+ "start": 444.23,
+ "confidence": 1,
+ "end": 444.8,
+ "word": "example",
+ "punct": "example",
+ "index": 1068
+ },
+ {
+ "start": 444.83,
+ "confidence": 1,
+ "end": 444.98,
+ "word": "is",
+ "punct": "is",
+ "index": 1069
+ },
+ {
+ "start": 444.98,
+ "confidence": 0.94,
+ "end": 445.07,
+ "word": "it",
+ "punct": "it.",
+ "index": 1070
+ },
+ {
+ "start": 445.07,
+ "confidence": 0.98,
+ "end": 445.49,
+ "word": "o.k.",
+ "punct": "o.k.",
+ "index": 1071
+ },
+ {
+ "start": 445.5,
+ "confidence": 0.97,
+ "end": 445.63,
+ "word": "if",
+ "punct": "If",
+ "index": 1072
+ },
+ {
+ "start": 445.63,
+ "confidence": 0.99,
+ "end": 445.74,
+ "word": "your",
+ "punct": "your",
+ "index": 1073
+ },
+ {
+ "start": 445.74,
+ "confidence": 1,
+ "end": 446.43,
+ "word": "child's",
+ "punct": "child's",
+ "index": 1074
+ },
+ {
+ "start": 446.68,
+ "confidence": 0.98,
+ "end": 447,
+ "word": "teddy",
+ "punct": "teddy",
+ "index": 1075
+ },
+ {
+ "start": 446.99,
+ "confidence": 0.98,
+ "end": 447.2,
+ "word": "bear",
+ "punct": "bear",
+ "index": 1076
+ },
+ {
+ "start": 447.21,
+ "confidence": 0.95,
+ "end": 447.54,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1077
+ },
+ {
+ "start": 447.54,
+ "confidence": 0.89,
+ "end": 447.87,
+ "word": "records",
+ "punct": "records",
+ "index": 1078
+ },
+ {
+ "start": 447.87,
+ "confidence": 1,
+ "end": 448.19,
+ "word": "private",
+ "punct": "private",
+ "index": 1079
+ },
+ {
+ "start": 448.19,
+ "confidence": 1,
+ "end": 449.18,
+ "word": "conversations",
+ "punct": "conversations.",
+ "index": 1080
+ },
+ {
+ "start": 449.76,
+ "confidence": 1,
+ "end": 449.89,
+ "word": "is",
+ "punct": "Is",
+ "index": 1081
+ },
+ {
+ "start": 449.89,
+ "confidence": 1,
+ "end": 449.98,
+ "word": "it",
+ "punct": "it.",
+ "index": 1082
+ },
+ {
+ "start": 449.98,
+ "confidence": 0.98,
+ "end": 450.29,
+ "word": "o.k.",
+ "punct": "o.k.",
+ "index": 1083
+ },
+ {
+ "start": 450.29,
+ "confidence": 0.92,
+ "end": 450.41,
+ "word": "if",
+ "punct": "If",
+ "index": 1084
+ },
+ {
+ "start": 450.41,
+ "confidence": 0.79,
+ "end": 450.58,
+ "word": "your",
+ "punct": "your",
+ "index": 1085
+ },
+ {
+ "start": 450.59,
+ "confidence": 1,
+ "end": 451.04,
+ "word": "sex",
+ "punct": "sex",
+ "index": 1086
+ },
+ {
+ "start": 451.04,
+ "confidence": 0.99,
+ "end": 451.47,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1087
+ },
+ {
+ "start": 451.47,
+ "confidence": 0.64,
+ "end": 451.65,
+ "word": "has",
+ "punct": "has",
+ "index": 1088
+ },
+ {
+ "start": 451.65,
+ "confidence": 1,
+ "end": 452.31,
+ "word": "compelling",
+ "punct": "compelling",
+ "index": 1089
+ },
+ {
+ "start": 452.34,
+ "confidence": 1,
+ "end": 452.54,
+ "word": "in",
+ "punct": "in",
+ "index": 1090
+ },
+ {
+ "start": 452.58,
+ "confidence": 0.57,
+ "end": 452.86,
+ "word": "our",
+ "punct": "our",
+ "index": 1091
+ },
+ {
+ "start": 452.88,
+ "confidence": 0.8,
+ "end": 453.79,
+ "word": "purchasers",
+ "punct": "purchasers",
+ "index": 1092
+ },
+ {
+ "start": 455.26,
+ "confidence": 1,
+ "end": 455.67,
+ "word": "because",
+ "punct": "because",
+ "index": 1093
+ },
+ {
+ "start": 455.73,
+ "confidence": 0.96,
+ "end": 456.02,
+ "word": "rope",
+ "punct": "rope.",
+ "index": 1094
+ },
+ {
+ "start": 456.02,
+ "confidence": 0.89,
+ "end": 456.32,
+ "word": "that's",
+ "punct": "That's",
+ "index": 1095
+ },
+ {
+ "start": 456.32,
+ "confidence": 0.93,
+ "end": 456.65,
+ "word": "plus",
+ "punct": "plus",
+ "index": 1096
+ },
+ {
+ "start": 456.66,
+ "confidence": 0.98,
+ "end": 457.78,
+ "word": "capitalism",
+ "punct": "capitalism",
+ "index": 1097
+ },
+ {
+ "start": 457.81,
+ "confidence": 1,
+ "end": 458.17,
+ "word": "equals",
+ "punct": "equals",
+ "index": 1098
+ },
+ {
+ "start": 458.17,
+ "confidence": 0.98,
+ "end": 458.91,
+ "word": "questions",
+ "punct": "questions",
+ "index": 1099
+ },
+ {
+ "start": 458.94,
+ "confidence": 1,
+ "end": 459.52,
+ "word": "around",
+ "punct": "around",
+ "index": 1100
+ },
+ {
+ "start": 459.72,
+ "confidence": 1,
+ "end": 460.18,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 1101
+ },
+ {
+ "start": 460.18,
+ "confidence": 1,
+ "end": 460.79,
+ "word": "protection",
+ "punct": "protection",
+ "index": 1102
+ },
+ {
+ "start": 460.79,
+ "confidence": 1,
+ "end": 460.89,
+ "word": "and",
+ "punct": "and",
+ "index": 1103
+ },
+ {
+ "start": 460.89,
+ "confidence": 1,
+ "end": 461.58,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 1104
+ },
+ {
+ "start": 462.47,
+ "confidence": 0.85,
+ "end": 462.59,
+ "word": "and",
+ "punct": "and",
+ "index": 1105
+ },
+ {
+ "start": 462.68,
+ "confidence": 1,
+ "end": 462.9,
+ "word": "those",
+ "punct": "those",
+ "index": 1106
+ },
+ {
+ "start": 462.9,
+ "confidence": 1,
+ "end": 463.14,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 1107
+ },
+ {
+ "start": 463.14,
+ "confidence": 1,
+ "end": 463.27,
+ "word": "the",
+ "punct": "the",
+ "index": 1108
+ },
+ {
+ "start": 463.27,
+ "confidence": 1,
+ "end": 463.54,
+ "word": "only",
+ "punct": "only",
+ "index": 1109
+ },
+ {
+ "start": 463.54,
+ "confidence": 1,
+ "end": 463.9,
+ "word": "reason",
+ "punct": "reason,",
+ "index": 1110
+ },
+ {
+ "start": 463.9,
+ "confidence": 0.58,
+ "end": 464.08,
+ "word": "said",
+ "punct": "said",
+ "index": 1111
+ },
+ {
+ "start": 464.08,
+ "confidence": 0.82,
+ "end": 464.17,
+ "word": "her",
+ "punct": "her",
+ "index": 1112
+ },
+ {
+ "start": 464.16,
+ "confidence": 1,
+ "end": 464.76,
+ "word": "behaviour",
+ "punct": "behaviour",
+ "index": 1113
+ },
+ {
+ "start": 464.76,
+ "confidence": 0.99,
+ "end": 465.04,
+ "word": "around",
+ "punct": "around",
+ "index": 1114
+ },
+ {
+ "start": 465.04,
+ "confidence": 1,
+ "end": 465.21,
+ "word": "these",
+ "punct": "these",
+ "index": 1115
+ },
+ {
+ "start": 465.21,
+ "confidence": 1,
+ "end": 465.65,
+ "word": "machines",
+ "punct": "machines",
+ "index": 1116
+ },
+ {
+ "start": 465.65,
+ "confidence": 1,
+ "end": 465.82,
+ "word": "could",
+ "punct": "could,",
+ "index": 1117
+ },
+ {
+ "start": 465.82,
+ "confidence": 0.41,
+ "end": 466.25,
+ "word": "madam",
+ "punct": "madam.",
+ "index": 1118
+ },
+ {
+ "start": 468.75,
+ "confidence": 1,
+ "end": 468.83,
+ "word": "a",
+ "punct": "A",
+ "index": 1119
+ },
+ {
+ "start": 468.83,
+ "confidence": 1,
+ "end": 469.09,
+ "word": "few",
+ "punct": "few",
+ "index": 1120
+ },
+ {
+ "start": 469.09,
+ "confidence": 1,
+ "end": 469.36,
+ "word": "years",
+ "punct": "years",
+ "index": 1121
+ },
+ {
+ "start": 469.36,
+ "confidence": 1,
+ "end": 470.12,
+ "word": "after",
+ "punct": "after",
+ "index": 1122
+ },
+ {
+ "start": 470.15,
+ "confidence": 1,
+ "end": 470.36,
+ "word": "that",
+ "punct": "that",
+ "index": 1123
+ },
+ {
+ "start": 470.36,
+ "confidence": 1,
+ "end": 470.7,
+ "word": "first",
+ "punct": "first",
+ "index": 1124
+ },
+ {
+ "start": 470.7,
+ "confidence": 1,
+ "end": 471.09,
+ "word": "initial",
+ "punct": "initial",
+ "index": 1125
+ },
+ {
+ "start": 471.09,
+ "confidence": 1,
+ "end": 471.71,
+ "word": "experience",
+ "punct": "experience.",
+ "index": 1126
+ },
+ {
+ "start": 471.71,
+ "confidence": 1,
+ "end": 471.8,
+ "word": "i",
+ "punct": "I",
+ "index": 1127
+ },
+ {
+ "start": 471.8,
+ "confidence": 1,
+ "end": 472.07,
+ "word": "had",
+ "punct": "had",
+ "index": 1128
+ },
+ {
+ "start": 472.07,
+ "confidence": 1,
+ "end": 472.21,
+ "word": "with",
+ "punct": "with",
+ "index": 1129
+ },
+ {
+ "start": 472.21,
+ "confidence": 0.86,
+ "end": 472.42,
+ "word": "this",
+ "punct": "this",
+ "index": 1130
+ },
+ {
+ "start": 472.42,
+ "confidence": 0.99,
+ "end": 472.67,
+ "word": "baby",
+ "punct": "baby",
+ "index": 1131
+ },
+ {
+ "start": 472.67,
+ "confidence": 1,
+ "end": 473.13,
+ "word": "dinosaur",
+ "punct": "dinosaur",
+ "index": 1132
+ },
+ {
+ "start": 473.13,
+ "confidence": 0.98,
+ "end": 473.58,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1133
+ },
+ {
+ "start": 474.43,
+ "confidence": 0.65,
+ "end": 474.69,
+ "word": "do",
+ "punct": "do",
+ "index": 1134
+ },
+ {
+ "start": 474.7,
+ "confidence": 0.7,
+ "end": 475.16,
+ "word": "workshop",
+ "punct": "workshop",
+ "index": 1135
+ },
+ {
+ "start": 475.16,
+ "confidence": 1,
+ "end": 475.29,
+ "word": "with",
+ "punct": "with",
+ "index": 1136
+ },
+ {
+ "start": 475.29,
+ "confidence": 0.72,
+ "end": 475.4,
+ "word": "her",
+ "punct": "her",
+ "index": 1137
+ },
+ {
+ "start": 475.39,
+ "confidence": 1,
+ "end": 475.7,
+ "word": "friend",
+ "punct": "friend",
+ "index": 1138
+ },
+ {
+ "start": 475.7,
+ "confidence": 0.71,
+ "end": 475.93,
+ "word": "hannah",
+ "punct": "Hannah",
+ "index": 1139
+ },
+ {
+ "start": 475.93,
+ "confidence": 0.39,
+ "end": 476.19,
+ "word": "scott",
+ "punct": "Scott.",
+ "index": 1140
+ },
+ {
+ "start": 476.2,
+ "confidence": 0.27,
+ "end": 476.62,
+ "word": "scott",
+ "punct": "Scott,",
+ "index": 1141
+ },
+ {
+ "start": 476.9,
+ "confidence": 0.79,
+ "end": 477.27,
+ "word": "then",
+ "punct": "then",
+ "index": 1142
+ },
+ {
+ "start": 477.55,
+ "confidence": 0.99,
+ "end": 477.68,
+ "word": "we",
+ "punct": "we",
+ "index": 1143
+ },
+ {
+ "start": 477.68,
+ "confidence": 1,
+ "end": 477.89,
+ "word": "took",
+ "punct": "took",
+ "index": 1144
+ },
+ {
+ "start": 477.89,
+ "confidence": 1,
+ "end": 478.27,
+ "word": "five",
+ "punct": "five",
+ "index": 1145
+ },
+ {
+ "start": 478.27,
+ "confidence": 1,
+ "end": 478.36,
+ "word": "of",
+ "punct": "of",
+ "index": 1146
+ },
+ {
+ "start": 478.36,
+ "confidence": 1,
+ "end": 478.67,
+ "word": "these",
+ "punct": "these",
+ "index": 1147
+ },
+ {
+ "start": 478.67,
+ "confidence": 0.99,
+ "end": 478.9,
+ "word": "baby",
+ "punct": "baby",
+ "index": 1148
+ },
+ {
+ "start": 478.9,
+ "confidence": 0.97,
+ "end": 479.32,
+ "word": "dinosaur",
+ "punct": "dinosaur",
+ "index": 1149
+ },
+ {
+ "start": 479.33,
+ "confidence": 0.91,
+ "end": 479.79,
+ "word": "about",
+ "punct": "about",
+ "index": 1150
+ },
+ {
+ "start": 479.84,
+ "confidence": 0.99,
+ "end": 480,
+ "word": "we",
+ "punct": "we",
+ "index": 1151
+ },
+ {
+ "start": 480,
+ "confidence": 0.91,
+ "end": 480.2,
+ "word": "give",
+ "punct": "give",
+ "index": 1152
+ },
+ {
+ "start": 480.2,
+ "confidence": 0.94,
+ "end": 480.33,
+ "word": "them",
+ "punct": "them.",
+ "index": 1153
+ },
+ {
+ "start": 480.33,
+ "confidence": 0.91,
+ "end": 480.4,
+ "word": "the",
+ "punct": "The",
+ "index": 1154
+ },
+ {
+ "start": 480.39,
+ "confidence": 1,
+ "end": 480.75,
+ "word": "five",
+ "punct": "five",
+ "index": 1155
+ },
+ {
+ "start": 480.75,
+ "confidence": 1,
+ "end": 481.08,
+ "word": "teams",
+ "punct": "teams",
+ "index": 1156
+ },
+ {
+ "start": 481.08,
+ "confidence": 0.99,
+ "end": 481.18,
+ "word": "of",
+ "punct": "of",
+ "index": 1157
+ },
+ {
+ "start": 481.18,
+ "confidence": 1,
+ "end": 481.72,
+ "word": "people",
+ "punct": "people.",
+ "index": 1158
+ },
+ {
+ "start": 482.31,
+ "confidence": 1,
+ "end": 482.5,
+ "word": "we",
+ "punct": "We",
+ "index": 1159
+ },
+ {
+ "start": 482.5,
+ "confidence": 0.97,
+ "end": 482.7,
+ "word": "had",
+ "punct": "had",
+ "index": 1160
+ },
+ {
+ "start": 482.7,
+ "confidence": 0.6,
+ "end": 482.79,
+ "word": "the",
+ "punct": "the",
+ "index": 1161
+ },
+ {
+ "start": 482.79,
+ "confidence": 1,
+ "end": 483.22,
+ "word": "name",
+ "punct": "name",
+ "index": 1162
+ },
+ {
+ "start": 483.22,
+ "confidence": 1,
+ "end": 483.68,
+ "word": "them",
+ "punct": "them",
+ "index": 1163
+ },
+ {
+ "start": 483.96,
+ "confidence": 0.88,
+ "end": 484.12,
+ "word": "and",
+ "punct": "and",
+ "index": 1164
+ },
+ {
+ "start": 484.12,
+ "confidence": 1,
+ "end": 484.44,
+ "word": "play",
+ "punct": "play",
+ "index": 1165
+ },
+ {
+ "start": 484.44,
+ "confidence": 1,
+ "end": 484.6,
+ "word": "with",
+ "punct": "with",
+ "index": 1166
+ },
+ {
+ "start": 484.6,
+ "confidence": 1,
+ "end": 485.11,
+ "word": "them",
+ "punct": "them",
+ "index": 1167
+ },
+ {
+ "start": 485.14,
+ "confidence": 0.91,
+ "end": 485.24,
+ "word": "and",
+ "punct": "and",
+ "index": 1168
+ },
+ {
+ "start": 485.24,
+ "confidence": 1,
+ "end": 485.79,
+ "word": "interact",
+ "punct": "interact",
+ "index": 1169
+ },
+ {
+ "start": 485.79,
+ "confidence": 1,
+ "end": 485.92,
+ "word": "with",
+ "punct": "with",
+ "index": 1170
+ },
+ {
+ "start": 485.92,
+ "confidence": 1,
+ "end": 486.31,
+ "word": "them",
+ "punct": "them",
+ "index": 1171
+ },
+ {
+ "start": 486.31,
+ "confidence": 1,
+ "end": 486.75,
+ "word": "for",
+ "punct": "for",
+ "index": 1172
+ },
+ {
+ "start": 486.83,
+ "confidence": 1,
+ "end": 487.17,
+ "word": "about",
+ "punct": "about",
+ "index": 1173
+ },
+ {
+ "start": 487.17,
+ "confidence": 1,
+ "end": 487.28,
+ "word": "an",
+ "punct": "an",
+ "index": 1174
+ },
+ {
+ "start": 487.28,
+ "confidence": 1,
+ "end": 487.74,
+ "word": "hour",
+ "punct": "hour.",
+ "index": 1175
+ },
+ {
+ "start": 488.8,
+ "confidence": 1,
+ "end": 489.07,
+ "word": "then",
+ "punct": "Then",
+ "index": 1176
+ },
+ {
+ "start": 489.07,
+ "confidence": 1,
+ "end": 489.19,
+ "word": "we",
+ "punct": "we",
+ "index": 1177
+ },
+ {
+ "start": 489.19,
+ "confidence": 1,
+ "end": 489.7,
+ "word": "unveiled",
+ "punct": "unveiled",
+ "index": 1178
+ },
+ {
+ "start": 489.73,
+ "confidence": 0.88,
+ "end": 489.81,
+ "word": "a",
+ "punct": "a",
+ "index": 1179
+ },
+ {
+ "start": 489.81,
+ "confidence": 0.43,
+ "end": 490.06,
+ "word": "him",
+ "punct": "him",
+ "index": 1180
+ },
+ {
+ "start": 490.06,
+ "confidence": 0.51,
+ "end": 490.22,
+ "word": "or",
+ "punct": "or",
+ "index": 1181
+ },
+ {
+ "start": 490.23,
+ "confidence": 0.97,
+ "end": 490.33,
+ "word": "a",
+ "punct": "a",
+ "index": 1182
+ },
+ {
+ "start": 490.34,
+ "confidence": 0.97,
+ "end": 490.9,
+ "word": "hatchet",
+ "punct": "hatchet",
+ "index": 1183
+ },
+ {
+ "start": 490.92,
+ "confidence": 0.63,
+ "end": 491.01,
+ "word": "and",
+ "punct": "and",
+ "index": 1184
+ },
+ {
+ "start": 491.01,
+ "confidence": 1,
+ "end": 491.14,
+ "word": "we",
+ "punct": "we",
+ "index": 1185
+ },
+ {
+ "start": 491.14,
+ "confidence": 1,
+ "end": 491.39,
+ "word": "told",
+ "punct": "told",
+ "index": 1186
+ },
+ {
+ "start": 491.39,
+ "confidence": 0.99,
+ "end": 491.51,
+ "word": "them",
+ "punct": "them",
+ "index": 1187
+ },
+ {
+ "start": 491.51,
+ "confidence": 1,
+ "end": 491.61,
+ "word": "to",
+ "punct": "to",
+ "index": 1188
+ },
+ {
+ "start": 491.61,
+ "confidence": 1,
+ "end": 492.01,
+ "word": "torture",
+ "punct": "torture",
+ "index": 1189
+ },
+ {
+ "start": 492.01,
+ "confidence": 1,
+ "end": 492.1,
+ "word": "and",
+ "punct": "and",
+ "index": 1190
+ },
+ {
+ "start": 492.1,
+ "confidence": 1,
+ "end": 492.42,
+ "word": "kill",
+ "punct": "kill",
+ "index": 1191
+ },
+ {
+ "start": 492.42,
+ "confidence": 0.95,
+ "end": 492.54,
+ "word": "the",
+ "punct": "the",
+ "index": 1192
+ },
+ {
+ "start": 492.62,
+ "confidence": 0.24,
+ "end": 493.03,
+ "word": "row",
+ "punct": "row",
+ "index": 1193
+ },
+ {
+ "start": 496.18,
+ "confidence": 0.81,
+ "end": 496.25,
+ "word": "and",
+ "punct": "and",
+ "index": 1194
+ },
+ {
+ "start": 496.78,
+ "confidence": 0.59,
+ "end": 496.98,
+ "word": "then",
+ "punct": "then",
+ "index": 1195
+ },
+ {
+ "start": 497.21,
+ "confidence": 0.99,
+ "end": 497.42,
+ "word": "this",
+ "punct": "this",
+ "index": 1196
+ },
+ {
+ "start": 497.42,
+ "confidence": 0.97,
+ "end": 497.67,
+ "word": "turned",
+ "punct": "turned",
+ "index": 1197
+ },
+ {
+ "start": 497.67,
+ "confidence": 0.98,
+ "end": 497.78,
+ "word": "out",
+ "punct": "out",
+ "index": 1198
+ },
+ {
+ "start": 497.78,
+ "confidence": 1,
+ "end": 497.91,
+ "word": "to",
+ "punct": "to",
+ "index": 1199
+ },
+ {
+ "start": 497.91,
+ "confidence": 1,
+ "end": 498.03,
+ "word": "be",
+ "punct": "be",
+ "index": 1200
+ },
+ {
+ "start": 498.03,
+ "confidence": 1,
+ "end": 498.1,
+ "word": "a",
+ "punct": "a",
+ "index": 1201
+ },
+ {
+ "start": 498.1,
+ "confidence": 1,
+ "end": 498.29,
+ "word": "little",
+ "punct": "little",
+ "index": 1202
+ },
+ {
+ "start": 498.29,
+ "confidence": 1,
+ "end": 498.41,
+ "word": "more",
+ "punct": "more",
+ "index": 1203
+ },
+ {
+ "start": 498.41,
+ "confidence": 1,
+ "end": 499.01,
+ "word": "dramatic",
+ "punct": "dramatic",
+ "index": 1204
+ },
+ {
+ "start": 499.01,
+ "confidence": 1,
+ "end": 499.13,
+ "word": "than",
+ "punct": "than",
+ "index": 1205
+ },
+ {
+ "start": 499.13,
+ "confidence": 1,
+ "end": 499.24,
+ "word": "we",
+ "punct": "we",
+ "index": 1206
+ },
+ {
+ "start": 499.24,
+ "confidence": 1,
+ "end": 499.9,
+ "word": "expected",
+ "punct": "expected",
+ "index": 1207
+ },
+ {
+ "start": 499.9,
+ "confidence": 1,
+ "end": 500,
+ "word": "it",
+ "punct": "it",
+ "index": 1208
+ },
+ {
+ "start": 500,
+ "confidence": 1,
+ "end": 500.12,
+ "word": "to",
+ "punct": "to",
+ "index": 1209
+ },
+ {
+ "start": 500.12,
+ "confidence": 1,
+ "end": 500.3,
+ "word": "be",
+ "punct": "be",
+ "index": 1210
+ },
+ {
+ "start": 500.3,
+ "confidence": 1,
+ "end": 500.6,
+ "word": "because",
+ "punct": "because",
+ "index": 1211
+ },
+ {
+ "start": 500.6,
+ "confidence": 1,
+ "end": 500.9,
+ "word": "none",
+ "punct": "none",
+ "index": 1212
+ },
+ {
+ "start": 500.9,
+ "confidence": 1,
+ "end": 501.02,
+ "word": "of",
+ "punct": "of",
+ "index": 1213
+ },
+ {
+ "start": 501.02,
+ "confidence": 1,
+ "end": 501.1,
+ "word": "the",
+ "punct": "the",
+ "index": 1214
+ },
+ {
+ "start": 501.1,
+ "confidence": 0.96,
+ "end": 501.86,
+ "word": "participants",
+ "punct": "participants",
+ "index": 1215
+ },
+ {
+ "start": 501.86,
+ "confidence": 0.55,
+ "end": 502.15,
+ "word": "wouldn't",
+ "punct": "wouldn't",
+ "index": 1216
+ },
+ {
+ "start": 502.44,
+ "confidence": 1,
+ "end": 502.71,
+ "word": "even",
+ "punct": "even",
+ "index": 1217
+ },
+ {
+ "start": 502.71,
+ "confidence": 0.97,
+ "end": 502.83,
+ "word": "so",
+ "punct": "so",
+ "index": 1218
+ },
+ {
+ "start": 502.83,
+ "confidence": 0.97,
+ "end": 503.01,
+ "word": "much",
+ "punct": "much",
+ "index": 1219
+ },
+ {
+ "start": 503.01,
+ "confidence": 0.83,
+ "end": 503.11,
+ "word": "as",
+ "punct": "as",
+ "index": 1220
+ },
+ {
+ "start": 503.11,
+ "confidence": 0.96,
+ "end": 503.56,
+ "word": "straight",
+ "punct": "straight.",
+ "index": 1221
+ },
+ {
+ "start": 504.21,
+ "confidence": 0.75,
+ "end": 504.36,
+ "word": "a",
+ "punct": "A",
+ "index": 1222
+ },
+ {
+ "start": 504.36,
+ "confidence": 0.69,
+ "end": 504.74,
+ "word": "robot",
+ "punct": "robot.",
+ "index": 1223
+ },
+ {
+ "start": 504.76,
+ "confidence": 1,
+ "end": 505.11,
+ "word": "so",
+ "punct": "So",
+ "index": 1224
+ },
+ {
+ "start": 505.42,
+ "confidence": 1,
+ "end": 505.57,
+ "word": "we",
+ "punct": "we",
+ "index": 1225
+ },
+ {
+ "start": 505.57,
+ "confidence": 0.89,
+ "end": 505.65,
+ "word": "had",
+ "punct": "had",
+ "index": 1226
+ },
+ {
+ "start": 505.65,
+ "confidence": 0.91,
+ "end": 505.75,
+ "word": "to",
+ "punct": "to",
+ "index": 1227
+ },
+ {
+ "start": 505.76,
+ "confidence": 0.91,
+ "end": 506.26,
+ "word": "improvise",
+ "punct": "improvise.",
+ "index": 1228
+ },
+ {
+ "start": 507.35,
+ "confidence": 0.53,
+ "end": 507.77,
+ "word": "end",
+ "punct": "End",
+ "index": 1229
+ },
+ {
+ "start": 507.8,
+ "confidence": 0.99,
+ "end": 507.98,
+ "word": "at",
+ "punct": "at",
+ "index": 1230
+ },
+ {
+ "start": 507.99,
+ "confidence": 0.96,
+ "end": 508.16,
+ "word": "some",
+ "punct": "some",
+ "index": 1231
+ },
+ {
+ "start": 508.15,
+ "confidence": 0.96,
+ "end": 508.33,
+ "word": "point",
+ "punct": "point.",
+ "index": 1232
+ },
+ {
+ "start": 508.33,
+ "confidence": 0.42,
+ "end": 508.42,
+ "word": "he",
+ "punct": "He",
+ "index": 1233
+ },
+ {
+ "start": 508.42,
+ "confidence": 1,
+ "end": 508.72,
+ "word": "said",
+ "punct": "said",
+ "index": 1234
+ },
+ {
+ "start": 508.73,
+ "confidence": 0.87,
+ "end": 509.38,
+ "word": "o.k.",
+ "punct": "o.k.",
+ "index": 1235
+ },
+ {
+ "start": 510.07,
+ "confidence": 1,
+ "end": 510.34,
+ "word": "you",
+ "punct": "You",
+ "index": 1236
+ },
+ {
+ "start": 510.34,
+ "confidence": 1,
+ "end": 510.51,
+ "word": "can",
+ "punct": "can",
+ "index": 1237
+ },
+ {
+ "start": 510.51,
+ "confidence": 1,
+ "end": 510.84,
+ "word": "save",
+ "punct": "save",
+ "index": 1238
+ },
+ {
+ "start": 510.84,
+ "confidence": 1,
+ "end": 511.17,
+ "word": "your",
+ "punct": "your",
+ "index": 1239
+ },
+ {
+ "start": 511.17,
+ "confidence": 0.67,
+ "end": 511.61,
+ "word": "team's",
+ "punct": "team's",
+ "index": 1240
+ },
+ {
+ "start": 511.7,
+ "confidence": 0.51,
+ "end": 512.08,
+ "word": "robot",
+ "punct": "robot.",
+ "index": 1241
+ },
+ {
+ "start": 512.11,
+ "confidence": 1,
+ "end": 512.33,
+ "word": "if",
+ "punct": "If",
+ "index": 1242
+ },
+ {
+ "start": 512.33,
+ "confidence": 1,
+ "end": 512.45,
+ "word": "you",
+ "punct": "you",
+ "index": 1243
+ },
+ {
+ "start": 512.45,
+ "confidence": 1,
+ "end": 513.03,
+ "word": "destroy",
+ "punct": "destroy",
+ "index": 1244
+ },
+ {
+ "start": 513.06,
+ "confidence": 0.99,
+ "end": 513.63,
+ "word": "another",
+ "punct": "another",
+ "index": 1245
+ },
+ {
+ "start": 513.63,
+ "confidence": 0.44,
+ "end": 513.89,
+ "word": "team",
+ "punct": "team",
+ "index": 1246
+ },
+ {
+ "start": 513.9,
+ "confidence": 0.25,
+ "end": 514.21,
+ "word": "throw",
+ "punct": "throw.",
+ "index": 1247
+ },
+ {
+ "start": 514.23,
+ "confidence": 0.39,
+ "end": 514.6,
+ "word": "i",
+ "punct": "I",
+ "index": 1248
+ },
+ {
+ "start": 514.77,
+ "confidence": 0.65,
+ "end": 515.58,
+ "word": "i",
+ "punct": "I.",
+ "index": 1249
+ },
+ {
+ "start": 516.52,
+ "confidence": 0.25,
+ "end": 516.6,
+ "word": "and",
+ "punct": "And",
+ "index": 1250
+ },
+ {
+ "start": 516.86,
+ "confidence": 0.39,
+ "end": 517.17,
+ "word": "anyone",
+ "punct": "anyone",
+ "index": 1251
+ },
+ {
+ "start": 517.17,
+ "confidence": 0.98,
+ "end": 517.34,
+ "word": "that",
+ "punct": "that",
+ "index": 1252
+ },
+ {
+ "start": 517.34,
+ "confidence": 1,
+ "end": 517.59,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 1253
+ },
+ {
+ "start": 517.59,
+ "confidence": 1,
+ "end": 517.84,
+ "word": "work",
+ "punct": "work.",
+ "index": 1254
+ },
+ {
+ "start": 517.87,
+ "confidence": 0.36,
+ "end": 517.94,
+ "word": "they",
+ "punct": "They",
+ "index": 1255
+ },
+ {
+ "start": 517.94,
+ "confidence": 0.79,
+ "end": 518.21,
+ "word": "couldn't",
+ "punct": "couldn't",
+ "index": 1256
+ },
+ {
+ "start": 518.22,
+ "confidence": 1,
+ "end": 518.35,
+ "word": "do",
+ "punct": "do",
+ "index": 1257
+ },
+ {
+ "start": 518.35,
+ "confidence": 1,
+ "end": 518.57,
+ "word": "it",
+ "punct": "it.",
+ "index": 1258
+ },
+ {
+ "start": 518.61,
+ "confidence": 0.71,
+ "end": 518.76,
+ "word": "so",
+ "punct": "So",
+ "index": 1259
+ },
+ {
+ "start": 518.79,
+ "confidence": 1,
+ "end": 519.3,
+ "word": "finally",
+ "punct": "finally",
+ "index": 1260
+ },
+ {
+ "start": 519.33,
+ "confidence": 1,
+ "end": 519.75,
+ "word": "said",
+ "punct": "said,",
+ "index": 1261
+ },
+ {
+ "start": 520.05,
+ "confidence": 1,
+ "end": 520.24,
+ "word": "we're",
+ "punct": "We're",
+ "index": 1262
+ },
+ {
+ "start": 520.24,
+ "confidence": 0.85,
+ "end": 520.4,
+ "word": "gonna",
+ "punct": "gonna",
+ "index": 1263
+ },
+ {
+ "start": 520.41,
+ "confidence": 1,
+ "end": 520.88,
+ "word": "destroy",
+ "punct": "destroy",
+ "index": 1264
+ },
+ {
+ "start": 520.91,
+ "confidence": 0.98,
+ "end": 521.24,
+ "word": "all",
+ "punct": "all",
+ "index": 1265
+ },
+ {
+ "start": 521.28,
+ "confidence": 0.98,
+ "end": 521.39,
+ "word": "the",
+ "punct": "the",
+ "index": 1266
+ },
+ {
+ "start": 521.45,
+ "confidence": 0.65,
+ "end": 521.93,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1267
+ },
+ {
+ "start": 521.94,
+ "confidence": 0.65,
+ "end": 522.16,
+ "word": "are",
+ "punct": "are",
+ "index": 1268
+ },
+ {
+ "start": 522.17,
+ "confidence": 1,
+ "end": 522.5,
+ "word": "someone",
+ "punct": "someone",
+ "index": 1269
+ },
+ {
+ "start": 522.5,
+ "confidence": 0.95,
+ "end": 522.7,
+ "word": "takes",
+ "punct": "takes",
+ "index": 1270
+ },
+ {
+ "start": 522.7,
+ "confidence": 0.87,
+ "end": 522.78,
+ "word": "a",
+ "punct": "a",
+ "index": 1271
+ },
+ {
+ "start": 522.78,
+ "confidence": 0.88,
+ "end": 523.22,
+ "word": "hatchet",
+ "punct": "hatchet",
+ "index": 1272
+ },
+ {
+ "start": 523.23,
+ "confidence": 0.93,
+ "end": 523.36,
+ "word": "to",
+ "punct": "to",
+ "index": 1273
+ },
+ {
+ "start": 523.36,
+ "confidence": 1,
+ "end": 523.57,
+ "word": "one",
+ "punct": "one",
+ "index": 1274
+ },
+ {
+ "start": 523.57,
+ "confidence": 1,
+ "end": 523.72,
+ "word": "of",
+ "punct": "of",
+ "index": 1275
+ },
+ {
+ "start": 523.72,
+ "confidence": 1,
+ "end": 524,
+ "word": "them",
+ "punct": "them.",
+ "index": 1276
+ },
+ {
+ "start": 525.74,
+ "confidence": 1,
+ "end": 525.98,
+ "word": "this",
+ "punct": "This",
+ "index": 1277
+ },
+ {
+ "start": 525.98,
+ "confidence": 1,
+ "end": 526.24,
+ "word": "guy",
+ "punct": "guy",
+ "index": 1278
+ },
+ {
+ "start": 526.24,
+ "confidence": 1,
+ "end": 526.51,
+ "word": "stood",
+ "punct": "stood",
+ "index": 1279
+ },
+ {
+ "start": 526.51,
+ "confidence": 1,
+ "end": 526.8,
+ "word": "up",
+ "punct": "up",
+ "index": 1280
+ },
+ {
+ "start": 526.83,
+ "confidence": 1,
+ "end": 527.05,
+ "word": "and",
+ "punct": "and",
+ "index": 1281
+ },
+ {
+ "start": 527.05,
+ "confidence": 1,
+ "end": 527.29,
+ "word": "he",
+ "punct": "he",
+ "index": 1282
+ },
+ {
+ "start": 527.29,
+ "confidence": 1,
+ "end": 527.64,
+ "word": "took",
+ "punct": "took",
+ "index": 1283
+ },
+ {
+ "start": 527.64,
+ "confidence": 1,
+ "end": 527.73,
+ "word": "the",
+ "punct": "the",
+ "index": 1284
+ },
+ {
+ "start": 527.8,
+ "confidence": 0.82,
+ "end": 528.37,
+ "word": "hatchet",
+ "punct": "hatchet",
+ "index": 1285
+ },
+ {
+ "start": 528.72,
+ "confidence": 0.89,
+ "end": 528.76,
+ "word": "and",
+ "punct": "and",
+ "index": 1286
+ },
+ {
+ "start": 529.32,
+ "confidence": 0.99,
+ "end": 529.45,
+ "word": "the",
+ "punct": "the",
+ "index": 1287
+ },
+ {
+ "start": 529.45,
+ "confidence": 0.98,
+ "end": 529.74,
+ "word": "whole",
+ "punct": "whole",
+ "index": 1288
+ },
+ {
+ "start": 529.74,
+ "confidence": 1,
+ "end": 530.09,
+ "word": "room",
+ "punct": "room,",
+ "index": 1289
+ },
+ {
+ "start": 530.09,
+ "confidence": 0.51,
+ "end": 530.52,
+ "word": "winston",
+ "punct": "Winston.",
+ "index": 1290
+ },
+ {
+ "start": 530.53,
+ "confidence": 0.29,
+ "end": 530.72,
+ "word": "see",
+ "punct": "See",
+ "index": 1291
+ },
+ {
+ "start": 530.75,
+ "confidence": 0.99,
+ "end": 531.1,
+ "word": "brother",
+ "punct": "brother",
+ "index": 1292
+ },
+ {
+ "start": 531.1,
+ "confidence": 0.72,
+ "end": 531.37,
+ "word": "had",
+ "punct": "had",
+ "index": 1293
+ },
+ {
+ "start": 531.36,
+ "confidence": 0.54,
+ "end": 531.44,
+ "word": "to",
+ "punct": "to",
+ "index": 1294
+ },
+ {
+ "start": 531.45,
+ "confidence": 0.98,
+ "end": 531.77,
+ "word": "down",
+ "punct": "down",
+ "index": 1295
+ },
+ {
+ "start": 531.76,
+ "confidence": 0.55,
+ "end": 531.83,
+ "word": "on",
+ "punct": "on",
+ "index": 1296
+ },
+ {
+ "start": 531.83,
+ "confidence": 0.87,
+ "end": 531.95,
+ "word": "the",
+ "punct": "the",
+ "index": 1297
+ },
+ {
+ "start": 531.95,
+ "confidence": 0.48,
+ "end": 532.43,
+ "word": "robot's",
+ "punct": "robot's",
+ "index": 1298
+ },
+ {
+ "start": 532.43,
+ "confidence": 1,
+ "end": 533.06,
+ "word": "neck",
+ "punct": "neck",
+ "index": 1299
+ },
+ {
+ "start": 533.7,
+ "confidence": 0.48,
+ "end": 533.99,
+ "word": "and",
+ "punct": "and",
+ "index": 1300
+ },
+ {
+ "start": 534.07,
+ "confidence": 1,
+ "end": 534.31,
+ "word": "there",
+ "punct": "there",
+ "index": 1301
+ },
+ {
+ "start": 534.31,
+ "confidence": 0.98,
+ "end": 534.52,
+ "word": "was",
+ "punct": "was",
+ "index": 1302
+ },
+ {
+ "start": 534.52,
+ "confidence": 1,
+ "end": 534.69,
+ "word": "this",
+ "punct": "this",
+ "index": 1303
+ },
+ {
+ "start": 534.69,
+ "confidence": 0.99,
+ "end": 535.14,
+ "word": "half",
+ "punct": "half",
+ "index": 1304
+ },
+ {
+ "start": 535.14,
+ "confidence": 0.97,
+ "end": 535.87,
+ "word": "joking",
+ "punct": "joking.",
+ "index": 1305
+ },
+ {
+ "start": 536.02,
+ "confidence": 0.59,
+ "end": 536.66,
+ "word": "half",
+ "punct": "Half",
+ "index": 1306
+ },
+ {
+ "start": 536.69,
+ "confidence": 1,
+ "end": 537.43,
+ "word": "serious",
+ "punct": "serious",
+ "index": 1307
+ },
+ {
+ "start": 537.43,
+ "confidence": 1,
+ "end": 537.81,
+ "word": "moment",
+ "punct": "moment",
+ "index": 1308
+ },
+ {
+ "start": 537.81,
+ "confidence": 1,
+ "end": 537.88,
+ "word": "of",
+ "punct": "of",
+ "index": 1309
+ },
+ {
+ "start": 537.88,
+ "confidence": 0.99,
+ "end": 538.57,
+ "word": "silence",
+ "punct": "silence",
+ "index": 1310
+ },
+ {
+ "start": 538.57,
+ "confidence": 1,
+ "end": 538.81,
+ "word": "in",
+ "punct": "in",
+ "index": 1311
+ },
+ {
+ "start": 538.81,
+ "confidence": 1,
+ "end": 538.91,
+ "word": "the",
+ "punct": "the",
+ "index": 1312
+ },
+ {
+ "start": 538.91,
+ "confidence": 1,
+ "end": 539.54,
+ "word": "room",
+ "punct": "room",
+ "index": 1313
+ },
+ {
+ "start": 540.03,
+ "confidence": 0.89,
+ "end": 540.29,
+ "word": "from",
+ "punct": "from",
+ "index": 1314
+ },
+ {
+ "start": 540.29,
+ "confidence": 1,
+ "end": 540.49,
+ "word": "this",
+ "punct": "this",
+ "index": 1315
+ },
+ {
+ "start": 540.49,
+ "confidence": 0.87,
+ "end": 540.86,
+ "word": "farm",
+ "punct": "farm",
+ "index": 1316
+ },
+ {
+ "start": 540.86,
+ "confidence": 0.57,
+ "end": 541.06,
+ "word": "and",
+ "punct": "and",
+ "index": 1317
+ },
+ {
+ "start": 541.11,
+ "confidence": 0.34,
+ "end": 541.58,
+ "word": "but",
+ "punct": "but",
+ "index": 1318
+ },
+ {
+ "start": 543.21,
+ "confidence": 1,
+ "end": 543.59,
+ "word": "so",
+ "punct": "so",
+ "index": 1319
+ },
+ {
+ "start": 543.65,
+ "confidence": 0.99,
+ "end": 543.89,
+ "word": "that",
+ "punct": "that",
+ "index": 1320
+ },
+ {
+ "start": 543.89,
+ "confidence": 0.99,
+ "end": 544.05,
+ "word": "was",
+ "punct": "was",
+ "index": 1321
+ },
+ {
+ "start": 544.05,
+ "confidence": 0.96,
+ "end": 544.17,
+ "word": "a",
+ "punct": "a",
+ "index": 1322
+ },
+ {
+ "start": 544.17,
+ "confidence": 1,
+ "end": 544.52,
+ "word": "really",
+ "punct": "really",
+ "index": 1323
+ },
+ {
+ "start": 544.55,
+ "confidence": 1,
+ "end": 545.37,
+ "word": "interesting",
+ "punct": "interesting",
+ "index": 1324
+ },
+ {
+ "start": 545.37,
+ "confidence": 1,
+ "end": 546.54,
+ "word": "experience",
+ "punct": "experience.",
+ "index": 1325
+ },
+ {
+ "start": 547.04,
+ "confidence": 1,
+ "end": 547.27,
+ "word": "it",
+ "punct": "It",
+ "index": 1326
+ },
+ {
+ "start": 547.27,
+ "confidence": 1,
+ "end": 547.54,
+ "word": "wasn't",
+ "punct": "wasn't",
+ "index": 1327
+ },
+ {
+ "start": 547.54,
+ "confidence": 0.99,
+ "end": 547.59,
+ "word": "a",
+ "punct": "a",
+ "index": 1328
+ },
+ {
+ "start": 547.59,
+ "confidence": 1,
+ "end": 548.26,
+ "word": "controlled",
+ "punct": "controlled",
+ "index": 1329
+ },
+ {
+ "start": 548.26,
+ "confidence": 1,
+ "end": 548.74,
+ "word": "study",
+ "punct": "study",
+ "index": 1330
+ },
+ {
+ "start": 548.74,
+ "confidence": 1,
+ "end": 548.94,
+ "word": "up",
+ "punct": "up",
+ "index": 1331
+ },
+ {
+ "start": 548.94,
+ "confidence": 0.88,
+ "end": 549.08,
+ "word": "your",
+ "punct": "your",
+ "index": 1332
+ },
+ {
+ "start": 549.08,
+ "confidence": 0.87,
+ "end": 549.4,
+ "word": "sleeve",
+ "punct": "sleeve,",
+ "index": 1333
+ },
+ {
+ "start": 549.4,
+ "confidence": 1,
+ "end": 549.57,
+ "word": "but",
+ "punct": "but",
+ "index": 1334
+ },
+ {
+ "start": 549.57,
+ "confidence": 1,
+ "end": 549.69,
+ "word": "it",
+ "punct": "it",
+ "index": 1335
+ },
+ {
+ "start": 549.69,
+ "confidence": 0.98,
+ "end": 549.93,
+ "word": "did",
+ "punct": "did",
+ "index": 1336
+ },
+ {
+ "start": 549.93,
+ "confidence": 0.92,
+ "end": 550.13,
+ "word": "lead",
+ "punct": "lead",
+ "index": 1337
+ },
+ {
+ "start": 550.13,
+ "confidence": 0.87,
+ "end": 550.23,
+ "word": "to",
+ "punct": "to",
+ "index": 1338
+ },
+ {
+ "start": 550.23,
+ "confidence": 0.99,
+ "end": 550.44,
+ "word": "some",
+ "punct": "some",
+ "index": 1339
+ },
+ {
+ "start": 550.44,
+ "confidence": 0.59,
+ "end": 550.72,
+ "word": "leader",
+ "punct": "leader",
+ "index": 1340
+ },
+ {
+ "start": 550.72,
+ "confidence": 0.98,
+ "end": 551.2,
+ "word": "research",
+ "punct": "research",
+ "index": 1341
+ },
+ {
+ "start": 551.2,
+ "confidence": 0.72,
+ "end": 551.32,
+ "word": "that",
+ "punct": "that",
+ "index": 1342
+ },
+ {
+ "start": 551.32,
+ "confidence": 0.74,
+ "end": 551.43,
+ "word": "i",
+ "punct": "I",
+ "index": 1343
+ },
+ {
+ "start": 551.43,
+ "confidence": 1,
+ "end": 551.76,
+ "word": "did",
+ "punct": "did.",
+ "index": 1344
+ },
+ {
+ "start": 551.78,
+ "confidence": 0.38,
+ "end": 552.01,
+ "word": "i.",
+ "punct": "i.",
+ "index": 1345
+ },
+ {
+ "start": 552.01,
+ "confidence": 0.45,
+ "end": 552.25,
+ "word": "t.",
+ "punct": "t.",
+ "index": 1346
+ },
+ {
+ "start": 552.27,
+ "confidence": 0.99,
+ "end": 552.46,
+ "word": "with",
+ "punct": "With",
+ "index": 1347
+ },
+ {
+ "start": 552.46,
+ "confidence": 1,
+ "end": 552.87,
+ "word": "plush",
+ "punct": "plush,",
+ "index": 1348
+ },
+ {
+ "start": 552.87,
+ "confidence": 0.91,
+ "end": 553.26,
+ "word": "london",
+ "punct": "London.",
+ "index": 1349
+ },
+ {
+ "start": 553.27,
+ "confidence": 0.58,
+ "end": 553.59,
+ "word": "cynthia",
+ "punct": "Cynthia",
+ "index": 1350
+ },
+ {
+ "start": 553.63,
+ "confidence": 0.83,
+ "end": 553.93,
+ "word": "busy",
+ "punct": "busy.",
+ "index": 1351
+ },
+ {
+ "start": 553.93,
+ "confidence": 0.67,
+ "end": 554.23,
+ "word": "or",
+ "punct": "Or",
+ "index": 1352
+ },
+ {
+ "start": 554.52,
+ "confidence": 1,
+ "end": 554.96,
+ "word": "we",
+ "punct": "we",
+ "index": 1353
+ },
+ {
+ "start": 554.97,
+ "confidence": 0.84,
+ "end": 555.11,
+ "word": "had",
+ "punct": "had",
+ "index": 1354
+ },
+ {
+ "start": 555.11,
+ "confidence": 1,
+ "end": 555.33,
+ "word": "people",
+ "punct": "people",
+ "index": 1355
+ },
+ {
+ "start": 555.33,
+ "confidence": 0.92,
+ "end": 555.54,
+ "word": "come",
+ "punct": "come",
+ "index": 1356
+ },
+ {
+ "start": 555.54,
+ "confidence": 0.88,
+ "end": 555.71,
+ "word": "into",
+ "punct": "into",
+ "index": 1357
+ },
+ {
+ "start": 555.71,
+ "confidence": 1,
+ "end": 555.82,
+ "word": "the",
+ "punct": "the",
+ "index": 1358
+ },
+ {
+ "start": 555.82,
+ "confidence": 1,
+ "end": 556.3,
+ "word": "lab",
+ "punct": "lab",
+ "index": 1359
+ },
+ {
+ "start": 556.67,
+ "confidence": 0.98,
+ "end": 556.9,
+ "word": "and",
+ "punct": "and",
+ "index": 1360
+ },
+ {
+ "start": 556.9,
+ "confidence": 0.9,
+ "end": 557.25,
+ "word": "smash",
+ "punct": "smash",
+ "index": 1361
+ },
+ {
+ "start": 557.25,
+ "confidence": 1,
+ "end": 557.43,
+ "word": "these",
+ "punct": "these",
+ "index": 1362
+ },
+ {
+ "start": 557.43,
+ "confidence": 0.86,
+ "end": 557.85,
+ "word": "hex",
+ "punct": "Hex",
+ "index": 1363
+ },
+ {
+ "start": 557.85,
+ "confidence": 0.97,
+ "end": 558.21,
+ "word": "bugs",
+ "punct": "bugs",
+ "index": 1364
+ },
+ {
+ "start": 558.21,
+ "confidence": 0.81,
+ "end": 558.32,
+ "word": "that",
+ "punct": "that",
+ "index": 1365
+ },
+ {
+ "start": 558.32,
+ "confidence": 0.99,
+ "end": 558.6,
+ "word": "move",
+ "punct": "move",
+ "index": 1366
+ },
+ {
+ "start": 558.6,
+ "confidence": 1,
+ "end": 559.1,
+ "word": "around",
+ "punct": "around",
+ "index": 1367
+ },
+ {
+ "start": 559.1,
+ "confidence": 1,
+ "end": 559.24,
+ "word": "in",
+ "punct": "in",
+ "index": 1368
+ },
+ {
+ "start": 559.24,
+ "confidence": 0.72,
+ "end": 559.3,
+ "word": "a",
+ "punct": "a",
+ "index": 1369
+ },
+ {
+ "start": 559.29,
+ "confidence": 0.97,
+ "end": 559.5,
+ "word": "really",
+ "punct": "really",
+ "index": 1370
+ },
+ {
+ "start": 559.5,
+ "confidence": 0.89,
+ "end": 559.9,
+ "word": "lifelike",
+ "punct": "lifelike",
+ "index": 1371
+ },
+ {
+ "start": 559.92,
+ "confidence": 0.88,
+ "end": 560.1,
+ "word": "way",
+ "punct": "way,",
+ "index": 1372
+ },
+ {
+ "start": 560.1,
+ "confidence": 0.94,
+ "end": 560.31,
+ "word": "like",
+ "punct": "like",
+ "index": 1373
+ },
+ {
+ "start": 560.31,
+ "confidence": 1,
+ "end": 561.16,
+ "word": "insects",
+ "punct": "insects.",
+ "index": 1374
+ },
+ {
+ "start": 561.28,
+ "confidence": 0.91,
+ "end": 561.48,
+ "word": "so",
+ "punct": "So",
+ "index": 1375
+ },
+ {
+ "start": 561.48,
+ "confidence": 0.99,
+ "end": 561.71,
+ "word": "instead",
+ "punct": "instead",
+ "index": 1376
+ },
+ {
+ "start": 561.71,
+ "confidence": 1,
+ "end": 561.8,
+ "word": "of",
+ "punct": "of",
+ "index": 1377
+ },
+ {
+ "start": 561.8,
+ "confidence": 1,
+ "end": 562.09,
+ "word": "choosing",
+ "punct": "choosing",
+ "index": 1378
+ },
+ {
+ "start": 562.09,
+ "confidence": 1,
+ "end": 562.36,
+ "word": "something",
+ "punct": "something",
+ "index": 1379
+ },
+ {
+ "start": 562.39,
+ "confidence": 0.63,
+ "end": 562.75,
+ "word": "huge",
+ "punct": "huge.",
+ "index": 1380
+ },
+ {
+ "start": 562.81,
+ "confidence": 0.99,
+ "end": 563.33,
+ "word": "people",
+ "punct": "People",
+ "index": 1381
+ },
+ {
+ "start": 563.69,
+ "confidence": 0.93,
+ "end": 563.83,
+ "word": "are",
+ "punct": "are",
+ "index": 1382
+ },
+ {
+ "start": 563.86,
+ "confidence": 0.98,
+ "end": 564.23,
+ "word": "trying",
+ "punct": "trying",
+ "index": 1383
+ },
+ {
+ "start": 564.23,
+ "confidence": 1,
+ "end": 564.48,
+ "word": "to",
+ "punct": "to",
+ "index": 1384
+ },
+ {
+ "start": 564.48,
+ "confidence": 0.76,
+ "end": 564.65,
+ "word": "reach",
+ "punct": "reach",
+ "index": 1385
+ },
+ {
+ "start": 564.65,
+ "confidence": 0.42,
+ "end": 564.76,
+ "word": "for",
+ "punct": "for",
+ "index": 1386
+ },
+ {
+ "start": 564.76,
+ "confidence": 1,
+ "end": 565.06,
+ "word": "something",
+ "punct": "something",
+ "index": 1387
+ },
+ {
+ "start": 565.06,
+ "confidence": 1,
+ "end": 565.23,
+ "word": "more",
+ "punct": "more",
+ "index": 1388
+ },
+ {
+ "start": 565.23,
+ "confidence": 1,
+ "end": 566.05,
+ "word": "basic",
+ "punct": "basic.",
+ "index": 1389
+ },
+ {
+ "start": 566.59,
+ "confidence": 1,
+ "end": 567.04,
+ "word": "and",
+ "punct": "And",
+ "index": 1390
+ },
+ {
+ "start": 567.23,
+ "confidence": 0.98,
+ "end": 567.41,
+ "word": "what",
+ "punct": "what",
+ "index": 1391
+ },
+ {
+ "start": 567.41,
+ "confidence": 1,
+ "end": 567.53,
+ "word": "we",
+ "punct": "we",
+ "index": 1392
+ },
+ {
+ "start": 567.53,
+ "confidence": 1,
+ "end": 568.18,
+ "word": "found",
+ "punct": "found",
+ "index": 1393
+ },
+ {
+ "start": 568.18,
+ "confidence": 1,
+ "end": 568.55,
+ "word": "was",
+ "punct": "was",
+ "index": 1394
+ },
+ {
+ "start": 568.55,
+ "confidence": 0.99,
+ "end": 568.77,
+ "word": "that",
+ "punct": "that",
+ "index": 1395
+ },
+ {
+ "start": 568.8,
+ "confidence": 0.91,
+ "end": 569.22,
+ "word": "high",
+ "punct": "high",
+ "index": 1396
+ },
+ {
+ "start": 569.22,
+ "confidence": 0.66,
+ "end": 569.65,
+ "word": "embassy",
+ "punct": "embassy",
+ "index": 1397
+ },
+ {
+ "start": 569.65,
+ "confidence": 1,
+ "end": 570.1,
+ "word": "people",
+ "punct": "people",
+ "index": 1398
+ },
+ {
+ "start": 570.1,
+ "confidence": 0.99,
+ "end": 570.25,
+ "word": "would",
+ "punct": "would",
+ "index": 1399
+ },
+ {
+ "start": 570.25,
+ "confidence": 0.98,
+ "end": 570.77,
+ "word": "hesitate",
+ "punct": "hesitate,",
+ "index": 1400
+ },
+ {
+ "start": 570.78,
+ "confidence": 0.45,
+ "end": 570.97,
+ "word": "more",
+ "punct": "more",
+ "index": 1401
+ },
+ {
+ "start": 570.99,
+ "confidence": 0.42,
+ "end": 571.24,
+ "word": "hit",
+ "punct": "hit",
+ "index": 1402
+ },
+ {
+ "start": 571.25,
+ "confidence": 0.99,
+ "end": 571.35,
+ "word": "the",
+ "punct": "the",
+ "index": 1403
+ },
+ {
+ "start": 571.35,
+ "confidence": 0.49,
+ "end": 571.69,
+ "word": "heck's",
+ "punct": "heck's",
+ "index": 1404
+ },
+ {
+ "start": 571.7,
+ "confidence": 0.59,
+ "end": 572.22,
+ "word": "bucks",
+ "punct": "bucks.",
+ "index": 1405
+ },
+ {
+ "start": 573.62,
+ "confidence": 0.99,
+ "end": 573.81,
+ "word": "this",
+ "punct": "This",
+ "index": 1406
+ },
+ {
+ "start": 573.82,
+ "confidence": 0.99,
+ "end": 573.92,
+ "word": "is",
+ "punct": "is",
+ "index": 1407
+ },
+ {
+ "start": 573.92,
+ "confidence": 1,
+ "end": 574.1,
+ "word": "just",
+ "punct": "just",
+ "index": 1408
+ },
+ {
+ "start": 574.1,
+ "confidence": 1,
+ "end": 574.16,
+ "word": "a",
+ "punct": "a",
+ "index": 1409
+ },
+ {
+ "start": 574.16,
+ "confidence": 1,
+ "end": 574.4,
+ "word": "little",
+ "punct": "little",
+ "index": 1410
+ },
+ {
+ "start": 574.4,
+ "confidence": 1,
+ "end": 574.91,
+ "word": "study",
+ "punct": "study,",
+ "index": 1411
+ },
+ {
+ "start": 574.91,
+ "confidence": 1,
+ "end": 575.27,
+ "word": "but",
+ "punct": "but",
+ "index": 1412
+ },
+ {
+ "start": 575.49,
+ "confidence": 0.66,
+ "end": 575.72,
+ "word": "it's",
+ "punct": "it's",
+ "index": 1413
+ },
+ {
+ "start": 575.74,
+ "confidence": 1,
+ "end": 575.97,
+ "word": "part",
+ "punct": "part",
+ "index": 1414
+ },
+ {
+ "start": 575.97,
+ "confidence": 1,
+ "end": 576.07,
+ "word": "of",
+ "punct": "of",
+ "index": 1415
+ },
+ {
+ "start": 576.07,
+ "confidence": 1,
+ "end": 576.12,
+ "word": "a",
+ "punct": "a",
+ "index": 1416
+ },
+ {
+ "start": 576.12,
+ "confidence": 0.57,
+ "end": 576.48,
+ "word": "large",
+ "punct": "large",
+ "index": 1417
+ },
+ {
+ "start": 576.48,
+ "confidence": 1,
+ "end": 576.77,
+ "word": "body",
+ "punct": "body",
+ "index": 1418
+ },
+ {
+ "start": 576.77,
+ "confidence": 1,
+ "end": 576.88,
+ "word": "of",
+ "punct": "of",
+ "index": 1419
+ },
+ {
+ "start": 576.88,
+ "confidence": 1,
+ "end": 577.56,
+ "word": "research",
+ "punct": "research",
+ "index": 1420
+ },
+ {
+ "start": 577.56,
+ "confidence": 1,
+ "end": 577.9,
+ "word": "that",
+ "punct": "that",
+ "index": 1421
+ },
+ {
+ "start": 578.02,
+ "confidence": 0.86,
+ "end": 578.25,
+ "word": "is",
+ "punct": "is",
+ "index": 1422
+ },
+ {
+ "start": 578.25,
+ "confidence": 0.99,
+ "end": 578.61,
+ "word": "starting",
+ "punct": "starting",
+ "index": 1423
+ },
+ {
+ "start": 578.61,
+ "confidence": 1,
+ "end": 578.73,
+ "word": "to",
+ "punct": "to",
+ "index": 1424
+ },
+ {
+ "start": 578.76,
+ "confidence": 1,
+ "end": 579.2,
+ "word": "indicate",
+ "punct": "indicate",
+ "index": 1425
+ },
+ {
+ "start": 579.2,
+ "confidence": 1,
+ "end": 579.3,
+ "word": "that",
+ "punct": "that",
+ "index": 1426
+ },
+ {
+ "start": 579.3,
+ "confidence": 1,
+ "end": 579.4,
+ "word": "there",
+ "punct": "there",
+ "index": 1427
+ },
+ {
+ "start": 579.4,
+ "confidence": 1,
+ "end": 579.62,
+ "word": "may",
+ "punct": "may",
+ "index": 1428
+ },
+ {
+ "start": 579.62,
+ "confidence": 1,
+ "end": 579.84,
+ "word": "be",
+ "punct": "be",
+ "index": 1429
+ },
+ {
+ "start": 579.87,
+ "confidence": 1,
+ "end": 579.95,
+ "word": "a",
+ "punct": "a",
+ "index": 1430
+ },
+ {
+ "start": 579.95,
+ "confidence": 1,
+ "end": 580.53,
+ "word": "connection",
+ "punct": "connection",
+ "index": 1431
+ },
+ {
+ "start": 580.53,
+ "confidence": 1,
+ "end": 580.87,
+ "word": "between",
+ "punct": "between",
+ "index": 1432
+ },
+ {
+ "start": 580.87,
+ "confidence": 0.83,
+ "end": 581.3,
+ "word": "people's",
+ "punct": "people's",
+ "index": 1433
+ },
+ {
+ "start": 581.3,
+ "confidence": 0.88,
+ "end": 581.81,
+ "word": "tendencies",
+ "punct": "tendencies",
+ "index": 1434
+ },
+ {
+ "start": 581.81,
+ "confidence": 0.98,
+ "end": 581.9,
+ "word": "for",
+ "punct": "for",
+ "index": 1435
+ },
+ {
+ "start": 581.9,
+ "confidence": 0.99,
+ "end": 582.61,
+ "word": "empathy",
+ "punct": "empathy",
+ "index": 1436
+ },
+ {
+ "start": 582.86,
+ "confidence": 0.73,
+ "end": 582.99,
+ "word": "and",
+ "punct": "and",
+ "index": 1437
+ },
+ {
+ "start": 583.03,
+ "confidence": 0.96,
+ "end": 583.15,
+ "word": "their",
+ "punct": "their",
+ "index": 1438
+ },
+ {
+ "start": 583.15,
+ "confidence": 1,
+ "end": 583.79,
+ "word": "behaviour",
+ "punct": "behaviour",
+ "index": 1439
+ },
+ {
+ "start": 583.79,
+ "confidence": 1,
+ "end": 584.19,
+ "word": "around",
+ "punct": "around,",
+ "index": 1440
+ },
+ {
+ "start": 584.2,
+ "confidence": 0.4,
+ "end": 584.63,
+ "word": "rover",
+ "punct": "Rover.",
+ "index": 1441
+ },
+ {
+ "start": 585.66,
+ "confidence": 0.84,
+ "end": 585.8,
+ "word": "but",
+ "punct": "But",
+ "index": 1442
+ },
+ {
+ "start": 585.84,
+ "confidence": 1,
+ "end": 586.09,
+ "word": "my",
+ "punct": "my",
+ "index": 1443
+ },
+ {
+ "start": 586.09,
+ "confidence": 1,
+ "end": 586.85,
+ "word": "question",
+ "punct": "question",
+ "index": 1444
+ },
+ {
+ "start": 586.88,
+ "confidence": 0.95,
+ "end": 587.01,
+ "word": "for",
+ "punct": "for",
+ "index": 1445
+ },
+ {
+ "start": 587.01,
+ "confidence": 1,
+ "end": 587.1,
+ "word": "the",
+ "punct": "the",
+ "index": 1446
+ },
+ {
+ "start": 587.1,
+ "confidence": 1,
+ "end": 587.61,
+ "word": "coming",
+ "punct": "coming",
+ "index": 1447
+ },
+ {
+ "start": 587.61,
+ "confidence": 0.97,
+ "end": 587.94,
+ "word": "era",
+ "punct": "era",
+ "index": 1448
+ },
+ {
+ "start": 587.97,
+ "confidence": 0.94,
+ "end": 588.09,
+ "word": "of",
+ "punct": "of",
+ "index": 1449
+ },
+ {
+ "start": 588.09,
+ "confidence": 1,
+ "end": 588.39,
+ "word": "human",
+ "punct": "human",
+ "index": 1450
+ },
+ {
+ "start": 588.39,
+ "confidence": 0.99,
+ "end": 588.68,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1451
+ },
+ {
+ "start": 588.69,
+ "confidence": 0.79,
+ "end": 589.27,
+ "word": "interaction",
+ "punct": "interaction",
+ "index": 1452
+ },
+ {
+ "start": 589.37,
+ "confidence": 0.96,
+ "end": 589.54,
+ "word": "is",
+ "punct": "is",
+ "index": 1453
+ },
+ {
+ "start": 589.55,
+ "confidence": 0.98,
+ "end": 589.99,
+ "word": "not",
+ "punct": "not",
+ "index": 1454
+ },
+ {
+ "start": 590.35,
+ "confidence": 0.43,
+ "end": 590.47,
+ "word": "to",
+ "punct": "to.",
+ "index": 1455
+ },
+ {
+ "start": 590.57,
+ "confidence": 0.98,
+ "end": 590.76,
+ "word": "we",
+ "punct": "We",
+ "index": 1456
+ },
+ {
+ "start": 590.76,
+ "confidence": 0.99,
+ "end": 591.42,
+ "word": "empathise",
+ "punct": "empathise",
+ "index": 1457
+ },
+ {
+ "start": 591.42,
+ "confidence": 0.98,
+ "end": 591.57,
+ "word": "with",
+ "punct": "with",
+ "index": 1458
+ },
+ {
+ "start": 591.57,
+ "confidence": 0.41,
+ "end": 591.78,
+ "word": "throw",
+ "punct": "throw,",
+ "index": 1459
+ },
+ {
+ "start": 591.78,
+ "confidence": 0.98,
+ "end": 592.4,
+ "word": "but",
+ "punct": "but",
+ "index": 1460
+ },
+ {
+ "start": 593.2,
+ "confidence": 0.56,
+ "end": 593.41,
+ "word": "it",
+ "punct": "it.",
+ "index": 1461
+ },
+ {
+ "start": 593.41,
+ "confidence": 0.9,
+ "end": 593.85,
+ "word": "can",
+ "punct": "Can",
+ "index": 1462
+ },
+ {
+ "start": 593.86,
+ "confidence": 0.66,
+ "end": 594.36,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1463
+ },
+ {
+ "start": 594.37,
+ "confidence": 0.99,
+ "end": 595.01,
+ "word": "change",
+ "punct": "change",
+ "index": 1464
+ },
+ {
+ "start": 595.03,
+ "confidence": 0.96,
+ "end": 595.41,
+ "word": "people's",
+ "punct": "people's",
+ "index": 1465
+ },
+ {
+ "start": 595.63,
+ "confidence": 0.93,
+ "end": 596.03,
+ "word": "thinking",
+ "punct": "thinking,",
+ "index": 1466
+ },
+ {
+ "start": 597.48,
+ "confidence": 0.97,
+ "end": 597.69,
+ "word": "is",
+ "punct": "Is",
+ "index": 1467
+ },
+ {
+ "start": 597.69,
+ "confidence": 0.91,
+ "end": 597.85,
+ "word": "there",
+ "punct": "there",
+ "index": 1468
+ },
+ {
+ "start": 597.86,
+ "confidence": 1,
+ "end": 598.27,
+ "word": "reason",
+ "punct": "reason",
+ "index": 1469
+ },
+ {
+ "start": 598.27,
+ "confidence": 0.97,
+ "end": 598.49,
+ "word": "to",
+ "punct": "to.",
+ "index": 1470
+ },
+ {
+ "start": 598.49,
+ "confidence": 1,
+ "end": 598.65,
+ "word": "for",
+ "punct": "For",
+ "index": 1471
+ },
+ {
+ "start": 598.65,
+ "confidence": 1,
+ "end": 599.47,
+ "word": "example",
+ "punct": "example,",
+ "index": 1472
+ },
+ {
+ "start": 599.79,
+ "confidence": 1,
+ "end": 600.15,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 1473
+ },
+ {
+ "start": 600.15,
+ "confidence": 0.39,
+ "end": 600.25,
+ "word": "the",
+ "punct": "the",
+ "index": 1474
+ },
+ {
+ "start": 600.25,
+ "confidence": 1,
+ "end": 600.7,
+ "word": "child",
+ "punct": "child",
+ "index": 1475
+ },
+ {
+ "start": 600.7,
+ "confidence": 1,
+ "end": 600.85,
+ "word": "from",
+ "punct": "from",
+ "index": 1476
+ },
+ {
+ "start": 600.85,
+ "confidence": 0.82,
+ "end": 601.25,
+ "word": "kicking",
+ "punct": "kicking",
+ "index": 1477
+ },
+ {
+ "start": 601.3,
+ "confidence": 0.99,
+ "end": 601.62,
+ "word": "about",
+ "punct": "about",
+ "index": 1478
+ },
+ {
+ "start": 601.69,
+ "confidence": 0.58,
+ "end": 602.1,
+ "word": "doc",
+ "punct": "Doc",
+ "index": 1479
+ },
+ {
+ "start": 603.2,
+ "confidence": 0.57,
+ "end": 603.51,
+ "word": "that",
+ "punct": "That",
+ "index": 1480
+ },
+ {
+ "start": 603.55,
+ "confidence": 1,
+ "end": 603.92,
+ "word": "just",
+ "punct": "just",
+ "index": 1481
+ },
+ {
+ "start": 603.95,
+ "confidence": 0.98,
+ "end": 604.06,
+ "word": "out",
+ "punct": "out",
+ "index": 1482
+ },
+ {
+ "start": 604.06,
+ "confidence": 0.99,
+ "end": 604.16,
+ "word": "of",
+ "punct": "of",
+ "index": 1483
+ },
+ {
+ "start": 604.16,
+ "confidence": 1,
+ "end": 604.66,
+ "word": "respect",
+ "punct": "respect",
+ "index": 1484
+ },
+ {
+ "start": 604.66,
+ "confidence": 1,
+ "end": 604.8,
+ "word": "for",
+ "punct": "for",
+ "index": 1485
+ },
+ {
+ "start": 604.8,
+ "confidence": 1,
+ "end": 605.53,
+ "word": "property",
+ "punct": "property",
+ "index": 1486
+ },
+ {
+ "start": 606.15,
+ "confidence": 1,
+ "end": 606.83,
+ "word": "because",
+ "punct": "because",
+ "index": 1487
+ },
+ {
+ "start": 606.83,
+ "confidence": 0.96,
+ "end": 606.93,
+ "word": "the",
+ "punct": "the",
+ "index": 1488
+ },
+ {
+ "start": 606.93,
+ "confidence": 1,
+ "end": 607.25,
+ "word": "child",
+ "punct": "child",
+ "index": 1489
+ },
+ {
+ "start": 607.25,
+ "confidence": 0.57,
+ "end": 607.35,
+ "word": "may",
+ "punct": "may",
+ "index": 1490
+ },
+ {
+ "start": 607.35,
+ "confidence": 0.98,
+ "end": 607.47,
+ "word": "be",
+ "punct": "be",
+ "index": 1491
+ },
+ {
+ "start": 607.47,
+ "confidence": 1,
+ "end": 607.6,
+ "word": "more",
+ "punct": "more",
+ "index": 1492
+ },
+ {
+ "start": 607.6,
+ "confidence": 1,
+ "end": 607.97,
+ "word": "likely",
+ "punct": "likely",
+ "index": 1493
+ },
+ {
+ "start": 607.97,
+ "confidence": 1,
+ "end": 608.07,
+ "word": "to",
+ "punct": "to",
+ "index": 1494
+ },
+ {
+ "start": 608.07,
+ "confidence": 0.9,
+ "end": 608.28,
+ "word": "take",
+ "punct": "take",
+ "index": 1495
+ },
+ {
+ "start": 608.28,
+ "confidence": 0.92,
+ "end": 608.35,
+ "word": "a",
+ "punct": "a",
+ "index": 1496
+ },
+ {
+ "start": 608.35,
+ "confidence": 1,
+ "end": 608.55,
+ "word": "real",
+ "punct": "real",
+ "index": 1497
+ },
+ {
+ "start": 608.55,
+ "confidence": 0.8,
+ "end": 609.03,
+ "word": "dark",
+ "punct": "dark",
+ "index": 1498
+ },
+ {
+ "start": 610.49,
+ "confidence": 0.94,
+ "end": 610.63,
+ "word": "and",
+ "punct": "and",
+ "index": 1499
+ },
+ {
+ "start": 610.65,
+ "confidence": 1,
+ "end": 610.96,
+ "word": "again",
+ "punct": "again.",
+ "index": 1500
+ },
+ {
+ "start": 610.96,
+ "confidence": 1,
+ "end": 611.17,
+ "word": "it's",
+ "punct": "It's",
+ "index": 1501
+ },
+ {
+ "start": 611.17,
+ "confidence": 1,
+ "end": 611.46,
+ "word": "not",
+ "punct": "not",
+ "index": 1502
+ },
+ {
+ "start": 611.46,
+ "confidence": 1,
+ "end": 611.72,
+ "word": "just",
+ "punct": "just",
+ "index": 1503
+ },
+ {
+ "start": 611.72,
+ "confidence": 1,
+ "end": 612.38,
+ "word": "kids",
+ "punct": "kids",
+ "index": 1504
+ },
+ {
+ "start": 612.96,
+ "confidence": 0.79,
+ "end": 613.14,
+ "word": "and",
+ "punct": "and",
+ "index": 1505
+ },
+ {
+ "start": 613.54,
+ "confidence": 1,
+ "end": 613.77,
+ "word": "this",
+ "punct": "this",
+ "index": 1506
+ },
+ {
+ "start": 613.77,
+ "confidence": 1,
+ "end": 613.96,
+ "word": "is",
+ "punct": "is",
+ "index": 1507
+ },
+ {
+ "start": 613.96,
+ "confidence": 0.93,
+ "end": 614.37,
+ "word": "the",
+ "punct": "the",
+ "index": 1508
+ },
+ {
+ "start": 614.41,
+ "confidence": 1,
+ "end": 615.06,
+ "word": "violent",
+ "punct": "violent",
+ "index": 1509
+ },
+ {
+ "start": 615.06,
+ "confidence": 1,
+ "end": 615.39,
+ "word": "video",
+ "punct": "video",
+ "index": 1510
+ },
+ {
+ "start": 615.39,
+ "confidence": 1,
+ "end": 615.69,
+ "word": "games",
+ "punct": "games",
+ "index": 1511
+ },
+ {
+ "start": 615.69,
+ "confidence": 0.96,
+ "end": 616.15,
+ "word": "question",
+ "punct": "question,",
+ "index": 1512
+ },
+ {
+ "start": 616.15,
+ "confidence": 0.95,
+ "end": 616.32,
+ "word": "but",
+ "punct": "but",
+ "index": 1513
+ },
+ {
+ "start": 616.32,
+ "confidence": 0.59,
+ "end": 616.42,
+ "word": "it's",
+ "punct": "it's",
+ "index": 1514
+ },
+ {
+ "start": 616.43,
+ "confidence": 1,
+ "end": 616.53,
+ "word": "a",
+ "punct": "a",
+ "index": 1515
+ },
+ {
+ "start": 616.54,
+ "confidence": 1,
+ "end": 617.15,
+ "word": "completely",
+ "punct": "completely",
+ "index": 1516
+ },
+ {
+ "start": 617.15,
+ "confidence": 1,
+ "end": 617.29,
+ "word": "new",
+ "punct": "new",
+ "index": 1517
+ },
+ {
+ "start": 617.29,
+ "confidence": 1,
+ "end": 617.6,
+ "word": "level",
+ "punct": "level",
+ "index": 1518
+ },
+ {
+ "start": 617.6,
+ "confidence": 1,
+ "end": 617.85,
+ "word": "because",
+ "punct": "because",
+ "index": 1519
+ },
+ {
+ "start": 617.85,
+ "confidence": 1,
+ "end": 617.94,
+ "word": "of",
+ "punct": "of",
+ "index": 1520
+ },
+ {
+ "start": 617.94,
+ "confidence": 1,
+ "end": 618.16,
+ "word": "this",
+ "punct": "this",
+ "index": 1521
+ },
+ {
+ "start": 618.16,
+ "confidence": 1,
+ "end": 618.82,
+ "word": "visceral",
+ "punct": "visceral",
+ "index": 1522
+ },
+ {
+ "start": 618.82,
+ "confidence": 1,
+ "end": 619.75,
+ "word": "physicality",
+ "punct": "physicality",
+ "index": 1523
+ },
+ {
+ "start": 619.75,
+ "confidence": 1,
+ "end": 619.92,
+ "word": "that",
+ "punct": "that",
+ "index": 1524
+ },
+ {
+ "start": 619.92,
+ "confidence": 0.98,
+ "end": 620.08,
+ "word": "we",
+ "punct": "we",
+ "index": 1525
+ },
+ {
+ "start": 620.08,
+ "confidence": 1,
+ "end": 620.72,
+ "word": "respond",
+ "punct": "respond",
+ "index": 1526
+ },
+ {
+ "start": 620.72,
+ "confidence": 1,
+ "end": 621.03,
+ "word": "more",
+ "punct": "more",
+ "index": 1527
+ },
+ {
+ "start": 621.03,
+ "confidence": 1,
+ "end": 621.74,
+ "word": "intensely",
+ "punct": "intensely.",
+ "index": 1528
+ },
+ {
+ "start": 622.03,
+ "confidence": 0.48,
+ "end": 622.39,
+ "word": "two",
+ "punct": "Two",
+ "index": 1529
+ },
+ {
+ "start": 622.73,
+ "confidence": 1,
+ "end": 623.15,
+ "word": "images",
+ "punct": "images",
+ "index": 1530
+ },
+ {
+ "start": 623.15,
+ "confidence": 1,
+ "end": 623.23,
+ "word": "on",
+ "punct": "on",
+ "index": 1531
+ },
+ {
+ "start": 623.23,
+ "confidence": 0.69,
+ "end": 623.3,
+ "word": "a",
+ "punct": "a",
+ "index": 1532
+ },
+ {
+ "start": 623.3,
+ "confidence": 1,
+ "end": 623.95,
+ "word": "screen",
+ "punct": "screen,",
+ "index": 1533
+ },
+ {
+ "start": 625.67,
+ "confidence": 0.25,
+ "end": 625.89,
+ "word": "we",
+ "punct": "we",
+ "index": 1534
+ },
+ {
+ "start": 625.93,
+ "confidence": 0.37,
+ "end": 626.17,
+ "word": "behave",
+ "punct": "behave",
+ "index": 1535
+ },
+ {
+ "start": 626.27,
+ "confidence": 1,
+ "end": 626.9,
+ "word": "violently",
+ "punct": "violently",
+ "index": 1536
+ },
+ {
+ "start": 626.9,
+ "confidence": 1,
+ "end": 627.43,
+ "word": "towards",
+ "punct": "towards",
+ "index": 1537
+ },
+ {
+ "start": 627.43,
+ "confidence": 0.47,
+ "end": 628.09,
+ "word": "robarts",
+ "punct": "Robarts",
+ "index": 1538
+ },
+ {
+ "start": 628.12,
+ "confidence": 1,
+ "end": 628.84,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 1539
+ },
+ {
+ "start": 628.84,
+ "confidence": 0.98,
+ "end": 629.22,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1540
+ },
+ {
+ "start": 629.22,
+ "confidence": 1,
+ "end": 629.37,
+ "word": "that",
+ "punct": "that",
+ "index": 1541
+ },
+ {
+ "start": 629.37,
+ "confidence": 1,
+ "end": 629.46,
+ "word": "are",
+ "punct": "are",
+ "index": 1542
+ },
+ {
+ "start": 629.46,
+ "confidence": 1,
+ "end": 629.95,
+ "word": "designed",
+ "punct": "designed",
+ "index": 1543
+ },
+ {
+ "start": 629.95,
+ "confidence": 1,
+ "end": 630.08,
+ "word": "to",
+ "punct": "to",
+ "index": 1544
+ },
+ {
+ "start": 630.08,
+ "confidence": 1,
+ "end": 630.4,
+ "word": "mimic",
+ "punct": "mimic",
+ "index": 1545
+ },
+ {
+ "start": 630.4,
+ "confidence": 1,
+ "end": 630.95,
+ "word": "life",
+ "punct": "life",
+ "index": 1546
+ },
+ {
+ "start": 631.37,
+ "confidence": 1,
+ "end": 631.55,
+ "word": "is",
+ "punct": "is",
+ "index": 1547
+ },
+ {
+ "start": 631.55,
+ "confidence": 1,
+ "end": 631.99,
+ "word": "that",
+ "punct": "that",
+ "index": 1548
+ },
+ {
+ "start": 632.38,
+ "confidence": 0.67,
+ "end": 632.45,
+ "word": "a",
+ "punct": "a",
+ "index": 1549
+ },
+ {
+ "start": 632.62,
+ "confidence": 0.98,
+ "end": 633.02,
+ "word": "healthy",
+ "punct": "healthy",
+ "index": 1550
+ },
+ {
+ "start": 633.07,
+ "confidence": 0.72,
+ "end": 633.49,
+ "word": "outlook",
+ "punct": "outlook",
+ "index": 1551
+ },
+ {
+ "start": 633.49,
+ "confidence": 0.66,
+ "end": 633.73,
+ "word": "from",
+ "punct": "from",
+ "index": 1552
+ },
+ {
+ "start": 633.73,
+ "confidence": 0.35,
+ "end": 633.91,
+ "word": "the",
+ "punct": "the",
+ "index": 1553
+ },
+ {
+ "start": 633.94,
+ "confidence": 0.99,
+ "end": 634.56,
+ "word": "behaviour",
+ "punct": "behaviour",
+ "index": 1554
+ },
+ {
+ "start": 635,
+ "confidence": 0.51,
+ "end": 635.23,
+ "word": "or",
+ "punct": "or",
+ "index": 1555
+ },
+ {
+ "start": 635.42,
+ "confidence": 0.65,
+ "end": 635.6,
+ "word": "is",
+ "punct": "is",
+ "index": 1556
+ },
+ {
+ "start": 635.6,
+ "confidence": 1,
+ "end": 635.89,
+ "word": "that",
+ "punct": "that",
+ "index": 1557
+ },
+ {
+ "start": 635.92,
+ "confidence": 0.99,
+ "end": 636.41,
+ "word": "training",
+ "punct": "training",
+ "index": 1558
+ },
+ {
+ "start": 636.48,
+ "confidence": 0.93,
+ "end": 637,
+ "word": "cruelty",
+ "punct": "cruelty",
+ "index": 1559
+ },
+ {
+ "start": 637.02,
+ "confidence": 0.74,
+ "end": 637.72,
+ "word": "muscles",
+ "punct": "muscles.",
+ "index": 1560
+ },
+ {
+ "start": 642.67,
+ "confidence": 0.97,
+ "end": 642.86,
+ "word": "the",
+ "punct": "The",
+ "index": 1561
+ },
+ {
+ "start": 642.9,
+ "confidence": 0.94,
+ "end": 643.24,
+ "word": "answer",
+ "punct": "answer",
+ "index": 1562
+ },
+ {
+ "start": 643.24,
+ "confidence": 0.64,
+ "end": 643.28,
+ "word": "to",
+ "punct": "to",
+ "index": 1563
+ },
+ {
+ "start": 643.29,
+ "confidence": 0.9,
+ "end": 643.48,
+ "word": "this",
+ "punct": "this",
+ "index": 1564
+ },
+ {
+ "start": 643.48,
+ "confidence": 1,
+ "end": 644.1,
+ "word": "question",
+ "punct": "question",
+ "index": 1565
+ },
+ {
+ "start": 644.1,
+ "confidence": 0.99,
+ "end": 644.34,
+ "word": "has",
+ "punct": "has",
+ "index": 1566
+ },
+ {
+ "start": 644.34,
+ "confidence": 0.94,
+ "end": 644.42,
+ "word": "the",
+ "punct": "the",
+ "index": 1567
+ },
+ {
+ "start": 644.42,
+ "confidence": 1,
+ "end": 644.96,
+ "word": "potential",
+ "punct": "potential",
+ "index": 1568
+ },
+ {
+ "start": 645.01,
+ "confidence": 1,
+ "end": 645.45,
+ "word": "impact",
+ "punct": "impact",
+ "index": 1569
+ },
+ {
+ "start": 645.45,
+ "confidence": 1,
+ "end": 645.73,
+ "word": "human",
+ "punct": "human",
+ "index": 1570
+ },
+ {
+ "start": 645.73,
+ "confidence": 1,
+ "end": 646.44,
+ "word": "behaviour",
+ "punct": "behaviour",
+ "index": 1571
+ },
+ {
+ "start": 646.61,
+ "confidence": 0.97,
+ "end": 646.9,
+ "word": "has",
+ "punct": "has",
+ "index": 1572
+ },
+ {
+ "start": 646.9,
+ "confidence": 0.95,
+ "end": 646.98,
+ "word": "the",
+ "punct": "the",
+ "index": 1573
+ },
+ {
+ "start": 646.98,
+ "confidence": 1,
+ "end": 647.5,
+ "word": "potential",
+ "punct": "potential",
+ "index": 1574
+ },
+ {
+ "start": 647.5,
+ "confidence": 0.79,
+ "end": 647.96,
+ "word": "impact",
+ "punct": "impact",
+ "index": 1575
+ },
+ {
+ "start": 647.96,
+ "confidence": 1,
+ "end": 648.32,
+ "word": "social",
+ "punct": "social",
+ "index": 1576
+ },
+ {
+ "start": 648.32,
+ "confidence": 1,
+ "end": 648.94,
+ "word": "norms",
+ "punct": "norms.",
+ "index": 1577
+ },
+ {
+ "start": 649.33,
+ "confidence": 0.89,
+ "end": 649.45,
+ "word": "it",
+ "punct": "It",
+ "index": 1578
+ },
+ {
+ "start": 649.48,
+ "confidence": 1,
+ "end": 649.67,
+ "word": "has",
+ "punct": "has",
+ "index": 1579
+ },
+ {
+ "start": 649.67,
+ "confidence": 1,
+ "end": 649.77,
+ "word": "the",
+ "punct": "the",
+ "index": 1580
+ },
+ {
+ "start": 649.77,
+ "confidence": 1,
+ "end": 650.22,
+ "word": "potential",
+ "punct": "potential",
+ "index": 1581
+ },
+ {
+ "start": 650.22,
+ "confidence": 1,
+ "end": 650.37,
+ "word": "to",
+ "punct": "to",
+ "index": 1582
+ },
+ {
+ "start": 650.37,
+ "confidence": 1,
+ "end": 650.87,
+ "word": "inspire",
+ "punct": "inspire",
+ "index": 1583
+ },
+ {
+ "start": 650.87,
+ "confidence": 0.98,
+ "end": 651.43,
+ "word": "rules",
+ "punct": "rules",
+ "index": 1584
+ },
+ {
+ "start": 651.46,
+ "confidence": 1,
+ "end": 651.8,
+ "word": "around",
+ "punct": "around.",
+ "index": 1585
+ },
+ {
+ "start": 651.8,
+ "confidence": 1,
+ "end": 651.93,
+ "word": "what",
+ "punct": "What",
+ "index": 1586
+ },
+ {
+ "start": 651.93,
+ "confidence": 1,
+ "end": 652.26,
+ "word": "we",
+ "punct": "we",
+ "index": 1587
+ },
+ {
+ "start": 652.31,
+ "confidence": 1,
+ "end": 652.65,
+ "word": "can",
+ "punct": "can",
+ "index": 1588
+ },
+ {
+ "start": 652.65,
+ "confidence": 1,
+ "end": 652.72,
+ "word": "and",
+ "punct": "and",
+ "index": 1589
+ },
+ {
+ "start": 652.72,
+ "confidence": 1,
+ "end": 653.04,
+ "word": "can't",
+ "punct": "can't",
+ "index": 1590
+ },
+ {
+ "start": 653.04,
+ "confidence": 1,
+ "end": 653.29,
+ "word": "do",
+ "punct": "do",
+ "index": 1591
+ },
+ {
+ "start": 653.33,
+ "confidence": 1,
+ "end": 653.61,
+ "word": "certain",
+ "punct": "certain",
+ "index": 1592
+ },
+ {
+ "start": 653.63,
+ "confidence": 0.5,
+ "end": 654.43,
+ "word": "robarts",
+ "punct": "Robarts",
+ "index": 1593
+ },
+ {
+ "start": 655,
+ "confidence": 1,
+ "end": 655.32,
+ "word": "animal",
+ "punct": "animal",
+ "index": 1594
+ },
+ {
+ "start": 655.32,
+ "confidence": 1,
+ "end": 655.74,
+ "word": "cruelty",
+ "punct": "cruelty,",
+ "index": 1595
+ },
+ {
+ "start": 655.81,
+ "confidence": 0.62,
+ "end": 656.25,
+ "word": "but",
+ "punct": "but",
+ "index": 1596
+ },
+ {
+ "start": 657.22,
+ "confidence": 1,
+ "end": 657.55,
+ "word": "because",
+ "punct": "because",
+ "index": 1597
+ },
+ {
+ "start": 657.58,
+ "confidence": 1,
+ "end": 657.87,
+ "word": "even",
+ "punct": "even",
+ "index": 1598
+ },
+ {
+ "start": 657.87,
+ "confidence": 0.99,
+ "end": 658.02,
+ "word": "if",
+ "punct": "if",
+ "index": 1599
+ },
+ {
+ "start": 658.02,
+ "confidence": 0.91,
+ "end": 658.42,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1600
+ },
+ {
+ "start": 658.42,
+ "confidence": 0.48,
+ "end": 658.68,
+ "word": "can't",
+ "punct": "can't",
+ "index": 1601
+ },
+ {
+ "start": 658.71,
+ "confidence": 0.45,
+ "end": 659.38,
+ "word": "fuel",
+ "punct": "fuel",
+ "index": 1602
+ },
+ {
+ "start": 660.1,
+ "confidence": 0.65,
+ "end": 660.22,
+ "word": "our",
+ "punct": "our",
+ "index": 1603
+ },
+ {
+ "start": 660.25,
+ "confidence": 1,
+ "end": 660.89,
+ "word": "behaviour",
+ "punct": "behaviour",
+ "index": 1604
+ },
+ {
+ "start": 660.89,
+ "confidence": 1,
+ "end": 661.26,
+ "word": "towards",
+ "punct": "towards",
+ "index": 1605
+ },
+ {
+ "start": 661.26,
+ "confidence": 0.74,
+ "end": 661.34,
+ "word": "a",
+ "punct": "a",
+ "index": 1606
+ },
+ {
+ "start": 661.42,
+ "confidence": 0.97,
+ "end": 662.25,
+ "word": "matter",
+ "punct": "matter",
+ "index": 1607
+ },
+ {
+ "start": 662.39,
+ "confidence": 1,
+ "end": 662.64,
+ "word": "for",
+ "punct": "for",
+ "index": 1608
+ },
+ {
+ "start": 662.64,
+ "confidence": 1,
+ "end": 663.15,
+ "word": "us",
+ "punct": "us",
+ "index": 1609
+ },
+ {
+ "start": 664.89,
+ "confidence": 0.94,
+ "end": 665.03,
+ "word": "and",
+ "punct": "and",
+ "index": 1610
+ },
+ {
+ "start": 665.06,
+ "confidence": 1,
+ "end": 665.6,
+ "word": "regardless",
+ "punct": "regardless",
+ "index": 1611
+ },
+ {
+ "start": 665.6,
+ "confidence": 1,
+ "end": 665.7,
+ "word": "of",
+ "punct": "of",
+ "index": 1612
+ },
+ {
+ "start": 665.7,
+ "confidence": 1,
+ "end": 665.93,
+ "word": "whether",
+ "punct": "whether",
+ "index": 1613
+ },
+ {
+ "start": 665.93,
+ "confidence": 0.96,
+ "end": 666.06,
+ "word": "we",
+ "punct": "we",
+ "index": 1614
+ },
+ {
+ "start": 666.06,
+ "confidence": 0.96,
+ "end": 666.21,
+ "word": "end",
+ "punct": "end",
+ "index": 1615
+ },
+ {
+ "start": 666.21,
+ "confidence": 0.49,
+ "end": 666.33,
+ "word": "up",
+ "punct": "up",
+ "index": 1616
+ },
+ {
+ "start": 666.32,
+ "confidence": 1,
+ "end": 666.9,
+ "word": "changing",
+ "punct": "changing",
+ "index": 1617
+ },
+ {
+ "start": 666.97,
+ "confidence": 0.51,
+ "end": 667.64,
+ "word": "ovals",
+ "punct": "ovals",
+ "index": 1618
+ },
+ {
+ "start": 668.9,
+ "confidence": 0.97,
+ "end": 669.34,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1619
+ },
+ {
+ "start": 669.34,
+ "confidence": 0.87,
+ "end": 669.59,
+ "word": "might",
+ "punct": "might",
+ "index": 1620
+ },
+ {
+ "start": 669.59,
+ "confidence": 1,
+ "end": 669.74,
+ "word": "be",
+ "punct": "be",
+ "index": 1621
+ },
+ {
+ "start": 669.74,
+ "confidence": 1,
+ "end": 669.94,
+ "word": "able",
+ "punct": "able",
+ "index": 1622
+ },
+ {
+ "start": 669.94,
+ "confidence": 1,
+ "end": 670.03,
+ "word": "to",
+ "punct": "to",
+ "index": 1623
+ },
+ {
+ "start": 670.03,
+ "confidence": 1,
+ "end": 670.25,
+ "word": "help",
+ "punct": "help",
+ "index": 1624
+ },
+ {
+ "start": 670.25,
+ "confidence": 0.97,
+ "end": 670.38,
+ "word": "us",
+ "punct": "us",
+ "index": 1625
+ },
+ {
+ "start": 670.38,
+ "confidence": 1,
+ "end": 670.59,
+ "word": "come",
+ "punct": "come",
+ "index": 1626
+ },
+ {
+ "start": 670.59,
+ "confidence": 1,
+ "end": 670.73,
+ "word": "to",
+ "punct": "to",
+ "index": 1627
+ },
+ {
+ "start": 670.73,
+ "confidence": 0.99,
+ "end": 670.79,
+ "word": "a",
+ "punct": "a",
+ "index": 1628
+ },
+ {
+ "start": 670.79,
+ "confidence": 1,
+ "end": 671.02,
+ "word": "new",
+ "punct": "new",
+ "index": 1629
+ },
+ {
+ "start": 671.02,
+ "confidence": 1,
+ "end": 671.59,
+ "word": "understanding",
+ "punct": "understanding",
+ "index": 1630
+ },
+ {
+ "start": 671.59,
+ "confidence": 1,
+ "end": 671.7,
+ "word": "of",
+ "punct": "of",
+ "index": 1631
+ },
+ {
+ "start": 671.7,
+ "confidence": 1,
+ "end": 672.51,
+ "word": "ourselves",
+ "punct": "ourselves.",
+ "index": 1632
+ },
+ {
+ "start": 674.24,
+ "confidence": 1,
+ "end": 674.52,
+ "word": "most",
+ "punct": "Most",
+ "index": 1633
+ },
+ {
+ "start": 674.52,
+ "confidence": 0.54,
+ "end": 674.62,
+ "word": "of",
+ "punct": "of",
+ "index": 1634
+ },
+ {
+ "start": 674.62,
+ "confidence": 0.47,
+ "end": 674.76,
+ "word": "what",
+ "punct": "what",
+ "index": 1635
+ },
+ {
+ "start": 674.8,
+ "confidence": 0.64,
+ "end": 675.03,
+ "word": "learned",
+ "punct": "learned",
+ "index": 1636
+ },
+ {
+ "start": 675.03,
+ "confidence": 0.77,
+ "end": 675.15,
+ "word": "over",
+ "punct": "over",
+ "index": 1637
+ },
+ {
+ "start": 675.16,
+ "confidence": 1,
+ "end": 675.24,
+ "word": "the",
+ "punct": "the",
+ "index": 1638
+ },
+ {
+ "start": 675.24,
+ "confidence": 1,
+ "end": 675.53,
+ "word": "past",
+ "punct": "past",
+ "index": 1639
+ },
+ {
+ "start": 675.53,
+ "confidence": 1,
+ "end": 675.72,
+ "word": "ten",
+ "punct": "ten",
+ "index": 1640
+ },
+ {
+ "start": 675.72,
+ "confidence": 1,
+ "end": 676.36,
+ "word": "years",
+ "punct": "years",
+ "index": 1641
+ },
+ {
+ "start": 676.45,
+ "confidence": 0.9,
+ "end": 676.63,
+ "word": "have",
+ "punct": "have",
+ "index": 1642
+ },
+ {
+ "start": 676.63,
+ "confidence": 0.88,
+ "end": 676.85,
+ "word": "not",
+ "punct": "not",
+ "index": 1643
+ },
+ {
+ "start": 676.85,
+ "confidence": 0.83,
+ "end": 676.97,
+ "word": "been",
+ "punct": "been",
+ "index": 1644
+ },
+ {
+ "start": 676.98,
+ "confidence": 1,
+ "end": 677.21,
+ "word": "about",
+ "punct": "about",
+ "index": 1645
+ },
+ {
+ "start": 677.21,
+ "confidence": 1,
+ "end": 677.8,
+ "word": "technology",
+ "punct": "technology.",
+ "index": 1646
+ },
+ {
+ "start": 677.8,
+ "confidence": 0.24,
+ "end": 678.1,
+ "word": "a",
+ "punct": "A",
+ "index": 1647
+ },
+ {
+ "start": 678.84,
+ "confidence": 0.95,
+ "end": 679.07,
+ "word": "it's",
+ "punct": "It's",
+ "index": 1648
+ },
+ {
+ "start": 679.07,
+ "confidence": 1,
+ "end": 679.21,
+ "word": "been",
+ "punct": "been",
+ "index": 1649
+ },
+ {
+ "start": 679.21,
+ "confidence": 1,
+ "end": 679.45,
+ "word": "about",
+ "punct": "about",
+ "index": 1650
+ },
+ {
+ "start": 679.45,
+ "confidence": 1,
+ "end": 679.76,
+ "word": "human",
+ "punct": "human",
+ "index": 1651
+ },
+ {
+ "start": 679.76,
+ "confidence": 1,
+ "end": 680.68,
+ "word": "psychology",
+ "punct": "psychology",
+ "index": 1652
+ },
+ {
+ "start": 681.22,
+ "confidence": 0.69,
+ "end": 681.34,
+ "word": "and",
+ "punct": "and",
+ "index": 1653
+ },
+ {
+ "start": 681.54,
+ "confidence": 0.99,
+ "end": 682.29,
+ "word": "empathy",
+ "punct": "empathy",
+ "index": 1654
+ },
+ {
+ "start": 682.32,
+ "confidence": 0.72,
+ "end": 682.41,
+ "word": "and",
+ "punct": "and",
+ "index": 1655
+ },
+ {
+ "start": 682.42,
+ "confidence": 1,
+ "end": 682.67,
+ "word": "how",
+ "punct": "how",
+ "index": 1656
+ },
+ {
+ "start": 682.67,
+ "confidence": 1,
+ "end": 682.8,
+ "word": "we",
+ "punct": "we",
+ "index": 1657
+ },
+ {
+ "start": 682.8,
+ "confidence": 1,
+ "end": 683.12,
+ "word": "relate",
+ "punct": "relate",
+ "index": 1658
+ },
+ {
+ "start": 683.12,
+ "confidence": 0.98,
+ "end": 683.23,
+ "word": "to",
+ "punct": "to",
+ "index": 1659
+ },
+ {
+ "start": 683.26,
+ "confidence": 1,
+ "end": 683.91,
+ "word": "others",
+ "punct": "others.",
+ "index": 1660
+ },
+ {
+ "start": 685.11,
+ "confidence": 0.22,
+ "end": 685.16,
+ "word": "and",
+ "punct": "And",
+ "index": 1661
+ },
+ {
+ "start": 685.51,
+ "confidence": 1,
+ "end": 685.84,
+ "word": "because",
+ "punct": "because",
+ "index": 1662
+ },
+ {
+ "start": 685.84,
+ "confidence": 1,
+ "end": 685.97,
+ "word": "when",
+ "punct": "when",
+ "index": 1663
+ },
+ {
+ "start": 685.97,
+ "confidence": 0.93,
+ "end": 686.05,
+ "word": "a",
+ "punct": "a",
+ "index": 1664
+ },
+ {
+ "start": 686.05,
+ "confidence": 1,
+ "end": 686.48,
+ "word": "child",
+ "punct": "child",
+ "index": 1665
+ },
+ {
+ "start": 686.48,
+ "confidence": 0.92,
+ "end": 686.6,
+ "word": "is",
+ "punct": "is",
+ "index": 1666
+ },
+ {
+ "start": 686.6,
+ "confidence": 1,
+ "end": 687,
+ "word": "kind",
+ "punct": "kind",
+ "index": 1667
+ },
+ {
+ "start": 687,
+ "confidence": 1,
+ "end": 687.12,
+ "word": "to",
+ "punct": "to",
+ "index": 1668
+ },
+ {
+ "start": 687.12,
+ "confidence": 0.9,
+ "end": 687.24,
+ "word": "her",
+ "punct": "her",
+ "index": 1669
+ },
+ {
+ "start": 687.24,
+ "confidence": 1,
+ "end": 687.5,
+ "word": "room",
+ "punct": "room.",
+ "index": 1670
+ },
+ {
+ "start": 687.5,
+ "confidence": 0.99,
+ "end": 687.8,
+ "word": "but",
+ "punct": "But",
+ "index": 1671
+ },
+ {
+ "start": 689.25,
+ "confidence": 1,
+ "end": 689.42,
+ "word": "when",
+ "punct": "when",
+ "index": 1672
+ },
+ {
+ "start": 689.42,
+ "confidence": 1,
+ "end": 689.51,
+ "word": "a",
+ "punct": "a",
+ "index": 1673
+ },
+ {
+ "start": 689.51,
+ "confidence": 1,
+ "end": 690,
+ "word": "soldier",
+ "punct": "soldier",
+ "index": 1674
+ },
+ {
+ "start": 690.01,
+ "confidence": 0.43,
+ "end": 690.34,
+ "word": "tries",
+ "punct": "tries",
+ "index": 1675
+ },
+ {
+ "start": 690.34,
+ "confidence": 1,
+ "end": 690.45,
+ "word": "to",
+ "punct": "to",
+ "index": 1676
+ },
+ {
+ "start": 690.45,
+ "confidence": 0.99,
+ "end": 690.77,
+ "word": "save",
+ "punct": "save",
+ "index": 1677
+ },
+ {
+ "start": 690.77,
+ "confidence": 0.92,
+ "end": 690.87,
+ "word": "a",
+ "punct": "a",
+ "index": 1678
+ },
+ {
+ "start": 690.87,
+ "confidence": 0.98,
+ "end": 691.22,
+ "word": "robot",
+ "punct": "robot",
+ "index": 1679
+ },
+ {
+ "start": 691.22,
+ "confidence": 1,
+ "end": 691.36,
+ "word": "on",
+ "punct": "on",
+ "index": 1680
+ },
+ {
+ "start": 691.36,
+ "confidence": 0.99,
+ "end": 691.43,
+ "word": "the",
+ "punct": "the",
+ "index": 1681
+ },
+ {
+ "start": 691.43,
+ "confidence": 0.96,
+ "end": 692.28,
+ "word": "battlefield",
+ "punct": "battlefield.",
+ "index": 1682
+ },
+ {
+ "start": 693.36,
+ "confidence": 0.92,
+ "end": 693.55,
+ "word": "when",
+ "punct": "When",
+ "index": 1683
+ },
+ {
+ "start": 693.56,
+ "confidence": 1,
+ "end": 693.62,
+ "word": "a",
+ "punct": "a",
+ "index": 1684
+ },
+ {
+ "start": 693.62,
+ "confidence": 1,
+ "end": 693.84,
+ "word": "group",
+ "punct": "group",
+ "index": 1685
+ },
+ {
+ "start": 693.84,
+ "confidence": 1,
+ "end": 693.97,
+ "word": "of",
+ "punct": "of",
+ "index": 1686
+ },
+ {
+ "start": 693.97,
+ "confidence": 1,
+ "end": 694.34,
+ "word": "people",
+ "punct": "people",
+ "index": 1687
+ },
+ {
+ "start": 694.34,
+ "confidence": 1,
+ "end": 694.9,
+ "word": "refuses",
+ "punct": "refuses",
+ "index": 1688
+ },
+ {
+ "start": 694.9,
+ "confidence": 1,
+ "end": 695,
+ "word": "to",
+ "punct": "to",
+ "index": 1689
+ },
+ {
+ "start": 695,
+ "confidence": 0.99,
+ "end": 695.44,
+ "word": "harm",
+ "punct": "harm",
+ "index": 1690
+ },
+ {
+ "start": 695.44,
+ "confidence": 0.66,
+ "end": 695.57,
+ "word": "her",
+ "punct": "her",
+ "index": 1691
+ },
+ {
+ "start": 695.56,
+ "confidence": 0.96,
+ "end": 695.8,
+ "word": "about",
+ "punct": "about",
+ "index": 1692
+ },
+ {
+ "start": 695.81,
+ "confidence": 0.68,
+ "end": 695.89,
+ "word": "a",
+ "punct": "a",
+ "index": 1693
+ },
+ {
+ "start": 695.92,
+ "confidence": 0.98,
+ "end": 696.13,
+ "word": "baby",
+ "punct": "baby",
+ "index": 1694
+ },
+ {
+ "start": 696.13,
+ "confidence": 0.99,
+ "end": 696.86,
+ "word": "dinosaur",
+ "punct": "dinosaur.",
+ "index": 1695
+ },
+ {
+ "start": 698.23,
+ "confidence": 1,
+ "end": 698.46,
+ "word": "those",
+ "punct": "Those",
+ "index": 1696
+ },
+ {
+ "start": 698.46,
+ "confidence": 1,
+ "end": 698.86,
+ "word": "robots",
+ "punct": "robots",
+ "index": 1697
+ },
+ {
+ "start": 698.89,
+ "confidence": 0.91,
+ "end": 699.1,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 1698
+ },
+ {
+ "start": 699.1,
+ "confidence": 0.93,
+ "end": 699.49,
+ "word": "just",
+ "punct": "just",
+ "index": 1699
+ },
+ {
+ "start": 699.5,
+ "confidence": 0.56,
+ "end": 699.93,
+ "word": "motors",
+ "punct": "motors",
+ "index": 1700
+ },
+ {
+ "start": 699.92,
+ "confidence": 0.71,
+ "end": 700.04,
+ "word": "in",
+ "punct": "in",
+ "index": 1701
+ },
+ {
+ "start": 700.05,
+ "confidence": 0.55,
+ "end": 700.35,
+ "word": "years",
+ "punct": "years",
+ "index": 1702
+ },
+ {
+ "start": 700.35,
+ "confidence": 0.83,
+ "end": 700.45,
+ "word": "and",
+ "punct": "and",
+ "index": 1703
+ },
+ {
+ "start": 700.45,
+ "confidence": 0.7,
+ "end": 700.61,
+ "word": "a",
+ "punct": "a",
+ "index": 1704
+ },
+ {
+ "start": 700.61,
+ "confidence": 0.76,
+ "end": 701.37,
+ "word": "groom's",
+ "punct": "groom's.",
+ "index": 1705
+ },
+ {
+ "start": 702.17,
+ "confidence": 0.67,
+ "end": 702.37,
+ "word": "their",
+ "punct": "Their",
+ "index": 1706
+ },
+ {
+ "start": 702.62,
+ "confidence": 1,
+ "end": 703.26,
+ "word": "reflections",
+ "punct": "reflections",
+ "index": 1707
+ },
+ {
+ "start": 703.26,
+ "confidence": 0.99,
+ "end": 703.36,
+ "word": "of",
+ "punct": "of",
+ "index": 1708
+ },
+ {
+ "start": 703.36,
+ "confidence": 0.99,
+ "end": 703.45,
+ "word": "our",
+ "punct": "our",
+ "index": 1709
+ },
+ {
+ "start": 703.45,
+ "confidence": 0.99,
+ "end": 703.63,
+ "word": "own",
+ "punct": "own",
+ "index": 1710
+ },
+ {
+ "start": 703.63,
+ "confidence": 1,
+ "end": 704.34,
+ "word": "humanity",
+ "punct": "humanity.",
+ "index": 1711
+ }
+ ]
+ },
+ "elapsed": 0.090955018997192,
+ "servertime": "20181102111317.9727"
+ }
\ No newline at end of file
diff --git a/packages/timed-text-editor/stories/index.stories.js b/packages/timed-text-editor/stories/index.stories.js
new file mode 100644
index 00000000..b122d103
--- /dev/null
+++ b/packages/timed-text-editor/stories/index.stories.js
@@ -0,0 +1,30 @@
+import React from "react";
+
+import { storiesOf } from "@storybook/react";
+import { action } from "@storybook/addon-actions";
+
+import bbcKaldiTranscript from "./fixtures/bbc-kaldi.json";
+
+import TimedTextEditor from "../src";
+
+const fixtureProps = {
+ transcriptData: bbcKaldiTranscript,
+ mediaUrl: "https://download.ted.com/talks/KateDarling_2018S-950k.mp4",
+ isEditable: true,
+ onWordClick: action("onWordClick"),
+ sttJsonType: "bbckaldi",
+ isPlaying: action("isPlaying"),
+ playMedia: action("playMedia"),
+ currentTime: 0,
+ isScrollIntoViewOn: true,
+ isPauseWhileTypingOn: true,
+ timecodeOffset: 0,
+ handleAnalyticsEvents: action("handleAnalyticsEvents"),
+ showSpeakers: true,
+ showTimecodes: true,
+ fileName: "KateDarling_2018S-950k.mp4"
+};
+
+storiesOf("TimedTextEditor", module).add("default", () => (
+
+));
diff --git a/packages/util-create-entity-map/.eslintignore b/packages/util-create-entity-map/.eslintignore
new file mode 100644
index 00000000..11c5151e
--- /dev/null
+++ b/packages/util-create-entity-map/.eslintignore
@@ -0,0 +1,2 @@
+**/node_modules/*
+**/coverage/*
diff --git a/packages/util-create-entity-map/package.json b/packages/util-create-entity-map/package.json
new file mode 100644
index 00000000..bbd526b1
--- /dev/null
+++ b/packages/util-create-entity-map/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "@bbc-transcript-editor/util-create-entity-map",
+ "version": "1.0.0",
+ "description": "",
+ "main": "src/index.js",
+ "license": "MIT",
+ "scripts": {
+ "lint": "eslint ."
+ },
+ "devDependencies": {
+ "@bbc-transcript-editor/eslint-config": "1.0.0"
+ },
+ "eslintConfig": {
+ "extends": "@bbc-transcript-editor"
+ }
+}
diff --git a/packages/util-create-entity-map/src/index.js b/packages/util-create-entity-map/src/index.js
new file mode 100644
index 00000000..e331d007
--- /dev/null
+++ b/packages/util-create-entity-map/src/index.js
@@ -0,0 +1,23 @@
+// converts nested arrays into one dimensional array
+const flatten = list =>
+ list.reduce((a, b) => a.concat(Array.isArray(b) ? flatten(b) : b), []);
+
+const createEntityMap = blocks => {
+ const entityRanges = blocks.map(block => block.entityRanges);
+ // eslint-disable-next-line no-use-before-define
+ const flatEntityRanges = flatten(entityRanges);
+
+ const entityMap = {};
+
+ flatEntityRanges.forEach(data => {
+ entityMap[data.key] = {
+ type: "WORD",
+ mutability: "MUTABLE",
+ data
+ };
+ });
+
+ return entityMap;
+};
+
+export default createEntityMap;
diff --git a/packages/util-generate-entities-ranges/.eslintignore b/packages/util-generate-entities-ranges/.eslintignore
new file mode 100644
index 00000000..11c5151e
--- /dev/null
+++ b/packages/util-generate-entities-ranges/.eslintignore
@@ -0,0 +1,2 @@
+**/node_modules/*
+**/coverage/*
diff --git a/packages/util-generate-entities-ranges/package.json b/packages/util-generate-entities-ranges/package.json
new file mode 100644
index 00000000..dc804532
--- /dev/null
+++ b/packages/util-generate-entities-ranges/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "@bbc-transcript-editor/util-generate-entities-ranges",
+ "version": "1.0.0",
+ "description": "Helper function to generate Draft.js entities",
+ "main": "src/index.js",
+ "license": "MIT",
+ "scripts": {
+ "lint": "eslint ."
+ },
+ "devDependencies": {
+ "@bbc-transcript-editor/eslint-config": "1.0.0"
+ },
+ "eslintConfig": {
+ "extends": "@bbc-transcript-editor"
+ }
+}
diff --git a/packages/util-generate-entities-ranges/src/__tests__/index.test.js b/packages/util-generate-entities-ranges/src/__tests__/index.test.js
new file mode 100644
index 00000000..cd4cc428
--- /dev/null
+++ b/packages/util-generate-entities-ranges/src/__tests__/index.test.js
@@ -0,0 +1,103 @@
+import generateEntitiesRanges from "../index";
+
+const exampleWords = [
+ {
+ start: 13.02,
+ confidence: 0.68,
+ end: 13.17,
+ word: "there",
+ punct: "There",
+ index: 0
+ },
+ {
+ start: 13.17,
+ confidence: 0.61,
+ end: 13.38,
+ word: "is",
+ punct: "is",
+ index: 1
+ },
+ {
+ start: 13.38,
+ confidence: 0.99,
+ end: 13.44,
+ word: "a",
+ punct: "a",
+ index: 2
+ },
+ {
+ start: 13.44,
+ confidence: 1,
+ end: 13.86,
+ word: "day",
+ punct: "day.",
+ index: 3
+ }
+];
+
+// ignoring autogenerated id
+// see" 2. Ignoring values, relative to current time"
+// https://medium.com/@boriscoder/the-hidden-power-of-jest-matchers-f3d86d8101b0
+const expectedValue = [
+ {
+ start: 13.02,
+ end: 13.17,
+ confidence: 0.68,
+ text: "There",
+ offset: 0,
+ length: 5,
+ key: expect.any(String) // "sjagsma"
+ },
+ {
+ start: 13.17,
+ end: 13.38,
+ confidence: 0.61,
+ text: "is",
+ offset: 6,
+ length: 2,
+ key: expect.any(String) // "xuyej3b"
+ },
+ {
+ start: 13.38,
+ end: 13.44,
+ confidence: 0.99,
+ text: "a",
+ offset: 9,
+ length: 1,
+ key: expect.any(String) // "8fyva5"
+ },
+ {
+ start: 13.44,
+ end: 13.86,
+ confidence: 1,
+ text: "day.",
+ offset: 11,
+ length: 4,
+ key: expect.any(String) // "ss8pm4p"
+ }
+];
+
+describe("Generate Entity Ranges", () => {
+ const result = generateEntitiesRanges(exampleWords, "punct");
+ const resultFirstElement = result[0];
+ it("Should be defined", () => {
+ expect(result).toBeDefined();
+ });
+
+ it("Should return a list of entities", () => {
+ expect(result).toEqual(expectedValue);
+ });
+ it("Should have expected attributes", () => {
+ expect(resultFirstElement).toHaveProperty("start");
+ expect(resultFirstElement).toHaveProperty("end");
+ expect(resultFirstElement).toHaveProperty("confidence");
+ expect(resultFirstElement).toHaveProperty("text");
+ expect(resultFirstElement).toHaveProperty("offset");
+ expect(resultFirstElement).toHaveProperty("length");
+ expect(resultFirstElement).toHaveProperty("key");
+ });
+
+ it("Should return a list of entities", () => {
+ expect(typeof resultFirstElement.key).toBe("string");
+ });
+});
diff --git a/src/lib/Util/adapters/generate-entities-ranges/index.js b/packages/util-generate-entities-ranges/src/index.js
similarity index 71%
rename from src/lib/Util/adapters/generate-entities-ranges/index.js
rename to packages/util-generate-entities-ranges/src/index.js
index fb4fb805..4411ff91 100644
--- a/src/lib/Util/adapters/generate-entities-ranges/index.js
+++ b/packages/util-generate-entities-ranges/src/index.js
@@ -5,14 +5,15 @@
*/
/**
-* @param {json} words - List of words
-* @param {string} wordAttributeName - eg 'punct' or 'text' or etc.
-* attribute for the word object containing the text. eg word ={ punct:'helo', ... }
-* or eg word ={ text:'helo', ... }
-*/
+ * @param {json} words - List of words
+ * @param {string} wordAttributeName - eg 'punct' or 'text' or etc.
+ * attribute for the word object containing the text. eg word ={ punct:'helo', ... }
+ * or eg word ={ text:'helo', ... }
+ */
const generateEntitiesRanges = (words, wordAttributeName) => {
let position = 0;
- return words.map((word) => {
+
+ return words.map(word => {
const result = {
start: word.start,
end: word.end,
@@ -22,7 +23,7 @@ const generateEntitiesRanges = (words, wordAttributeName) => {
length: word[wordAttributeName].length,
key: Math.random()
.toString(36)
- .substring(6),
+ .substring(6)
};
// increase position counter - to determine word offset in paragraph
position = position + word[wordAttributeName].length + 1;
diff --git a/packages/util-timecode-converter/.eslintignore b/packages/util-timecode-converter/.eslintignore
new file mode 100644
index 00000000..11c5151e
--- /dev/null
+++ b/packages/util-timecode-converter/.eslintignore
@@ -0,0 +1,2 @@
+**/node_modules/*
+**/coverage/*
diff --git a/packages/util-timecode-converter/package.json b/packages/util-timecode-converter/package.json
new file mode 100644
index 00000000..f12472ed
--- /dev/null
+++ b/packages/util-timecode-converter/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "@bbc-transcript-editor/util-timecode-converter",
+ "version": "1.0.0",
+ "description": "Utilities for converting timecodes",
+ "main": "src/index.js",
+ "license": "MIT",
+ "scripts": {
+ "lint": "eslint ."
+ },
+ "devDependencies": {
+ "@bbc-transcript-editor/eslint-config": "1.0.0"
+ },
+ "eslintConfig": {
+ "extends": "@bbc-transcript-editor"
+ }
+}
diff --git a/src/lib/Util/timecode-converter/index.test.js b/packages/util-timecode-converter/src/__tests__/index.test.js
similarity index 65%
rename from src/lib/Util/timecode-converter/index.test.js
rename to packages/util-timecode-converter/src/__tests__/index.test.js
index f064346f..84e4b104 100644
--- a/src/lib/Util/timecode-converter/index.test.js
+++ b/packages/util-timecode-converter/src/__tests__/index.test.js
@@ -1,76 +1,76 @@
-import { timecodeToSeconds, secondsToTimecode } from './index';
+import { timecodeToSeconds, secondsToTimecode } from "../index";
-describe('Timecode conversion TC- convertToSeconds', () => {
- it('Should be defined', ( ) => {
- const demoTcValue = '00:10:00:00';
+describe("Timecode conversion TC- convertToSeconds", () => {
+ it("Should be defined", () => {
+ const demoTcValue = "00:10:00:00";
const result = timecodeToSeconds(demoTcValue);
expect(result).toBeDefined();
});
- it('Should be able to convert: hh:mm:ss:ms ', ( ) => {
- const demoTcValue = '00:10:00:00';
+ it("Should be able to convert: hh:mm:ss:ms ", () => {
+ const demoTcValue = "00:10:00:00";
const demoExpectedResultInSeconds = 600;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- it('Should be able to conver: mm:ss ', ( ) => {
- const demoTcValue = '10:00';
+ it("Should be able to conver: mm:ss ", () => {
+ const demoTcValue = "10:00";
const demoExpectedResultInSeconds = 600;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- it('Should be able to convert: m:ss ', ( ) => {
- const demoTcValue = '09:00';
+ it("Should be able to convert: m:ss ", () => {
+ const demoTcValue = "09:00";
const demoExpectedResultInSeconds = 540;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- it('Should be able to convert: m.ss ', ( ) => {
- const demoTcValue = '9.01';
+ it("Should be able to convert: m.ss ", () => {
+ const demoTcValue = "9.01";
const demoExpectedResultInSeconds = 541;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- it('Should be able to convert: ss - seconds ', ( ) => {
+ it("Should be able to convert: ss - seconds ", () => {
const demoTcValue = 600;
const demoExpectedResultInSeconds = 600;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- xit('Should be able to convert: ss - seconds - eve if it is string ', ( ) => {
- const demoTcValue = '600';
+ xit("Should be able to convert: ss - seconds - eve if it is string ", () => {
+ const demoTcValue = "600";
const demoExpectedResultInSeconds = 600;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- it('Should be able to convert: hh:mm:ss ', ( ) => {
- const demoTcValue = '00:10:00';
+ it("Should be able to convert: hh:mm:ss ", () => {
+ const demoTcValue = "00:10:00";
const demoExpectedResultInSeconds = 600;
const result = timecodeToSeconds(demoTcValue);
expect(result).toEqual(demoExpectedResultInSeconds);
});
- xit(' "sss" seconds number as string --> ss', ( ) => {
- const demoTime = '56';
- const expectedTimecode = '56';
+ xit(' "sss" seconds number as string --> ss', () => {
+ const demoTime = "56";
+ const expectedTimecode = "56";
const result = timecodeToSeconds(demoTime);
expect(result).toEqual(expectedTimecode);
});
- xit(' "sss" seconds number as string --> ss', ( ) => {
- const demoTime = '116';
- const expectedTimecode = '116';
+ xit(' "sss" seconds number as string --> ss', () => {
+ const demoTime = "116";
+ const expectedTimecode = "116";
const result = timecodeToSeconds(demoTime);
expect(result).toEqual(expectedTimecode);
});
- it('120 sec --> 120', ( ) => {
+ it("120 sec --> 120", () => {
const demoTime = 120;
const expectedTimecode = 120;
const result = timecodeToSeconds(demoTime);
@@ -99,17 +99,17 @@ describe('Timecode conversion TC- convertToSeconds', () => {
// })
});
-describe('Timecode conversion seconds to - convertToTimecode ', () => {
- it('Should be able to seconds to timecode hh:mm:ss:ms ', ( ) => {
+describe("Timecode conversion seconds to - convertToTimecode ", () => {
+ it("Should be able to seconds to timecode hh:mm:ss:ms ", () => {
const demoSeconds = 600;
- const demoExpectedResultInTc = '00:10:00:00';
+ const demoExpectedResultInTc = "00:10:00:00";
const result = secondsToTimecode(demoSeconds);
expect(result).toEqual(demoExpectedResultInTc);
});
- it('Should be able to seconds - string to timecode hh:mm:ss:ms ', ( ) => {
- const demoSeconds = '600';
- const demoExpectedResultInTc = '00:10:00:00';
+ it("Should be able to seconds - string to timecode hh:mm:ss:ms ", () => {
+ const demoSeconds = "600";
+ const demoExpectedResultInTc = "00:10:00:00";
const result = secondsToTimecode(demoSeconds);
expect(result).toEqual(demoExpectedResultInTc);
});
diff --git a/packages/util-timecode-converter/src/__tests__/padTimeToTimecode.test.js b/packages/util-timecode-converter/src/__tests__/padTimeToTimecode.test.js
new file mode 100644
index 00000000..0b1ca5c5
--- /dev/null
+++ b/packages/util-timecode-converter/src/__tests__/padTimeToTimecode.test.js
@@ -0,0 +1,43 @@
+import padTimeToTimecode from "../padTimeToTimecode";
+
+describe("Timecode conversion TC- convertToSeconds", () => {
+ it("Should be defined", () => {
+ const demoTimecode = "12:34:56:78";
+ const result = padTimeToTimecode(demoTimecode);
+ expect(result).toBeDefined();
+ });
+
+ it("hh:mm:ss:ff --> hh:mm:ss:ff ", () => {
+ const demoTimecode = "12:34:56:78";
+ const result = padTimeToTimecode(demoTimecode);
+ expect(result).toEqual(demoTimecode);
+ });
+
+ it("mm:ss --> convert to hh:mm:ss:ms", () => {
+ const demoTime = "34:56";
+ const expectedTimecode = "00:34:56:00";
+ const result = padTimeToTimecode(demoTime);
+ expect(result).toEqual(expectedTimecode);
+ });
+
+ xit("hh:mm:ss --> convert to hh:mm:ss:ms", () => {
+ const demoTime = "34:56:78";
+ const expectedTimecode = "00:34:56:78";
+ const result = padTimeToTimecode(demoTime);
+ expect(result).toEqual(expectedTimecode);
+ });
+
+ it("mm.ss--> convert to hh:mm:ss:ms", () => {
+ const demoTime = "34.56";
+ const expectedTimecode = "00:34:56:00";
+ const result = padTimeToTimecode(demoTime);
+ expect(result).toEqual(expectedTimecode);
+ });
+
+ it("120 sec --> 120", () => {
+ const demoTime = 120;
+ const expectedTimecode = 120;
+ const result = padTimeToTimecode(demoTime);
+ expect(result).toEqual(expectedTimecode);
+ });
+});
diff --git a/src/lib/Util/timecode-converter/secondsToTimecode.test.js b/packages/util-timecode-converter/src/__tests__/secondsToTimecode.test.js
similarity index 55%
rename from src/lib/Util/timecode-converter/secondsToTimecode.test.js
rename to packages/util-timecode-converter/src/__tests__/secondsToTimecode.test.js
index ab6dfb5c..fd9f5813 100644
--- a/src/lib/Util/timecode-converter/secondsToTimecode.test.js
+++ b/packages/util-timecode-converter/src/__tests__/secondsToTimecode.test.js
@@ -1,16 +1,16 @@
-import secondsToTimecode from './secondsToTimecode';
+import secondsToTimecode from "../secondsToTimecode";
-describe('Timecode conversion TC- convertToSeconds', () => {
- it('Should be defined', ( ) => {
+describe("Timecode conversion TC- convertToSeconds", () => {
+ it("Should be defined", () => {
const dmoSecondsValue = 600;
// const demoExpectedTc = '00:10:00:00';
const result = secondsToTimecode(dmoSecondsValue);
expect(result).toBeDefined();
});
- it('Should be able to convert to: hh:mm:ss:ff ', ( ) => {
+ it("Should be able to convert to: hh:mm:ss:ff ", () => {
const dmoSecondsValue = 600;
- const demoExpectedTc = '00:10:00:00';
+ const demoExpectedTc = "00:10:00:00";
const result = secondsToTimecode(dmoSecondsValue);
expect(result).toEqual(demoExpectedTc);
});
diff --git a/packages/util-timecode-converter/src/__tests__/timecodeToSeconds.test.js b/packages/util-timecode-converter/src/__tests__/timecodeToSeconds.test.js
new file mode 100644
index 00000000..470bc3ea
--- /dev/null
+++ b/packages/util-timecode-converter/src/__tests__/timecodeToSeconds.test.js
@@ -0,0 +1,16 @@
+import timecodeToSecondsHelper from "../timecodeToSeconds";
+
+describe("Timecode conversion TC- convertToSeconds", () => {
+ it("Should be defined", () => {
+ const demoTcValue = "00:10:00:00";
+ const result = timecodeToSecondsHelper(demoTcValue);
+ expect(result).toBeDefined();
+ });
+
+ it("Should be able to convert from: hh:mm:ss:ff ", () => {
+ const demoTcValue = "00:10:00:00";
+ const demoExpectedResultInSeconds = 600;
+ const result = timecodeToSecondsHelper(demoTcValue);
+ expect(result).toEqual(demoExpectedResultInSeconds);
+ });
+});
diff --git a/src/lib/Util/timecode-converter/index.js b/packages/util-timecode-converter/src/index.js
similarity index 74%
rename from src/lib/Util/timecode-converter/index.js
rename to packages/util-timecode-converter/src/index.js
index 30c70154..cbbe93a5 100644
--- a/src/lib/Util/timecode-converter/index.js
+++ b/packages/util-timecode-converter/src/index.js
@@ -2,9 +2,9 @@
* Wrapping around "time stamps" and timecode conversion modules
* To provide more support for variety of formats.
*/
-import secondsToTimecode from './secondsToTimecode';
-import timecodeToSecondsHelper from './timecodeToSeconds';
-import padTimeToTimecode from './padTimeToTimecode';
+import secondsToTimecode from "./secondsToTimecode";
+import timecodeToSecondsHelper from "./timecodeToSeconds";
+import padTimeToTimecode from "./padTimeToTimecode";
/**
* @param {*} time
@@ -16,8 +16,8 @@ import padTimeToTimecode from './padTimeToTimecode';
* - hh:mm:ff
* @todo could be refactored with some helper functions for clarity
*/
-const timecodeToSeconds = (time) => {
- if (typeof time === 'string') {
+const timecodeToSeconds = time => {
+ if (typeof time === "string") {
const resultPadded = padTimeToTimecode(time);
const resultConverted = timecodeToSecondsHelper(resultPadded);
@@ -28,7 +28,7 @@ const timecodeToSeconds = (time) => {
return parseFloat(time);
};
-const shortTimecode = (time) => {
+const shortTimecode = time => {
const timecode = secondsToTimecode(time);
return timecode.slice(0, -3);
diff --git a/packages/util-timecode-converter/src/padTimeToTimecode.js b/packages/util-timecode-converter/src/padTimeToTimecode.js
new file mode 100644
index 00000000..f5a799b4
--- /dev/null
+++ b/packages/util-timecode-converter/src/padTimeToTimecode.js
@@ -0,0 +1,50 @@
+const countColon = timecode => timecode.split(":").length;
+
+const includesFullStop = timecode => timecode.includes(".");
+
+const isOneDigit = str => str.length === 1;
+
+const padTimeToTimecode = time => {
+ if (typeof time === "string") {
+ switch (countColon(time)) {
+ case 4:
+ // is already in timecode format
+ // hh:mm:ss:ff
+ return time;
+ case 2:
+ // m:ss
+ if (isOneDigit(time.split(":")[0])) {
+ return `00:0${time}:00`;
+ }
+
+ return `00:${time}:00`;
+ case 3:
+ // hh:mm:ss
+ return `${time}:00`;
+ default:
+ // mm.ss
+ if (includesFullStop(time)) {
+ // m.ss
+ if (isOneDigit(time.split(".")[0])) {
+ return `00:0${time.split(".")[0]}:${time.split(".")[1]}:00`;
+ }
+
+ return `00:${time.replace(".", ":")}:00`;
+ }
+
+ // if just int, then it's seconds
+ // s
+ if (isOneDigit(time)) {
+ return `00:00:0${time}:00`;
+ }
+
+ return `00:00:${time}:00`;
+ }
+ // edge case if it's number return a number coz cannot refactor
+ // TODO: might need to refactor and move this elsewhere
+ } else {
+ return time;
+ }
+};
+
+export default padTimeToTimecode;
diff --git a/packages/util-timecode-converter/src/secondsToTimecode.js b/packages/util-timecode-converter/src/secondsToTimecode.js
new file mode 100644
index 00000000..37607e59
--- /dev/null
+++ b/packages/util-timecode-converter/src/secondsToTimecode.js
@@ -0,0 +1,53 @@
+/**
+ * Raised in this comment https://github.com/bbc/react-transcript-editor/pull/9
+ * abstracted from https://github.com/bbc/newslabs-cdn/blob/master/js/20-bbcnpf.utils.js
+ * In broadcast VIDEO, timecode is NOT hh:mm:ss:ms, it's hh:mm:ss:ff where ff is frames,
+ * dependent on the framerate of the media concerned.
+ * `hh:mm:ss:ff`
+ */
+
+/**
+ * Helper function
+ * Rounds to the 14milliseconds boundaries
+ * Time in video can only "exist in" 14milliseconds boundaries.
+ * This makes it possible for the HTML5 player to be frame accurate.
+ * @param {*} seconds
+ * @param {*} fps
+ */
+const normalisePlayerTime = function(seconds, fps) {
+ return Number(
+ ((1.0 / fps) * Math.floor(Number((fps * seconds).toPrecision(12)))).toFixed(
+ 2
+ )
+ );
+};
+
+/*
+ * @param {*} seconds
+ * @param {*} fps
+ */
+const secondsToTimecode = function(seconds, framePerSeconds) {
+ // written for PAL non-drop timecode
+ let fps = 25;
+ if (framePerSeconds !== undefined) {
+ fps = framePerSeconds;
+ }
+
+ const normalisedSeconds = normalisePlayerTime(seconds, fps);
+
+ const wholeSeconds = Math.floor(normalisedSeconds);
+ const frames = ((normalisedSeconds - wholeSeconds) * fps).toFixed(2);
+
+ // prepends zero - example pads 3 to 03
+ function _padZero(n) {
+ if (n < 10) return `0${parseInt(n)}`;
+
+ return parseInt(n);
+ }
+
+ return `${_padZero((wholeSeconds / 60 / 60) % 60)}:${_padZero(
+ (wholeSeconds / 60) % 60
+ )}:${_padZero(wholeSeconds % 60)}:${_padZero(frames)}`;
+};
+
+export default secondsToTimecode;
diff --git a/src/lib/Util/timecode-converter/timecodeToSeconds.js b/packages/util-timecode-converter/src/timecodeToSeconds.js
similarity index 82%
rename from src/lib/Util/timecode-converter/timecodeToSeconds.js
rename to packages/util-timecode-converter/src/timecodeToSeconds.js
index 27069972..276f8b29 100644
--- a/src/lib/Util/timecode-converter/timecodeToSeconds.js
+++ b/packages/util-timecode-converter/src/timecodeToSeconds.js
@@ -3,10 +3,10 @@
* @param {*} tc
* @param {*} fps
*/
-const timecodeToFrames = function (tc, fps) {
+const timecodeToFrames = function(tc, fps) {
// TODO make 29.97 fps drop-frame aware - works for 25 only.
- const s = tc.split(':');
+ const s = tc.split(":");
let frames = parseInt(s[3]);
frames += parseInt(s[2]) * fps;
frames += parseInt(s[1]) * (fps * 60);
@@ -20,7 +20,7 @@ const timecodeToFrames = function (tc, fps) {
* @param {*} tc - `hh:mm:ss:ff`
* @param {*} framePerSeconds - defaults to 25 if not provided
*/
-const timecodeToSecondsHelper = function (tc, framePerSeconds) {
+const timecodeToSecondsHelper = function(tc, framePerSeconds) {
let fps = 25;
if (framePerSeconds !== undefined) {
fps = framePerSeconds;
diff --git a/packages/video-player/.eslintignore b/packages/video-player/.eslintignore
new file mode 100644
index 00000000..11c5151e
--- /dev/null
+++ b/packages/video-player/.eslintignore
@@ -0,0 +1,2 @@
+**/node_modules/*
+**/coverage/*
diff --git a/packages/video-player/package.json b/packages/video-player/package.json
new file mode 100644
index 00000000..8767ea1d
--- /dev/null
+++ b/packages/video-player/package.json
@@ -0,0 +1,15 @@
+{
+ "name": "@bbc-transcript-editor/video-player",
+ "version": "1.0.0",
+ "main": "src/index.js",
+ "license": "MIT",
+ "scripts": {
+ "lint": "eslint ."
+ },
+ "devDependencies": {
+ "@bbc-transcript-editor/eslint-config": "1.0.0"
+ },
+ "eslintConfig": {
+ "extends": "@bbc-transcript-editor"
+ }
+}
diff --git a/src/lib/TranscriptEditor/MediaPlayer/VideoPlayer.js b/packages/video-player/src/index.js
similarity index 51%
rename from src/lib/TranscriptEditor/MediaPlayer/VideoPlayer.js
rename to packages/video-player/src/index.js
index e7fe4e19..9497768a 100644
--- a/src/lib/TranscriptEditor/MediaPlayer/VideoPlayer.js
+++ b/packages/video-player/src/index.js
@@ -1,32 +1,35 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import styles from './VideoPlayer.module.css';
+import React from "react";
+import PropTypes from "prop-types";
-class VideoPlayer extends React.Component {
+import styles from "./index.module.css";
+class VideoPlayer extends React.Component {
handlePlayMedia = () => {
if (this.props.videoRef.current !== null) {
- return this.props.videoRef.current.paused ? this.props.videoRef.current.play() : this.props.videoRef.current.pause();
+ return this.props.videoRef.current.paused
+ ? this.props.videoRef.current.play()
+ : this.props.videoRef.current.pause();
}
};
+
render() {
- const isDisplayed = this.props.previewIsDisplayed ? 'inline' : 'none';
+ const isDisplayed = this.props.previewIsDisplayed ? "inline" : "none";
return (
);
}
diff --git a/src/lib/TranscriptEditor/MediaPlayer/VideoPlayer.module.css b/packages/video-player/src/index.module.css
similarity index 100%
rename from src/lib/TranscriptEditor/MediaPlayer/VideoPlayer.module.css
rename to packages/video-player/src/index.module.css
diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index a11777cc..00000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/index.html b/public/index.html
deleted file mode 100644
index fdfd9603..00000000
--- a/public/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
React Transcript Editor - Demo page
-
-
-
- You need to enable JavaScript to run this app.
-
-
-
-
-
diff --git a/public/manifest.json b/public/manifest.json
deleted file mode 100644
index 1f2f141f..00000000
--- a/public/manifest.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "short_name": "React App",
- "name": "Create React App Sample",
- "icons": [
- {
- "src": "favicon.ico",
- "sizes": "64x64 32x32 24x24 16x16",
- "type": "image/x-icon"
- }
- ],
- "start_url": ".",
- "display": "standalone",
- "theme_color": "#000000",
- "background_color": "#ffffff"
-}
diff --git a/src/index.js b/src/index.js
deleted file mode 100644
index af299e39..00000000
--- a/src/index.js
+++ /dev/null
@@ -1,228 +0,0 @@
-import React from 'react';
-import { render } from 'react-dom';
-
-import { TranscriptEditor } from './lib';
-
-import kaldiTedTalkTranscript from './sample-data/KateDarling_2018S-bbc-kaldi.json';
-import style from './index.module.css';
-import SttTypeSelect from './select-stt-json-type';
-import ExportFormatSelect from './select-export-format';
-
-const tedTalkVideoUrl = 'https://download.ted.com/talks/KateDarling_2018S-950k.mp4';
-
-class App extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- transcriptData: null,
- mediaUrl: null,
- isTextEditable: true,
- sttType: 'bbckaldi',
- analyticsEvents: [],
- title: 'Ted Talk Kate Kate Darling',
- fileName: ''
- };
-
- this.transcriptEditorRef = React.createRef();
- }
-
- loadDemo() {
- this.setState({
- transcriptData: kaldiTedTalkTranscript,
- mediaUrl: tedTalkVideoUrl,
- sttType: 'bbckaldi',
- });
- }
-
- // https://stackoverflow.com/questions/8885701/play-local-hard-drive-video-file-with-html5-video-tag
- handleChangeLoadMedia(files) {
- console.log(files);
- const file = files[0];
- const type = file.type;
- // check if is playable
- const videoNode = document.createElement('video');
- const canPlay = videoNode.canPlayType(type);
- if (canPlay) {
- const fileURL = URL.createObjectURL(file);
- // videoNode.src = fileURL
- this.setState({
- // transcriptData: kaldiTedTalkTranscript,
- mediaUrl: fileURL,
- fileName: file.name
- });
- }
- else {
- alert('select a valid audio or video file');
- }
- }
-
- handleChangeLoadMediaUrl() {
- const fileURL = prompt("Paste the URL you'd like to use here");
-
- this.setState({
- // transcriptData: kaldiTedTalkTranscript,
- mediaUrl: fileURL,
- });
- }
-
- handleChangeLoadTranscriptJson(files) {
- const file = files[0];
-
- if (file.type === 'application/json') {
- const fr = new FileReader();
-
- fr.onload = (evt) => {
- this.setState({
- transcriptData: JSON.parse(evt.target.result)
- });
- };
-
- fr.readAsText(file);
-
- }
- else {
- alert('select a valid json file');
- }
- }
-
- handleIsTextEditable = () => {
- this.setState((prevState) => ({ isTextEditable: (prevState.isTextEditable) !== true }));
- }
-
- // https://stackoverflow.com/questions/21733847/react-jsx-selecting-selected-on-selected-select-option
- handleSttTypeChange = (event) => {
- console.log(event.target.name, event.target.value);
- this.setState({ [event.target.name]: event.target.value });
- }
-
- handleExportFormatChange = (event) => {
- console.log(event.target.name, event.target.value);
- this.setState({ [event.target.name]: event.target.value });
- }
-
- exportTranscript = () => {
- // eslint-disable-next-line react/no-string-refs
- const { data, ext } = this.transcriptEditorRef.current.getEditorContent(this.state.exportFormat);
- this.download(data, `${ this.state.mediaUrl }.${ ext }`);
- }
-
- // https://stackoverflow.com/questions/2897619/using-html5-javascript-to-generate-and-save-a-file
- download = (content, filename, contentType) => {
- const type = contentType || 'application/octet-stream';
- const a = document.createElement('a');
- const blob = new Blob([ content ], { type: type });
-
- a.href = window.URL.createObjectURL(blob);
- a.download = filename;
- a.click();
- }
-
- clearLocalStorage = () => {
- localStorage.clear();
- console.info('cleared local storage');
- }
-
- handleAnalyticsEvents = (event) => {
- this.setState({ analyticsEvents: [ ...this.state.analyticsEvents, event ] });
- }
-
- handleChangeTranscriptTitle = (newTitle) => {
- this.setState({
- title: newTitle
- });
- }
-
- handleChangeTranscriptName = (value) => {
- this.setState({ fileName: value });
- }
-
- render() {
-
- return (
-
-
- Demo page for React Transcript Editor - Component |{' '}
-
- Github Repo
-
-
-
-
this.loadDemo() }>load demo
-
-
Load Local Media
-
this.handleChangeLoadMedia(e.target.files) }
- />
- or
-
this.handleChangeLoadMediaUrl() }>
- Load Media From Url
-
-
-
open Transcript Json
-
-
this.handleChangeLoadTranscriptJson(e.target.files) }
- />
-
-
-
Export transcript
-
this.exportTranscript() }>Export file
-
-
-
-
Text Is Editable
-
-
-
-
-
Optional Transcript Name
-
this.handleChangeTranscriptTitle(e.target.value) }
- />
-
-
-
this.clearLocalStorage() }>Clear Local Storage
-
-
-
-
-
Components Analytics
-
-
- );
- }
-}
-
-render(
, document.getElementById('root'));
diff --git a/src/lib/TranscriptEditor/MediaPlayer/PlaybackRate.js b/src/lib/TranscriptEditor/MediaPlayer/PlaybackRate.js
deleted file mode 100644
index 7b70f62f..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/PlaybackRate.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import styles from './PlaybackRate.module.css';
-class PlaybackRate extends React.Component {
-
- render() {
- return (
-
-
Playback Rate
- { ` x${ this.props.playBackRate } ` }
-
-
-
-
{ this.props.setPlayBackRate(1); } }>Reset Playback Rate
-
- );
- }
-}
-
-PlaybackRate.propTypes = {
- handlePlayBackRateChange: PropTypes.func,
- playBackRate: PropTypes.number,
- setPlayBackRate: PropTypes.func
-};
-
-export default PlaybackRate;
diff --git a/src/lib/TranscriptEditor/MediaPlayer/PlayerControls.js b/src/lib/TranscriptEditor/MediaPlayer/PlayerControls.js
deleted file mode 100644
index 5fb96f61..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/PlayerControls.js
+++ /dev/null
@@ -1,158 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import Select from './Select';
-
-import style from './PlayerControls.module.css';
-
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-
-import {
- faSave,
- faTv,
- faPlay,
- faPause,
- faBackward,
- faForward,
- faUndo,
- faVolumeUp,
- faVolumeOff
-} from '@fortawesome/free-solid-svg-icons';
-
-class PlayerControls extends React.Component {
- // to handle backward and forward mouse pressed on btn
- // set a 300 ms interval to repeat the
- // backward or forward function
- // on mouseUp the interval is cleared
- setIntervalHelperBackward = () => {
- // this.props.skipBackward();
- this.interval = setInterval(() => {
- this.props.skipBackward();
- }, 300);
- }
-
- setIntervalHelperForward = () => {
- // this.props.skipForward();
- this.interval = setInterval(() => {
- this.props.skipForward();
- }, 300);
- }
-
- clearIntervalHelper = () => {
- clearInterval(this.interval);
- }
-
- render() {
- return (
-
-
-
- { this.props.currentTime }
- |
-
- {this.props.duration}
-
-
-
-
-
-
-
- {this.props.skipBackward(); } }>
-
-
-
-
- {this.props.isPlaying ? : }
-
-
- {this.props.skipForward(); } }>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- { this.props.isMute ? : }
-
-
-
- );
- }
-}
-
-PlayerControls.propTypes = {
-
- playMedia: PropTypes.func,
- currentTime: PropTypes.string,
- timecodeOffset: PropTypes.string,
- promptSetCurrentTime: PropTypes.func,
- rollback: PropTypes.func,
- handleMuteVolume: PropTypes.func,
- duration: PropTypes.string,
- isPlaying: PropTypes.bool,
- isMute: PropTypes.bool,
- skipBackward: PropTypes.func,
- skipForward: PropTypes.func,
- playbackRate: PropTypes.number,
- playbackRateOptions: PropTypes.array,
- setPlayBackRate: PropTypes.func,
- pictureInPicture: PropTypes.func,
- handleSaveTranscript: PropTypes.func
-};
-
-export default PlayerControls;
diff --git a/src/lib/TranscriptEditor/MediaPlayer/ProgressBar.js b/src/lib/TranscriptEditor/MediaPlayer/ProgressBar.js
deleted file mode 100644
index 8c52e2fb..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/ProgressBar.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import style from './ProgressBar.module.css';
-
-class ProgressBar extends React.Component {
-
- render() {
- return (
-
- );
- }
-}
-
-ProgressBar.propTypes = {
- value: PropTypes.number,
- max: PropTypes.string,
- buttonClick: PropTypes.func
-};
-
-export default ProgressBar;
diff --git a/src/lib/TranscriptEditor/MediaPlayer/RollBack.js b/src/lib/TranscriptEditor/MediaPlayer/RollBack.js
deleted file mode 100644
index 38707e0e..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/RollBack.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import styles from './RollBack.module.css';
-class RollBack extends React.Component {
-
- render() {
- return (
-
-
Rollback
- { ` x${ this.props.rollBackValueInSeconds } ` } Seconds
-
-
-
-
-
↺
-
-
- );
- }
-}
-
-RollBack.propTypes = {
- rollBackValueInSeconds: PropTypes.number,
- handleChangeReplayRollbackValue: PropTypes.func,
- rollBack: PropTypes.func
-};
-
-export default RollBack;
diff --git a/src/lib/TranscriptEditor/MediaPlayer/Select.js b/src/lib/TranscriptEditor/MediaPlayer/Select.js
deleted file mode 100644
index 65bcebef..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/Select.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import style from './Select.module.css';
-
-class Select extends React.Component {
-
- render() {
- const options = this.props.options.map((option, index) => {
- // eslint-disable-next-line react/no-array-index-key
- return
{option.label} ;
- });
-
- return (
-
- {options}
-
- );
- }
-}
-
-Select.propTypes = {
- options: PropTypes.array,
- name: PropTypes.string,
- currentValue: PropTypes.string,
- handleChange: PropTypes.func
-};
-
-export default Select;
diff --git a/src/lib/TranscriptEditor/MediaPlayer/defaultHotKeys.js b/src/lib/TranscriptEditor/MediaPlayer/defaultHotKeys.js
deleted file mode 100644
index c5e620a1..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/defaultHotKeys.js
+++ /dev/null
@@ -1,118 +0,0 @@
-function returnHotKeys(self) {
- return {
- 'alt+k': {
- priority: 1,
- handler: () => {
- self.togglePlayMedia();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+k',
- name: 'togglePlayMedia',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + k',
- label: 'Play Media',
- },
- 'alt+l': {
- priority: 1,
- handler: () => {
- self.skipForward();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+l',
- name: 'skipForward',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + l',
- label: 'Fast Forward',
- },
- 'alt+j': {
- priority: 1,
- handler: () => {
- self.skipBackward();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+j',
- name: 'skipBackward',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + j',
- label: 'Rewind',
- },
- 'alt+-': {
- priority: 1,
- handler: () => {
- self.decreasePlaybackRate();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+-',
- name: 'decreasePlaybackRate',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + -',
- label: 'Decrease Playback Speed',
- },
- // https://github.com/ccampbell/mousetrap/issues/266
- 'alt+=': {
- priority: 1,
- handler: () => {
- self.increasePlaybackRate();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+plus',
- name: 'increasePlaybackRate',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + +',
- label: 'Increase Playback Speed',
- },
- 'alt+r': {
- priority: 1,
- handler: () => {
- self.rollBack();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+r',
- name: 'rollBack',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + r',
- label: 'Roll Back',
- },
- 'alt+t': {
- priority: 1,
- handler: () => {
- self.promptSetCurrentTime();
-
- self.props.handleAnalyticsEvents({
- category: 'defaultHotKeys',
- action: 'alt+t',
- name: 'promptSetCurrentTime',
- value: 'na'
- });
-
- },
- displayKeyCombination: 'alt + t',
- label: 'set current time',
- }
- };
-}
-export default returnHotKeys;
\ No newline at end of file
diff --git a/src/lib/TranscriptEditor/MediaPlayer/index.test.js b/src/lib/TranscriptEditor/MediaPlayer/index.test.js
deleted file mode 100644
index eae2d542..00000000
--- a/src/lib/TranscriptEditor/MediaPlayer/index.test.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import React from 'react';
-import { render, cleanup } from 'react-testing-library';
-import { shallow } from 'enzyme';
-
-import MediaPlayer from '.';
-
-afterEach(cleanup);
-
-const fakeVideoUrl = 'https://storage.googleapis.com/coverr-main/mp4/Pigeon-Impossible.mp4';
-
-xtest('GIVEN a chapter title I expect that WHEN the Video component is rendered THEN the correct title is displayed', () => {
- const { container } = render(
);
-
- expect(container.innerHTML).toContain('videoSection');
-});
-
-xtest("GIVEN a video as a chapter with src video url THEN the video is rendered with it's source url", () => {
- const { getByTestId } = render(
);
-
- expect(getByTestId('media-player-id').attributes.src.value).toBe(fakeVideoUrl);
-});
-xtest('WHEN the Video component is rendered THEN a video element is displayed', () => {
- const wrapper = shallow(
);
- expect(wrapper.find('video').type()).toBe('video');
-});
diff --git a/src/lib/TranscriptEditor/Settings/Shortcuts.js b/src/lib/TranscriptEditor/Settings/Shortcuts.js
deleted file mode 100644
index 50576fd7..00000000
--- a/src/lib/TranscriptEditor/Settings/Shortcuts.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faWindowClose } from '@fortawesome/free-solid-svg-icons';
-
-import returnHotKeys from '../MediaPlayer/defaultHotKeys';
-
-import style from './Shortcuts.module.css';
-
-class Shortcuts extends React.Component {
- render() {
- const hotKeys = returnHotKeys(this);
- const hotKeysCheatsheet = Object.keys(hotKeys).map((key) => {
- const shortcut = hotKeys[key];
-
- return
- {shortcut.displayKeyCombination}
- {shortcut.label}
- ;
- });
-
- return (
-
- );
- }
-}
-
-Shortcuts.propTypes = {
- handleShortcutsToggle: PropTypes.func
-};
-
-export default Shortcuts;
diff --git a/src/lib/TranscriptEditor/Settings/TimecodeOffset/index.js b/src/lib/TranscriptEditor/Settings/TimecodeOffset/index.js
deleted file mode 100644
index 3a257625..00000000
--- a/src/lib/TranscriptEditor/Settings/TimecodeOffset/index.js
+++ /dev/null
@@ -1,81 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import style from './index.module.css';
-
-import { timecodeToSeconds, secondsToTimecode } from '../../../Util/timecode-converter/index';
-
-class TimecodeOffset extends React.Component {
- constructor(props) {
- super(props);
-
- this.state = {
- timecodeOffset: secondsToTimecode(this.props.timecodeOffset)
- };
- }
-
- handleChange = (e) => {
- this.setState({
- timecodeOffset: e.target.value
- });
- }
-
- resetTimecodeOffset = () => {
- const resetTimecodeOffsetValue = 0;
-
- this.props.handleAnalyticsEvents({
- category: 'TimecodeOffset',
- action: 'resetTimecodeOffset',
- name: 'resetTimecodeOffset',
- value: 0
- });
-
- this.setState({
- timecodeOffset: secondsToTimecode(resetTimecodeOffsetValue)
- }, () => {
- this.props.handleSetTimecodeOffset(resetTimecodeOffsetValue);
- });
- }
-
- setTimecodeOffset = () => {
- this.props.handleAnalyticsEvents({
- category: 'TimecodeOffset',
- action: 'setTimecodeOffset',
- name: 'setTimecodeOffset',
- value: this.state.timecodeOffset
- });
-
- let newCurrentTimeInSeconds = this.state.timecodeOffset;
- if (typeof newCurrentTimeInSeconds === 'string'
- && newCurrentTimeInSeconds.includes(':')
- && !newCurrentTimeInSeconds.includes('NaN')) {
- newCurrentTimeInSeconds = timecodeToSeconds(newCurrentTimeInSeconds );
- }
- this.props.handleSetTimecodeOffset(newCurrentTimeInSeconds);
- }
-
- render() {
- return (
-
-
- Reset
- |
- Save
-
- );
- }
-}
-
-TimecodeOffset.propTypes = {
- handleSetTimecodeOffset: PropTypes.func,
- onChange: PropTypes.func,
- timecodeOffset: PropTypes.number,
- handleAnalyticsEvents: PropTypes.func
-};
-
-export default TimecodeOffset;
diff --git a/src/lib/TranscriptEditor/Settings/Toggle/index.js b/src/lib/TranscriptEditor/Settings/Toggle/index.js
deleted file mode 100644
index 84ac5d95..00000000
--- a/src/lib/TranscriptEditor/Settings/Toggle/index.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import style from './index.module.css';
-
-class Toggle extends React.Component {
- render() {
- return (
-
-
-
-
-
-
- );
- }
-}
-
-Toggle.propTypes = {
- handleToggle: PropTypes.func,
- label: PropTypes.string,
- defaultValue: PropTypes.bool
-};
-
-export default Toggle;
diff --git a/src/lib/TranscriptEditor/Settings/index.js b/src/lib/TranscriptEditor/Settings/index.js
deleted file mode 100644
index a8091694..00000000
--- a/src/lib/TranscriptEditor/Settings/index.js
+++ /dev/null
@@ -1,129 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faWindowClose } from '@fortawesome/free-solid-svg-icons';
-
-import Toggle from './Toggle/';
-
-import style from './index.module.css';
-
-import TimecodeOffset from './TimecodeOffset';
-
-class Settings extends React.Component {
- render() {
- return (
-
-
Settings Panel
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Show Speaker Labels
-
-
-
-
- {/*
-
*/}
-
-
- Timecode Offset ℹ
-
-
-
-
- );
- }
-}
-
-Settings.propTypes = {
- showTimecodes: PropTypes.bool,
- showSpeakers: PropTypes.bool,
- timecodeOffset: PropTypes.number,
- handleShowTimecodes: PropTypes.func,
- handleShowSpeakers: PropTypes.func,
- handleSetTimecodeOffset: PropTypes.func,
- handleSettingsToggle: PropTypes.func,
- handlePauseWhileTyping: PropTypes.func,
- handleIsScrollIntoViewChange: PropTypes.func,
- handleRollBackValueInSeconds: PropTypes.func,
- defaultValueScrollSync: PropTypes.bool,
- defaultValuePauseWhileTyping: PropTypes.bool,
- defaultRollBackValueInSeconds: PropTypes.number,
- previewIsDisplayed: PropTypes.bool,
- handlePreviewIsDisplayed: PropTypes.func,
- // previewViewWidth: PropTypes.string,
- handleChangePreviewViewWidth: PropTypes.func,
- handleAnalyticsEvents: PropTypes.func
-};
-
-export default Settings;
diff --git a/src/lib/TranscriptEditor/TimedTextEditor/SpeakerLabel.js b/src/lib/TranscriptEditor/TimedTextEditor/SpeakerLabel.js
deleted file mode 100644
index bb71b0e8..00000000
--- a/src/lib/TranscriptEditor/TimedTextEditor/SpeakerLabel.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import React, { PureComponent } from 'react';
-import PropTypes from 'prop-types';
-
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faUserEdit } from '@fortawesome/free-solid-svg-icons';
-
-import style from './WrapperBlock.module.css';
-
-class SpeakerLabel extends PureComponent {
- render() {
- return (
-
-
-
-
- {this.props.name}
-
- );
- }
-}
-
-SpeakerLabel.propTypes = {
- name: PropTypes.string,
- handleOnClickEdit: PropTypes.func
-};
-
-export default SpeakerLabel;
diff --git a/src/lib/TranscriptEditor/index.js b/src/lib/TranscriptEditor/index.js
deleted file mode 100644
index 31e8a1fb..00000000
--- a/src/lib/TranscriptEditor/index.js
+++ /dev/null
@@ -1,411 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faCog, faKeyboard, faQuestionCircle, faMousePointer, faICursor, faUserEdit, faSave } from '@fortawesome/free-solid-svg-icons';
-
-import Tooltip from 'react-simple-tooltip';
-
-import TimedTextEditor from './TimedTextEditor';
-import MediaPlayer from './MediaPlayer';
-import VideoPlayer from './MediaPlayer/VideoPlayer';
-import Settings from './Settings';
-import Shortcuts from './Settings/Shortcuts';
-import { secondsToTimecode } from '../Util/timecode-converter/index';
-
-import style from './index.module.css';
-
-class TranscriptEditor extends React.Component {
- constructor(props) {
- super(props);
- this.videoRef = React.createRef();
-
- this.state = {
- currentTime: 0,
- lastLocalSavedTime: '',
- transcriptData: null,
- isScrollIntoViewOn: false,
- showSettings: false,
- showShortcuts: false,
- isPauseWhileTypingOn: true,
- rollBackValueInSeconds: 15,
- timecodeOffset: 0,
- showTimecodes: true,
- showSpeakers: true,
- previewIsDisplayed: true,
- mediaDuration: '00:00:00:00'
- // previewViewWidth: '25'
- };
- this.timedTextEditorRef = React.createRef();
- }
-
- static getDerivedStateFromProps(nextProps) {
- if (nextProps.transcriptData !== null) {
- return {
- transcriptData: nextProps.transcriptData
- };
- }
-
- return null;
- }
-
- componentDidUpdate(prevProps, prevState) {
- // Transcript and media passed to component at same time
- if (
- (prevState.transcriptData !== this.state.transcriptData)
- && (prevProps.mediaUrl !== this.props.mediaUrl )
- ) {
- console.info('Transcript and media');
- this.ifPresentRetrieveTranscriptFromLocalStorage();
- }
- // Transcript first and then media passed to component
- else if (
- (prevState.transcriptData === this.state.transcriptData)
- && (prevProps.mediaUrl !== this.props.mediaUrl)
- ) {
- console.info('Transcript first and then media');
- this.ifPresentRetrieveTranscriptFromLocalStorage();
- }
- // Media first and then transcript passed to component
- else if (
- (prevState.transcriptData !== this.state.transcriptData)
- && (prevProps.mediaUrl === this.props.mediaUrl)
- ) {
- console.info('Media first and then transcript');
- this.ifPresentRetrieveTranscriptFromLocalStorage();
- }
- }
-
- ifPresentRetrieveTranscriptFromLocalStorage = () => {
- if (this.timedTextEditorRef.current !== undefined) {
- if (this.timedTextEditorRef.current.isPresentInLocalStorage(this.props.mediaUrl)) {
- console.info('was already present in local storage');
- this.timedTextEditorRef.current.loadLocalSavedData(this.props.mediaUrl);
- } else {
- console.info('not present in local storage');
- }
- }
- }
-
- // eslint-disable-next-line class-methods-use-this
- handleWordClick = (startTime) => {
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'doubleClickOnWord',
- name: 'startTime',
- value: secondsToTimecode(startTime)
- });
- }
-
- this.setCurrentTime(startTime);
- }
-
- // eslint-disable-next-line class-methods-use-this
- handleTimeUpdate = (e) => {
- const currentTime = e.target.currentTime;
- this.setState({
- currentTime,
- });
- }
-
- handlePlayMedia = (bool) => {
- this.playMedia(bool);
- }
-
- handleIsPlaying = () => {
- return this.isPlaying();
- }
-
- handleIsScrollIntoViewChange = (e) => {
- const isChecked = e.target.checked;
- this.setState({ isScrollIntoViewOn: isChecked });
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handleIsScrollIntoViewChange',
- name: 'isScrollIntoViewOn',
- value: isChecked
- });
- }
-
- }
- handlePauseWhileTyping = (e) => {
- const isChecked = e.target.checked;
- this.setState({ isPauseWhileTypingOn: isChecked });
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handlePauseWhileTyping',
- name: 'isPauseWhileTypingOn',
- value: isChecked
- });
- }
- }
-
- handleRollBackValueInSeconds = (e) => {
- const rollBackValue = e.target.value;
- this.setState({ rollBackValueInSeconds: rollBackValue });
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handleRollBackValueInSeconds',
- name: 'rollBackValueInSeconds',
- value: rollBackValue
- });
- }
- }
-
- handleSetTimecodeOffset = (timecodeOffset) => {
-
- this.setState({ timecodeOffset: timecodeOffset },
- () => {
- // eslint-disable-next-line react/no-string-refs
- this.timedTextEditorRef.current.forceUpdate();
- });
- }
-
- handleShowTimecodes = (e) => {
- const isChecked = e.target.checked;
- this.setState({ showTimecodes: isChecked });
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handleShowTimecodes',
- name: 'showTimecodes',
- value: isChecked
- });
- }
- }
-
- handleShowSpeakers = (e) => {
- const isChecked = e.target.checked;
- this.setState({ showSpeakers: isChecked });
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handleShowSpeakers',
- name: 'showSpeakers',
- value: isChecked
- });
- }
- }
-
- handleSettingsToggle = () => {
- this.setState(prevState => ({
- showSettings: !prevState.showSettings
- }));
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handleSettingsToggle',
- name: 'showSettings',
- value: !this.state.showSettings
- });
- }
- }
-
- handleShortcutsToggle = () => {
- this.setState(prevState => ({
- showShortcuts: !prevState.showShortcuts
- }));
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'handleShortcutsToggle',
- name: 'showShortcuts',
- value: !this.state.showShortcuts
- });
- }
- }
-
- getEditorContent = (exportFormat) => {
- return this.timedTextEditorRef.current.getEditorContent(exportFormat);
- }
-
- handlePreviewIsDisplayed = () => {
- this.setState({
- previewIsDisplayed: !this.state.previewIsDisplayed
- });
- }
-
- onLoadedDataGetDuration = (e) => {
- const currentDuration = e.target.duration;
- const currentDurationWithOffset = currentDuration + this.state.timecodeOffset;
- const durationInSeconds = secondsToTimecode( currentDuration + currentDurationWithOffset);
-
- this.setState({
- mediaDuration: durationInSeconds
- });
-
- if (this.props.handleAnalyticsEvents !== undefined) {
- this.props.handleAnalyticsEvents({
- category: 'TranscriptEditor',
- action: 'onLoadedDataGetDuration',
- name: 'durationInSeconds-WithoutOffset',
- value: secondsToTimecode( currentDuration)
- });
- }
-
- }
-
- handleChangePreviewViewWidth = (e) => {
- const newPreviewViewWidth = e.target.value;
- this.setState({
- previewViewWidth: newPreviewViewWidth
- });
- }
-
- handleSaveTranscript = () => {
- alert('The changes to this transcript have been saved in your browser');
-
- return this.timedTextEditorRef.current.localSave(this.props.mediaUrl);
- }
-
- render() {
- const videoPlayer =
;
-
- const mediaControls =
this.setCurrentTime = foo }
- hookPlayMedia={ foo => this.playMedia = foo }
- hookIsPlaying={ foo => this.isPlaying = foo }
- rollBackValueInSeconds={ this.state.rollBackValueInSeconds }
- timecodeOffset={ this.state.timecodeOffset }
- // hookOnTimeUpdate={ this.handleTimeUpdate }
- mediaUrl={ this.props.mediaUrl }
- // ref={ 'MediaPlayer' }
- handleAnalyticsEvents={ this.props.handleAnalyticsEvents }
- videoRef={ this.videoRef }
- handleSaveTranscript={ this.handleSaveTranscript }
- />;
-
- const settings = ;
-
- const shortcuts = ;
-
- const timedTextEditor = ;
-
- const helpMessage =
- Double click on a word or timestamp to jump to that point in the video.
- Start typing to edit text.
- You can add and change names of speakers in your transcript.
- Use keyboard shortcuts for quick control.
- Save & export to get a copy to your desktop.
-
;
-
- const tooltip =
-
- How does this work?
- ;
-
- return (
-
-
- { this.state.showSettings ? settings : null }
- { this.state.showShortcuts ? shortcuts : null }
- {tooltip}
-
-
-
{ this.props.mediaUrl === null ? null : mediaControls }
-
-
-
-
-
-
-
-
-
-
-
-
-
- {this.props.mediaUrl === null ? null : videoPlayer}
-
-
- {this.props.mediaUrl === null ? null : timedTextEditor}
-
-
-
-
-
- );
- }
-}
-
-TranscriptEditor.propTypes = {
- onClick: PropTypes.func,
- title: PropTypes.string,
- mediaUrl: PropTypes.string,
- isEditable: PropTypes.bool,
- sttJsonType: PropTypes.string,
- handleAnalyticsEvents: PropTypes.func,
- fileName: PropTypes.string
-};
-
-export default TranscriptEditor;
diff --git a/src/lib/Util/adapters/README.md b/src/lib/Util/adapters/README.md
deleted file mode 100644
index 4ff0c1f3..00000000
--- a/src/lib/Util/adapters/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-# Adaprters
-
-To convert STT json transcript into draft.js code block.
-Used by TimedTextEditor.
\ No newline at end of file
diff --git a/src/lib/Util/adapters/amazon-transcribe/example-usage.js b/src/lib/Util/adapters/amazon-transcribe/example-usage.js
deleted file mode 100644
index 440711d3..00000000
--- a/src/lib/Util/adapters/amazon-transcribe/example-usage.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import amazonTranscribeToDraft from './index';
-import amazonTranscribeTedTalkTranscript from './sample/amazonTranscribe.sample.json';
-
-console.log('Starting')
-console.log(JSON.stringify(amazonTranscribeToDraft(amazonTranscribeTedTalkTranscript), null, 2));
diff --git a/src/lib/Util/adapters/amazon-transcribe/index.test.js b/src/lib/Util/adapters/amazon-transcribe/index.test.js
deleted file mode 100644
index 95101404..00000000
--- a/src/lib/Util/adapters/amazon-transcribe/index.test.js
+++ /dev/null
@@ -1,140 +0,0 @@
-import amazonTranscribeToDraft, {
- mapPunctuationItemsToWords,
- stripLeadingSpace,
- appendPunctuationToPreviousWord,
- getBestAlternativeForWord
-} from './index';
-import draftTranscriptSample from './sample/amazonTranscribe.sample.js';
-import amazonTranscribeTedTalkTranscript from './sample/amazonTranscribe.sample.json';
-
-describe('amazonTranscribeToDraft', () => {
- const result = amazonTranscribeToDraft(amazonTranscribeTedTalkTranscript);
- it('Should be defined', () => {
- expect(result).toBeDefined();
- });
-
- it('Should be equal to expected value', () => {
- expect(result).toEqual(draftTranscriptSample);
- });
-});
-
-describe('punctuation line item should be added to previous word and return a new array without that item', () => {
- const startWords = [{
- "start_time": "18.72",
- "end_time": "19.16",
- "alternatives": [{
- "confidence": "0.9993",
- "content": "upside"
- }],
- "type": "pronunciation"
- },
- {
- "start_time": "19.16",
- "end_time": "19.55",
- "alternatives": [{
- "confidence": "1.0000",
- "content": "down"
- }],
- "type": "pronunciation"
- },
- {
- "alternatives": [{
- "confidence": null,
- "content": "."
- }],
- "type": "punctuation"
- }
- ];
-
- const expected = [{
- "start_time": "18.72",
- "end_time": "19.16",
- "alternatives": [{
- "confidence": "0.9993",
- "content": "upside"
- }],
- "type": "pronunciation"
- },
- {
- "start_time": "19.16",
- "end_time": "19.55",
- "alternatives": [{
- "confidence": "1.0000",
- "content": "down."
- }],
- "type": "pronunciation"
- }
- ];
-
- const result = mapPunctuationItemsToWords(startWords);
- it('should be equal to expected value', () => {
- expect(result).toEqual(expected);
- })
-})
-
-describe('Best alternative for word should be returned', () => {
- const startWord = {
- "start_time": "18.72",
- "end_time": "19.16",
- "alternatives": [{
- "confidence": "0.9993",
- "content": "upside"
- },
- {
- "confidence": "0.88",
- "content": "topside"
- }
- ],
- "type": "pronunciation"
- };
- const expected = {
- "confidence": "0.9993",
- "content": "upside"
- };
- it('Should be equal to expected value', () => {
-
- const result = getBestAlternativeForWord(startWord);
- expect(result).toEqual(expected);
- });
-});
-
-describe('Leading space should be removed from punctuation item', () => {
- const startWord = ' , ';
- const expected = ', ';
- it('should be equal to expected value', () => {
- const result = stripLeadingSpace(startWord);
- expect(result).toEqual(expected);
- })
-});
-
-describe('a word item and punctuation item should be merged', () => {
- const startWord = {
- "start_time": "19.16",
- "end_time": "19.55",
- "alternatives": [{
- "confidence": "1.0000",
- "content": "down"
- }],
- "type": "pronunciation"
- };
- const startPunctuation = {
- "alternatives": [{
- "confidence": null,
- "content": " . "
- }],
- "type": "punctuation"
- };
- const expected = {
- "start_time": "19.16",
- "end_time": "19.55",
- "alternatives": [{
- "confidence": "1.0000",
- "content": "down. "
- }],
- "type": "pronunciation"
- };
- it('should be equal to expected value', () => {
- const result = appendPunctuationToPreviousWord(startPunctuation, startWord);
- expect(result).toEqual(expected);
- })
-});
diff --git a/src/lib/Util/adapters/amazon-transcribe/sample/amazonTranscribe.sample.js b/src/lib/Util/adapters/amazon-transcribe/sample/amazonTranscribe.sample.js
deleted file mode 100644
index a2238526..00000000
--- a/src/lib/Util/adapters/amazon-transcribe/sample/amazonTranscribe.sample.js
+++ /dev/null
@@ -1,27979 +0,0 @@
-const draftTranscriptSample =[
- {
- "text": "There was a day about ten years ago when I asked a friend to hold a baby dinosaur robot upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 0",
- "words": [
- {
- "start": 13.03,
- "end": 13.22,
- "text": "There",
- "confidence": 1
- },
- {
- "start": 13.22,
- "end": 13.37,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 13.37,
- "end": 13.43,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 13.43,
- "end": 13.85,
- "text": "day",
- "confidence": 1
- },
- {
- "start": 13.85,
- "end": 14.13,
- "text": "about",
- "confidence": 1
- },
- {
- "start": 14.13,
- "end": 14.37,
- "text": "ten",
- "confidence": 1
- },
- {
- "start": 14.37,
- "end": 14.61,
- "text": "years",
- "confidence": 1
- },
- {
- "start": 14.61,
- "end": 15.16,
- "text": "ago",
- "confidence": 1
- },
- {
- "start": 15.44,
- "end": 15.7,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 15.7,
- "end": 15.75,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 15.75,
- "end": 16.2,
- "text": "asked",
- "confidence": 1
- },
- {
- "start": 16.2,
- "end": 16.27,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 16.27,
- "end": 16.64,
- "text": "friend",
- "confidence": 1
- },
- {
- "start": 16.64,
- "end": 16.72,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 16.72,
- "end": 17.21,
- "text": "hold",
- "confidence": 1
- },
- {
- "start": 17.22,
- "end": 17.3,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 17.3,
- "end": 17.61,
- "text": "baby",
- "confidence": 1
- },
- {
- "start": 17.61,
- "end": 18.15,
- "text": "dinosaur",
- "confidence": 1
- },
- {
- "start": 18.15,
- "end": 18.61,
- "text": "robot",
- "confidence": 0.996
- },
- {
- "start": 18.72,
- "end": 19.16,
- "text": "upside",
- "confidence": 0.9993
- },
- {
- "start": 19.16,
- "end": 19.55,
- "text": "down.",
- "confidence": 1
- }
- ],
- "start": 13.03
- },
- "entityRanges": [
- {
- "start": 13.03,
- "end": 13.22,
- "confidence": 1,
- "text": "There",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 13.22,
- "end": 13.37,
- "confidence": 1,
- "text": "was",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 13.37,
- "end": 13.43,
- "confidence": 1,
- "text": "a",
- "offset": 10,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 13.43,
- "end": 13.85,
- "confidence": 1,
- "text": "day",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 13.85,
- "end": 14.13,
- "confidence": 1,
- "text": "about",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 14.13,
- "end": 14.37,
- "confidence": 1,
- "text": "ten",
- "offset": 22,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 14.37,
- "end": 14.61,
- "confidence": 1,
- "text": "years",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 14.61,
- "end": 15.16,
- "confidence": 1,
- "text": "ago",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 15.44,
- "end": 15.7,
- "confidence": 1,
- "text": "when",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 15.7,
- "end": 15.75,
- "confidence": 1,
- "text": "I",
- "offset": 41,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 15.75,
- "end": 16.2,
- "confidence": 1,
- "text": "asked",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 16.2,
- "end": 16.27,
- "confidence": 1,
- "text": "a",
- "offset": 49,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 16.27,
- "end": 16.64,
- "confidence": 1,
- "text": "friend",
- "offset": 51,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 16.64,
- "end": 16.72,
- "confidence": 1,
- "text": "to",
- "offset": 58,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 16.72,
- "end": 17.21,
- "confidence": 1,
- "text": "hold",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 17.22,
- "end": 17.3,
- "confidence": 1,
- "text": "a",
- "offset": 66,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 17.3,
- "end": 17.61,
- "confidence": 1,
- "text": "baby",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 17.61,
- "end": 18.15,
- "confidence": 1,
- "text": "dinosaur",
- "offset": 73,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 18.15,
- "end": 18.61,
- "confidence": 0.996,
- "text": "robot",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 18.72,
- "end": 19.16,
- "confidence": 0.9993,
- "text": "upside",
- "offset": 88,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 19.16,
- "end": 19.55,
- "confidence": 1,
- "text": "down.",
- "offset": 95,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It was this toy called up Leo that I had ordered, and I was really excited about it because I've always loved robots, and this one has really cool technical features.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 1",
- "words": [
- {
- "start": 21.87,
- "end": 21.97,
- "text": "It",
- "confidence": 1
- },
- {
- "start": 21.97,
- "end": 22.07,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 22.07,
- "end": 22.23,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 22.23,
- "end": 22.67,
- "text": "toy",
- "confidence": 0.9996
- },
- {
- "start": 22.67,
- "end": 22.9,
- "text": "called",
- "confidence": 0.988
- },
- {
- "start": 22.9,
- "end": 23.12,
- "text": "up",
- "confidence": 0.5386
- },
- {
- "start": 23.12,
- "end": 23.75,
- "text": "Leo",
- "confidence": 0.5417
- },
- {
- "start": 24.2,
- "end": 24.6,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 24.61,
- "end": 24.71,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 24.71,
- "end": 24.86,
- "text": "had",
- "confidence": 1
- },
- {
- "start": 24.86,
- "end": 25.32,
- "text": "ordered,",
- "confidence": 1
- },
- {
- "start": 25.32,
- "end": 25.43,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 25.43,
- "end": 25.48,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 25.48,
- "end": 25.65,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 25.65,
- "end": 25.87,
- "text": "really",
- "confidence": 0.9471
- },
- {
- "start": 25.87,
- "end": 26.48,
- "text": "excited",
- "confidence": 1
- },
- {
- "start": 26.48,
- "end": 26.83,
- "text": "about",
- "confidence": 1
- },
- {
- "start": 26.83,
- "end": 27.02,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 27.03,
- "end": 27.8,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 28.41,
- "end": 28.57,
- "text": "I've",
- "confidence": 0.9941
- },
- {
- "start": 28.57,
- "end": 28.78,
- "text": "always",
- "confidence": 1
- },
- {
- "start": 28.78,
- "end": 29.02,
- "text": "loved",
- "confidence": 1
- },
- {
- "start": 29.02,
- "end": 29.55,
- "text": "robots,",
- "confidence": 0.9929
- },
- {
- "start": 29.74,
- "end": 29.88,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 29.88,
- "end": 30.03,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 30.03,
- "end": 30.19,
- "text": "one",
- "confidence": 1
- },
- {
- "start": 30.19,
- "end": 30.44,
- "text": "has",
- "confidence": 1
- },
- {
- "start": 30.44,
- "end": 30.75,
- "text": "really",
- "confidence": 0.9791
- },
- {
- "start": 30.75,
- "end": 30.93,
- "text": "cool",
- "confidence": 0.9653
- },
- {
- "start": 30.93,
- "end": 31.33,
- "text": "technical",
- "confidence": 1
- },
- {
- "start": 31.33,
- "end": 31.79,
- "text": "features.",
- "confidence": 1
- }
- ],
- "start": 21.87
- },
- "entityRanges": [
- {
- "start": 21.87,
- "end": 21.97,
- "confidence": 1,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 21.97,
- "end": 22.07,
- "confidence": 1,
- "text": "was",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 22.07,
- "end": 22.23,
- "confidence": 1,
- "text": "this",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 22.23,
- "end": 22.67,
- "confidence": 0.9996,
- "text": "toy",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 22.67,
- "end": 22.9,
- "confidence": 0.988,
- "text": "called",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 22.9,
- "end": 23.12,
- "confidence": 0.5386,
- "text": "up",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 23.12,
- "end": 23.75,
- "confidence": 0.5417,
- "text": "Leo",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 24.2,
- "end": 24.6,
- "confidence": 1,
- "text": "that",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 24.61,
- "end": 24.71,
- "confidence": 1,
- "text": "I",
- "offset": 35,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 24.71,
- "end": 24.86,
- "confidence": 1,
- "text": "had",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 24.86,
- "end": 25.32,
- "confidence": 1,
- "text": "ordered,",
- "offset": 41,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 25.32,
- "end": 25.43,
- "confidence": 1,
- "text": "and",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 25.43,
- "end": 25.48,
- "confidence": 1,
- "text": "I",
- "offset": 54,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 25.48,
- "end": 25.65,
- "confidence": 1,
- "text": "was",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 25.65,
- "end": 25.87,
- "confidence": 0.9471,
- "text": "really",
- "offset": 60,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 25.87,
- "end": 26.48,
- "confidence": 1,
- "text": "excited",
- "offset": 67,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 26.48,
- "end": 26.83,
- "confidence": 1,
- "text": "about",
- "offset": 75,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 26.83,
- "end": 27.02,
- "confidence": 1,
- "text": "it",
- "offset": 81,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 27.03,
- "end": 27.8,
- "confidence": 1,
- "text": "because",
- "offset": 84,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 28.41,
- "end": 28.57,
- "confidence": 0.9941,
- "text": "I've",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 28.57,
- "end": 28.78,
- "confidence": 1,
- "text": "always",
- "offset": 97,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 28.78,
- "end": 29.02,
- "confidence": 1,
- "text": "loved",
- "offset": 104,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 29.02,
- "end": 29.55,
- "confidence": 0.9929,
- "text": "robots,",
- "offset": 110,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 29.74,
- "end": 29.88,
- "confidence": 1,
- "text": "and",
- "offset": 118,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 29.88,
- "end": 30.03,
- "confidence": 1,
- "text": "this",
- "offset": 122,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 30.03,
- "end": 30.19,
- "confidence": 1,
- "text": "one",
- "offset": 127,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 30.19,
- "end": 30.44,
- "confidence": 1,
- "text": "has",
- "offset": 131,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 30.44,
- "end": 30.75,
- "confidence": 0.9791,
- "text": "really",
- "offset": 135,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 30.75,
- "end": 30.93,
- "confidence": 0.9653,
- "text": "cool",
- "offset": 142,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 30.93,
- "end": 31.33,
- "confidence": 1,
- "text": "technical",
- "offset": 147,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 31.33,
- "end": 31.79,
- "confidence": 1,
- "text": "features.",
- "offset": 157,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It had motors and touch sensors, and it had an infrared camera, and one of the things that had was a tilt sensor.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 2",
- "words": [
- {
- "start": 31.79,
- "end": 31.91,
- "text": "It",
- "confidence": 1
- },
- {
- "start": 31.91,
- "end": 32.08,
- "text": "had",
- "confidence": 0.9992
- },
- {
- "start": 32.09,
- "end": 32.75,
- "text": "motors",
- "confidence": 0.9935
- },
- {
- "start": 32.75,
- "end": 32.89,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 32.9,
- "end": 33.21,
- "text": "touch",
- "confidence": 1
- },
- {
- "start": 33.21,
- "end": 33.91,
- "text": "sensors,",
- "confidence": 1
- },
- {
- "start": 34.07,
- "end": 34.4,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 34.4,
- "end": 34.48,
- "text": "it",
- "confidence": 0.515
- },
- {
- "start": 34.48,
- "end": 34.7,
- "text": "had",
- "confidence": 1
- },
- {
- "start": 34.7,
- "end": 34.8,
- "text": "an",
- "confidence": 1
- },
- {
- "start": 34.8,
- "end": 35.29,
- "text": "infrared",
- "confidence": 0.9995
- },
- {
- "start": 35.3,
- "end": 36.05,
- "text": "camera,",
- "confidence": 0.716
- },
- {
- "start": 36.48,
- "end": 36.65,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 36.65,
- "end": 36.79,
- "text": "one",
- "confidence": 1
- },
- {
- "start": 36.79,
- "end": 36.86,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 36.86,
- "end": 36.98,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 36.98,
- "end": 37.21,
- "text": "things",
- "confidence": 1
- },
- {
- "start": 37.21,
- "end": 37.32,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 37.32,
- "end": 37.52,
- "text": "had",
- "confidence": 1
- },
- {
- "start": 37.52,
- "end": 37.66,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 37.66,
- "end": 37.92,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 37.93,
- "end": 38.37,
- "text": "tilt",
- "confidence": 0.9907
- },
- {
- "start": 38.37,
- "end": 39,
- "text": "sensor.",
- "confidence": 0.8413
- }
- ],
- "start": 31.79
- },
- "entityRanges": [
- {
- "start": 31.79,
- "end": 31.91,
- "confidence": 1,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 31.91,
- "end": 32.08,
- "confidence": 0.9992,
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 32.09,
- "end": 32.75,
- "confidence": 0.9935,
- "text": "motors",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 32.75,
- "end": 32.89,
- "confidence": 1,
- "text": "and",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 32.9,
- "end": 33.21,
- "confidence": 1,
- "text": "touch",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 33.21,
- "end": 33.91,
- "confidence": 1,
- "text": "sensors,",
- "offset": 24,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 34.07,
- "end": 34.4,
- "confidence": 1,
- "text": "and",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 34.4,
- "end": 34.48,
- "confidence": 0.515,
- "text": "it",
- "offset": 37,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 34.48,
- "end": 34.7,
- "confidence": 1,
- "text": "had",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 34.7,
- "end": 34.8,
- "confidence": 1,
- "text": "an",
- "offset": 44,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 34.8,
- "end": 35.29,
- "confidence": 0.9995,
- "text": "infrared",
- "offset": 47,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 35.3,
- "end": 36.05,
- "confidence": 0.716,
- "text": "camera,",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 36.48,
- "end": 36.65,
- "confidence": 1,
- "text": "and",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 36.65,
- "end": 36.79,
- "confidence": 1,
- "text": "one",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 36.79,
- "end": 36.86,
- "confidence": 1,
- "text": "of",
- "offset": 72,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 36.86,
- "end": 36.98,
- "confidence": 1,
- "text": "the",
- "offset": 75,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 36.98,
- "end": 37.21,
- "confidence": 1,
- "text": "things",
- "offset": 79,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 37.21,
- "end": 37.32,
- "confidence": 1,
- "text": "that",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 37.32,
- "end": 37.52,
- "confidence": 1,
- "text": "had",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 37.52,
- "end": 37.66,
- "confidence": 1,
- "text": "was",
- "offset": 95,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 37.66,
- "end": 37.92,
- "confidence": 1,
- "text": "a",
- "offset": 99,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 37.93,
- "end": 38.37,
- "confidence": 0.9907,
- "text": "tilt",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 38.37,
- "end": 39,
- "confidence": 0.8413,
- "text": "sensor.",
- "offset": 106,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So it knew what direction it was facing.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 3",
- "words": [
- {
- "start": 39.23,
- "end": 39.51,
- "text": "So",
- "confidence": 0.9659
- },
- {
- "start": 39.51,
- "end": 39.62,
- "text": "it",
- "confidence": 0.9971
- },
- {
- "start": 39.62,
- "end": 39.83,
- "text": "knew",
- "confidence": 0.9712
- },
- {
- "start": 39.83,
- "end": 39.95,
- "text": "what",
- "confidence": 1
- },
- {
- "start": 39.95,
- "end": 40.54,
- "text": "direction",
- "confidence": 1
- },
- {
- "start": 40.54,
- "end": 40.64,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 40.64,
- "end": 40.94,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 40.95,
- "end": 41.55,
- "text": "facing.",
- "confidence": 1
- }
- ],
- "start": 39.23
- },
- "entityRanges": [
- {
- "start": 39.23,
- "end": 39.51,
- "confidence": 0.9659,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 39.51,
- "end": 39.62,
- "confidence": 0.9971,
- "text": "it",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 39.62,
- "end": 39.83,
- "confidence": 0.9712,
- "text": "knew",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 39.83,
- "end": 39.95,
- "confidence": 1,
- "text": "what",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 39.95,
- "end": 40.54,
- "confidence": 1,
- "text": "direction",
- "offset": 16,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 40.54,
- "end": 40.64,
- "confidence": 1,
- "text": "it",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 40.64,
- "end": 40.94,
- "confidence": 1,
- "text": "was",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 40.95,
- "end": 41.55,
- "confidence": 1,
- "text": "facing.",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And when you held it upside down, it would start to cry.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 4",
- "words": [
- {
- "start": 42.01,
- "end": 42.22,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 42.22,
- "end": 42.32,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 42.32,
- "end": 42.42,
- "text": "you",
- "confidence": 0.9982
- },
- {
- "start": 42.42,
- "end": 42.62,
- "text": "held",
- "confidence": 1
- },
- {
- "start": 42.62,
- "end": 42.69,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 42.7,
- "end": 43.04,
- "text": "upside",
- "confidence": 0.9964
- },
- {
- "start": 43.04,
- "end": 43.59,
- "text": "down,",
- "confidence": 1
- },
- {
- "start": 44.23,
- "end": 44.32,
- "text": "it",
- "confidence": 0.9991
- },
- {
- "start": 44.32,
- "end": 44.43,
- "text": "would",
- "confidence": 1
- },
- {
- "start": 44.43,
- "end": 44.66,
- "text": "start",
- "confidence": 1
- },
- {
- "start": 44.66,
- "end": 44.73,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 44.73,
- "end": 45.25,
- "text": "cry.",
- "confidence": 1
- }
- ],
- "start": 42.01
- },
- "entityRanges": [
- {
- "start": 42.01,
- "end": 42.22,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 42.22,
- "end": 42.32,
- "confidence": 1,
- "text": "when",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 42.32,
- "end": 42.42,
- "confidence": 0.9982,
- "text": "you",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 42.42,
- "end": 42.62,
- "confidence": 1,
- "text": "held",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 42.62,
- "end": 42.69,
- "confidence": 1,
- "text": "it",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 42.7,
- "end": 43.04,
- "confidence": 0.9964,
- "text": "upside",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 43.04,
- "end": 43.59,
- "confidence": 1,
- "text": "down,",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 44.23,
- "end": 44.32,
- "confidence": 0.9991,
- "text": "it",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 44.32,
- "end": 44.43,
- "confidence": 1,
- "text": "would",
- "offset": 37,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 44.43,
- "end": 44.66,
- "confidence": 1,
- "text": "start",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 44.66,
- "end": 44.73,
- "confidence": 1,
- "text": "to",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 44.73,
- "end": 45.25,
- "confidence": 1,
- "text": "cry.",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And I thought it was super Kools showing it off to my friend and I said, Who?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 5",
- "words": [
- {
- "start": 46.5,
- "end": 46.62,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 46.62,
- "end": 46.67,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 46.67,
- "end": 46.98,
- "text": "thought",
- "confidence": 1
- },
- {
- "start": 47.09,
- "end": 47.15,
- "text": "it",
- "confidence": 0.5421
- },
- {
- "start": 47.15,
- "end": 47.26,
- "text": "was",
- "confidence": 0.7573
- },
- {
- "start": 47.26,
- "end": 47.64,
- "text": "super",
- "confidence": 0.9885
- },
- {
- "start": 47.64,
- "end": 48.15,
- "text": "Kools",
- "confidence": 0.8514
- },
- {
- "start": 48.18,
- "end": 48.61,
- "text": "showing",
- "confidence": 1
- },
- {
- "start": 48.61,
- "end": 48.69,
- "text": "it",
- "confidence": 0.9806
- },
- {
- "start": 48.69,
- "end": 48.82,
- "text": "off",
- "confidence": 0.9826
- },
- {
- "start": 48.82,
- "end": 48.92,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 48.92,
- "end": 49.03,
- "text": "my",
- "confidence": 1
- },
- {
- "start": 49.03,
- "end": 49.55,
- "text": "friend",
- "confidence": 0.9988
- },
- {
- "start": 50,
- "end": 50.16,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 50.16,
- "end": 50.21,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 50.21,
- "end": 50.39,
- "text": "said,",
- "confidence": 1
- },
- {
- "start": 50.39,
- "end": 50.58,
- "text": "Who?",
- "confidence": 0.8807
- }
- ],
- "start": 46.5
- },
- "entityRanges": [
- {
- "start": 46.5,
- "end": 46.62,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 46.62,
- "end": 46.67,
- "confidence": 1,
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 46.67,
- "end": 46.98,
- "confidence": 1,
- "text": "thought",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 47.09,
- "end": 47.15,
- "confidence": 0.5421,
- "text": "it",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 47.15,
- "end": 47.26,
- "confidence": 0.7573,
- "text": "was",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 47.26,
- "end": 47.64,
- "confidence": 0.9885,
- "text": "super",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 47.64,
- "end": 48.15,
- "confidence": 0.8514,
- "text": "Kools",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 48.18,
- "end": 48.61,
- "confidence": 1,
- "text": "showing",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 48.61,
- "end": 48.69,
- "confidence": 0.9806,
- "text": "it",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 48.69,
- "end": 48.82,
- "confidence": 0.9826,
- "text": "off",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 48.82,
- "end": 48.92,
- "confidence": 1,
- "text": "to",
- "offset": 48,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 48.92,
- "end": 49.03,
- "confidence": 1,
- "text": "my",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 49.03,
- "end": 49.55,
- "confidence": 0.9988,
- "text": "friend",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 50,
- "end": 50.16,
- "confidence": 1,
- "text": "and",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 50.16,
- "end": 50.21,
- "confidence": 1,
- "text": "I",
- "offset": 65,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 50.21,
- "end": 50.39,
- "confidence": 1,
- "text": "said,",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 50.39,
- "end": 50.58,
- "confidence": 0.8807,
- "text": "Who?",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Hold it by the tail, see what it does.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 6",
- "words": [
- {
- "start": 50.58,
- "end": 50.82,
- "text": "Hold",
- "confidence": 0.9455
- },
- {
- "start": 50.82,
- "end": 50.95,
- "text": "it",
- "confidence": 0.9452
- },
- {
- "start": 50.96,
- "end": 51.06,
- "text": "by",
- "confidence": 1
- },
- {
- "start": 51.06,
- "end": 51.17,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 51.17,
- "end": 51.49,
- "text": "tail,",
- "confidence": 0.9974
- },
- {
- "start": 51.49,
- "end": 51.65,
- "text": "see",
- "confidence": 0.9967
- },
- {
- "start": 51.65,
- "end": 51.76,
- "text": "what",
- "confidence": 1
- },
- {
- "start": 51.76,
- "end": 51.84,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 51.84,
- "end": 52.26,
- "text": "does.",
- "confidence": 1
- }
- ],
- "start": 50.58
- },
- "entityRanges": [
- {
- "start": 50.58,
- "end": 50.82,
- "confidence": 0.9455,
- "text": "Hold",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 50.82,
- "end": 50.95,
- "confidence": 0.9452,
- "text": "it",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 50.96,
- "end": 51.06,
- "confidence": 1,
- "text": "by",
- "offset": 8,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 51.06,
- "end": 51.17,
- "confidence": 1,
- "text": "the",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 51.17,
- "end": 51.49,
- "confidence": 0.9974,
- "text": "tail,",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 51.49,
- "end": 51.65,
- "confidence": 0.9967,
- "text": "see",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 51.65,
- "end": 51.76,
- "confidence": 1,
- "text": "what",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 51.76,
- "end": 51.84,
- "confidence": 1,
- "text": "it",
- "offset": 30,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 51.84,
- "end": 52.26,
- "confidence": 1,
- "text": "does.",
- "offset": 33,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So we're watching the theatrics of this robot struggle and cry out.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 7",
- "words": [
- {
- "start": 55.22,
- "end": 55.37,
- "text": "So",
- "confidence": 1
- },
- {
- "start": 55.37,
- "end": 55.5,
- "text": "we're",
- "confidence": 1
- },
- {
- "start": 55.5,
- "end": 55.91,
- "text": "watching",
- "confidence": 1
- },
- {
- "start": 55.91,
- "end": 56.03,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 56.04,
- "end": 56.91,
- "text": "theatrics",
- "confidence": 1
- },
- {
- "start": 56.91,
- "end": 57.01,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 57.01,
- "end": 57.26,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 57.26,
- "end": 57.95,
- "text": "robot",
- "confidence": 0.9989
- },
- {
- "start": 58.85,
- "end": 59.85,
- "text": "struggle",
- "confidence": 1
- },
- {
- "start": 59.86,
- "end": 60.1,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 60.1,
- "end": 60.62,
- "text": "cry",
- "confidence": 0.9998
- },
- {
- "start": 60.62,
- "end": 61.09,
- "text": "out.",
- "confidence": 1
- }
- ],
- "start": 55.22
- },
- "entityRanges": [
- {
- "start": 55.22,
- "end": 55.37,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 55.37,
- "end": 55.5,
- "confidence": 1,
- "text": "we're",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 55.5,
- "end": 55.91,
- "confidence": 1,
- "text": "watching",
- "offset": 9,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 55.91,
- "end": 56.03,
- "confidence": 1,
- "text": "the",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 56.04,
- "end": 56.91,
- "confidence": 1,
- "text": "theatrics",
- "offset": 22,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 56.91,
- "end": 57.01,
- "confidence": 1,
- "text": "of",
- "offset": 32,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 57.01,
- "end": 57.26,
- "confidence": 1,
- "text": "this",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 57.26,
- "end": 57.95,
- "confidence": 0.9989,
- "text": "robot",
- "offset": 40,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 58.85,
- "end": 59.85,
- "confidence": 1,
- "text": "struggle",
- "offset": 46,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 59.86,
- "end": 60.1,
- "confidence": 1,
- "text": "and",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 60.1,
- "end": 60.62,
- "confidence": 0.9998,
- "text": "cry",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 60.62,
- "end": 61.09,
- "confidence": 1,
- "text": "out.",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And after a few seconds, it starts to bother me a little.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 8",
- "words": [
- {
- "start": 62.69,
- "end": 63.08,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 63.22,
- "end": 63.53,
- "text": "after",
- "confidence": 1
- },
- {
- "start": 63.53,
- "end": 63.57,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 63.57,
- "end": 63.73,
- "text": "few",
- "confidence": 1
- },
- {
- "start": 63.73,
- "end": 64.47,
- "text": "seconds,",
- "confidence": 1
- },
- {
- "start": 64.84,
- "end": 64.95,
- "text": "it",
- "confidence": 0.9983
- },
- {
- "start": 64.95,
- "end": 65.27,
- "text": "starts",
- "confidence": 1
- },
- {
- "start": 65.27,
- "end": 65.44,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 65.45,
- "end": 65.83,
- "text": "bother",
- "confidence": 1
- },
- {
- "start": 65.83,
- "end": 65.96,
- "text": "me",
- "confidence": 1
- },
- {
- "start": 65.96,
- "end": 66.05,
- "text": "a",
- "confidence": 0.9994
- },
- {
- "start": 66.05,
- "end": 66.44,
- "text": "little.",
- "confidence": 1
- }
- ],
- "start": 62.69
- },
- "entityRanges": [
- {
- "start": 62.69,
- "end": 63.08,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 63.22,
- "end": 63.53,
- "confidence": 1,
- "text": "after",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 63.53,
- "end": 63.57,
- "confidence": 1,
- "text": "a",
- "offset": 10,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 63.57,
- "end": 63.73,
- "confidence": 1,
- "text": "few",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 63.73,
- "end": 64.47,
- "confidence": 1,
- "text": "seconds,",
- "offset": 16,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 64.84,
- "end": 64.95,
- "confidence": 0.9983,
- "text": "it",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 64.95,
- "end": 65.27,
- "confidence": 1,
- "text": "starts",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 65.27,
- "end": 65.44,
- "confidence": 1,
- "text": "to",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 65.45,
- "end": 65.83,
- "confidence": 1,
- "text": "bother",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 65.83,
- "end": 65.96,
- "confidence": 1,
- "text": "me",
- "offset": 45,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 65.96,
- "end": 66.05,
- "confidence": 0.9994,
- "text": "a",
- "offset": 48,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 66.05,
- "end": 66.44,
- "confidence": 1,
- "text": "little.",
- "offset": 50,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And I said, Okay, that's enough.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 9",
- "words": [
- {
- "start": 67.72,
- "end": 67.89,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 67.89,
- "end": 67.96,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 67.96,
- "end": 68.2,
- "text": "said,",
- "confidence": 1
- },
- {
- "start": 68.2,
- "end": 68.85,
- "text": "Okay,",
- "confidence": 0.7205
- },
- {
- "start": 69.94,
- "end": 70.21,
- "text": "that's",
- "confidence": 0.9998
- },
- {
- "start": 70.21,
- "end": 70.54,
- "text": "enough.",
- "confidence": 1
- }
- ],
- "start": 67.72
- },
- "entityRanges": [
- {
- "start": 67.72,
- "end": 67.89,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 67.89,
- "end": 67.96,
- "confidence": 1,
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 67.96,
- "end": 68.2,
- "confidence": 1,
- "text": "said,",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 68.2,
- "end": 68.85,
- "confidence": 0.7205,
- "text": "Okay,",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 69.94,
- "end": 70.21,
- "confidence": 0.9998,
- "text": "that's",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 70.21,
- "end": 70.54,
- "confidence": 1,
- "text": "enough.",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Now let's put him back down and then I pet the robot to make it stop crying.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 10",
- "words": [
- {
- "start": 70.55,
- "end": 71.11,
- "text": "Now",
- "confidence": 1
- },
- {
- "start": 71.91,
- "end": 72.11,
- "text": "let's",
- "confidence": 0.9974
- },
- {
- "start": 72.11,
- "end": 72.23,
- "text": "put",
- "confidence": 1
- },
- {
- "start": 72.23,
- "end": 72.32,
- "text": "him",
- "confidence": 0.9954
- },
- {
- "start": 72.32,
- "end": 72.55,
- "text": "back",
- "confidence": 0.9998
- },
- {
- "start": 72.55,
- "end": 73.14,
- "text": "down",
- "confidence": 0.9853
- },
- {
- "start": 74.21,
- "end": 74.42,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 74.42,
- "end": 74.54,
- "text": "then",
- "confidence": 1
- },
- {
- "start": 74.54,
- "end": 74.62,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 74.62,
- "end": 74.87,
- "text": "pet",
- "confidence": 0.9013
- },
- {
- "start": 74.88,
- "end": 74.99,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 74.99,
- "end": 75.34,
- "text": "robot",
- "confidence": 0.9996
- },
- {
- "start": 75.34,
- "end": 75.43,
- "text": "to",
- "confidence": 0.997
- },
- {
- "start": 75.43,
- "end": 75.56,
- "text": "make",
- "confidence": 1
- },
- {
- "start": 75.56,
- "end": 75.65,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 75.65,
- "end": 75.9,
- "text": "stop",
- "confidence": 1
- },
- {
- "start": 75.91,
- "end": 76.5,
- "text": "crying.",
- "confidence": 1
- }
- ],
- "start": 70.55
- },
- "entityRanges": [
- {
- "start": 70.55,
- "end": 71.11,
- "confidence": 1,
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 71.91,
- "end": 72.11,
- "confidence": 0.9974,
- "text": "let's",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 72.11,
- "end": 72.23,
- "confidence": 1,
- "text": "put",
- "offset": 10,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 72.23,
- "end": 72.32,
- "confidence": 0.9954,
- "text": "him",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 72.32,
- "end": 72.55,
- "confidence": 0.9998,
- "text": "back",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 72.55,
- "end": 73.14,
- "confidence": 0.9853,
- "text": "down",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 74.21,
- "end": 74.42,
- "confidence": 1,
- "text": "and",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 74.42,
- "end": 74.54,
- "confidence": 1,
- "text": "then",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 74.54,
- "end": 74.62,
- "confidence": 1,
- "text": "I",
- "offset": 37,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 74.62,
- "end": 74.87,
- "confidence": 0.9013,
- "text": "pet",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 74.88,
- "end": 74.99,
- "confidence": 1,
- "text": "the",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 74.99,
- "end": 75.34,
- "confidence": 0.9996,
- "text": "robot",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 75.34,
- "end": 75.43,
- "confidence": 0.997,
- "text": "to",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 75.43,
- "end": 75.56,
- "confidence": 1,
- "text": "make",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 75.56,
- "end": 75.65,
- "confidence": 1,
- "text": "it",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 75.65,
- "end": 75.9,
- "confidence": 1,
- "text": "stop",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 75.91,
- "end": 76.5,
- "confidence": 1,
- "text": "crying.",
- "offset": 69,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And that was kind of a weird experience for me.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 11",
- "words": [
- {
- "start": 78.97,
- "end": 79.07,
- "text": "And",
- "confidence": 0.8269
- },
- {
- "start": 79.07,
- "end": 79.16,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 79.16,
- "end": 79.28,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 79.28,
- "end": 79.43,
- "text": "kind",
- "confidence": 1
- },
- {
- "start": 79.43,
- "end": 79.51,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 79.51,
- "end": 79.56,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 79.56,
- "end": 79.93,
- "text": "weird",
- "confidence": 1
- },
- {
- "start": 79.93,
- "end": 80.62,
- "text": "experience",
- "confidence": 1
- },
- {
- "start": 80.62,
- "end": 80.76,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 80.76,
- "end": 81.18,
- "text": "me.",
- "confidence": 1
- }
- ],
- "start": 78.97
- },
- "entityRanges": [
- {
- "start": 78.97,
- "end": 79.07,
- "confidence": 0.8269,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 79.07,
- "end": 79.16,
- "confidence": 1,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 79.16,
- "end": 79.28,
- "confidence": 1,
- "text": "was",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 79.28,
- "end": 79.43,
- "confidence": 1,
- "text": "kind",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 79.43,
- "end": 79.51,
- "confidence": 1,
- "text": "of",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 79.51,
- "end": 79.56,
- "confidence": 1,
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 79.56,
- "end": 79.93,
- "confidence": 1,
- "text": "weird",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 79.93,
- "end": 80.62,
- "confidence": 1,
- "text": "experience",
- "offset": 29,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 80.62,
- "end": 80.76,
- "confidence": 1,
- "text": "for",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 80.76,
- "end": 81.18,
- "confidence": 1,
- "text": "me.",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "For one thing, it wasn't the most maternal person at the time.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 12",
- "words": [
- {
- "start": 82.04,
- "end": 82.16,
- "text": "For",
- "confidence": 0.9866
- },
- {
- "start": 82.16,
- "end": 82.34,
- "text": "one",
- "confidence": 1
- },
- {
- "start": 82.34,
- "end": 82.75,
- "text": "thing,",
- "confidence": 1
- },
- {
- "start": 82.97,
- "end": 83.07,
- "text": "it",
- "confidence": 0.9381
- },
- {
- "start": 83.07,
- "end": 83.3,
- "text": "wasn't",
- "confidence": 1
- },
- {
- "start": 83.3,
- "end": 83.37,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 83.37,
- "end": 83.75,
- "text": "most",
- "confidence": 1
- },
- {
- "start": 83.76,
- "end": 84.4,
- "text": "maternal",
- "confidence": 1
- },
- {
- "start": 84.4,
- "end": 84.93,
- "text": "person",
- "confidence": 1
- },
- {
- "start": 84.93,
- "end": 85.06,
- "text": "at",
- "confidence": 1
- },
- {
- "start": 85.06,
- "end": 85.15,
- "text": "the",
- "confidence": 0.9998
- },
- {
- "start": 85.15,
- "end": 85.79,
- "text": "time.",
- "confidence": 0.9998
- }
- ],
- "start": 82.04
- },
- "entityRanges": [
- {
- "start": 82.04,
- "end": 82.16,
- "confidence": 0.9866,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 82.16,
- "end": 82.34,
- "confidence": 1,
- "text": "one",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 82.34,
- "end": 82.75,
- "confidence": 1,
- "text": "thing,",
- "offset": 8,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 82.97,
- "end": 83.07,
- "confidence": 0.9381,
- "text": "it",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 83.07,
- "end": 83.3,
- "confidence": 1,
- "text": "wasn't",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 83.3,
- "end": 83.37,
- "confidence": 1,
- "text": "the",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 83.37,
- "end": 83.75,
- "confidence": 1,
- "text": "most",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 83.76,
- "end": 84.4,
- "confidence": 1,
- "text": "maternal",
- "offset": 34,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 84.4,
- "end": 84.93,
- "confidence": 1,
- "text": "person",
- "offset": 43,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 84.93,
- "end": 85.06,
- "confidence": 1,
- "text": "at",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 85.06,
- "end": 85.15,
- "confidence": 0.9998,
- "text": "the",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 85.15,
- "end": 85.79,
- "confidence": 0.9998,
- "text": "time.",
- "offset": 57,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Although since then I've become a mother nine months ago, and I've learned that babies also score him when you hold them upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 13",
- "words": [
- {
- "start": 86.64,
- "end": 86.92,
- "text": "Although",
- "confidence": 0.9988
- },
- {
- "start": 86.92,
- "end": 87.15,
- "text": "since",
- "confidence": 1
- },
- {
- "start": 87.15,
- "end": 87.28,
- "text": "then",
- "confidence": 1
- },
- {
- "start": 87.28,
- "end": 87.37,
- "text": "I've",
- "confidence": 0.9655
- },
- {
- "start": 87.37,
- "end": 87.59,
- "text": "become",
- "confidence": 1
- },
- {
- "start": 87.59,
- "end": 87.65,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 87.65,
- "end": 87.99,
- "text": "mother",
- "confidence": 1
- },
- {
- "start": 87.99,
- "end": 88.25,
- "text": "nine",
- "confidence": 1
- },
- {
- "start": 88.25,
- "end": 88.48,
- "text": "months",
- "confidence": 1
- },
- {
- "start": 88.48,
- "end": 88.91,
- "text": "ago,",
- "confidence": 1
- },
- {
- "start": 89.34,
- "end": 89.55,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 89.55,
- "end": 89.64,
- "text": "I've",
- "confidence": 0.99
- },
- {
- "start": 89.64,
- "end": 89.89,
- "text": "learned",
- "confidence": 1
- },
- {
- "start": 89.89,
- "end": 90.17,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 90.18,
- "end": 90.5,
- "text": "babies",
- "confidence": 0.8643
- },
- {
- "start": 90.5,
- "end": 90.72,
- "text": "also",
- "confidence": 1
- },
- {
- "start": 90.72,
- "end": 91,
- "text": "score",
- "confidence": 0.8862
- },
- {
- "start": 91,
- "end": 91.11,
- "text": "him",
- "confidence": 0.4086
- },
- {
- "start": 91.11,
- "end": 91.21,
- "text": "when",
- "confidence": 0.9972
- },
- {
- "start": 91.21,
- "end": 91.3,
- "text": "you",
- "confidence": 0.9972
- },
- {
- "start": 91.3,
- "end": 91.43,
- "text": "hold",
- "confidence": 1
- },
- {
- "start": 91.43,
- "end": 91.55,
- "text": "them",
- "confidence": 0.9892
- },
- {
- "start": 91.55,
- "end": 91.82,
- "text": "upside",
- "confidence": 0.9971
- },
- {
- "start": 91.82,
- "end": 92.2,
- "text": "down.",
- "confidence": 1
- }
- ],
- "start": 86.64
- },
- "entityRanges": [
- {
- "start": 86.64,
- "end": 86.92,
- "confidence": 0.9988,
- "text": "Although",
- "offset": 0,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 86.92,
- "end": 87.15,
- "confidence": 1,
- "text": "since",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 87.15,
- "end": 87.28,
- "confidence": 1,
- "text": "then",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 87.28,
- "end": 87.37,
- "confidence": 0.9655,
- "text": "I've",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 87.37,
- "end": 87.59,
- "confidence": 1,
- "text": "become",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 87.59,
- "end": 87.65,
- "confidence": 1,
- "text": "a",
- "offset": 32,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 87.65,
- "end": 87.99,
- "confidence": 1,
- "text": "mother",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 87.99,
- "end": 88.25,
- "confidence": 1,
- "text": "nine",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 88.25,
- "end": 88.48,
- "confidence": 1,
- "text": "months",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 88.48,
- "end": 88.91,
- "confidence": 1,
- "text": "ago,",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 89.34,
- "end": 89.55,
- "confidence": 1,
- "text": "and",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 89.55,
- "end": 89.64,
- "confidence": 0.99,
- "text": "I've",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 89.64,
- "end": 89.89,
- "confidence": 1,
- "text": "learned",
- "offset": 67,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 89.89,
- "end": 90.17,
- "confidence": 1,
- "text": "that",
- "offset": 75,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 90.18,
- "end": 90.5,
- "confidence": 0.8643,
- "text": "babies",
- "offset": 80,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 90.5,
- "end": 90.72,
- "confidence": 1,
- "text": "also",
- "offset": 87,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 90.72,
- "end": 91,
- "confidence": 0.8862,
- "text": "score",
- "offset": 92,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 91,
- "end": 91.11,
- "confidence": 0.4086,
- "text": "him",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 91.11,
- "end": 91.21,
- "confidence": 0.9972,
- "text": "when",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 91.21,
- "end": 91.3,
- "confidence": 0.9972,
- "text": "you",
- "offset": 107,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 91.3,
- "end": 91.43,
- "confidence": 1,
- "text": "hold",
- "offset": 111,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 91.43,
- "end": 91.55,
- "confidence": 0.9892,
- "text": "them",
- "offset": 116,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 91.55,
- "end": 91.82,
- "confidence": 0.9971,
- "text": "upside",
- "offset": 121,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 91.82,
- "end": 92.2,
- "confidence": 1,
- "text": "down.",
- "offset": 128,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But my response to this robot was also interesting because I knew exactly how this machine worked.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 14",
- "words": [
- {
- "start": 95.02,
- "end": 95.25,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 95.25,
- "end": 95.42,
- "text": "my",
- "confidence": 1
- },
- {
- "start": 95.42,
- "end": 95.86,
- "text": "response",
- "confidence": 0.9676
- },
- {
- "start": 95.86,
- "end": 95.92,
- "text": "to",
- "confidence": 0.5472
- },
- {
- "start": 95.92,
- "end": 96.13,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 96.13,
- "end": 96.42,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 96.42,
- "end": 96.57,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 96.57,
- "end": 96.85,
- "text": "also",
- "confidence": 1
- },
- {
- "start": 96.85,
- "end": 97.25,
- "text": "interesting",
- "confidence": 1
- },
- {
- "start": 97.25,
- "end": 97.73,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 97.82,
- "end": 98.01,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 98.01,
- "end": 98.17,
- "text": "knew",
- "confidence": 0.9904
- },
- {
- "start": 98.17,
- "end": 98.9,
- "text": "exactly",
- "confidence": 1
- },
- {
- "start": 98.9,
- "end": 99.15,
- "text": "how",
- "confidence": 1
- },
- {
- "start": 99.15,
- "end": 99.38,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 99.38,
- "end": 100.03,
- "text": "machine",
- "confidence": 1
- },
- {
- "start": 100.04,
- "end": 100.85,
- "text": "worked.",
- "confidence": 1
- }
- ],
- "start": 95.02
- },
- "entityRanges": [
- {
- "start": 95.02,
- "end": 95.25,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 95.25,
- "end": 95.42,
- "confidence": 1,
- "text": "my",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 95.42,
- "end": 95.86,
- "confidence": 0.9676,
- "text": "response",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 95.86,
- "end": 95.92,
- "confidence": 0.5472,
- "text": "to",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 95.92,
- "end": 96.13,
- "confidence": 1,
- "text": "this",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 96.13,
- "end": 96.42,
- "confidence": 1,
- "text": "robot",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 96.42,
- "end": 96.57,
- "confidence": 1,
- "text": "was",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 96.57,
- "end": 96.85,
- "confidence": 1,
- "text": "also",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 96.85,
- "end": 97.25,
- "confidence": 1,
- "text": "interesting",
- "offset": 39,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 97.25,
- "end": 97.73,
- "confidence": 1,
- "text": "because",
- "offset": 51,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 97.82,
- "end": 98.01,
- "confidence": 1,
- "text": "I",
- "offset": 59,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 98.01,
- "end": 98.17,
- "confidence": 0.9904,
- "text": "knew",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 98.17,
- "end": 98.9,
- "confidence": 1,
- "text": "exactly",
- "offset": 66,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 98.9,
- "end": 99.15,
- "confidence": 1,
- "text": "how",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 99.15,
- "end": 99.38,
- "confidence": 1,
- "text": "this",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 99.38,
- "end": 100.03,
- "confidence": 1,
- "text": "machine",
- "offset": 83,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 100.04,
- "end": 100.85,
- "confidence": 1,
- "text": "worked.",
- "offset": 91,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And yet I still felt compelled to be kind to it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 15",
- "words": [
- {
- "start": 101.5,
- "end": 101.68,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 101.68,
- "end": 101.84,
- "text": "yet",
- "confidence": 1
- },
- {
- "start": 101.85,
- "end": 101.96,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 101.96,
- "end": 102.37,
- "text": "still",
- "confidence": 1
- },
- {
- "start": 102.37,
- "end": 102.65,
- "text": "felt",
- "confidence": 1
- },
- {
- "start": 102.65,
- "end": 103.38,
- "text": "compelled",
- "confidence": 1
- },
- {
- "start": 103.38,
- "end": 103.5,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 103.5,
- "end": 103.64,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 103.64,
- "end": 104.35,
- "text": "kind",
- "confidence": 1
- },
- {
- "start": 104.35,
- "end": 104.59,
- "text": "to",
- "confidence": 0.9991
- },
- {
- "start": 104.59,
- "end": 104.78,
- "text": "it.",
- "confidence": 1
- }
- ],
- "start": 101.5
- },
- "entityRanges": [
- {
- "start": 101.5,
- "end": 101.68,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 101.68,
- "end": 101.84,
- "confidence": 1,
- "text": "yet",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 101.85,
- "end": 101.96,
- "confidence": 1,
- "text": "I",
- "offset": 8,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 101.96,
- "end": 102.37,
- "confidence": 1,
- "text": "still",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 102.37,
- "end": 102.65,
- "confidence": 1,
- "text": "felt",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 102.65,
- "end": 103.38,
- "confidence": 1,
- "text": "compelled",
- "offset": 21,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 103.38,
- "end": 103.5,
- "confidence": 1,
- "text": "to",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 103.5,
- "end": 103.64,
- "confidence": 1,
- "text": "be",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 103.64,
- "end": 104.35,
- "confidence": 1,
- "text": "kind",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 104.35,
- "end": 104.59,
- "confidence": 0.9991,
- "text": "to",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 104.59,
- "end": 104.78,
- "confidence": 1,
- "text": "it.",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And that observation sparked the curiosity that I spent the fat the past decade pursuing.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 16",
- "words": [
- {
- "start": 106.4,
- "end": 106.63,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 106.63,
- "end": 106.91,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 106.92,
- "end": 107.7,
- "text": "observation",
- "confidence": 0.9996
- },
- {
- "start": 107.7,
- "end": 108.09,
- "text": "sparked",
- "confidence": 0.9736
- },
- {
- "start": 108.09,
- "end": 108.18,
- "text": "the",
- "confidence": 0.4663
- },
- {
- "start": 108.18,
- "end": 109.12,
- "text": "curiosity",
- "confidence": 1
- },
- {
- "start": 109.12,
- "end": 109.32,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 109.32,
- "end": 109.39,
- "text": "I",
- "confidence": 0.9981
- },
- {
- "start": 109.39,
- "end": 109.73,
- "text": "spent",
- "confidence": 1
- },
- {
- "start": 109.73,
- "end": 109.81,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 109.81,
- "end": 110.23,
- "text": "fat",
- "confidence": 0.9974
- },
- {
- "start": 110.24,
- "end": 110.37,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 110.37,
- "end": 110.73,
- "text": "past",
- "confidence": 1
- },
- {
- "start": 110.74,
- "end": 111.27,
- "text": "decade",
- "confidence": 0.5567
- },
- {
- "start": 111.28,
- "end": 111.98,
- "text": "pursuing.",
- "confidence": 1
- }
- ],
- "start": 106.4
- },
- "entityRanges": [
- {
- "start": 106.4,
- "end": 106.63,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 106.63,
- "end": 106.91,
- "confidence": 1,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 106.92,
- "end": 107.7,
- "confidence": 0.9996,
- "text": "observation",
- "offset": 9,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 107.7,
- "end": 108.09,
- "confidence": 0.9736,
- "text": "sparked",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 108.09,
- "end": 108.18,
- "confidence": 0.4663,
- "text": "the",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 108.18,
- "end": 109.12,
- "confidence": 1,
- "text": "curiosity",
- "offset": 33,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 109.12,
- "end": 109.32,
- "confidence": 1,
- "text": "that",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 109.32,
- "end": 109.39,
- "confidence": 0.9981,
- "text": "I",
- "offset": 48,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 109.39,
- "end": 109.73,
- "confidence": 1,
- "text": "spent",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 109.73,
- "end": 109.81,
- "confidence": 1,
- "text": "the",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 109.81,
- "end": 110.23,
- "confidence": 0.9974,
- "text": "fat",
- "offset": 60,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 110.24,
- "end": 110.37,
- "confidence": 1,
- "text": "the",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 110.37,
- "end": 110.73,
- "confidence": 1,
- "text": "past",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 110.74,
- "end": 111.27,
- "confidence": 0.5567,
- "text": "decade",
- "offset": 73,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 111.28,
- "end": 111.98,
- "confidence": 1,
- "text": "pursuing.",
- "offset": 80,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Why did I come for this robot?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 17",
- "words": [
- {
- "start": 112.9,
- "end": 113.16,
- "text": "Why",
- "confidence": 1
- },
- {
- "start": 113.16,
- "end": 113.37,
- "text": "did",
- "confidence": 1
- },
- {
- "start": 113.37,
- "end": 113.43,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 113.43,
- "end": 113.76,
- "text": "come",
- "confidence": 0.9705
- },
- {
- "start": 113.76,
- "end": 113.87,
- "text": "for",
- "confidence": 0.9412
- },
- {
- "start": 113.87,
- "end": 114.17,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 114.17,
- "end": 114.65,
- "text": "robot?",
- "confidence": 0.999
- }
- ],
- "start": 112.9
- },
- "entityRanges": [
- {
- "start": 112.9,
- "end": 113.16,
- "confidence": 1,
- "text": "Why",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 113.16,
- "end": 113.37,
- "confidence": 1,
- "text": "did",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 113.37,
- "end": 113.43,
- "confidence": 1,
- "text": "I",
- "offset": 8,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 113.43,
- "end": 113.76,
- "confidence": 0.9705,
- "text": "come",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 113.76,
- "end": 113.87,
- "confidence": 0.9412,
- "text": "for",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 113.87,
- "end": 114.17,
- "confidence": 1,
- "text": "this",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 114.17,
- "end": 114.65,
- "confidence": 0.999,
- "text": "robot?",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And one of the things I discovered was that my treatment of this machine was more than just on awkward moment in my living room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 18",
- "words": [
- {
- "start": 116.2,
- "end": 116.35,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 116.35,
- "end": 116.48,
- "text": "one",
- "confidence": 1
- },
- {
- "start": 116.48,
- "end": 116.55,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 116.55,
- "end": 116.65,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 116.66,
- "end": 116.87,
- "text": "things",
- "confidence": 1
- },
- {
- "start": 116.87,
- "end": 116.91,
- "text": "I",
- "confidence": 0.9963
- },
- {
- "start": 116.91,
- "end": 117.56,
- "text": "discovered",
- "confidence": 1
- },
- {
- "start": 117.56,
- "end": 117.76,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 117.76,
- "end": 118.22,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 118.44,
- "end": 118.59,
- "text": "my",
- "confidence": 0.9965
- },
- {
- "start": 118.59,
- "end": 119.18,
- "text": "treatment",
- "confidence": 1
- },
- {
- "start": 119.18,
- "end": 119.26,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 119.26,
- "end": 119.42,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 119.42,
- "end": 119.79,
- "text": "machine",
- "confidence": 1
- },
- {
- "start": 119.79,
- "end": 119.94,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 119.94,
- "end": 120.22,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 120.22,
- "end": 120.34,
- "text": "than",
- "confidence": 1
- },
- {
- "start": 120.34,
- "end": 120.62,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 120.97,
- "end": 121.15,
- "text": "on",
- "confidence": 0.9988
- },
- {
- "start": 121.16,
- "end": 121.6,
- "text": "awkward",
- "confidence": 1
- },
- {
- "start": 121.6,
- "end": 122.07,
- "text": "moment",
- "confidence": 1
- },
- {
- "start": 122.07,
- "end": 122.16,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 122.16,
- "end": 122.29,
- "text": "my",
- "confidence": 1
- },
- {
- "start": 122.29,
- "end": 122.58,
- "text": "living",
- "confidence": 1
- },
- {
- "start": 122.58,
- "end": 122.98,
- "text": "room.",
- "confidence": 1
- }
- ],
- "start": 116.2
- },
- "entityRanges": [
- {
- "start": 116.2,
- "end": 116.35,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 116.35,
- "end": 116.48,
- "confidence": 1,
- "text": "one",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 116.48,
- "end": 116.55,
- "confidence": 1,
- "text": "of",
- "offset": 8,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 116.55,
- "end": 116.65,
- "confidence": 1,
- "text": "the",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 116.66,
- "end": 116.87,
- "confidence": 1,
- "text": "things",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 116.87,
- "end": 116.91,
- "confidence": 0.9963,
- "text": "I",
- "offset": 22,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 116.91,
- "end": 117.56,
- "confidence": 1,
- "text": "discovered",
- "offset": 24,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 117.56,
- "end": 117.76,
- "confidence": 1,
- "text": "was",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 117.76,
- "end": 118.22,
- "confidence": 1,
- "text": "that",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 118.44,
- "end": 118.59,
- "confidence": 0.9965,
- "text": "my",
- "offset": 44,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 118.59,
- "end": 119.18,
- "confidence": 1,
- "text": "treatment",
- "offset": 47,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 119.18,
- "end": 119.26,
- "confidence": 1,
- "text": "of",
- "offset": 57,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 119.26,
- "end": 119.42,
- "confidence": 1,
- "text": "this",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 119.42,
- "end": 119.79,
- "confidence": 1,
- "text": "machine",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 119.79,
- "end": 119.94,
- "confidence": 1,
- "text": "was",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 119.94,
- "end": 120.22,
- "confidence": 1,
- "text": "more",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 120.22,
- "end": 120.34,
- "confidence": 1,
- "text": "than",
- "offset": 82,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 120.34,
- "end": 120.62,
- "confidence": 1,
- "text": "just",
- "offset": 87,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 120.97,
- "end": 121.15,
- "confidence": 0.9988,
- "text": "on",
- "offset": 92,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 121.16,
- "end": 121.6,
- "confidence": 1,
- "text": "awkward",
- "offset": 95,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 121.6,
- "end": 122.07,
- "confidence": 1,
- "text": "moment",
- "offset": 103,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 122.07,
- "end": 122.16,
- "confidence": 1,
- "text": "in",
- "offset": 110,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 122.16,
- "end": 122.29,
- "confidence": 1,
- "text": "my",
- "offset": 113,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 122.29,
- "end": 122.58,
- "confidence": 1,
- "text": "living",
- "offset": 116,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 122.58,
- "end": 122.98,
- "confidence": 1,
- "text": "room.",
- "offset": 123,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "That in a world where were increasingly integrating robots into our lives and instinct like that might actually have consequences because the first thing that I discovered is that it's not just me.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 19",
- "words": [
- {
- "start": 123.54,
- "end": 123.74,
- "text": "That",
- "confidence": 1
- },
- {
- "start": 123.74,
- "end": 123.84,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 123.84,
- "end": 123.94,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 123.94,
- "end": 124.41,
- "text": "world",
- "confidence": 1
- },
- {
- "start": 124.41,
- "end": 124.54,
- "text": "where",
- "confidence": 1
- },
- {
- "start": 124.54,
- "end": 124.65,
- "text": "were",
- "confidence": 0.8267
- },
- {
- "start": 124.65,
- "end": 125.44,
- "text": "increasingly",
- "confidence": 1
- },
- {
- "start": 125.45,
- "end": 126.17,
- "text": "integrating",
- "confidence": 1
- },
- {
- "start": 126.17,
- "end": 127.02,
- "text": "robots",
- "confidence": 1
- },
- {
- "start": 127.22,
- "end": 127.5,
- "text": "into",
- "confidence": 1
- },
- {
- "start": 127.5,
- "end": 127.65,
- "text": "our",
- "confidence": 1
- },
- {
- "start": 127.65,
- "end": 128.55,
- "text": "lives",
- "confidence": 1
- },
- {
- "start": 128.96,
- "end": 129.12,
- "text": "and",
- "confidence": 0.8904
- },
- {
- "start": 129.12,
- "end": 129.57,
- "text": "instinct",
- "confidence": 0.9965
- },
- {
- "start": 129.57,
- "end": 129.74,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 129.74,
- "end": 130,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 130,
- "end": 130.31,
- "text": "might",
- "confidence": 1
- },
- {
- "start": 130.38,
- "end": 130.74,
- "text": "actually",
- "confidence": 1
- },
- {
- "start": 130.74,
- "end": 130.88,
- "text": "have",
- "confidence": 1
- },
- {
- "start": 130.88,
- "end": 132.1,
- "text": "consequences",
- "confidence": 1
- },
- {
- "start": 133.37,
- "end": 133.67,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 133.67,
- "end": 133.76,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 133.76,
- "end": 134.01,
- "text": "first",
- "confidence": 1
- },
- {
- "start": 134.01,
- "end": 134.12,
- "text": "thing",
- "confidence": 1
- },
- {
- "start": 134.12,
- "end": 134.25,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 134.25,
- "end": 134.31,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 134.31,
- "end": 135.14,
- "text": "discovered",
- "confidence": 1
- },
- {
- "start": 135.15,
- "end": 135.34,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 135.34,
- "end": 135.53,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 135.54,
- "end": 135.78,
- "text": "it's",
- "confidence": 1
- },
- {
- "start": 135.78,
- "end": 136.04,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 136.04,
- "end": 136.37,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 136.37,
- "end": 136.88,
- "text": "me.",
- "confidence": 1
- }
- ],
- "start": 123.54
- },
- "entityRanges": [
- {
- "start": 123.54,
- "end": 123.74,
- "confidence": 1,
- "text": "That",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 123.74,
- "end": 123.84,
- "confidence": 1,
- "text": "in",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 123.84,
- "end": 123.94,
- "confidence": 1,
- "text": "a",
- "offset": 8,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 123.94,
- "end": 124.41,
- "confidence": 1,
- "text": "world",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 124.41,
- "end": 124.54,
- "confidence": 1,
- "text": "where",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 124.54,
- "end": 124.65,
- "confidence": 0.8267,
- "text": "were",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 124.65,
- "end": 125.44,
- "confidence": 1,
- "text": "increasingly",
- "offset": 27,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 125.45,
- "end": 126.17,
- "confidence": 1,
- "text": "integrating",
- "offset": 40,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 126.17,
- "end": 127.02,
- "confidence": 1,
- "text": "robots",
- "offset": 52,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 127.22,
- "end": 127.5,
- "confidence": 1,
- "text": "into",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 127.5,
- "end": 127.65,
- "confidence": 1,
- "text": "our",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 127.65,
- "end": 128.55,
- "confidence": 1,
- "text": "lives",
- "offset": 68,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 128.96,
- "end": 129.12,
- "confidence": 0.8904,
- "text": "and",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 129.12,
- "end": 129.57,
- "confidence": 0.9965,
- "text": "instinct",
- "offset": 78,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 129.57,
- "end": 129.74,
- "confidence": 1,
- "text": "like",
- "offset": 87,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 129.74,
- "end": 130,
- "confidence": 1,
- "text": "that",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 130,
- "end": 130.31,
- "confidence": 1,
- "text": "might",
- "offset": 97,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 130.38,
- "end": 130.74,
- "confidence": 1,
- "text": "actually",
- "offset": 103,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 130.74,
- "end": 130.88,
- "confidence": 1,
- "text": "have",
- "offset": 112,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 130.88,
- "end": 132.1,
- "confidence": 1,
- "text": "consequences",
- "offset": 117,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 133.37,
- "end": 133.67,
- "confidence": 1,
- "text": "because",
- "offset": 130,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 133.67,
- "end": 133.76,
- "confidence": 1,
- "text": "the",
- "offset": 138,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 133.76,
- "end": 134.01,
- "confidence": 1,
- "text": "first",
- "offset": 142,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 134.01,
- "end": 134.12,
- "confidence": 1,
- "text": "thing",
- "offset": 148,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 134.12,
- "end": 134.25,
- "confidence": 1,
- "text": "that",
- "offset": 154,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 134.25,
- "end": 134.31,
- "confidence": 1,
- "text": "I",
- "offset": 159,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 134.31,
- "end": 135.14,
- "confidence": 1,
- "text": "discovered",
- "offset": 161,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 135.15,
- "end": 135.34,
- "confidence": 1,
- "text": "is",
- "offset": 172,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 135.34,
- "end": 135.53,
- "confidence": 1,
- "text": "that",
- "offset": 175,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 135.54,
- "end": 135.78,
- "confidence": 1,
- "text": "it's",
- "offset": 180,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 135.78,
- "end": 136.04,
- "confidence": 1,
- "text": "not",
- "offset": 185,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 136.04,
- "end": 136.37,
- "confidence": 1,
- "text": "just",
- "offset": 189,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 136.37,
- "end": 136.88,
- "confidence": 1,
- "text": "me.",
- "offset": 194,
- "length": 3,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "In two thousand seven, The Washington Post reported that the United States military was testing this robot that defused landmines, and the way it worked was it was shaped like a stick insect and it would walk around a minefield on its legs.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 20",
- "words": [
- {
- "start": 139.24,
- "end": 139.4,
- "text": "In",
- "confidence": 1
- },
- {
- "start": 139.4,
- "end": 139.57,
- "text": "two",
- "confidence": 1
- },
- {
- "start": 139.57,
- "end": 140.04,
- "text": "thousand",
- "confidence": 1
- },
- {
- "start": 140.04,
- "end": 140.65,
- "text": "seven,",
- "confidence": 1
- },
- {
- "start": 140.74,
- "end": 140.88,
- "text": "The",
- "confidence": 1
- },
- {
- "start": 140.88,
- "end": 141.4,
- "text": "Washington",
- "confidence": 1
- },
- {
- "start": 141.4,
- "end": 141.72,
- "text": "Post",
- "confidence": 1
- },
- {
- "start": 141.72,
- "end": 142.23,
- "text": "reported",
- "confidence": 0.9998
- },
- {
- "start": 142.24,
- "end": 142.41,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 142.41,
- "end": 142.51,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 142.51,
- "end": 142.89,
- "text": "United",
- "confidence": 1
- },
- {
- "start": 142.89,
- "end": 143.18,
- "text": "States",
- "confidence": 1
- },
- {
- "start": 143.18,
- "end": 144.04,
- "text": "military",
- "confidence": 1
- },
- {
- "start": 144.05,
- "end": 144.28,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 144.29,
- "end": 144.8,
- "text": "testing",
- "confidence": 1
- },
- {
- "start": 144.8,
- "end": 145.14,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 145.3,
- "end": 145.86,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 145.86,
- "end": 145.99,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 145.99,
- "end": 146.54,
- "text": "defused",
- "confidence": 0.9955
- },
- {
- "start": 146.55,
- "end": 147.3,
- "text": "landmines,",
- "confidence": 0.9985
- },
- {
- "start": 147.3,
- "end": 147.44,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 147.44,
- "end": 147.5,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 147.5,
- "end": 147.61,
- "text": "way",
- "confidence": 1
- },
- {
- "start": 147.61,
- "end": 147.68,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 147.68,
- "end": 147.89,
- "text": "worked",
- "confidence": 1
- },
- {
- "start": 147.89,
- "end": 148.15,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 148.33,
- "end": 148.46,
- "text": "it",
- "confidence": 0.9998
- },
- {
- "start": 148.46,
- "end": 148.58,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 148.58,
- "end": 148.94,
- "text": "shaped",
- "confidence": 1
- },
- {
- "start": 148.94,
- "end": 149.08,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 149.08,
- "end": 149.13,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 149.13,
- "end": 149.56,
- "text": "stick",
- "confidence": 1
- },
- {
- "start": 149.57,
- "end": 150.07,
- "text": "insect",
- "confidence": 1
- },
- {
- "start": 150.07,
- "end": 150.38,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 150.43,
- "end": 150.56,
- "text": "it",
- "confidence": 0.9672
- },
- {
- "start": 150.56,
- "end": 150.69,
- "text": "would",
- "confidence": 1
- },
- {
- "start": 150.69,
- "end": 150.93,
- "text": "walk",
- "confidence": 1
- },
- {
- "start": 150.93,
- "end": 151.16,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 151.16,
- "end": 151.19,
- "text": "a",
- "confidence": 0.6704
- },
- {
- "start": 151.19,
- "end": 151.8,
- "text": "minefield",
- "confidence": 0.9362
- },
- {
- "start": 151.8,
- "end": 151.89,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 151.89,
- "end": 152.05,
- "text": "its",
- "confidence": 0.9993
- },
- {
- "start": 152.05,
- "end": 152.6,
- "text": "legs.",
- "confidence": 1
- }
- ],
- "start": 139.24
- },
- "entityRanges": [
- {
- "start": 139.24,
- "end": 139.4,
- "confidence": 1,
- "text": "In",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 139.4,
- "end": 139.57,
- "confidence": 1,
- "text": "two",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 139.57,
- "end": 140.04,
- "confidence": 1,
- "text": "thousand",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 140.04,
- "end": 140.65,
- "confidence": 1,
- "text": "seven,",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 140.74,
- "end": 140.88,
- "confidence": 1,
- "text": "The",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 140.88,
- "end": 141.4,
- "confidence": 1,
- "text": "Washington",
- "offset": 27,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 141.4,
- "end": 141.72,
- "confidence": 1,
- "text": "Post",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 141.72,
- "end": 142.23,
- "confidence": 0.9998,
- "text": "reported",
- "offset": 43,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 142.24,
- "end": 142.41,
- "confidence": 1,
- "text": "that",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 142.41,
- "end": 142.51,
- "confidence": 1,
- "text": "the",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 142.51,
- "end": 142.89,
- "confidence": 1,
- "text": "United",
- "offset": 61,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 142.89,
- "end": 143.18,
- "confidence": 1,
- "text": "States",
- "offset": 68,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 143.18,
- "end": 144.04,
- "confidence": 1,
- "text": "military",
- "offset": 75,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 144.05,
- "end": 144.28,
- "confidence": 1,
- "text": "was",
- "offset": 84,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 144.29,
- "end": 144.8,
- "confidence": 1,
- "text": "testing",
- "offset": 88,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 144.8,
- "end": 145.14,
- "confidence": 1,
- "text": "this",
- "offset": 96,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 145.3,
- "end": 145.86,
- "confidence": 1,
- "text": "robot",
- "offset": 101,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 145.86,
- "end": 145.99,
- "confidence": 1,
- "text": "that",
- "offset": 107,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 145.99,
- "end": 146.54,
- "confidence": 0.9955,
- "text": "defused",
- "offset": 112,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 146.55,
- "end": 147.3,
- "confidence": 0.9985,
- "text": "landmines,",
- "offset": 120,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 147.3,
- "end": 147.44,
- "confidence": 1,
- "text": "and",
- "offset": 131,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 147.44,
- "end": 147.5,
- "confidence": 1,
- "text": "the",
- "offset": 135,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 147.5,
- "end": 147.61,
- "confidence": 1,
- "text": "way",
- "offset": 139,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 147.61,
- "end": 147.68,
- "confidence": 1,
- "text": "it",
- "offset": 143,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 147.68,
- "end": 147.89,
- "confidence": 1,
- "text": "worked",
- "offset": 146,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 147.89,
- "end": 148.15,
- "confidence": 1,
- "text": "was",
- "offset": 153,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 148.33,
- "end": 148.46,
- "confidence": 0.9998,
- "text": "it",
- "offset": 157,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 148.46,
- "end": 148.58,
- "confidence": 1,
- "text": "was",
- "offset": 160,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 148.58,
- "end": 148.94,
- "confidence": 1,
- "text": "shaped",
- "offset": 164,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 148.94,
- "end": 149.08,
- "confidence": 1,
- "text": "like",
- "offset": 171,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 149.08,
- "end": 149.13,
- "confidence": 1,
- "text": "a",
- "offset": 176,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 149.13,
- "end": 149.56,
- "confidence": 1,
- "text": "stick",
- "offset": 178,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 149.57,
- "end": 150.07,
- "confidence": 1,
- "text": "insect",
- "offset": 184,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 150.07,
- "end": 150.38,
- "confidence": 1,
- "text": "and",
- "offset": 191,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 150.43,
- "end": 150.56,
- "confidence": 0.9672,
- "text": "it",
- "offset": 195,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 150.56,
- "end": 150.69,
- "confidence": 1,
- "text": "would",
- "offset": 198,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 150.69,
- "end": 150.93,
- "confidence": 1,
- "text": "walk",
- "offset": 204,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 150.93,
- "end": 151.16,
- "confidence": 1,
- "text": "around",
- "offset": 209,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 151.16,
- "end": 151.19,
- "confidence": 0.6704,
- "text": "a",
- "offset": 216,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 151.19,
- "end": 151.8,
- "confidence": 0.9362,
- "text": "minefield",
- "offset": 218,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 151.8,
- "end": 151.89,
- "confidence": 1,
- "text": "on",
- "offset": 228,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 151.89,
- "end": 152.05,
- "confidence": 0.9993,
- "text": "its",
- "offset": 231,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 152.05,
- "end": 152.6,
- "confidence": 1,
- "text": "legs.",
- "offset": 235,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And every time it stepped on a mine, one of the legs would blow up and it would continue on the other legs to blow up your minds.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 21",
- "words": [
- {
- "start": 152.8,
- "end": 153.07,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 153.08,
- "end": 153.28,
- "text": "every",
- "confidence": 0.9313
- },
- {
- "start": 153.28,
- "end": 153.46,
- "text": "time",
- "confidence": 0.9313
- },
- {
- "start": 153.46,
- "end": 153.55,
- "text": "it",
- "confidence": 0.775
- },
- {
- "start": 153.55,
- "end": 153.88,
- "text": "stepped",
- "confidence": 1
- },
- {
- "start": 153.88,
- "end": 153.97,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 153.97,
- "end": 154.02,
- "text": "a",
- "confidence": 0.9936
- },
- {
- "start": 154.02,
- "end": 154.45,
- "text": "mine,",
- "confidence": 1
- },
- {
- "start": 154.46,
- "end": 154.64,
- "text": "one",
- "confidence": 1
- },
- {
- "start": 154.64,
- "end": 154.72,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 154.72,
- "end": 154.82,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 154.82,
- "end": 155.09,
- "text": "legs",
- "confidence": 0.9989
- },
- {
- "start": 155.09,
- "end": 155.2,
- "text": "would",
- "confidence": 1
- },
- {
- "start": 155.2,
- "end": 155.44,
- "text": "blow",
- "confidence": 1
- },
- {
- "start": 155.44,
- "end": 155.75,
- "text": "up",
- "confidence": 1
- },
- {
- "start": 155.76,
- "end": 155.85,
- "text": "and",
- "confidence": 0.983
- },
- {
- "start": 155.85,
- "end": 155.91,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 155.91,
- "end": 156.03,
- "text": "would",
- "confidence": 0.998
- },
- {
- "start": 156.03,
- "end": 156.52,
- "text": "continue",
- "confidence": 1
- },
- {
- "start": 156.52,
- "end": 156.62,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 156.62,
- "end": 156.71,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 156.71,
- "end": 156.9,
- "text": "other",
- "confidence": 1
- },
- {
- "start": 156.9,
- "end": 157.26,
- "text": "legs",
- "confidence": 0.9364
- },
- {
- "start": 157.26,
- "end": 157.38,
- "text": "to",
- "confidence": 0.9942
- },
- {
- "start": 157.38,
- "end": 157.58,
- "text": "blow",
- "confidence": 0.9756
- },
- {
- "start": 157.58,
- "end": 157.7,
- "text": "up",
- "confidence": 0.9756
- },
- {
- "start": 157.71,
- "end": 157.83,
- "text": "your",
- "confidence": 0.8036
- },
- {
- "start": 157.83,
- "end": 158.41,
- "text": "minds.",
- "confidence": 0.9939
- }
- ],
- "start": 152.8
- },
- "entityRanges": [
- {
- "start": 152.8,
- "end": 153.07,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 153.08,
- "end": 153.28,
- "confidence": 0.9313,
- "text": "every",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 153.28,
- "end": 153.46,
- "confidence": 0.9313,
- "text": "time",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 153.46,
- "end": 153.55,
- "confidence": 0.775,
- "text": "it",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 153.55,
- "end": 153.88,
- "confidence": 1,
- "text": "stepped",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 153.88,
- "end": 153.97,
- "confidence": 1,
- "text": "on",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 153.97,
- "end": 154.02,
- "confidence": 0.9936,
- "text": "a",
- "offset": 29,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 154.02,
- "end": 154.45,
- "confidence": 1,
- "text": "mine,",
- "offset": 31,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 154.46,
- "end": 154.64,
- "confidence": 1,
- "text": "one",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 154.64,
- "end": 154.72,
- "confidence": 1,
- "text": "of",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 154.72,
- "end": 154.82,
- "confidence": 1,
- "text": "the",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 154.82,
- "end": 155.09,
- "confidence": 0.9989,
- "text": "legs",
- "offset": 48,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 155.09,
- "end": 155.2,
- "confidence": 1,
- "text": "would",
- "offset": 53,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 155.2,
- "end": 155.44,
- "confidence": 1,
- "text": "blow",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 155.44,
- "end": 155.75,
- "confidence": 1,
- "text": "up",
- "offset": 64,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 155.76,
- "end": 155.85,
- "confidence": 0.983,
- "text": "and",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 155.85,
- "end": 155.91,
- "confidence": 1,
- "text": "it",
- "offset": 71,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 155.91,
- "end": 156.03,
- "confidence": 0.998,
- "text": "would",
- "offset": 74,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 156.03,
- "end": 156.52,
- "confidence": 1,
- "text": "continue",
- "offset": 80,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 156.52,
- "end": 156.62,
- "confidence": 1,
- "text": "on",
- "offset": 89,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 156.62,
- "end": 156.71,
- "confidence": 1,
- "text": "the",
- "offset": 92,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 156.71,
- "end": 156.9,
- "confidence": 1,
- "text": "other",
- "offset": 96,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 156.9,
- "end": 157.26,
- "confidence": 0.9364,
- "text": "legs",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 157.26,
- "end": 157.38,
- "confidence": 0.9942,
- "text": "to",
- "offset": 107,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 157.38,
- "end": 157.58,
- "confidence": 0.9756,
- "text": "blow",
- "offset": 110,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 157.58,
- "end": 157.7,
- "confidence": 0.9756,
- "text": "up",
- "offset": 115,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 157.71,
- "end": 157.83,
- "confidence": 0.8036,
- "text": "your",
- "offset": 118,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 157.83,
- "end": 158.41,
- "confidence": 0.9939,
- "text": "minds.",
- "offset": 123,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And the colonel, whose in charge of this testing exercise ends up calling it off because he says it's too inhumane.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 22",
- "words": [
- {
- "start": 159.21,
- "end": 159.5,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 159.51,
- "end": 159.67,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 159.67,
- "end": 160.13,
- "text": "colonel,",
- "confidence": 1
- },
- {
- "start": 160.13,
- "end": 160.34,
- "text": "whose",
- "confidence": 0.6836
- },
- {
- "start": 160.34,
- "end": 160.45,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 160.45,
- "end": 160.93,
- "text": "charge",
- "confidence": 1
- },
- {
- "start": 160.93,
- "end": 161.02,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 161.02,
- "end": 161.18,
- "text": "this",
- "confidence": 0.999
- },
- {
- "start": 161.19,
- "end": 161.67,
- "text": "testing",
- "confidence": 1
- },
- {
- "start": 161.67,
- "end": 162.72,
- "text": "exercise",
- "confidence": 0.9448
- },
- {
- "start": 163.05,
- "end": 163.26,
- "text": "ends",
- "confidence": 0.9938
- },
- {
- "start": 163.26,
- "end": 163.36,
- "text": "up",
- "confidence": 1
- },
- {
- "start": 163.36,
- "end": 163.8,
- "text": "calling",
- "confidence": 1
- },
- {
- "start": 163.8,
- "end": 163.9,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 163.9,
- "end": 164.38,
- "text": "off",
- "confidence": 1
- },
- {
- "start": 165.17,
- "end": 165.58,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 165.58,
- "end": 165.73,
- "text": "he",
- "confidence": 1
- },
- {
- "start": 165.73,
- "end": 166.17,
- "text": "says",
- "confidence": 1
- },
- {
- "start": 166.18,
- "end": 166.47,
- "text": "it's",
- "confidence": 0.9993
- },
- {
- "start": 166.47,
- "end": 166.8,
- "text": "too",
- "confidence": 0.8613
- },
- {
- "start": 166.8,
- "end": 167.61,
- "text": "inhumane.",
- "confidence": 1
- }
- ],
- "start": 159.21
- },
- "entityRanges": [
- {
- "start": 159.21,
- "end": 159.5,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 159.51,
- "end": 159.67,
- "confidence": 1,
- "text": "the",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 159.67,
- "end": 160.13,
- "confidence": 1,
- "text": "colonel,",
- "offset": 8,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 160.13,
- "end": 160.34,
- "confidence": 0.6836,
- "text": "whose",
- "offset": 17,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 160.34,
- "end": 160.45,
- "confidence": 1,
- "text": "in",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 160.45,
- "end": 160.93,
- "confidence": 1,
- "text": "charge",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 160.93,
- "end": 161.02,
- "confidence": 1,
- "text": "of",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 161.02,
- "end": 161.18,
- "confidence": 0.999,
- "text": "this",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 161.19,
- "end": 161.67,
- "confidence": 1,
- "text": "testing",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 161.67,
- "end": 162.72,
- "confidence": 0.9448,
- "text": "exercise",
- "offset": 49,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 163.05,
- "end": 163.26,
- "confidence": 0.9938,
- "text": "ends",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 163.26,
- "end": 163.36,
- "confidence": 1,
- "text": "up",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 163.36,
- "end": 163.8,
- "confidence": 1,
- "text": "calling",
- "offset": 66,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 163.8,
- "end": 163.9,
- "confidence": 1,
- "text": "it",
- "offset": 74,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 163.9,
- "end": 164.38,
- "confidence": 1,
- "text": "off",
- "offset": 77,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 165.17,
- "end": 165.58,
- "confidence": 1,
- "text": "because",
- "offset": 81,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 165.58,
- "end": 165.73,
- "confidence": 1,
- "text": "he",
- "offset": 89,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 165.73,
- "end": 166.17,
- "confidence": 1,
- "text": "says",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 166.18,
- "end": 166.47,
- "confidence": 0.9993,
- "text": "it's",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 166.47,
- "end": 166.8,
- "confidence": 0.8613,
- "text": "too",
- "offset": 102,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 166.8,
- "end": 167.61,
- "confidence": 1,
- "text": "inhumane.",
- "offset": 106,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Toe watch this damage of robot drag itself along the minefield.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 23",
- "words": [
- {
- "start": 167.62,
- "end": 167.84,
- "text": "Toe",
- "confidence": 0.427
- },
- {
- "start": 167.84,
- "end": 168.36,
- "text": "watch",
- "confidence": 1
- },
- {
- "start": 168.36,
- "end": 168.55,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 168.55,
- "end": 169.01,
- "text": "damage",
- "confidence": 0.717
- },
- {
- "start": 169.01,
- "end": 169.1,
- "text": "of",
- "confidence": 0.3836
- },
- {
- "start": 169.11,
- "end": 169.61,
- "text": "robot",
- "confidence": 0.9978
- },
- {
- "start": 169.61,
- "end": 170.04,
- "text": "drag",
- "confidence": 0.9778
- },
- {
- "start": 170.04,
- "end": 170.44,
- "text": "itself",
- "confidence": 1
- },
- {
- "start": 170.44,
- "end": 170.94,
- "text": "along",
- "confidence": 0.9889
- },
- {
- "start": 171.32,
- "end": 171.42,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 171.42,
- "end": 172.15,
- "text": "minefield.",
- "confidence": 0.9696
- }
- ],
- "start": 167.62
- },
- "entityRanges": [
- {
- "start": 167.62,
- "end": 167.84,
- "confidence": 0.427,
- "text": "Toe",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 167.84,
- "end": 168.36,
- "confidence": 1,
- "text": "watch",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 168.36,
- "end": 168.55,
- "confidence": 1,
- "text": "this",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 168.55,
- "end": 169.01,
- "confidence": 0.717,
- "text": "damage",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 169.01,
- "end": 169.1,
- "confidence": 0.3836,
- "text": "of",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 169.11,
- "end": 169.61,
- "confidence": 0.9978,
- "text": "robot",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 169.61,
- "end": 170.04,
- "confidence": 0.9778,
- "text": "drag",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 170.04,
- "end": 170.44,
- "confidence": 1,
- "text": "itself",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 170.44,
- "end": 170.94,
- "confidence": 0.9889,
- "text": "along",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 171.32,
- "end": 171.42,
- "confidence": 1,
- "text": "the",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 171.42,
- "end": 172.15,
- "confidence": 0.9696,
- "text": "minefield.",
- "offset": 53,
- "length": 10,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Now what would cause ah hardened military officer and someone like myself to have this response to robots?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 24",
- "words": [
- {
- "start": 174.96,
- "end": 175.18,
- "text": "Now",
- "confidence": 1
- },
- {
- "start": 175.18,
- "end": 175.4,
- "text": "what",
- "confidence": 1
- },
- {
- "start": 175.4,
- "end": 175.53,
- "text": "would",
- "confidence": 1
- },
- {
- "start": 175.53,
- "end": 176.2,
- "text": "cause",
- "confidence": 1
- },
- {
- "start": 176.21,
- "end": 176.4,
- "text": "ah",
- "confidence": 0.806
- },
- {
- "start": 176.4,
- "end": 176.92,
- "text": "hardened",
- "confidence": 0.9867
- },
- {
- "start": 176.93,
- "end": 177.66,
- "text": "military",
- "confidence": 1
- },
- {
- "start": 177.66,
- "end": 178.53,
- "text": "officer",
- "confidence": 1
- },
- {
- "start": 178.83,
- "end": 179.08,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 179.08,
- "end": 179.43,
- "text": "someone",
- "confidence": 0.9968
- },
- {
- "start": 179.43,
- "end": 179.59,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 179.59,
- "end": 180.38,
- "text": "myself",
- "confidence": 1
- },
- {
- "start": 180.95,
- "end": 181.06,
- "text": "to",
- "confidence": 0.9983
- },
- {
- "start": 181.06,
- "end": 181.27,
- "text": "have",
- "confidence": 1
- },
- {
- "start": 181.27,
- "end": 181.44,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 181.44,
- "end": 181.92,
- "text": "response",
- "confidence": 0.9997
- },
- {
- "start": 181.92,
- "end": 182.05,
- "text": "to",
- "confidence": 0.986
- },
- {
- "start": 182.05,
- "end": 182.74,
- "text": "robots?",
- "confidence": 0.9997
- }
- ],
- "start": 174.96
- },
- "entityRanges": [
- {
- "start": 174.96,
- "end": 175.18,
- "confidence": 1,
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 175.18,
- "end": 175.4,
- "confidence": 1,
- "text": "what",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 175.4,
- "end": 175.53,
- "confidence": 1,
- "text": "would",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 175.53,
- "end": 176.2,
- "confidence": 1,
- "text": "cause",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 176.21,
- "end": 176.4,
- "confidence": 0.806,
- "text": "ah",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 176.4,
- "end": 176.92,
- "confidence": 0.9867,
- "text": "hardened",
- "offset": 24,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 176.93,
- "end": 177.66,
- "confidence": 1,
- "text": "military",
- "offset": 33,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 177.66,
- "end": 178.53,
- "confidence": 1,
- "text": "officer",
- "offset": 42,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 178.83,
- "end": 179.08,
- "confidence": 1,
- "text": "and",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 179.08,
- "end": 179.43,
- "confidence": 0.9968,
- "text": "someone",
- "offset": 54,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 179.43,
- "end": 179.59,
- "confidence": 1,
- "text": "like",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 179.59,
- "end": 180.38,
- "confidence": 1,
- "text": "myself",
- "offset": 67,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 180.95,
- "end": 181.06,
- "confidence": 0.9983,
- "text": "to",
- "offset": 74,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 181.06,
- "end": 181.27,
- "confidence": 1,
- "text": "have",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 181.27,
- "end": 181.44,
- "confidence": 1,
- "text": "this",
- "offset": 82,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 181.44,
- "end": 181.92,
- "confidence": 0.9997,
- "text": "response",
- "offset": 87,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 181.92,
- "end": 182.05,
- "confidence": 0.986,
- "text": "to",
- "offset": 96,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 182.05,
- "end": 182.74,
- "confidence": 0.9997,
- "text": "robots?",
- "offset": 99,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Well, of course, we're primed by science fiction and pop culture to really want to personify these things, but it goes a little bit deeper than that.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 25",
- "words": [
- {
- "start": 183.43,
- "end": 183.96,
- "text": "Well,",
- "confidence": 0.9983
- },
- {
- "start": 184.06,
- "end": 184.23,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 184.23,
- "end": 184.51,
- "text": "course,",
- "confidence": 1
- },
- {
- "start": 184.51,
- "end": 184.61,
- "text": "we're",
- "confidence": 0.9725
- },
- {
- "start": 184.61,
- "end": 185.2,
- "text": "primed",
- "confidence": 0.9986
- },
- {
- "start": 185.2,
- "end": 185.32,
- "text": "by",
- "confidence": 1
- },
- {
- "start": 185.32,
- "end": 185.77,
- "text": "science",
- "confidence": 1
- },
- {
- "start": 185.77,
- "end": 186.01,
- "text": "fiction",
- "confidence": 1
- },
- {
- "start": 186.01,
- "end": 186.11,
- "text": "and",
- "confidence": 0.817
- },
- {
- "start": 186.11,
- "end": 186.42,
- "text": "pop",
- "confidence": 1
- },
- {
- "start": 186.42,
- "end": 186.86,
- "text": "culture",
- "confidence": 1
- },
- {
- "start": 186.86,
- "end": 186.96,
- "text": "to",
- "confidence": 0.8205
- },
- {
- "start": 186.96,
- "end": 187.18,
- "text": "really",
- "confidence": 0.981
- },
- {
- "start": 187.18,
- "end": 187.32,
- "text": "want",
- "confidence": 0.9826
- },
- {
- "start": 187.32,
- "end": 187.38,
- "text": "to",
- "confidence": 0.9832
- },
- {
- "start": 187.38,
- "end": 188.06,
- "text": "personify",
- "confidence": 1
- },
- {
- "start": 188.06,
- "end": 188.32,
- "text": "these",
- "confidence": 1
- },
- {
- "start": 188.32,
- "end": 188.98,
- "text": "things,",
- "confidence": 0.9999
- },
- {
- "start": 189.42,
- "end": 189.76,
- "text": "but",
- "confidence": 1
- },
- {
- "start": 189.77,
- "end": 189.88,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 189.88,
- "end": 190.06,
- "text": "goes",
- "confidence": 1
- },
- {
- "start": 190.06,
- "end": 190.13,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 190.13,
- "end": 190.33,
- "text": "little",
- "confidence": 1
- },
- {
- "start": 190.33,
- "end": 190.48,
- "text": "bit",
- "confidence": 1
- },
- {
- "start": 190.48,
- "end": 190.78,
- "text": "deeper",
- "confidence": 1
- },
- {
- "start": 190.78,
- "end": 190.92,
- "text": "than",
- "confidence": 1
- },
- {
- "start": 190.92,
- "end": 191.22,
- "text": "that.",
- "confidence": 1
- }
- ],
- "start": 183.43
- },
- "entityRanges": [
- {
- "start": 183.43,
- "end": 183.96,
- "confidence": 0.9983,
- "text": "Well,",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 184.06,
- "end": 184.23,
- "confidence": 1,
- "text": "of",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 184.23,
- "end": 184.51,
- "confidence": 1,
- "text": "course,",
- "offset": 9,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 184.51,
- "end": 184.61,
- "confidence": 0.9725,
- "text": "we're",
- "offset": 17,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 184.61,
- "end": 185.2,
- "confidence": 0.9986,
- "text": "primed",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 185.2,
- "end": 185.32,
- "confidence": 1,
- "text": "by",
- "offset": 30,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 185.32,
- "end": 185.77,
- "confidence": 1,
- "text": "science",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 185.77,
- "end": 186.01,
- "confidence": 1,
- "text": "fiction",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 186.01,
- "end": 186.11,
- "confidence": 0.817,
- "text": "and",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 186.11,
- "end": 186.42,
- "confidence": 1,
- "text": "pop",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 186.42,
- "end": 186.86,
- "confidence": 1,
- "text": "culture",
- "offset": 57,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 186.86,
- "end": 186.96,
- "confidence": 0.8205,
- "text": "to",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 186.96,
- "end": 187.18,
- "confidence": 0.981,
- "text": "really",
- "offset": 68,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 187.18,
- "end": 187.32,
- "confidence": 0.9826,
- "text": "want",
- "offset": 75,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 187.32,
- "end": 187.38,
- "confidence": 0.9832,
- "text": "to",
- "offset": 80,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 187.38,
- "end": 188.06,
- "confidence": 1,
- "text": "personify",
- "offset": 83,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 188.06,
- "end": 188.32,
- "confidence": 1,
- "text": "these",
- "offset": 93,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 188.32,
- "end": 188.98,
- "confidence": 0.9999,
- "text": "things,",
- "offset": 99,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 189.42,
- "end": 189.76,
- "confidence": 1,
- "text": "but",
- "offset": 107,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 189.77,
- "end": 189.88,
- "confidence": 1,
- "text": "it",
- "offset": 111,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 189.88,
- "end": 190.06,
- "confidence": 1,
- "text": "goes",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 190.06,
- "end": 190.13,
- "confidence": 1,
- "text": "a",
- "offset": 119,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 190.13,
- "end": 190.33,
- "confidence": 1,
- "text": "little",
- "offset": 121,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 190.33,
- "end": 190.48,
- "confidence": 1,
- "text": "bit",
- "offset": 128,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 190.48,
- "end": 190.78,
- "confidence": 1,
- "text": "deeper",
- "offset": 132,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 190.78,
- "end": 190.92,
- "confidence": 1,
- "text": "than",
- "offset": 139,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 190.92,
- "end": 191.22,
- "confidence": 1,
- "text": "that.",
- "offset": 144,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It turns out that we're biologically hardwired to project intent and life onto any movement in our physical space.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 26",
- "words": [
- {
- "start": 192.24,
- "end": 192.36,
- "text": "It",
- "confidence": 1
- },
- {
- "start": 192.37,
- "end": 192.68,
- "text": "turns",
- "confidence": 1
- },
- {
- "start": 192.68,
- "end": 192.81,
- "text": "out",
- "confidence": 1
- },
- {
- "start": 192.81,
- "end": 192.93,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 192.93,
- "end": 193.09,
- "text": "we're",
- "confidence": 0.9627
- },
- {
- "start": 193.09,
- "end": 193.94,
- "text": "biologically",
- "confidence": 1
- },
- {
- "start": 193.94,
- "end": 194.93,
- "text": "hardwired",
- "confidence": 0.9469
- },
- {
- "start": 194.94,
- "end": 195.09,
- "text": "to",
- "confidence": 0.9987
- },
- {
- "start": 195.09,
- "end": 195.84,
- "text": "project",
- "confidence": 1
- },
- {
- "start": 196.09,
- "end": 196.88,
- "text": "intent",
- "confidence": 1
- },
- {
- "start": 196.89,
- "end": 197.17,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 197.17,
- "end": 197.62,
- "text": "life",
- "confidence": 1
- },
- {
- "start": 197.63,
- "end": 198.27,
- "text": "onto",
- "confidence": 0.9464
- },
- {
- "start": 198.57,
- "end": 198.79,
- "text": "any",
- "confidence": 1
- },
- {
- "start": 198.79,
- "end": 199.37,
- "text": "movement",
- "confidence": 1
- },
- {
- "start": 199.37,
- "end": 199.47,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 199.47,
- "end": 199.59,
- "text": "our",
- "confidence": 1
- },
- {
- "start": 199.59,
- "end": 200.12,
- "text": "physical",
- "confidence": 1
- },
- {
- "start": 200.12,
- "end": 200.51,
- "text": "space.",
- "confidence": 1
- }
- ],
- "start": 192.24
- },
- "entityRanges": [
- {
- "start": 192.24,
- "end": 192.36,
- "confidence": 1,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 192.37,
- "end": 192.68,
- "confidence": 1,
- "text": "turns",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 192.68,
- "end": 192.81,
- "confidence": 1,
- "text": "out",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 192.81,
- "end": 192.93,
- "confidence": 1,
- "text": "that",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 192.93,
- "end": 193.09,
- "confidence": 0.9627,
- "text": "we're",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 193.09,
- "end": 193.94,
- "confidence": 1,
- "text": "biologically",
- "offset": 24,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 193.94,
- "end": 194.93,
- "confidence": 0.9469,
- "text": "hardwired",
- "offset": 37,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 194.94,
- "end": 195.09,
- "confidence": 0.9987,
- "text": "to",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 195.09,
- "end": 195.84,
- "confidence": 1,
- "text": "project",
- "offset": 50,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 196.09,
- "end": 196.88,
- "confidence": 1,
- "text": "intent",
- "offset": 58,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 196.89,
- "end": 197.17,
- "confidence": 1,
- "text": "and",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 197.17,
- "end": 197.62,
- "confidence": 1,
- "text": "life",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 197.63,
- "end": 198.27,
- "confidence": 0.9464,
- "text": "onto",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 198.57,
- "end": 198.79,
- "confidence": 1,
- "text": "any",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 198.79,
- "end": 199.37,
- "confidence": 1,
- "text": "movement",
- "offset": 83,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 199.37,
- "end": 199.47,
- "confidence": 1,
- "text": "in",
- "offset": 92,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 199.47,
- "end": 199.59,
- "confidence": 1,
- "text": "our",
- "offset": 95,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 199.59,
- "end": 200.12,
- "confidence": 1,
- "text": "physical",
- "offset": 99,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 200.12,
- "end": 200.51,
- "confidence": 1,
- "text": "space.",
- "offset": 108,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It seems autonomous to us, so people will treat all sorts of robots like they're alive.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 27",
- "words": [
- {
- "start": 200.51,
- "end": 200.65,
- "text": "It",
- "confidence": 0.8101
- },
- {
- "start": 200.65,
- "end": 201.14,
- "text": "seems",
- "confidence": 0.9945
- },
- {
- "start": 201.14,
- "end": 201.76,
- "text": "autonomous",
- "confidence": 1
- },
- {
- "start": 201.76,
- "end": 201.89,
- "text": "to",
- "confidence": 0.89
- },
- {
- "start": 201.9,
- "end": 202.38,
- "text": "us,",
- "confidence": 0.9357
- },
- {
- "start": 203.17,
- "end": 203.38,
- "text": "so",
- "confidence": 1
- },
- {
- "start": 203.38,
- "end": 203.63,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 203.63,
- "end": 203.75,
- "text": "will",
- "confidence": 1
- },
- {
- "start": 203.75,
- "end": 204,
- "text": "treat",
- "confidence": 1
- },
- {
- "start": 204.01,
- "end": 204.2,
- "text": "all",
- "confidence": 1
- },
- {
- "start": 204.2,
- "end": 204.46,
- "text": "sorts",
- "confidence": 1
- },
- {
- "start": 204.46,
- "end": 204.57,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 204.57,
- "end": 204.94,
- "text": "robots",
- "confidence": 0.9988
- },
- {
- "start": 204.94,
- "end": 205.09,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 205.1,
- "end": 205.26,
- "text": "they're",
- "confidence": 0.9887
- },
- {
- "start": 205.26,
- "end": 205.87,
- "text": "alive.",
- "confidence": 1
- }
- ],
- "start": 200.51
- },
- "entityRanges": [
- {
- "start": 200.51,
- "end": 200.65,
- "confidence": 0.8101,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 200.65,
- "end": 201.14,
- "confidence": 0.9945,
- "text": "seems",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 201.14,
- "end": 201.76,
- "confidence": 1,
- "text": "autonomous",
- "offset": 9,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 201.76,
- "end": 201.89,
- "confidence": 0.89,
- "text": "to",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 201.9,
- "end": 202.38,
- "confidence": 0.9357,
- "text": "us,",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 203.17,
- "end": 203.38,
- "confidence": 1,
- "text": "so",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 203.38,
- "end": 203.63,
- "confidence": 1,
- "text": "people",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 203.63,
- "end": 203.75,
- "confidence": 1,
- "text": "will",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 203.75,
- "end": 204,
- "confidence": 1,
- "text": "treat",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 204.01,
- "end": 204.2,
- "confidence": 1,
- "text": "all",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 204.2,
- "end": 204.46,
- "confidence": 1,
- "text": "sorts",
- "offset": 52,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 204.46,
- "end": 204.57,
- "confidence": 1,
- "text": "of",
- "offset": 58,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 204.57,
- "end": 204.94,
- "confidence": 0.9988,
- "text": "robots",
- "offset": 61,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 204.94,
- "end": 205.09,
- "confidence": 1,
- "text": "like",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 205.1,
- "end": 205.26,
- "confidence": 0.9887,
- "text": "they're",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 205.26,
- "end": 205.87,
- "confidence": 1,
- "text": "alive.",
- "offset": 81,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "The's bomb disposal units get names.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 28",
- "words": [
- {
- "start": 206.67,
- "end": 206.92,
- "text": "The's",
- "confidence": 0.5301
- },
- {
- "start": 206.92,
- "end": 207.24,
- "text": "bomb",
- "confidence": 1
- },
- {
- "start": 207.24,
- "end": 208.01,
- "text": "disposal",
- "confidence": 1
- },
- {
- "start": 208.02,
- "end": 208.57,
- "text": "units",
- "confidence": 0.9883
- },
- {
- "start": 208.57,
- "end": 208.76,
- "text": "get",
- "confidence": 0.9981
- },
- {
- "start": 208.76,
- "end": 209.39,
- "text": "names.",
- "confidence": 0.9946
- }
- ],
- "start": 206.67
- },
- "entityRanges": [
- {
- "start": 206.67,
- "end": 206.92,
- "confidence": 0.5301,
- "text": "The's",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 206.92,
- "end": 207.24,
- "confidence": 1,
- "text": "bomb",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 207.24,
- "end": 208.01,
- "confidence": 1,
- "text": "disposal",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 208.02,
- "end": 208.57,
- "confidence": 0.9883,
- "text": "units",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 208.57,
- "end": 208.76,
- "confidence": 0.9981,
- "text": "get",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 208.76,
- "end": 209.39,
- "confidence": 0.9946,
- "text": "names.",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "They get medals of honor.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 29",
- "words": [
- {
- "start": 209.4,
- "end": 209.53,
- "text": "They",
- "confidence": 0.9979
- },
- {
- "start": 209.53,
- "end": 209.72,
- "text": "get",
- "confidence": 0.9951
- },
- {
- "start": 209.72,
- "end": 210.16,
- "text": "medals",
- "confidence": 1
- },
- {
- "start": 210.16,
- "end": 210.27,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 210.27,
- "end": 210.77,
- "text": "honor.",
- "confidence": 1
- }
- ],
- "start": 209.4
- },
- "entityRanges": [
- {
- "start": 209.4,
- "end": 209.53,
- "confidence": 0.9979,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 209.53,
- "end": 209.72,
- "confidence": 0.9951,
- "text": "get",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 209.72,
- "end": 210.16,
- "confidence": 1,
- "text": "medals",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 210.16,
- "end": 210.27,
- "confidence": 1,
- "text": "of",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 210.27,
- "end": 210.77,
- "confidence": 1,
- "text": "honor.",
- "offset": 19,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "They've had funerals for them with gun salutes.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 30",
- "words": [
- {
- "start": 211.09,
- "end": 211.26,
- "text": "They've",
- "confidence": 0.9929
- },
- {
- "start": 211.26,
- "end": 211.4,
- "text": "had",
- "confidence": 1
- },
- {
- "start": 211.4,
- "end": 212.03,
- "text": "funerals",
- "confidence": 0.9883
- },
- {
- "start": 212.03,
- "end": 212.17,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 212.17,
- "end": 212.34,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 212.34,
- "end": 212.51,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 212.52,
- "end": 212.79,
- "text": "gun",
- "confidence": 0.9998
- },
- {
- "start": 212.79,
- "end": 213.42,
- "text": "salutes.",
- "confidence": 1
- }
- ],
- "start": 211.09
- },
- "entityRanges": [
- {
- "start": 211.09,
- "end": 211.26,
- "confidence": 0.9929,
- "text": "They've",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 211.26,
- "end": 211.4,
- "confidence": 1,
- "text": "had",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 211.4,
- "end": 212.03,
- "confidence": 0.9883,
- "text": "funerals",
- "offset": 12,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 212.03,
- "end": 212.17,
- "confidence": 1,
- "text": "for",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 212.17,
- "end": 212.34,
- "confidence": 1,
- "text": "them",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 212.34,
- "end": 212.51,
- "confidence": 1,
- "text": "with",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 212.52,
- "end": 212.79,
- "confidence": 0.9998,
- "text": "gun",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 212.79,
- "end": 213.42,
- "confidence": 1,
- "text": "salutes.",
- "offset": 39,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And research shows that we do this even with very simple household robots like the Roomba vacuum cleaner, just a disc that roams around your floor to clean it, which is the fact that it's moving around on his own will cause people to name the Roomba and feel bad for the room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 31",
- "words": [
- {
- "start": 214.34,
- "end": 214.63,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 214.94,
- "end": 215.37,
- "text": "research",
- "confidence": 0.9994
- },
- {
- "start": 215.37,
- "end": 215.57,
- "text": "shows",
- "confidence": 0.9994
- },
- {
- "start": 215.57,
- "end": 215.66,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 215.66,
- "end": 215.75,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 215.75,
- "end": 215.88,
- "text": "do",
- "confidence": 1
- },
- {
- "start": 215.88,
- "end": 216.05,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 216.06,
- "end": 216.32,
- "text": "even",
- "confidence": 1
- },
- {
- "start": 216.32,
- "end": 216.44,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 216.44,
- "end": 216.79,
- "text": "very",
- "confidence": 1
- },
- {
- "start": 216.79,
- "end": 217.18,
- "text": "simple",
- "confidence": 1
- },
- {
- "start": 217.18,
- "end": 217.76,
- "text": "household",
- "confidence": 1
- },
- {
- "start": 217.76,
- "end": 218.26,
- "text": "robots",
- "confidence": 1
- },
- {
- "start": 218.26,
- "end": 218.6,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 218.83,
- "end": 218.98,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 218.98,
- "end": 219.4,
- "text": "Roomba",
- "confidence": 1
- },
- {
- "start": 219.4,
- "end": 219.85,
- "text": "vacuum",
- "confidence": 0.9862
- },
- {
- "start": 219.85,
- "end": 220.3,
- "text": "cleaner,",
- "confidence": 1
- },
- {
- "start": 221.67,
- "end": 221.94,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 221.94,
- "end": 222.04,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 222.05,
- "end": 222.51,
- "text": "disc",
- "confidence": 0.8297
- },
- {
- "start": 222.51,
- "end": 222.72,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 222.72,
- "end": 222.97,
- "text": "roams",
- "confidence": 0.9986
- },
- {
- "start": 222.97,
- "end": 223.24,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 223.24,
- "end": 223.37,
- "text": "your",
- "confidence": 0.9598
- },
- {
- "start": 223.37,
- "end": 223.77,
- "text": "floor",
- "confidence": 1
- },
- {
- "start": 223.77,
- "end": 223.86,
- "text": "to",
- "confidence": 0.977
- },
- {
- "start": 223.86,
- "end": 224.22,
- "text": "clean",
- "confidence": 1
- },
- {
- "start": 224.22,
- "end": 224.46,
- "text": "it,",
- "confidence": 1
- },
- {
- "start": 224.71,
- "end": 224.9,
- "text": "which",
- "confidence": 1
- },
- {
- "start": 224.9,
- "end": 225,
- "text": "is",
- "confidence": 0.9977
- },
- {
- "start": 225,
- "end": 225.1,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 225.1,
- "end": 225.43,
- "text": "fact",
- "confidence": 1
- },
- {
- "start": 225.43,
- "end": 225.56,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 225.56,
- "end": 225.72,
- "text": "it's",
- "confidence": 0.9935
- },
- {
- "start": 225.72,
- "end": 226.22,
- "text": "moving",
- "confidence": 1
- },
- {
- "start": 226.22,
- "end": 226.55,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 226.55,
- "end": 226.65,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 226.65,
- "end": 226.78,
- "text": "his",
- "confidence": 1
- },
- {
- "start": 226.78,
- "end": 227.1,
- "text": "own",
- "confidence": 1
- },
- {
- "start": 227.1,
- "end": 227.22,
- "text": "will",
- "confidence": 0.9723
- },
- {
- "start": 227.22,
- "end": 227.54,
- "text": "cause",
- "confidence": 1
- },
- {
- "start": 227.54,
- "end": 227.79,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 227.79,
- "end": 227.97,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 227.97,
- "end": 228.4,
- "text": "name",
- "confidence": 1
- },
- {
- "start": 228.4,
- "end": 228.49,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 228.49,
- "end": 229.02,
- "text": "Roomba",
- "confidence": 0.9994
- },
- {
- "start": 229.25,
- "end": 229.49,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 229.49,
- "end": 229.7,
- "text": "feel",
- "confidence": 1
- },
- {
- "start": 229.7,
- "end": 230.12,
- "text": "bad",
- "confidence": 1
- },
- {
- "start": 230.12,
- "end": 230.28,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 230.28,
- "end": 230.4,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 230.4,
- "end": 230.61,
- "text": "room.",
- "confidence": 1
- }
- ],
- "start": 214.34
- },
- "entityRanges": [
- {
- "start": 214.34,
- "end": 214.63,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 214.94,
- "end": 215.37,
- "confidence": 0.9994,
- "text": "research",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 215.37,
- "end": 215.57,
- "confidence": 0.9994,
- "text": "shows",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 215.57,
- "end": 215.66,
- "confidence": 1,
- "text": "that",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 215.66,
- "end": 215.75,
- "confidence": 1,
- "text": "we",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 215.75,
- "end": 215.88,
- "confidence": 1,
- "text": "do",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 215.88,
- "end": 216.05,
- "confidence": 1,
- "text": "this",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 216.06,
- "end": 216.32,
- "confidence": 1,
- "text": "even",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 216.32,
- "end": 216.44,
- "confidence": 1,
- "text": "with",
- "offset": 40,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 216.44,
- "end": 216.79,
- "confidence": 1,
- "text": "very",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 216.79,
- "end": 217.18,
- "confidence": 1,
- "text": "simple",
- "offset": 50,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 217.18,
- "end": 217.76,
- "confidence": 1,
- "text": "household",
- "offset": 57,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 217.76,
- "end": 218.26,
- "confidence": 1,
- "text": "robots",
- "offset": 67,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 218.26,
- "end": 218.6,
- "confidence": 1,
- "text": "like",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 218.83,
- "end": 218.98,
- "confidence": 1,
- "text": "the",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 218.98,
- "end": 219.4,
- "confidence": 1,
- "text": "Roomba",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 219.4,
- "end": 219.85,
- "confidence": 0.9862,
- "text": "vacuum",
- "offset": 90,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 219.85,
- "end": 220.3,
- "confidence": 1,
- "text": "cleaner,",
- "offset": 97,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 221.67,
- "end": 221.94,
- "confidence": 1,
- "text": "just",
- "offset": 106,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 221.94,
- "end": 222.04,
- "confidence": 1,
- "text": "a",
- "offset": 111,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 222.05,
- "end": 222.51,
- "confidence": 0.8297,
- "text": "disc",
- "offset": 113,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 222.51,
- "end": 222.72,
- "confidence": 1,
- "text": "that",
- "offset": 118,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 222.72,
- "end": 222.97,
- "confidence": 0.9986,
- "text": "roams",
- "offset": 123,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 222.97,
- "end": 223.24,
- "confidence": 1,
- "text": "around",
- "offset": 129,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 223.24,
- "end": 223.37,
- "confidence": 0.9598,
- "text": "your",
- "offset": 136,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 223.37,
- "end": 223.77,
- "confidence": 1,
- "text": "floor",
- "offset": 141,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 223.77,
- "end": 223.86,
- "confidence": 0.977,
- "text": "to",
- "offset": 147,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 223.86,
- "end": 224.22,
- "confidence": 1,
- "text": "clean",
- "offset": 150,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 224.22,
- "end": 224.46,
- "confidence": 1,
- "text": "it,",
- "offset": 156,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 224.71,
- "end": 224.9,
- "confidence": 1,
- "text": "which",
- "offset": 160,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 224.9,
- "end": 225,
- "confidence": 0.9977,
- "text": "is",
- "offset": 166,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 225,
- "end": 225.1,
- "confidence": 1,
- "text": "the",
- "offset": 169,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 225.1,
- "end": 225.43,
- "confidence": 1,
- "text": "fact",
- "offset": 173,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 225.43,
- "end": 225.56,
- "confidence": 1,
- "text": "that",
- "offset": 178,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 225.56,
- "end": 225.72,
- "confidence": 0.9935,
- "text": "it's",
- "offset": 183,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 225.72,
- "end": 226.22,
- "confidence": 1,
- "text": "moving",
- "offset": 188,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 226.22,
- "end": 226.55,
- "confidence": 1,
- "text": "around",
- "offset": 195,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 226.55,
- "end": 226.65,
- "confidence": 1,
- "text": "on",
- "offset": 202,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 226.65,
- "end": 226.78,
- "confidence": 1,
- "text": "his",
- "offset": 205,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 226.78,
- "end": 227.1,
- "confidence": 1,
- "text": "own",
- "offset": 209,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 227.1,
- "end": 227.22,
- "confidence": 0.9723,
- "text": "will",
- "offset": 213,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 227.22,
- "end": 227.54,
- "confidence": 1,
- "text": "cause",
- "offset": 218,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 227.54,
- "end": 227.79,
- "confidence": 1,
- "text": "people",
- "offset": 224,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 227.79,
- "end": 227.97,
- "confidence": 1,
- "text": "to",
- "offset": 231,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 227.97,
- "end": 228.4,
- "confidence": 1,
- "text": "name",
- "offset": 234,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 228.4,
- "end": 228.49,
- "confidence": 1,
- "text": "the",
- "offset": 239,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 228.49,
- "end": 229.02,
- "confidence": 0.9994,
- "text": "Roomba",
- "offset": 243,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 229.25,
- "end": 229.49,
- "confidence": 1,
- "text": "and",
- "offset": 250,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 229.49,
- "end": 229.7,
- "confidence": 1,
- "text": "feel",
- "offset": 254,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 229.7,
- "end": 230.12,
- "confidence": 1,
- "text": "bad",
- "offset": 259,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 230.12,
- "end": 230.28,
- "confidence": 1,
- "text": "for",
- "offset": 263,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 230.28,
- "end": 230.4,
- "confidence": 1,
- "text": "the",
- "offset": 267,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 230.4,
- "end": 230.61,
- "confidence": 1,
- "text": "room.",
- "offset": 271,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But when I get stuck under the couch and we can design robots specifically to evoke this response, using eyes and faces or movement, it's the people automatically subconsciously associate with states of mind.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 32",
- "words": [
- {
- "start": 230.61,
- "end": 230.76,
- "text": "But",
- "confidence": 0.9956
- },
- {
- "start": 230.76,
- "end": 230.86,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 230.86,
- "end": 230.9,
- "text": "I",
- "confidence": 0.6251
- },
- {
- "start": 230.9,
- "end": 231.08,
- "text": "get",
- "confidence": 0.6826
- },
- {
- "start": 231.08,
- "end": 231.44,
- "text": "stuck",
- "confidence": 1
- },
- {
- "start": 231.44,
- "end": 231.6,
- "text": "under",
- "confidence": 1
- },
- {
- "start": 231.6,
- "end": 231.73,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 231.73,
- "end": 232.48,
- "text": "couch",
- "confidence": 1
- },
- {
- "start": 234.37,
- "end": 234.6,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 234.6,
- "end": 234.72,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 234.72,
- "end": 234.84,
- "text": "can",
- "confidence": 0.9964
- },
- {
- "start": 234.84,
- "end": 235.31,
- "text": "design",
- "confidence": 0.9999
- },
- {
- "start": 235.31,
- "end": 235.7,
- "text": "robots",
- "confidence": 0.4999
- },
- {
- "start": 235.7,
- "end": 236.48,
- "text": "specifically",
- "confidence": 1
- },
- {
- "start": 236.48,
- "end": 236.65,
- "text": "to",
- "confidence": 0.997
- },
- {
- "start": 236.65,
- "end": 237,
- "text": "evoke",
- "confidence": 0.9897
- },
- {
- "start": 237,
- "end": 237.2,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 237.2,
- "end": 237.78,
- "text": "response,",
- "confidence": 0.9971
- },
- {
- "start": 237.78,
- "end": 238.13,
- "text": "using",
- "confidence": 1
- },
- {
- "start": 238.18,
- "end": 238.93,
- "text": "eyes",
- "confidence": 0.988
- },
- {
- "start": 239.1,
- "end": 239.38,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 239.38,
- "end": 240.25,
- "text": "faces",
- "confidence": 1
- },
- {
- "start": 240.26,
- "end": 240.62,
- "text": "or",
- "confidence": 1
- },
- {
- "start": 240.62,
- "end": 241.2,
- "text": "movement,",
- "confidence": 0.9768
- },
- {
- "start": 241.212,
- "end": 241.302,
- "text": "it's",
- "confidence": 0.6778
- },
- {
- "start": 241.302,
- "end": 241.372,
- "text": "the",
- "confidence": 0.8439
- },
- {
- "start": 241.372,
- "end": 241.702,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 241.712,
- "end": 242.522,
- "text": "automatically",
- "confidence": 1
- },
- {
- "start": 242.522,
- "end": 243.462,
- "text": "subconsciously",
- "confidence": 1
- },
- {
- "start": 243.462,
- "end": 244.352,
- "text": "associate",
- "confidence": 1
- },
- {
- "start": 244.482,
- "end": 244.732,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 244.732,
- "end": 245.082,
- "text": "states",
- "confidence": 1
- },
- {
- "start": 245.082,
- "end": 245.172,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 245.172,
- "end": 245.802,
- "text": "mind.",
- "confidence": 1
- }
- ],
- "start": 230.61
- },
- "entityRanges": [
- {
- "start": 230.61,
- "end": 230.76,
- "confidence": 0.9956,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 230.76,
- "end": 230.86,
- "confidence": 1,
- "text": "when",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 230.86,
- "end": 230.9,
- "confidence": 0.6251,
- "text": "I",
- "offset": 9,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 230.9,
- "end": 231.08,
- "confidence": 0.6826,
- "text": "get",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 231.08,
- "end": 231.44,
- "confidence": 1,
- "text": "stuck",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 231.44,
- "end": 231.6,
- "confidence": 1,
- "text": "under",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 231.6,
- "end": 231.73,
- "confidence": 1,
- "text": "the",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 231.73,
- "end": 232.48,
- "confidence": 1,
- "text": "couch",
- "offset": 31,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 234.37,
- "end": 234.6,
- "confidence": 1,
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 234.6,
- "end": 234.72,
- "confidence": 1,
- "text": "we",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 234.72,
- "end": 234.84,
- "confidence": 0.9964,
- "text": "can",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 234.84,
- "end": 235.31,
- "confidence": 0.9999,
- "text": "design",
- "offset": 48,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 235.31,
- "end": 235.7,
- "confidence": 0.4999,
- "text": "robots",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 235.7,
- "end": 236.48,
- "confidence": 1,
- "text": "specifically",
- "offset": 62,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 236.48,
- "end": 236.65,
- "confidence": 0.997,
- "text": "to",
- "offset": 75,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 236.65,
- "end": 237,
- "confidence": 0.9897,
- "text": "evoke",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 237,
- "end": 237.2,
- "confidence": 1,
- "text": "this",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 237.2,
- "end": 237.78,
- "confidence": 0.9971,
- "text": "response,",
- "offset": 89,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 237.78,
- "end": 238.13,
- "confidence": 1,
- "text": "using",
- "offset": 99,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 238.18,
- "end": 238.93,
- "confidence": 0.988,
- "text": "eyes",
- "offset": 105,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 239.1,
- "end": 239.38,
- "confidence": 1,
- "text": "and",
- "offset": 110,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 239.38,
- "end": 240.25,
- "confidence": 1,
- "text": "faces",
- "offset": 114,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 240.26,
- "end": 240.62,
- "confidence": 1,
- "text": "or",
- "offset": 120,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 240.62,
- "end": 241.2,
- "confidence": 0.9768,
- "text": "movement,",
- "offset": 123,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 241.212,
- "end": 241.302,
- "confidence": 0.6778,
- "text": "it's",
- "offset": 133,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 241.302,
- "end": 241.372,
- "confidence": 0.8439,
- "text": "the",
- "offset": 138,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 241.372,
- "end": 241.702,
- "confidence": 1,
- "text": "people",
- "offset": 142,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 241.712,
- "end": 242.522,
- "confidence": 1,
- "text": "automatically",
- "offset": 149,
- "length": 13,
- "key": expect.any(String)
- },
- {
- "start": 242.522,
- "end": 243.462,
- "confidence": 1,
- "text": "subconsciously",
- "offset": 163,
- "length": 14,
- "key": expect.any(String)
- },
- {
- "start": 243.462,
- "end": 244.352,
- "confidence": 1,
- "text": "associate",
- "offset": 178,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 244.482,
- "end": 244.732,
- "confidence": 1,
- "text": "with",
- "offset": 188,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 244.732,
- "end": 245.082,
- "confidence": 1,
- "text": "states",
- "offset": 193,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 245.082,
- "end": 245.172,
- "confidence": 1,
- "text": "of",
- "offset": 200,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 245.172,
- "end": 245.802,
- "confidence": 1,
- "text": "mind.",
- "offset": 203,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And there's an entire body of research called human robot interaction that really shows how well this works.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 33",
- "words": [
- {
- "start": 246.582,
- "end": 246.712,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 246.712,
- "end": 246.862,
- "text": "there's",
- "confidence": 1
- },
- {
- "start": 246.862,
- "end": 246.962,
- "text": "an",
- "confidence": 1
- },
- {
- "start": 246.962,
- "end": 247.352,
- "text": "entire",
- "confidence": 1
- },
- {
- "start": 247.352,
- "end": 247.572,
- "text": "body",
- "confidence": 1
- },
- {
- "start": 247.572,
- "end": 247.692,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 247.692,
- "end": 248.112,
- "text": "research",
- "confidence": 1
- },
- {
- "start": 248.112,
- "end": 248.312,
- "text": "called",
- "confidence": 0.9983
- },
- {
- "start": 248.312,
- "end": 248.582,
- "text": "human",
- "confidence": 1
- },
- {
- "start": 248.582,
- "end": 248.852,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 248.852,
- "end": 249.352,
- "text": "interaction",
- "confidence": 1
- },
- {
- "start": 249.352,
- "end": 249.582,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 249.642,
- "end": 249.912,
- "text": "really",
- "confidence": 0.9895
- },
- {
- "start": 249.912,
- "end": 250.392,
- "text": "shows",
- "confidence": 1
- },
- {
- "start": 250.392,
- "end": 250.532,
- "text": "how",
- "confidence": 1
- },
- {
- "start": 250.532,
- "end": 250.692,
- "text": "well",
- "confidence": 1
- },
- {
- "start": 250.692,
- "end": 250.872,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 250.872,
- "end": 251.362,
- "text": "works.",
- "confidence": 1
- }
- ],
- "start": 246.582
- },
- "entityRanges": [
- {
- "start": 246.582,
- "end": 246.712,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 246.712,
- "end": 246.862,
- "confidence": 1,
- "text": "there's",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 246.862,
- "end": 246.962,
- "confidence": 1,
- "text": "an",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 246.962,
- "end": 247.352,
- "confidence": 1,
- "text": "entire",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 247.352,
- "end": 247.572,
- "confidence": 1,
- "text": "body",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 247.572,
- "end": 247.692,
- "confidence": 1,
- "text": "of",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 247.692,
- "end": 248.112,
- "confidence": 1,
- "text": "research",
- "offset": 30,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 248.112,
- "end": 248.312,
- "confidence": 0.9983,
- "text": "called",
- "offset": 39,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 248.312,
- "end": 248.582,
- "confidence": 1,
- "text": "human",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 248.582,
- "end": 248.852,
- "confidence": 1,
- "text": "robot",
- "offset": 52,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 248.852,
- "end": 249.352,
- "confidence": 1,
- "text": "interaction",
- "offset": 58,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 249.352,
- "end": 249.582,
- "confidence": 1,
- "text": "that",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 249.642,
- "end": 249.912,
- "confidence": 0.9895,
- "text": "really",
- "offset": 75,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 249.912,
- "end": 250.392,
- "confidence": 1,
- "text": "shows",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 250.392,
- "end": 250.532,
- "confidence": 1,
- "text": "how",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 250.532,
- "end": 250.692,
- "confidence": 1,
- "text": "well",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 250.692,
- "end": 250.872,
- "confidence": 1,
- "text": "this",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 250.872,
- "end": 251.362,
- "confidence": 1,
- "text": "works.",
- "offset": 102,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So, for example, researchers at Stanford University found out that it makes people really uncomfortable when you ask them to touch and robots private parts.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 34",
- "words": [
- {
- "start": 251.632,
- "end": 251.862,
- "text": "So,",
- "confidence": 1
- },
- {
- "start": 251.862,
- "end": 252.012,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 252.012,
- "end": 252.562,
- "text": "example,",
- "confidence": 1
- },
- {
- "start": 252.562,
- "end": 253.122,
- "text": "researchers",
- "confidence": 1
- },
- {
- "start": 253.122,
- "end": 253.272,
- "text": "at",
- "confidence": 1
- },
- {
- "start": 253.422,
- "end": 253.962,
- "text": "Stanford",
- "confidence": 1
- },
- {
- "start": 253.962,
- "end": 254.482,
- "text": "University",
- "confidence": 1
- },
- {
- "start": 254.482,
- "end": 254.762,
- "text": "found",
- "confidence": 1
- },
- {
- "start": 254.762,
- "end": 254.922,
- "text": "out",
- "confidence": 1
- },
- {
- "start": 254.922,
- "end": 255.032,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 255.032,
- "end": 255.092,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 255.092,
- "end": 255.302,
- "text": "makes",
- "confidence": 1
- },
- {
- "start": 255.302,
- "end": 255.652,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 255.652,
- "end": 255.912,
- "text": "really",
- "confidence": 0.9954
- },
- {
- "start": 255.912,
- "end": 256.572,
- "text": "uncomfortable",
- "confidence": 1
- },
- {
- "start": 256.572,
- "end": 256.672,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 256.672,
- "end": 256.762,
- "text": "you",
- "confidence": 0.9998
- },
- {
- "start": 256.772,
- "end": 257.042,
- "text": "ask",
- "confidence": 0.8517
- },
- {
- "start": 257.042,
- "end": 257.162,
- "text": "them",
- "confidence": 0.9996
- },
- {
- "start": 257.162,
- "end": 257.262,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 257.262,
- "end": 257.532,
- "text": "touch",
- "confidence": 0.9969
- },
- {
- "start": 257.532,
- "end": 257.632,
- "text": "and",
- "confidence": 0.8201
- },
- {
- "start": 257.632,
- "end": 257.942,
- "text": "robots",
- "confidence": 0.8984
- },
- {
- "start": 257.942,
- "end": 258.372,
- "text": "private",
- "confidence": 1
- },
- {
- "start": 258.372,
- "end": 258.962,
- "text": "parts.",
- "confidence": 1
- }
- ],
- "start": 251.632
- },
- "entityRanges": [
- {
- "start": 251.632,
- "end": 251.862,
- "confidence": 1,
- "text": "So,",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 251.862,
- "end": 252.012,
- "confidence": 1,
- "text": "for",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 252.012,
- "end": 252.562,
- "confidence": 1,
- "text": "example,",
- "offset": 8,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 252.562,
- "end": 253.122,
- "confidence": 1,
- "text": "researchers",
- "offset": 17,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 253.122,
- "end": 253.272,
- "confidence": 1,
- "text": "at",
- "offset": 29,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 253.422,
- "end": 253.962,
- "confidence": 1,
- "text": "Stanford",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 253.962,
- "end": 254.482,
- "confidence": 1,
- "text": "University",
- "offset": 41,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 254.482,
- "end": 254.762,
- "confidence": 1,
- "text": "found",
- "offset": 52,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 254.762,
- "end": 254.922,
- "confidence": 1,
- "text": "out",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 254.922,
- "end": 255.032,
- "confidence": 1,
- "text": "that",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 255.032,
- "end": 255.092,
- "confidence": 1,
- "text": "it",
- "offset": 67,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 255.092,
- "end": 255.302,
- "confidence": 1,
- "text": "makes",
- "offset": 70,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 255.302,
- "end": 255.652,
- "confidence": 1,
- "text": "people",
- "offset": 76,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 255.652,
- "end": 255.912,
- "confidence": 0.9954,
- "text": "really",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 255.912,
- "end": 256.572,
- "confidence": 1,
- "text": "uncomfortable",
- "offset": 90,
- "length": 13,
- "key": expect.any(String)
- },
- {
- "start": 256.572,
- "end": 256.672,
- "confidence": 1,
- "text": "when",
- "offset": 104,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 256.672,
- "end": 256.762,
- "confidence": 0.9998,
- "text": "you",
- "offset": 109,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 256.772,
- "end": 257.042,
- "confidence": 0.8517,
- "text": "ask",
- "offset": 113,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 257.042,
- "end": 257.162,
- "confidence": 0.9996,
- "text": "them",
- "offset": 117,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 257.162,
- "end": 257.262,
- "confidence": 1,
- "text": "to",
- "offset": 122,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 257.262,
- "end": 257.532,
- "confidence": 0.9969,
- "text": "touch",
- "offset": 125,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 257.532,
- "end": 257.632,
- "confidence": 0.8201,
- "text": "and",
- "offset": 131,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 257.632,
- "end": 257.942,
- "confidence": 0.8984,
- "text": "robots",
- "offset": 135,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 257.942,
- "end": 258.372,
- "confidence": 1,
- "text": "private",
- "offset": 142,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 258.372,
- "end": 258.962,
- "confidence": 1,
- "text": "parts.",
- "offset": 150,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So from this, but from many other studies we know we know that people respond to the cues given to them by these life's like machines, even if they know that they're not really.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 35",
- "words": [
- {
- "start": 261.552,
- "end": 261.732,
- "text": "So",
- "confidence": 1
- },
- {
- "start": 261.732,
- "end": 261.922,
- "text": "from",
- "confidence": 1
- },
- {
- "start": 261.922,
- "end": 262.102,
- "text": "this,",
- "confidence": 1
- },
- {
- "start": 262.102,
- "end": 262.252,
- "text": "but",
- "confidence": 0.9582
- },
- {
- "start": 262.252,
- "end": 262.492,
- "text": "from",
- "confidence": 0.9897
- },
- {
- "start": 262.492,
- "end": 262.792,
- "text": "many",
- "confidence": 1
- },
- {
- "start": 262.792,
- "end": 262.952,
- "text": "other",
- "confidence": 1
- },
- {
- "start": 262.952,
- "end": 263.382,
- "text": "studies",
- "confidence": 1
- },
- {
- "start": 263.382,
- "end": 263.552,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 263.552,
- "end": 264.142,
- "text": "know",
- "confidence": 0.9952
- },
- {
- "start": 264.372,
- "end": 264.662,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 264.662,
- "end": 265.102,
- "text": "know",
- "confidence": 1
- },
- {
- "start": 265.102,
- "end": 265.262,
- "text": "that",
- "confidence": 0.8918
- },
- {
- "start": 265.272,
- "end": 265.792,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 265.792,
- "end": 266.412,
- "text": "respond",
- "confidence": 0.9998
- },
- {
- "start": 266.412,
- "end": 266.512,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 266.512,
- "end": 266.642,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 266.642,
- "end": 267.262,
- "text": "cues",
- "confidence": 0.9018
- },
- {
- "start": 267.272,
- "end": 267.552,
- "text": "given",
- "confidence": 0.9993
- },
- {
- "start": 267.552,
- "end": 267.672,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 267.672,
- "end": 267.872,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 267.872,
- "end": 267.992,
- "text": "by",
- "confidence": 1
- },
- {
- "start": 267.992,
- "end": 268.202,
- "text": "these",
- "confidence": 1
- },
- {
- "start": 268.202,
- "end": 268.502,
- "text": "life's",
- "confidence": 0.4919
- },
- {
- "start": 268.502,
- "end": 268.682,
- "text": "like",
- "confidence": 0.87
- },
- {
- "start": 268.682,
- "end": 269.462,
- "text": "machines,",
- "confidence": 0.999
- },
- {
- "start": 269.882,
- "end": 270.182,
- "text": "even",
- "confidence": 1
- },
- {
- "start": 270.182,
- "end": 270.302,
- "text": "if",
- "confidence": 1
- },
- {
- "start": 270.302,
- "end": 270.412,
- "text": "they",
- "confidence": 1
- },
- {
- "start": 270.412,
- "end": 270.672,
- "text": "know",
- "confidence": 1
- },
- {
- "start": 270.672,
- "end": 270.832,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 270.832,
- "end": 270.992,
- "text": "they're",
- "confidence": 1
- },
- {
- "start": 270.992,
- "end": 271.282,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 271.282,
- "end": 271.552,
- "text": "really.",
- "confidence": 0.7531
- }
- ],
- "start": 261.552
- },
- "entityRanges": [
- {
- "start": 261.552,
- "end": 261.732,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 261.732,
- "end": 261.922,
- "confidence": 1,
- "text": "from",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 261.922,
- "end": 262.102,
- "confidence": 1,
- "text": "this,",
- "offset": 8,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 262.102,
- "end": 262.252,
- "confidence": 0.9582,
- "text": "but",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 262.252,
- "end": 262.492,
- "confidence": 0.9897,
- "text": "from",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 262.492,
- "end": 262.792,
- "confidence": 1,
- "text": "many",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 262.792,
- "end": 262.952,
- "confidence": 1,
- "text": "other",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 262.952,
- "end": 263.382,
- "confidence": 1,
- "text": "studies",
- "offset": 34,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 263.382,
- "end": 263.552,
- "confidence": 1,
- "text": "we",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 263.552,
- "end": 264.142,
- "confidence": 0.9952,
- "text": "know",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 264.372,
- "end": 264.662,
- "confidence": 1,
- "text": "we",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 264.662,
- "end": 265.102,
- "confidence": 1,
- "text": "know",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 265.102,
- "end": 265.262,
- "confidence": 0.8918,
- "text": "that",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 265.272,
- "end": 265.792,
- "confidence": 1,
- "text": "people",
- "offset": 63,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 265.792,
- "end": 266.412,
- "confidence": 0.9998,
- "text": "respond",
- "offset": 70,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 266.412,
- "end": 266.512,
- "confidence": 1,
- "text": "to",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 266.512,
- "end": 266.642,
- "confidence": 1,
- "text": "the",
- "offset": 81,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 266.642,
- "end": 267.262,
- "confidence": 0.9018,
- "text": "cues",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 267.272,
- "end": 267.552,
- "confidence": 0.9993,
- "text": "given",
- "offset": 90,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 267.552,
- "end": 267.672,
- "confidence": 1,
- "text": "to",
- "offset": 96,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 267.672,
- "end": 267.872,
- "confidence": 1,
- "text": "them",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 267.872,
- "end": 267.992,
- "confidence": 1,
- "text": "by",
- "offset": 104,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 267.992,
- "end": 268.202,
- "confidence": 1,
- "text": "these",
- "offset": 107,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 268.202,
- "end": 268.502,
- "confidence": 0.4919,
- "text": "life's",
- "offset": 113,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 268.502,
- "end": 268.682,
- "confidence": 0.87,
- "text": "like",
- "offset": 120,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 268.682,
- "end": 269.462,
- "confidence": 0.999,
- "text": "machines,",
- "offset": 125,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 269.882,
- "end": 270.182,
- "confidence": 1,
- "text": "even",
- "offset": 135,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 270.182,
- "end": 270.302,
- "confidence": 1,
- "text": "if",
- "offset": 140,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 270.302,
- "end": 270.412,
- "confidence": 1,
- "text": "they",
- "offset": 143,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 270.412,
- "end": 270.672,
- "confidence": 1,
- "text": "know",
- "offset": 148,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 270.672,
- "end": 270.832,
- "confidence": 1,
- "text": "that",
- "offset": 153,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 270.832,
- "end": 270.992,
- "confidence": 1,
- "text": "they're",
- "offset": 158,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 270.992,
- "end": 271.282,
- "confidence": 1,
- "text": "not",
- "offset": 166,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 271.282,
- "end": 271.552,
- "confidence": 0.7531,
- "text": "really.",
- "offset": 170,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Now we're headed towards a world where robots are everywhere.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 36",
- "words": [
- {
- "start": 273.642,
- "end": 274.152,
- "text": "Now",
- "confidence": 1
- },
- {
- "start": 274.482,
- "end": 274.692,
- "text": "we're",
- "confidence": 0.999
- },
- {
- "start": 274.692,
- "end": 274.962,
- "text": "headed",
- "confidence": 0.9997
- },
- {
- "start": 274.962,
- "end": 275.202,
- "text": "towards",
- "confidence": 0.7644
- },
- {
- "start": 275.202,
- "end": 275.262,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 275.262,
- "end": 275.692,
- "text": "world",
- "confidence": 1
- },
- {
- "start": 275.692,
- "end": 275.892,
- "text": "where",
- "confidence": 1
- },
- {
- "start": 275.892,
- "end": 276.342,
- "text": "robots",
- "confidence": 1
- },
- {
- "start": 276.342,
- "end": 276.532,
- "text": "are",
- "confidence": 0.9981
- },
- {
- "start": 276.542,
- "end": 277.162,
- "text": "everywhere.",
- "confidence": 0.9924
- }
- ],
- "start": 273.642
- },
- "entityRanges": [
- {
- "start": 273.642,
- "end": 274.152,
- "confidence": 1,
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 274.482,
- "end": 274.692,
- "confidence": 0.999,
- "text": "we're",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 274.692,
- "end": 274.962,
- "confidence": 0.9997,
- "text": "headed",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 274.962,
- "end": 275.202,
- "confidence": 0.7644,
- "text": "towards",
- "offset": 17,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 275.202,
- "end": 275.262,
- "confidence": 1,
- "text": "a",
- "offset": 25,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 275.262,
- "end": 275.692,
- "confidence": 1,
- "text": "world",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 275.692,
- "end": 275.892,
- "confidence": 1,
- "text": "where",
- "offset": 33,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 275.892,
- "end": 276.342,
- "confidence": 1,
- "text": "robots",
- "offset": 39,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 276.342,
- "end": 276.532,
- "confidence": 0.9981,
- "text": "are",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 276.542,
- "end": 277.162,
- "confidence": 0.9924,
- "text": "everywhere.",
- "offset": 50,
- "length": 11,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Robotic technology is moving out from behind factory walls.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 37",
- "words": [
- {
- "start": 277.672,
- "end": 278.032,
- "text": "Robotic",
- "confidence": 0.9891
- },
- {
- "start": 278.032,
- "end": 278.592,
- "text": "technology",
- "confidence": 1
- },
- {
- "start": 278.592,
- "end": 278.802,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 278.812,
- "end": 279.242,
- "text": "moving",
- "confidence": 1
- },
- {
- "start": 279.242,
- "end": 279.412,
- "text": "out",
- "confidence": 1
- },
- {
- "start": 279.412,
- "end": 279.552,
- "text": "from",
- "confidence": 1
- },
- {
- "start": 279.552,
- "end": 279.832,
- "text": "behind",
- "confidence": 1
- },
- {
- "start": 279.832,
- "end": 280.262,
- "text": "factory",
- "confidence": 1
- },
- {
- "start": 280.262,
- "end": 280.802,
- "text": "walls.",
- "confidence": 0.9963
- }
- ],
- "start": 277.672
- },
- "entityRanges": [
- {
- "start": 277.672,
- "end": 278.032,
- "confidence": 0.9891,
- "text": "Robotic",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 278.032,
- "end": 278.592,
- "confidence": 1,
- "text": "technology",
- "offset": 8,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 278.592,
- "end": 278.802,
- "confidence": 1,
- "text": "is",
- "offset": 19,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 278.812,
- "end": 279.242,
- "confidence": 1,
- "text": "moving",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 279.242,
- "end": 279.412,
- "confidence": 1,
- "text": "out",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 279.412,
- "end": 279.552,
- "confidence": 1,
- "text": "from",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 279.552,
- "end": 279.832,
- "confidence": 1,
- "text": "behind",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 279.832,
- "end": 280.262,
- "confidence": 1,
- "text": "factory",
- "offset": 45,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 280.262,
- "end": 280.802,
- "confidence": 0.9963,
- "text": "walls.",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It's entering workplaces, households and as these machines that can sense and make autonomous decisions and learn enter into these shared spaces.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 38",
- "words": [
- {
- "start": 280.812,
- "end": 280.972,
- "text": "It's",
- "confidence": 0.8531
- },
- {
- "start": 280.972,
- "end": 281.402,
- "text": "entering",
- "confidence": 0.999
- },
- {
- "start": 281.412,
- "end": 282.332,
- "text": "workplaces,",
- "confidence": 0.9788
- },
- {
- "start": 282.342,
- "end": 283.362,
- "text": "households",
- "confidence": 0.9872
- },
- {
- "start": 283.752,
- "end": 284.102,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 284.112,
- "end": 284.342,
- "text": "as",
- "confidence": 1
- },
- {
- "start": 284.342,
- "end": 284.542,
- "text": "these",
- "confidence": 0.9997
- },
- {
- "start": 284.542,
- "end": 285.212,
- "text": "machines",
- "confidence": 1
- },
- {
- "start": 285.212,
- "end": 285.372,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 285.372,
- "end": 285.892,
- "text": "can",
- "confidence": 1
- },
- {
- "start": 285.902,
- "end": 286.612,
- "text": "sense",
- "confidence": 1
- },
- {
- "start": 286.612,
- "end": 287.002,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 287.202,
- "end": 287.432,
- "text": "make",
- "confidence": 0.9995
- },
- {
- "start": 287.432,
- "end": 288.002,
- "text": "autonomous",
- "confidence": 1
- },
- {
- "start": 288.002,
- "end": 288.682,
- "text": "decisions",
- "confidence": 1
- },
- {
- "start": 288.682,
- "end": 288.912,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 288.912,
- "end": 289.562,
- "text": "learn",
- "confidence": 0.9827
- },
- {
- "start": 290.042,
- "end": 290.382,
- "text": "enter",
- "confidence": 0.9975
- },
- {
- "start": 290.382,
- "end": 290.572,
- "text": "into",
- "confidence": 0.9969
- },
- {
- "start": 290.572,
- "end": 290.762,
- "text": "these",
- "confidence": 0.9989
- },
- {
- "start": 290.762,
- "end": 291.072,
- "text": "shared",
- "confidence": 1
- },
- {
- "start": 291.072,
- "end": 292.162,
- "text": "spaces.",
- "confidence": 0.9877
- }
- ],
- "start": 280.812
- },
- "entityRanges": [
- {
- "start": 280.812,
- "end": 280.972,
- "confidence": 0.8531,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 280.972,
- "end": 281.402,
- "confidence": 0.999,
- "text": "entering",
- "offset": 5,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 281.412,
- "end": 282.332,
- "confidence": 0.9788,
- "text": "workplaces,",
- "offset": 14,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 282.342,
- "end": 283.362,
- "confidence": 0.9872,
- "text": "households",
- "offset": 26,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 283.752,
- "end": 284.102,
- "confidence": 1,
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 284.112,
- "end": 284.342,
- "confidence": 1,
- "text": "as",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 284.342,
- "end": 284.542,
- "confidence": 0.9997,
- "text": "these",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 284.542,
- "end": 285.212,
- "confidence": 1,
- "text": "machines",
- "offset": 50,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 285.212,
- "end": 285.372,
- "confidence": 1,
- "text": "that",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 285.372,
- "end": 285.892,
- "confidence": 1,
- "text": "can",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 285.902,
- "end": 286.612,
- "confidence": 1,
- "text": "sense",
- "offset": 68,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 286.612,
- "end": 287.002,
- "confidence": 1,
- "text": "and",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 287.202,
- "end": 287.432,
- "confidence": 0.9995,
- "text": "make",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 287.432,
- "end": 288.002,
- "confidence": 1,
- "text": "autonomous",
- "offset": 83,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 288.002,
- "end": 288.682,
- "confidence": 1,
- "text": "decisions",
- "offset": 94,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 288.682,
- "end": 288.912,
- "confidence": 1,
- "text": "and",
- "offset": 104,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 288.912,
- "end": 289.562,
- "confidence": 0.9827,
- "text": "learn",
- "offset": 108,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 290.042,
- "end": 290.382,
- "confidence": 0.9975,
- "text": "enter",
- "offset": 114,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 290.382,
- "end": 290.572,
- "confidence": 0.9969,
- "text": "into",
- "offset": 120,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 290.572,
- "end": 290.762,
- "confidence": 0.9989,
- "text": "these",
- "offset": 125,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 290.762,
- "end": 291.072,
- "confidence": 1,
- "text": "shared",
- "offset": 131,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 291.072,
- "end": 292.162,
- "confidence": 0.9877,
- "text": "spaces.",
- "offset": 138,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "I think that maybe the best analogy we have for this is our relationship with animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 39",
- "words": [
- {
- "start": 292.662,
- "end": 292.762,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 292.762,
- "end": 292.992,
- "text": "think",
- "confidence": 1
- },
- {
- "start": 292.992,
- "end": 293.172,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 293.172,
- "end": 293.412,
- "text": "maybe",
- "confidence": 0.6249
- },
- {
- "start": 293.412,
- "end": 293.512,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 293.512,
- "end": 293.752,
- "text": "best",
- "confidence": 1
- },
- {
- "start": 293.752,
- "end": 294.322,
- "text": "analogy",
- "confidence": 1
- },
- {
- "start": 294.322,
- "end": 294.422,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 294.422,
- "end": 294.712,
- "text": "have",
- "confidence": 1
- },
- {
- "start": 294.712,
- "end": 294.832,
- "text": "for",
- "confidence": 0.9996
- },
- {
- "start": 294.832,
- "end": 295.062,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 295.062,
- "end": 295.192,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 295.192,
- "end": 295.312,
- "text": "our",
- "confidence": 1
- },
- {
- "start": 295.312,
- "end": 296.012,
- "text": "relationship",
- "confidence": 0.999
- },
- {
- "start": 296.022,
- "end": 296.242,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 296.252,
- "end": 297.062,
- "text": "animals.",
- "confidence": 1
- }
- ],
- "start": 292.662
- },
- "entityRanges": [
- {
- "start": 292.662,
- "end": 292.762,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 292.762,
- "end": 292.992,
- "confidence": 1,
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 292.992,
- "end": 293.172,
- "confidence": 1,
- "text": "that",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 293.172,
- "end": 293.412,
- "confidence": 0.6249,
- "text": "maybe",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 293.412,
- "end": 293.512,
- "confidence": 1,
- "text": "the",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 293.512,
- "end": 293.752,
- "confidence": 1,
- "text": "best",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 293.752,
- "end": 294.322,
- "confidence": 1,
- "text": "analogy",
- "offset": 28,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 294.322,
- "end": 294.422,
- "confidence": 1,
- "text": "we",
- "offset": 36,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 294.422,
- "end": 294.712,
- "confidence": 1,
- "text": "have",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 294.712,
- "end": 294.832,
- "confidence": 0.9996,
- "text": "for",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 294.832,
- "end": 295.062,
- "confidence": 1,
- "text": "this",
- "offset": 48,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 295.062,
- "end": 295.192,
- "confidence": 1,
- "text": "is",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 295.192,
- "end": 295.312,
- "confidence": 1,
- "text": "our",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 295.312,
- "end": 296.012,
- "confidence": 0.999,
- "text": "relationship",
- "offset": 60,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 296.022,
- "end": 296.242,
- "confidence": 1,
- "text": "with",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 296.252,
- "end": 297.062,
- "confidence": 1,
- "text": "animals.",
- "offset": 78,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Thousands of years ago, we started to domesticate animals, and we trained them for work and weaponry and companionship.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 40",
- "words": [
- {
- "start": 297.452,
- "end": 297.982,
- "text": "Thousands",
- "confidence": 1
- },
- {
- "start": 297.982,
- "end": 298.072,
- "text": "of",
- "confidence": 0.9991
- },
- {
- "start": 298.072,
- "end": 298.322,
- "text": "years",
- "confidence": 0.9991
- },
- {
- "start": 298.322,
- "end": 298.832,
- "text": "ago,",
- "confidence": 1
- },
- {
- "start": 299.082,
- "end": 299.422,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 299.422,
- "end": 299.762,
- "text": "started",
- "confidence": 1
- },
- {
- "start": 299.762,
- "end": 299.852,
- "text": "to",
- "confidence": 0.999
- },
- {
- "start": 299.852,
- "end": 300.472,
- "text": "domesticate",
- "confidence": 1
- },
- {
- "start": 300.472,
- "end": 301.202,
- "text": "animals,",
- "confidence": 1
- },
- {
- "start": 301.412,
- "end": 301.542,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 301.542,
- "end": 301.632,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 301.632,
- "end": 301.992,
- "text": "trained",
- "confidence": 0.8616
- },
- {
- "start": 301.992,
- "end": 302.162,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 302.162,
- "end": 302.352,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 302.352,
- "end": 302.902,
- "text": "work",
- "confidence": 1
- },
- {
- "start": 302.912,
- "end": 303.142,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 303.142,
- "end": 303.842,
- "text": "weaponry",
- "confidence": 1
- },
- {
- "start": 303.852,
- "end": 303.972,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 303.972,
- "end": 304.962,
- "text": "companionship.",
- "confidence": 0.9999
- }
- ],
- "start": 297.452
- },
- "entityRanges": [
- {
- "start": 297.452,
- "end": 297.982,
- "confidence": 1,
- "text": "Thousands",
- "offset": 0,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 297.982,
- "end": 298.072,
- "confidence": 0.9991,
- "text": "of",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 298.072,
- "end": 298.322,
- "confidence": 0.9991,
- "text": "years",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 298.322,
- "end": 298.832,
- "confidence": 1,
- "text": "ago,",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 299.082,
- "end": 299.422,
- "confidence": 1,
- "text": "we",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 299.422,
- "end": 299.762,
- "confidence": 1,
- "text": "started",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 299.762,
- "end": 299.852,
- "confidence": 0.999,
- "text": "to",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 299.852,
- "end": 300.472,
- "confidence": 1,
- "text": "domesticate",
- "offset": 38,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 300.472,
- "end": 301.202,
- "confidence": 1,
- "text": "animals,",
- "offset": 50,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 301.412,
- "end": 301.542,
- "confidence": 1,
- "text": "and",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 301.542,
- "end": 301.632,
- "confidence": 1,
- "text": "we",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 301.632,
- "end": 301.992,
- "confidence": 0.8616,
- "text": "trained",
- "offset": 66,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 301.992,
- "end": 302.162,
- "confidence": 1,
- "text": "them",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 302.162,
- "end": 302.352,
- "confidence": 1,
- "text": "for",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 302.352,
- "end": 302.902,
- "confidence": 1,
- "text": "work",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 302.912,
- "end": 303.142,
- "confidence": 1,
- "text": "and",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 303.142,
- "end": 303.842,
- "confidence": 1,
- "text": "weaponry",
- "offset": 92,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 303.852,
- "end": 303.972,
- "confidence": 1,
- "text": "and",
- "offset": 101,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 303.972,
- "end": 304.962,
- "confidence": 0.9999,
- "text": "companionship.",
- "offset": 105,
- "length": 14,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And throughout history we've treated some animals, like tools or like products and other animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 41",
- "words": [
- {
- "start": 305.452,
- "end": 305.662,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 305.662,
- "end": 305.912,
- "text": "throughout",
- "confidence": 1
- },
- {
- "start": 305.912,
- "end": 306.432,
- "text": "history",
- "confidence": 1
- },
- {
- "start": 306.432,
- "end": 306.572,
- "text": "we've",
- "confidence": 0.9989
- },
- {
- "start": 306.572,
- "end": 306.922,
- "text": "treated",
- "confidence": 1
- },
- {
- "start": 306.922,
- "end": 307.192,
- "text": "some",
- "confidence": 1
- },
- {
- "start": 307.192,
- "end": 307.752,
- "text": "animals,",
- "confidence": 0.9968
- },
- {
- "start": 307.752,
- "end": 307.922,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 307.932,
- "end": 308.672,
- "text": "tools",
- "confidence": 0.9993
- },
- {
- "start": 308.872,
- "end": 309.052,
- "text": "or",
- "confidence": 0.9886
- },
- {
- "start": 309.052,
- "end": 309.212,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 309.222,
- "end": 310.062,
- "text": "products",
- "confidence": 0.9932
- },
- {
- "start": 310.452,
- "end": 310.742,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 310.752,
- "end": 310.972,
- "text": "other",
- "confidence": 1
- },
- {
- "start": 310.972,
- "end": 311.322,
- "text": "animals.",
- "confidence": 0.9986
- }
- ],
- "start": 305.452
- },
- "entityRanges": [
- {
- "start": 305.452,
- "end": 305.662,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 305.662,
- "end": 305.912,
- "confidence": 1,
- "text": "throughout",
- "offset": 4,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 305.912,
- "end": 306.432,
- "confidence": 1,
- "text": "history",
- "offset": 15,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 306.432,
- "end": 306.572,
- "confidence": 0.9989,
- "text": "we've",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 306.572,
- "end": 306.922,
- "confidence": 1,
- "text": "treated",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 306.922,
- "end": 307.192,
- "confidence": 1,
- "text": "some",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 307.192,
- "end": 307.752,
- "confidence": 0.9968,
- "text": "animals,",
- "offset": 42,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 307.752,
- "end": 307.922,
- "confidence": 1,
- "text": "like",
- "offset": 51,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 307.932,
- "end": 308.672,
- "confidence": 0.9993,
- "text": "tools",
- "offset": 56,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 308.872,
- "end": 309.052,
- "confidence": 0.9886,
- "text": "or",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 309.052,
- "end": 309.212,
- "confidence": 1,
- "text": "like",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 309.222,
- "end": 310.062,
- "confidence": 0.9932,
- "text": "products",
- "offset": 70,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 310.452,
- "end": 310.742,
- "confidence": 1,
- "text": "and",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 310.752,
- "end": 310.972,
- "confidence": 1,
- "text": "other",
- "offset": 83,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 310.972,
- "end": 311.322,
- "confidence": 0.9986,
- "text": "animals.",
- "offset": 89,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "We've treated with kindness, and we've given a place in society is our companions.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 42",
- "words": [
- {
- "start": 311.322,
- "end": 311.472,
- "text": "We've",
- "confidence": 0.899
- },
- {
- "start": 311.472,
- "end": 311.722,
- "text": "treated",
- "confidence": 1
- },
- {
- "start": 311.722,
- "end": 311.862,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 311.862,
- "end": 312.602,
- "text": "kindness,",
- "confidence": 1
- },
- {
- "start": 312.612,
- "end": 312.712,
- "text": "and",
- "confidence": 0.9858
- },
- {
- "start": 312.712,
- "end": 312.852,
- "text": "we've",
- "confidence": 0.9981
- },
- {
- "start": 312.862,
- "end": 313.092,
- "text": "given",
- "confidence": 1
- },
- {
- "start": 313.092,
- "end": 313.162,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 313.162,
- "end": 313.532,
- "text": "place",
- "confidence": 1
- },
- {
- "start": 313.532,
- "end": 313.622,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 313.622,
- "end": 314.112,
- "text": "society",
- "confidence": 1
- },
- {
- "start": 314.112,
- "end": 314.222,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 314.222,
- "end": 314.322,
- "text": "our",
- "confidence": 0.9988
- },
- {
- "start": 314.322,
- "end": 315.212,
- "text": "companions.",
- "confidence": 0.9999
- }
- ],
- "start": 311.322
- },
- "entityRanges": [
- {
- "start": 311.322,
- "end": 311.472,
- "confidence": 0.899,
- "text": "We've",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 311.472,
- "end": 311.722,
- "confidence": 1,
- "text": "treated",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 311.722,
- "end": 311.862,
- "confidence": 1,
- "text": "with",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 311.862,
- "end": 312.602,
- "confidence": 1,
- "text": "kindness,",
- "offset": 19,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 312.612,
- "end": 312.712,
- "confidence": 0.9858,
- "text": "and",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 312.712,
- "end": 312.852,
- "confidence": 0.9981,
- "text": "we've",
- "offset": 33,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 312.862,
- "end": 313.092,
- "confidence": 1,
- "text": "given",
- "offset": 39,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 313.092,
- "end": 313.162,
- "confidence": 1,
- "text": "a",
- "offset": 45,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 313.162,
- "end": 313.532,
- "confidence": 1,
- "text": "place",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 313.532,
- "end": 313.622,
- "confidence": 1,
- "text": "in",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 313.622,
- "end": 314.112,
- "confidence": 1,
- "text": "society",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 314.112,
- "end": 314.222,
- "confidence": 1,
- "text": "is",
- "offset": 64,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 314.222,
- "end": 314.322,
- "confidence": 0.9988,
- "text": "our",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 314.322,
- "end": 315.212,
- "confidence": 0.9999,
- "text": "companions.",
- "offset": 71,
- "length": 11,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "I think it's plausible we might start to integrate robots in similar ways and sure animals are live robots or not.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 43",
- "words": [
- {
- "start": 315.802,
- "end": 315.912,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 315.912,
- "end": 316.092,
- "text": "think",
- "confidence": 1
- },
- {
- "start": 316.092,
- "end": 316.202,
- "text": "it's",
- "confidence": 1
- },
- {
- "start": 316.202,
- "end": 316.692,
- "text": "plausible",
- "confidence": 1
- },
- {
- "start": 316.692,
- "end": 316.812,
- "text": "we",
- "confidence": 0.9992
- },
- {
- "start": 316.812,
- "end": 317.012,
- "text": "might",
- "confidence": 1
- },
- {
- "start": 317.012,
- "end": 317.252,
- "text": "start",
- "confidence": 1
- },
- {
- "start": 317.252,
- "end": 317.332,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 317.342,
- "end": 317.762,
- "text": "integrate",
- "confidence": 1
- },
- {
- "start": 317.772,
- "end": 318.362,
- "text": "robots",
- "confidence": 0.9629
- },
- {
- "start": 318.362,
- "end": 318.502,
- "text": "in",
- "confidence": 0.999
- },
- {
- "start": 318.502,
- "end": 318.932,
- "text": "similar",
- "confidence": 1
- },
- {
- "start": 318.932,
- "end": 319.592,
- "text": "ways",
- "confidence": 1
- },
- {
- "start": 321.452,
- "end": 321.642,
- "text": "and",
- "confidence": 0.9985
- },
- {
- "start": 321.642,
- "end": 322.062,
- "text": "sure",
- "confidence": 0.9988
- },
- {
- "start": 323.022,
- "end": 323.522,
- "text": "animals",
- "confidence": 1
- },
- {
- "start": 323.522,
- "end": 323.712,
- "text": "are",
- "confidence": 0.9932
- },
- {
- "start": 323.712,
- "end": 324.502,
- "text": "live",
- "confidence": 0.9942
- },
- {
- "start": 324.582,
- "end": 325.032,
- "text": "robots",
- "confidence": 0.9932
- },
- {
- "start": 325.032,
- "end": 325.102,
- "text": "or",
- "confidence": 0.7244
- },
- {
- "start": 325.102,
- "end": 325.412,
- "text": "not.",
- "confidence": 1
- }
- ],
- "start": 315.802
- },
- "entityRanges": [
- {
- "start": 315.802,
- "end": 315.912,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 315.912,
- "end": 316.092,
- "confidence": 1,
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 316.092,
- "end": 316.202,
- "confidence": 1,
- "text": "it's",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 316.202,
- "end": 316.692,
- "confidence": 1,
- "text": "plausible",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 316.692,
- "end": 316.812,
- "confidence": 0.9992,
- "text": "we",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 316.812,
- "end": 317.012,
- "confidence": 1,
- "text": "might",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 317.012,
- "end": 317.252,
- "confidence": 1,
- "text": "start",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 317.252,
- "end": 317.332,
- "confidence": 1,
- "text": "to",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 317.342,
- "end": 317.762,
- "confidence": 1,
- "text": "integrate",
- "offset": 41,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 317.772,
- "end": 318.362,
- "confidence": 0.9629,
- "text": "robots",
- "offset": 51,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 318.362,
- "end": 318.502,
- "confidence": 0.999,
- "text": "in",
- "offset": 58,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 318.502,
- "end": 318.932,
- "confidence": 1,
- "text": "similar",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 318.932,
- "end": 319.592,
- "confidence": 1,
- "text": "ways",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 321.452,
- "end": 321.642,
- "confidence": 0.9985,
- "text": "and",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 321.642,
- "end": 322.062,
- "confidence": 0.9988,
- "text": "sure",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 323.022,
- "end": 323.522,
- "confidence": 1,
- "text": "animals",
- "offset": 83,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 323.522,
- "end": 323.712,
- "confidence": 0.9932,
- "text": "are",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 323.712,
- "end": 324.502,
- "confidence": 0.9942,
- "text": "live",
- "offset": 95,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 324.582,
- "end": 325.032,
- "confidence": 0.9932,
- "text": "robots",
- "offset": 100,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 325.032,
- "end": 325.102,
- "confidence": 0.7244,
- "text": "or",
- "offset": 107,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 325.102,
- "end": 325.412,
- "confidence": 1,
- "text": "not.",
- "offset": 110,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And I can tell you from working with roboticists that were pretty far away from developing robots that can feel anything.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 44",
- "words": [
- {
- "start": 327.612,
- "end": 327.822,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 327.822,
- "end": 327.872,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 327.872,
- "end": 328.022,
- "text": "can",
- "confidence": 0.9384
- },
- {
- "start": 328.022,
- "end": 328.242,
- "text": "tell",
- "confidence": 1
- },
- {
- "start": 328.242,
- "end": 328.352,
- "text": "you",
- "confidence": 1
- },
- {
- "start": 328.352,
- "end": 328.612,
- "text": "from",
- "confidence": 1
- },
- {
- "start": 328.622,
- "end": 328.922,
- "text": "working",
- "confidence": 1
- },
- {
- "start": 328.922,
- "end": 329.052,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 329.052,
- "end": 329.672,
- "text": "roboticists",
- "confidence": 0.9043
- },
- {
- "start": 329.672,
- "end": 329.812,
- "text": "that",
- "confidence": 0.9994
- },
- {
- "start": 329.812,
- "end": 329.942,
- "text": "were",
- "confidence": 0.7562
- },
- {
- "start": 329.942,
- "end": 330.522,
- "text": "pretty",
- "confidence": 1
- },
- {
- "start": 330.522,
- "end": 330.742,
- "text": "far",
- "confidence": 1
- },
- {
- "start": 330.742,
- "end": 331.012,
- "text": "away",
- "confidence": 1
- },
- {
- "start": 331.012,
- "end": 331.222,
- "text": "from",
- "confidence": 1
- },
- {
- "start": 331.222,
- "end": 331.692,
- "text": "developing",
- "confidence": 1
- },
- {
- "start": 331.692,
- "end": 332.042,
- "text": "robots",
- "confidence": 0.9974
- },
- {
- "start": 332.042,
- "end": 332.142,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 332.142,
- "end": 332.282,
- "text": "can",
- "confidence": 1
- },
- {
- "start": 332.282,
- "end": 332.682,
- "text": "feel",
- "confidence": 1
- },
- {
- "start": 332.682,
- "end": 333.182,
- "text": "anything.",
- "confidence": 0.9979
- }
- ],
- "start": 327.612
- },
- "entityRanges": [
- {
- "start": 327.612,
- "end": 327.822,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 327.822,
- "end": 327.872,
- "confidence": 1,
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 327.872,
- "end": 328.022,
- "confidence": 0.9384,
- "text": "can",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 328.022,
- "end": 328.242,
- "confidence": 1,
- "text": "tell",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 328.242,
- "end": 328.352,
- "confidence": 1,
- "text": "you",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 328.352,
- "end": 328.612,
- "confidence": 1,
- "text": "from",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 328.622,
- "end": 328.922,
- "confidence": 1,
- "text": "working",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 328.922,
- "end": 329.052,
- "confidence": 1,
- "text": "with",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 329.052,
- "end": 329.672,
- "confidence": 0.9043,
- "text": "roboticists",
- "offset": 37,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 329.672,
- "end": 329.812,
- "confidence": 0.9994,
- "text": "that",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 329.812,
- "end": 329.942,
- "confidence": 0.7562,
- "text": "were",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 329.942,
- "end": 330.522,
- "confidence": 1,
- "text": "pretty",
- "offset": 59,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 330.522,
- "end": 330.742,
- "confidence": 1,
- "text": "far",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 330.742,
- "end": 331.012,
- "confidence": 1,
- "text": "away",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 331.012,
- "end": 331.222,
- "confidence": 1,
- "text": "from",
- "offset": 75,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 331.222,
- "end": 331.692,
- "confidence": 1,
- "text": "developing",
- "offset": 80,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 331.692,
- "end": 332.042,
- "confidence": 0.9974,
- "text": "robots",
- "offset": 91,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 332.042,
- "end": 332.142,
- "confidence": 1,
- "text": "that",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 332.142,
- "end": 332.282,
- "confidence": 1,
- "text": "can",
- "offset": 103,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 332.282,
- "end": 332.682,
- "confidence": 1,
- "text": "feel",
- "offset": 107,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 332.682,
- "end": 333.182,
- "confidence": 0.9979,
- "text": "anything.",
- "offset": 112,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But we feel for them.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 45",
- "words": [
- {
- "start": 335.022,
- "end": 335.242,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 335.242,
- "end": 335.512,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 335.512,
- "end": 335.772,
- "text": "feel",
- "confidence": 1
- },
- {
- "start": 335.772,
- "end": 335.952,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 335.952,
- "end": 336.422,
- "text": "them.",
- "confidence": 1
- }
- ],
- "start": 335.022
- },
- "entityRanges": [
- {
- "start": 335.022,
- "end": 335.242,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 335.242,
- "end": 335.512,
- "confidence": 1,
- "text": "we",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 335.512,
- "end": 335.772,
- "confidence": 1,
- "text": "feel",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 335.772,
- "end": 335.952,
- "confidence": 1,
- "text": "for",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 335.952,
- "end": 336.422,
- "confidence": 1,
- "text": "them.",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And that matters, because if we're trying to integrate robots into the shared spaces, we need to understand that people will treat them differently than other devices and that in some cases, for example, the case of a soldier who becomes emotionally attached to the robot that they work with that could be anything from inefficient, too dangerous.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 46",
- "words": [
- {
- "start": 337.802,
- "end": 338.012,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 338.012,
- "end": 338.202,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 338.202,
- "end": 338.992,
- "text": "matters,",
- "confidence": 1
- },
- {
- "start": 339.002,
- "end": 339.562,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 339.572,
- "end": 339.752,
- "text": "if",
- "confidence": 1
- },
- {
- "start": 339.752,
- "end": 339.862,
- "text": "we're",
- "confidence": 0.9679
- },
- {
- "start": 339.862,
- "end": 340.182,
- "text": "trying",
- "confidence": 1
- },
- {
- "start": 340.182,
- "end": 340.312,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 340.322,
- "end": 340.912,
- "text": "integrate",
- "confidence": 1
- },
- {
- "start": 340.922,
- "end": 341.402,
- "text": "robots",
- "confidence": 0.9942
- },
- {
- "start": 341.402,
- "end": 341.562,
- "text": "into",
- "confidence": 0.9976
- },
- {
- "start": 341.562,
- "end": 341.692,
- "text": "the",
- "confidence": 0.8136
- },
- {
- "start": 341.692,
- "end": 342.032,
- "text": "shared",
- "confidence": 1
- },
- {
- "start": 342.032,
- "end": 342.682,
- "text": "spaces,",
- "confidence": 0.95
- },
- {
- "start": 342.682,
- "end": 342.792,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 342.792,
- "end": 342.952,
- "text": "need",
- "confidence": 1
- },
- {
- "start": 342.952,
- "end": 343.042,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 343.052,
- "end": 343.802,
- "text": "understand",
- "confidence": 1
- },
- {
- "start": 343.802,
- "end": 343.912,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 343.922,
- "end": 344.252,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 344.252,
- "end": 344.372,
- "text": "will",
- "confidence": 1
- },
- {
- "start": 344.372,
- "end": 344.612,
- "text": "treat",
- "confidence": 1
- },
- {
- "start": 344.612,
- "end": 344.792,
- "text": "them",
- "confidence": 0.9928
- },
- {
- "start": 344.802,
- "end": 345.372,
- "text": "differently",
- "confidence": 1
- },
- {
- "start": 345.372,
- "end": 345.532,
- "text": "than",
- "confidence": 1
- },
- {
- "start": 345.532,
- "end": 345.722,
- "text": "other",
- "confidence": 1
- },
- {
- "start": 345.722,
- "end": 346.612,
- "text": "devices",
- "confidence": 0.9997
- },
- {
- "start": 347.342,
- "end": 347.502,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 347.502,
- "end": 347.652,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 347.652,
- "end": 347.762,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 347.762,
- "end": 348.082,
- "text": "some",
- "confidence": 1
- },
- {
- "start": 348.082,
- "end": 348.972,
- "text": "cases,",
- "confidence": 1
- },
- {
- "start": 349.182,
- "end": 349.362,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 349.362,
- "end": 349.982,
- "text": "example,",
- "confidence": 1
- },
- {
- "start": 349.982,
- "end": 350.092,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 350.092,
- "end": 350.382,
- "text": "case",
- "confidence": 1
- },
- {
- "start": 350.382,
- "end": 350.452,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 350.452,
- "end": 350.502,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 350.502,
- "end": 350.982,
- "text": "soldier",
- "confidence": 1
- },
- {
- "start": 350.982,
- "end": 351.082,
- "text": "who",
- "confidence": 1
- },
- {
- "start": 351.082,
- "end": 351.412,
- "text": "becomes",
- "confidence": 1
- },
- {
- "start": 351.412,
- "end": 351.972,
- "text": "emotionally",
- "confidence": 1
- },
- {
- "start": 351.972,
- "end": 352.522,
- "text": "attached",
- "confidence": 1
- },
- {
- "start": 352.522,
- "end": 352.612,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 352.612,
- "end": 352.742,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 352.742,
- "end": 353.102,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 353.102,
- "end": 353.212,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 353.212,
- "end": 353.322,
- "text": "they",
- "confidence": 1
- },
- {
- "start": 353.322,
- "end": 353.592,
- "text": "work",
- "confidence": 0.9584
- },
- {
- "start": 353.592,
- "end": 354.032,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 354.492,
- "end": 354.662,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 354.662,
- "end": 354.792,
- "text": "could",
- "confidence": 0.7478
- },
- {
- "start": 354.792,
- "end": 354.912,
- "text": "be",
- "confidence": 0.9913
- },
- {
- "start": 354.912,
- "end": 355.292,
- "text": "anything",
- "confidence": 1
- },
- {
- "start": 355.292,
- "end": 355.462,
- "text": "from",
- "confidence": 1
- },
- {
- "start": 355.472,
- "end": 356.022,
- "text": "inefficient,",
- "confidence": 0.9997
- },
- {
- "start": 356.022,
- "end": 356.162,
- "text": "too",
- "confidence": 0.5248
- },
- {
- "start": 356.172,
- "end": 356.962,
- "text": "dangerous.",
- "confidence": 1
- }
- ],
- "start": 337.802
- },
- "entityRanges": [
- {
- "start": 337.802,
- "end": 338.012,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 338.012,
- "end": 338.202,
- "confidence": 1,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 338.202,
- "end": 338.992,
- "confidence": 1,
- "text": "matters,",
- "offset": 9,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 339.002,
- "end": 339.562,
- "confidence": 1,
- "text": "because",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 339.572,
- "end": 339.752,
- "confidence": 1,
- "text": "if",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 339.752,
- "end": 339.862,
- "confidence": 0.9679,
- "text": "we're",
- "offset": 29,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 339.862,
- "end": 340.182,
- "confidence": 1,
- "text": "trying",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 340.182,
- "end": 340.312,
- "confidence": 1,
- "text": "to",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 340.322,
- "end": 340.912,
- "confidence": 1,
- "text": "integrate",
- "offset": 45,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 340.922,
- "end": 341.402,
- "confidence": 0.9942,
- "text": "robots",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 341.402,
- "end": 341.562,
- "confidence": 0.9976,
- "text": "into",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 341.562,
- "end": 341.692,
- "confidence": 0.8136,
- "text": "the",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 341.692,
- "end": 342.032,
- "confidence": 1,
- "text": "shared",
- "offset": 71,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 342.032,
- "end": 342.682,
- "confidence": 0.95,
- "text": "spaces,",
- "offset": 78,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 342.682,
- "end": 342.792,
- "confidence": 1,
- "text": "we",
- "offset": 86,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 342.792,
- "end": 342.952,
- "confidence": 1,
- "text": "need",
- "offset": 89,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 342.952,
- "end": 343.042,
- "confidence": 1,
- "text": "to",
- "offset": 94,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 343.052,
- "end": 343.802,
- "confidence": 1,
- "text": "understand",
- "offset": 97,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 343.802,
- "end": 343.912,
- "confidence": 1,
- "text": "that",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 343.922,
- "end": 344.252,
- "confidence": 1,
- "text": "people",
- "offset": 113,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 344.252,
- "end": 344.372,
- "confidence": 1,
- "text": "will",
- "offset": 120,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 344.372,
- "end": 344.612,
- "confidence": 1,
- "text": "treat",
- "offset": 125,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 344.612,
- "end": 344.792,
- "confidence": 0.9928,
- "text": "them",
- "offset": 131,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 344.802,
- "end": 345.372,
- "confidence": 1,
- "text": "differently",
- "offset": 136,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 345.372,
- "end": 345.532,
- "confidence": 1,
- "text": "than",
- "offset": 148,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 345.532,
- "end": 345.722,
- "confidence": 1,
- "text": "other",
- "offset": 153,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 345.722,
- "end": 346.612,
- "confidence": 0.9997,
- "text": "devices",
- "offset": 159,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 347.342,
- "end": 347.502,
- "confidence": 1,
- "text": "and",
- "offset": 167,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 347.502,
- "end": 347.652,
- "confidence": 1,
- "text": "that",
- "offset": 171,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 347.652,
- "end": 347.762,
- "confidence": 1,
- "text": "in",
- "offset": 176,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 347.762,
- "end": 348.082,
- "confidence": 1,
- "text": "some",
- "offset": 179,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 348.082,
- "end": 348.972,
- "confidence": 1,
- "text": "cases,",
- "offset": 184,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 349.182,
- "end": 349.362,
- "confidence": 1,
- "text": "for",
- "offset": 191,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 349.362,
- "end": 349.982,
- "confidence": 1,
- "text": "example,",
- "offset": 195,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 349.982,
- "end": 350.092,
- "confidence": 1,
- "text": "the",
- "offset": 204,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 350.092,
- "end": 350.382,
- "confidence": 1,
- "text": "case",
- "offset": 208,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 350.382,
- "end": 350.452,
- "confidence": 1,
- "text": "of",
- "offset": 213,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 350.452,
- "end": 350.502,
- "confidence": 1,
- "text": "a",
- "offset": 216,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 350.502,
- "end": 350.982,
- "confidence": 1,
- "text": "soldier",
- "offset": 218,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 350.982,
- "end": 351.082,
- "confidence": 1,
- "text": "who",
- "offset": 226,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 351.082,
- "end": 351.412,
- "confidence": 1,
- "text": "becomes",
- "offset": 230,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 351.412,
- "end": 351.972,
- "confidence": 1,
- "text": "emotionally",
- "offset": 238,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 351.972,
- "end": 352.522,
- "confidence": 1,
- "text": "attached",
- "offset": 250,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 352.522,
- "end": 352.612,
- "confidence": 1,
- "text": "to",
- "offset": 259,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 352.612,
- "end": 352.742,
- "confidence": 1,
- "text": "the",
- "offset": 262,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 352.742,
- "end": 353.102,
- "confidence": 1,
- "text": "robot",
- "offset": 266,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 353.102,
- "end": 353.212,
- "confidence": 1,
- "text": "that",
- "offset": 272,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 353.212,
- "end": 353.322,
- "confidence": 1,
- "text": "they",
- "offset": 277,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 353.322,
- "end": 353.592,
- "confidence": 0.9584,
- "text": "work",
- "offset": 282,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 353.592,
- "end": 354.032,
- "confidence": 1,
- "text": "with",
- "offset": 287,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 354.492,
- "end": 354.662,
- "confidence": 1,
- "text": "that",
- "offset": 292,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 354.662,
- "end": 354.792,
- "confidence": 0.7478,
- "text": "could",
- "offset": 297,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 354.792,
- "end": 354.912,
- "confidence": 0.9913,
- "text": "be",
- "offset": 303,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 354.912,
- "end": 355.292,
- "confidence": 1,
- "text": "anything",
- "offset": 306,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 355.292,
- "end": 355.462,
- "confidence": 1,
- "text": "from",
- "offset": 315,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 355.472,
- "end": 356.022,
- "confidence": 0.9997,
- "text": "inefficient,",
- "offset": 320,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 356.022,
- "end": 356.162,
- "confidence": 0.5248,
- "text": "too",
- "offset": 333,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 356.172,
- "end": 356.962,
- "confidence": 1,
- "text": "dangerous.",
- "offset": 337,
- "length": 10,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But in other cases, it can actually be useful to foster this emotional connection to robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 47",
- "words": [
- {
- "start": 358.512,
- "end": 358.682,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 358.682,
- "end": 358.792,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 358.792,
- "end": 359.002,
- "text": "other",
- "confidence": 1
- },
- {
- "start": 359.002,
- "end": 359.412,
- "text": "cases,",
- "confidence": 1
- },
- {
- "start": 359.412,
- "end": 359.482,
- "text": "it",
- "confidence": 0.9758
- },
- {
- "start": 359.482,
- "end": 359.622,
- "text": "can",
- "confidence": 1
- },
- {
- "start": 359.622,
- "end": 359.942,
- "text": "actually",
- "confidence": 1
- },
- {
- "start": 359.952,
- "end": 360.102,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 360.112,
- "end": 360.682,
- "text": "useful",
- "confidence": 1
- },
- {
- "start": 360.682,
- "end": 360.772,
- "text": "to",
- "confidence": 0.9903
- },
- {
- "start": 360.772,
- "end": 361.332,
- "text": "foster",
- "confidence": 0.8381
- },
- {
- "start": 361.332,
- "end": 361.502,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 361.502,
- "end": 361.922,
- "text": "emotional",
- "confidence": 1
- },
- {
- "start": 361.922,
- "end": 362.442,
- "text": "connection",
- "confidence": 1
- },
- {
- "start": 362.442,
- "end": 362.572,
- "text": "to",
- "confidence": 0.9913
- },
- {
- "start": 362.582,
- "end": 362.912,
- "text": "robot.",
- "confidence": 0.6154
- }
- ],
- "start": 358.512
- },
- "entityRanges": [
- {
- "start": 358.512,
- "end": 358.682,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 358.682,
- "end": 358.792,
- "confidence": 1,
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 358.792,
- "end": 359.002,
- "confidence": 1,
- "text": "other",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 359.002,
- "end": 359.412,
- "confidence": 1,
- "text": "cases,",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 359.412,
- "end": 359.482,
- "confidence": 0.9758,
- "text": "it",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 359.482,
- "end": 359.622,
- "confidence": 1,
- "text": "can",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 359.622,
- "end": 359.942,
- "confidence": 1,
- "text": "actually",
- "offset": 27,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 359.952,
- "end": 360.102,
- "confidence": 1,
- "text": "be",
- "offset": 36,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 360.112,
- "end": 360.682,
- "confidence": 1,
- "text": "useful",
- "offset": 39,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 360.682,
- "end": 360.772,
- "confidence": 0.9903,
- "text": "to",
- "offset": 46,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 360.772,
- "end": 361.332,
- "confidence": 0.8381,
- "text": "foster",
- "offset": 49,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 361.332,
- "end": 361.502,
- "confidence": 1,
- "text": "this",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 361.502,
- "end": 361.922,
- "confidence": 1,
- "text": "emotional",
- "offset": 61,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 361.922,
- "end": 362.442,
- "confidence": 1,
- "text": "connection",
- "offset": 71,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 362.442,
- "end": 362.572,
- "confidence": 0.9913,
- "text": "to",
- "offset": 82,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 362.582,
- "end": 362.912,
- "confidence": 0.6154,
- "text": "robot.",
- "offset": 85,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "That's it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 48",
- "words": [
- {
- "start": 362.919,
- "end": 363.199,
- "text": "That's",
- "confidence": 0.3195
- },
- {
- "start": 363.209,
- "end": 363.269,
- "text": "it.",
- "confidence": 0.21
- }
- ],
- "start": 362.919
- },
- "entityRanges": [
- {
- "start": 362.919,
- "end": 363.199,
- "confidence": 0.3195,
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 363.209,
- "end": 363.269,
- "confidence": 0.21,
- "text": "it.",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "We're already seeing some great use cases for example, robots working with autistic children to engage them in ways that we haven't seen previously, or robots working with teachers to engage kids in learning with new results.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 49",
- "words": [
- {
- "start": 364.159,
- "end": 364.309,
- "text": "We're",
- "confidence": 0.9993
- },
- {
- "start": 364.309,
- "end": 364.609,
- "text": "already",
- "confidence": 1
- },
- {
- "start": 364.609,
- "end": 364.939,
- "text": "seeing",
- "confidence": 1
- },
- {
- "start": 364.939,
- "end": 365.129,
- "text": "some",
- "confidence": 0.998
- },
- {
- "start": 365.129,
- "end": 365.489,
- "text": "great",
- "confidence": 1
- },
- {
- "start": 365.489,
- "end": 365.729,
- "text": "use",
- "confidence": 0.9985
- },
- {
- "start": 365.729,
- "end": 366.249,
- "text": "cases",
- "confidence": 0.9985
- },
- {
- "start": 366.249,
- "end": 366.379,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 366.379,
- "end": 366.879,
- "text": "example,",
- "confidence": 1
- },
- {
- "start": 366.879,
- "end": 367.279,
- "text": "robots",
- "confidence": 0.9216
- },
- {
- "start": 367.279,
- "end": 367.589,
- "text": "working",
- "confidence": 1
- },
- {
- "start": 367.589,
- "end": 367.769,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 367.779,
- "end": 368.399,
- "text": "autistic",
- "confidence": 1
- },
- {
- "start": 368.399,
- "end": 368.939,
- "text": "children",
- "confidence": 1
- },
- {
- "start": 368.939,
- "end": 369.099,
- "text": "to",
- "confidence": 0.9905
- },
- {
- "start": 369.109,
- "end": 369.659,
- "text": "engage",
- "confidence": 1
- },
- {
- "start": 369.659,
- "end": 369.919,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 369.919,
- "end": 370.079,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 370.079,
- "end": 370.379,
- "text": "ways",
- "confidence": 1
- },
- {
- "start": 370.379,
- "end": 370.469,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 370.469,
- "end": 370.559,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 370.559,
- "end": 370.949,
- "text": "haven't",
- "confidence": 0.9924
- },
- {
- "start": 370.949,
- "end": 371.179,
- "text": "seen",
- "confidence": 1
- },
- {
- "start": 371.179,
- "end": 372.009,
- "text": "previously,",
- "confidence": 1
- },
- {
- "start": 372.459,
- "end": 372.779,
- "text": "or",
- "confidence": 1
- },
- {
- "start": 372.779,
- "end": 373.149,
- "text": "robots",
- "confidence": 0.9758
- },
- {
- "start": 373.149,
- "end": 373.499,
- "text": "working",
- "confidence": 1
- },
- {
- "start": 373.499,
- "end": 373.629,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 373.639,
- "end": 374.209,
- "text": "teachers",
- "confidence": 0.9758
- },
- {
- "start": 374.209,
- "end": 374.339,
- "text": "to",
- "confidence": 0.9889
- },
- {
- "start": 374.339,
- "end": 374.729,
- "text": "engage",
- "confidence": 1
- },
- {
- "start": 374.729,
- "end": 375.009,
- "text": "kids",
- "confidence": 0.9778
- },
- {
- "start": 375.009,
- "end": 375.179,
- "text": "in",
- "confidence": 0.5708
- },
- {
- "start": 375.179,
- "end": 375.589,
- "text": "learning",
- "confidence": 1
- },
- {
- "start": 375.589,
- "end": 375.749,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 375.749,
- "end": 375.919,
- "text": "new",
- "confidence": 0.9972
- },
- {
- "start": 375.919,
- "end": 376.579,
- "text": "results.",
- "confidence": 1
- }
- ],
- "start": 364.159
- },
- "entityRanges": [
- {
- "start": 364.159,
- "end": 364.309,
- "confidence": 0.9993,
- "text": "We're",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 364.309,
- "end": 364.609,
- "confidence": 1,
- "text": "already",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 364.609,
- "end": 364.939,
- "confidence": 1,
- "text": "seeing",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 364.939,
- "end": 365.129,
- "confidence": 0.998,
- "text": "some",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 365.129,
- "end": 365.489,
- "confidence": 1,
- "text": "great",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 365.489,
- "end": 365.729,
- "confidence": 0.9985,
- "text": "use",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 365.729,
- "end": 366.249,
- "confidence": 0.9985,
- "text": "cases",
- "offset": 36,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 366.249,
- "end": 366.379,
- "confidence": 1,
- "text": "for",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 366.379,
- "end": 366.879,
- "confidence": 1,
- "text": "example,",
- "offset": 46,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 366.879,
- "end": 367.279,
- "confidence": 0.9216,
- "text": "robots",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 367.279,
- "end": 367.589,
- "confidence": 1,
- "text": "working",
- "offset": 62,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 367.589,
- "end": 367.769,
- "confidence": 1,
- "text": "with",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 367.779,
- "end": 368.399,
- "confidence": 1,
- "text": "autistic",
- "offset": 75,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 368.399,
- "end": 368.939,
- "confidence": 1,
- "text": "children",
- "offset": 84,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 368.939,
- "end": 369.099,
- "confidence": 0.9905,
- "text": "to",
- "offset": 93,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 369.109,
- "end": 369.659,
- "confidence": 1,
- "text": "engage",
- "offset": 96,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 369.659,
- "end": 369.919,
- "confidence": 1,
- "text": "them",
- "offset": 103,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 369.919,
- "end": 370.079,
- "confidence": 1,
- "text": "in",
- "offset": 108,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 370.079,
- "end": 370.379,
- "confidence": 1,
- "text": "ways",
- "offset": 111,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 370.379,
- "end": 370.469,
- "confidence": 1,
- "text": "that",
- "offset": 116,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 370.469,
- "end": 370.559,
- "confidence": 1,
- "text": "we",
- "offset": 121,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 370.559,
- "end": 370.949,
- "confidence": 0.9924,
- "text": "haven't",
- "offset": 124,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 370.949,
- "end": 371.179,
- "confidence": 1,
- "text": "seen",
- "offset": 132,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 371.179,
- "end": 372.009,
- "confidence": 1,
- "text": "previously,",
- "offset": 137,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 372.459,
- "end": 372.779,
- "confidence": 1,
- "text": "or",
- "offset": 149,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 372.779,
- "end": 373.149,
- "confidence": 0.9758,
- "text": "robots",
- "offset": 152,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 373.149,
- "end": 373.499,
- "confidence": 1,
- "text": "working",
- "offset": 159,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 373.499,
- "end": 373.629,
- "confidence": 1,
- "text": "with",
- "offset": 167,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 373.639,
- "end": 374.209,
- "confidence": 0.9758,
- "text": "teachers",
- "offset": 172,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 374.209,
- "end": 374.339,
- "confidence": 0.9889,
- "text": "to",
- "offset": 181,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 374.339,
- "end": 374.729,
- "confidence": 1,
- "text": "engage",
- "offset": 184,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 374.729,
- "end": 375.009,
- "confidence": 0.9778,
- "text": "kids",
- "offset": 191,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 375.009,
- "end": 375.179,
- "confidence": 0.5708,
- "text": "in",
- "offset": 196,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 375.179,
- "end": 375.589,
- "confidence": 1,
- "text": "learning",
- "offset": 199,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 375.589,
- "end": 375.749,
- "confidence": 1,
- "text": "with",
- "offset": 208,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 375.749,
- "end": 375.919,
- "confidence": 0.9972,
- "text": "new",
- "offset": 213,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 375.919,
- "end": 376.579,
- "confidence": 1,
- "text": "results.",
- "offset": 217,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And it's not just for kids.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 50",
- "words": [
- {
- "start": 377.359,
- "end": 377.549,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 377.549,
- "end": 377.689,
- "text": "it's",
- "confidence": 0.9947
- },
- {
- "start": 377.689,
- "end": 377.879,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 377.879,
- "end": 378.059,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 378.059,
- "end": 378.169,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 378.169,
- "end": 378.869,
- "text": "kids.",
- "confidence": 1
- }
- ],
- "start": 377.359
- },
- "entityRanges": [
- {
- "start": 377.359,
- "end": 377.549,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 377.549,
- "end": 377.689,
- "confidence": 0.9947,
- "text": "it's",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 377.689,
- "end": 377.879,
- "confidence": 1,
- "text": "not",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 377.879,
- "end": 378.059,
- "confidence": 1,
- "text": "just",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 378.059,
- "end": 378.169,
- "confidence": 1,
- "text": "for",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 378.169,
- "end": 378.869,
- "confidence": 1,
- "text": "kids.",
- "offset": 22,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Early studies show that robots can help doctors and patients and health care settings.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 51",
- "words": [
- {
- "start": 379.719,
- "end": 380.029,
- "text": "Early",
- "confidence": 1
- },
- {
- "start": 380.029,
- "end": 380.419,
- "text": "studies",
- "confidence": 1
- },
- {
- "start": 380.419,
- "end": 380.749,
- "text": "show",
- "confidence": 1
- },
- {
- "start": 380.749,
- "end": 381.049,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 381.059,
- "end": 381.399,
- "text": "robots",
- "confidence": 0.9921
- },
- {
- "start": 381.399,
- "end": 381.549,
- "text": "can",
- "confidence": 0.9996
- },
- {
- "start": 381.549,
- "end": 381.729,
- "text": "help",
- "confidence": 1
- },
- {
- "start": 381.739,
- "end": 382.259,
- "text": "doctors",
- "confidence": 1
- },
- {
- "start": 382.259,
- "end": 382.389,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 382.389,
- "end": 382.999,
- "text": "patients",
- "confidence": 1
- },
- {
- "start": 382.999,
- "end": 383.109,
- "text": "and",
- "confidence": 0.7465
- },
- {
- "start": 383.109,
- "end": 383.439,
- "text": "health",
- "confidence": 0.9156
- },
- {
- "start": 383.439,
- "end": 383.659,
- "text": "care",
- "confidence": 0.9156
- },
- {
- "start": 383.659,
- "end": 384.409,
- "text": "settings.",
- "confidence": 1
- }
- ],
- "start": 379.719
- },
- "entityRanges": [
- {
- "start": 379.719,
- "end": 380.029,
- "confidence": 1,
- "text": "Early",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 380.029,
- "end": 380.419,
- "confidence": 1,
- "text": "studies",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 380.419,
- "end": 380.749,
- "confidence": 1,
- "text": "show",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 380.749,
- "end": 381.049,
- "confidence": 1,
- "text": "that",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 381.059,
- "end": 381.399,
- "confidence": 0.9921,
- "text": "robots",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 381.399,
- "end": 381.549,
- "confidence": 0.9996,
- "text": "can",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 381.549,
- "end": 381.729,
- "confidence": 1,
- "text": "help",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 381.739,
- "end": 382.259,
- "confidence": 1,
- "text": "doctors",
- "offset": 40,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 382.259,
- "end": 382.389,
- "confidence": 1,
- "text": "and",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 382.389,
- "end": 382.999,
- "confidence": 1,
- "text": "patients",
- "offset": 52,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 382.999,
- "end": 383.109,
- "confidence": 0.7465,
- "text": "and",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 383.109,
- "end": 383.439,
- "confidence": 0.9156,
- "text": "health",
- "offset": 65,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 383.439,
- "end": 383.659,
- "confidence": 0.9156,
- "text": "care",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 383.659,
- "end": 384.409,
- "confidence": 1,
- "text": "settings.",
- "offset": 77,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "This is the para baby seal robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 52",
- "words": [
- {
- "start": 385.529,
- "end": 385.719,
- "text": "This",
- "confidence": 0.8893
- },
- {
- "start": 385.719,
- "end": 385.899,
- "text": "is",
- "confidence": 0.8893
- },
- {
- "start": 385.899,
- "end": 385.989,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 385.989,
- "end": 386.389,
- "text": "para",
- "confidence": 0.4669
- },
- {
- "start": 386.389,
- "end": 386.639,
- "text": "baby",
- "confidence": 1
- },
- {
- "start": 386.639,
- "end": 386.929,
- "text": "seal",
- "confidence": 0.9989
- },
- {
- "start": 386.929,
- "end": 387.339,
- "text": "robot.",
- "confidence": 0.9718
- }
- ],
- "start": 385.529
- },
- "entityRanges": [
- {
- "start": 385.529,
- "end": 385.719,
- "confidence": 0.8893,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 385.719,
- "end": 385.899,
- "confidence": 0.8893,
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 385.899,
- "end": 385.989,
- "confidence": 1,
- "text": "the",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 385.989,
- "end": 386.389,
- "confidence": 0.4669,
- "text": "para",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 386.389,
- "end": 386.639,
- "confidence": 1,
- "text": "baby",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 386.639,
- "end": 386.929,
- "confidence": 0.9989,
- "text": "seal",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 386.929,
- "end": 387.339,
- "confidence": 0.9718,
- "text": "robot.",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It's used in nursing homes and with dementia patients.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 53",
- "words": [
- {
- "start": 387.349,
- "end": 387.559,
- "text": "It's",
- "confidence": 0.9031
- },
- {
- "start": 387.559,
- "end": 387.919,
- "text": "used",
- "confidence": 1
- },
- {
- "start": 387.929,
- "end": 388.079,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 388.079,
- "end": 388.469,
- "text": "nursing",
- "confidence": 1
- },
- {
- "start": 388.469,
- "end": 388.919,
- "text": "homes",
- "confidence": 1
- },
- {
- "start": 388.919,
- "end": 389.009,
- "text": "and",
- "confidence": 0.9986
- },
- {
- "start": 389.009,
- "end": 389.139,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 389.139,
- "end": 389.609,
- "text": "dementia",
- "confidence": 1
- },
- {
- "start": 389.609,
- "end": 390.359,
- "text": "patients.",
- "confidence": 1
- }
- ],
- "start": 387.349
- },
- "entityRanges": [
- {
- "start": 387.349,
- "end": 387.559,
- "confidence": 0.9031,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 387.559,
- "end": 387.919,
- "confidence": 1,
- "text": "used",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 387.929,
- "end": 388.079,
- "confidence": 1,
- "text": "in",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 388.079,
- "end": 388.469,
- "confidence": 1,
- "text": "nursing",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 388.469,
- "end": 388.919,
- "confidence": 1,
- "text": "homes",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 388.919,
- "end": 389.009,
- "confidence": 0.9986,
- "text": "and",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 389.009,
- "end": 389.139,
- "confidence": 1,
- "text": "with",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 389.139,
- "end": 389.609,
- "confidence": 1,
- "text": "dementia",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 389.609,
- "end": 390.359,
- "confidence": 1,
- "text": "patients.",
- "offset": 45,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It's been around for a while, and I remember years ago being at a party and telling someone about this robot, and her response was Oh, my gosh, that's horrible.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 54",
- "words": [
- {
- "start": 390.479,
- "end": 390.629,
- "text": "It's",
- "confidence": 0.9593
- },
- {
- "start": 390.629,
- "end": 390.779,
- "text": "been",
- "confidence": 1
- },
- {
- "start": 390.779,
- "end": 391.089,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 391.089,
- "end": 391.229,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 391.229,
- "end": 391.299,
- "text": "a",
- "confidence": 0.9717
- },
- {
- "start": 391.299,
- "end": 391.809,
- "text": "while,",
- "confidence": 0.9717
- },
- {
- "start": 392.139,
- "end": 392.379,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 392.379,
- "end": 392.419,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 392.419,
- "end": 393.099,
- "text": "remember",
- "confidence": 1
- },
- {
- "start": 393.339,
- "end": 393.809,
- "text": "years",
- "confidence": 1
- },
- {
- "start": 393.809,
- "end": 394.059,
- "text": "ago",
- "confidence": 1
- },
- {
- "start": 394.059,
- "end": 394.249,
- "text": "being",
- "confidence": 1
- },
- {
- "start": 394.249,
- "end": 394.319,
- "text": "at",
- "confidence": 1
- },
- {
- "start": 394.319,
- "end": 394.379,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 394.379,
- "end": 395.109,
- "text": "party",
- "confidence": 1
- },
- {
- "start": 395.589,
- "end": 395.759,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 395.759,
- "end": 396.169,
- "text": "telling",
- "confidence": 1
- },
- {
- "start": 396.169,
- "end": 396.439,
- "text": "someone",
- "confidence": 1
- },
- {
- "start": 396.439,
- "end": 396.679,
- "text": "about",
- "confidence": 1
- },
- {
- "start": 396.679,
- "end": 396.879,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 396.879,
- "end": 397.469,
- "text": "robot,",
- "confidence": 1
- },
- {
- "start": 398.059,
- "end": 398.379,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 398.379,
- "end": 398.519,
- "text": "her",
- "confidence": 1
- },
- {
- "start": 398.519,
- "end": 399.049,
- "text": "response",
- "confidence": 1
- },
- {
- "start": 399.049,
- "end": 399.589,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 400.339,
- "end": 400.479,
- "text": "Oh,",
- "confidence": 1
- },
- {
- "start": 400.479,
- "end": 400.599,
- "text": "my",
- "confidence": 1
- },
- {
- "start": 400.599,
- "end": 401.369,
- "text": "gosh,",
- "confidence": 1
- },
- {
- "start": 402.489,
- "end": 402.749,
- "text": "that's",
- "confidence": 0.9999
- },
- {
- "start": 402.749,
- "end": 403.469,
- "text": "horrible.",
- "confidence": 1
- }
- ],
- "start": 390.479
- },
- "entityRanges": [
- {
- "start": 390.479,
- "end": 390.629,
- "confidence": 0.9593,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 390.629,
- "end": 390.779,
- "confidence": 1,
- "text": "been",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 390.779,
- "end": 391.089,
- "confidence": 1,
- "text": "around",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 391.089,
- "end": 391.229,
- "confidence": 1,
- "text": "for",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 391.229,
- "end": 391.299,
- "confidence": 0.9717,
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 391.299,
- "end": 391.809,
- "confidence": 0.9717,
- "text": "while,",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 392.139,
- "end": 392.379,
- "confidence": 1,
- "text": "and",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 392.379,
- "end": 392.419,
- "confidence": 1,
- "text": "I",
- "offset": 34,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 392.419,
- "end": 393.099,
- "confidence": 1,
- "text": "remember",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 393.339,
- "end": 393.809,
- "confidence": 1,
- "text": "years",
- "offset": 45,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 393.809,
- "end": 394.059,
- "confidence": 1,
- "text": "ago",
- "offset": 51,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 394.059,
- "end": 394.249,
- "confidence": 1,
- "text": "being",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 394.249,
- "end": 394.319,
- "confidence": 1,
- "text": "at",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 394.319,
- "end": 394.379,
- "confidence": 1,
- "text": "a",
- "offset": 64,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 394.379,
- "end": 395.109,
- "confidence": 1,
- "text": "party",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 395.589,
- "end": 395.759,
- "confidence": 1,
- "text": "and",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 395.759,
- "end": 396.169,
- "confidence": 1,
- "text": "telling",
- "offset": 76,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 396.169,
- "end": 396.439,
- "confidence": 1,
- "text": "someone",
- "offset": 84,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 396.439,
- "end": 396.679,
- "confidence": 1,
- "text": "about",
- "offset": 92,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 396.679,
- "end": 396.879,
- "confidence": 1,
- "text": "this",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 396.879,
- "end": 397.469,
- "confidence": 1,
- "text": "robot,",
- "offset": 103,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 398.059,
- "end": 398.379,
- "confidence": 1,
- "text": "and",
- "offset": 110,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 398.379,
- "end": 398.519,
- "confidence": 1,
- "text": "her",
- "offset": 114,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 398.519,
- "end": 399.049,
- "confidence": 1,
- "text": "response",
- "offset": 118,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 399.049,
- "end": 399.589,
- "confidence": 1,
- "text": "was",
- "offset": 127,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 400.339,
- "end": 400.479,
- "confidence": 1,
- "text": "Oh,",
- "offset": 131,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 400.479,
- "end": 400.599,
- "confidence": 1,
- "text": "my",
- "offset": 135,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 400.599,
- "end": 401.369,
- "confidence": 1,
- "text": "gosh,",
- "offset": 138,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 402.489,
- "end": 402.749,
- "confidence": 0.9999,
- "text": "that's",
- "offset": 144,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 402.749,
- "end": 403.469,
- "confidence": 1,
- "text": "horrible.",
- "offset": 151,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "I can't believe we're giving people robots instead of human care, and this is a really common response.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 55",
- "words": [
- {
- "start": 405.049,
- "end": 405.119,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 405.119,
- "end": 405.439,
- "text": "can't",
- "confidence": 1
- },
- {
- "start": 405.439,
- "end": 405.759,
- "text": "believe",
- "confidence": 1
- },
- {
- "start": 405.759,
- "end": 405.869,
- "text": "we're",
- "confidence": 0.9928
- },
- {
- "start": 405.869,
- "end": 406.159,
- "text": "giving",
- "confidence": 1
- },
- {
- "start": 406.159,
- "end": 406.509,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 406.509,
- "end": 407.089,
- "text": "robots",
- "confidence": 0.9624
- },
- {
- "start": 407.089,
- "end": 407.429,
- "text": "instead",
- "confidence": 1
- },
- {
- "start": 407.429,
- "end": 407.539,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 407.539,
- "end": 407.879,
- "text": "human",
- "confidence": 0.9999
- },
- {
- "start": 407.879,
- "end": 408.469,
- "text": "care,",
- "confidence": 0.9922
- },
- {
- "start": 410.519,
- "end": 410.689,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 410.689,
- "end": 410.809,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 410.809,
- "end": 410.929,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 410.929,
- "end": 411.029,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 411.029,
- "end": 411.339,
- "text": "really",
- "confidence": 0.9915
- },
- {
- "start": 411.339,
- "end": 411.669,
- "text": "common",
- "confidence": 1
- },
- {
- "start": 411.669,
- "end": 412.389,
- "text": "response.",
- "confidence": 0.9995
- }
- ],
- "start": 405.049
- },
- "entityRanges": [
- {
- "start": 405.049,
- "end": 405.119,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 405.119,
- "end": 405.439,
- "confidence": 1,
- "text": "can't",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 405.439,
- "end": 405.759,
- "confidence": 1,
- "text": "believe",
- "offset": 8,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 405.759,
- "end": 405.869,
- "confidence": 0.9928,
- "text": "we're",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 405.869,
- "end": 406.159,
- "confidence": 1,
- "text": "giving",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 406.159,
- "end": 406.509,
- "confidence": 1,
- "text": "people",
- "offset": 29,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 406.509,
- "end": 407.089,
- "confidence": 0.9624,
- "text": "robots",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 407.089,
- "end": 407.429,
- "confidence": 1,
- "text": "instead",
- "offset": 43,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 407.429,
- "end": 407.539,
- "confidence": 1,
- "text": "of",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 407.539,
- "end": 407.879,
- "confidence": 0.9999,
- "text": "human",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 407.879,
- "end": 408.469,
- "confidence": 0.9922,
- "text": "care,",
- "offset": 60,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 410.519,
- "end": 410.689,
- "confidence": 1,
- "text": "and",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 410.689,
- "end": 410.809,
- "confidence": 1,
- "text": "this",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 410.809,
- "end": 410.929,
- "confidence": 1,
- "text": "is",
- "offset": 75,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 410.929,
- "end": 411.029,
- "confidence": 1,
- "text": "a",
- "offset": 78,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 411.029,
- "end": 411.339,
- "confidence": 0.9915,
- "text": "really",
- "offset": 80,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 411.339,
- "end": 411.669,
- "confidence": 1,
- "text": "common",
- "offset": 87,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 411.669,
- "end": 412.389,
- "confidence": 0.9995,
- "text": "response.",
- "offset": 94,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And I think it's absolutely correct because that would be terrible.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 56",
- "words": [
- {
- "start": 412.399,
- "end": 412.679,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 412.689,
- "end": 412.779,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 412.779,
- "end": 412.999,
- "text": "think",
- "confidence": 1
- },
- {
- "start": 412.999,
- "end": 413.169,
- "text": "it's",
- "confidence": 1
- },
- {
- "start": 413.229,
- "end": 414.029,
- "text": "absolutely",
- "confidence": 1
- },
- {
- "start": 414.029,
- "end": 414.799,
- "text": "correct",
- "confidence": 1
- },
- {
- "start": 414.849,
- "end": 415.289,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 415.299,
- "end": 415.599,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 415.599,
- "end": 415.889,
- "text": "would",
- "confidence": 1
- },
- {
- "start": 415.899,
- "end": 416.119,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 416.119,
- "end": 416.969,
- "text": "terrible.",
- "confidence": 1
- }
- ],
- "start": 412.399
- },
- "entityRanges": [
- {
- "start": 412.399,
- "end": 412.679,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 412.689,
- "end": 412.779,
- "confidence": 1,
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 412.779,
- "end": 412.999,
- "confidence": 1,
- "text": "think",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 412.999,
- "end": 413.169,
- "confidence": 1,
- "text": "it's",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 413.229,
- "end": 414.029,
- "confidence": 1,
- "text": "absolutely",
- "offset": 17,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 414.029,
- "end": 414.799,
- "confidence": 1,
- "text": "correct",
- "offset": 28,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 414.849,
- "end": 415.289,
- "confidence": 1,
- "text": "because",
- "offset": 36,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 415.299,
- "end": 415.599,
- "confidence": 1,
- "text": "that",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 415.599,
- "end": 415.889,
- "confidence": 1,
- "text": "would",
- "offset": 49,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 415.899,
- "end": 416.119,
- "confidence": 1,
- "text": "be",
- "offset": 55,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 416.119,
- "end": 416.969,
- "confidence": 1,
- "text": "terrible.",
- "offset": 58,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But in this case, it's not what this robot replaces.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 57",
- "words": [
- {
- "start": 417.769,
- "end": 417.929,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 417.929,
- "end": 418.049,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 418.049,
- "end": 418.229,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 418.229,
- "end": 418.449,
- "text": "case,",
- "confidence": 1
- },
- {
- "start": 418.449,
- "end": 418.589,
- "text": "it's",
- "confidence": 0.999
- },
- {
- "start": 418.589,
- "end": 418.809,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 418.809,
- "end": 418.909,
- "text": "what",
- "confidence": 0.988
- },
- {
- "start": 418.909,
- "end": 419.069,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 419.069,
- "end": 419.409,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 419.409,
- "end": 420.269,
- "text": "replaces.",
- "confidence": 0.9969
- }
- ],
- "start": 417.769
- },
- "entityRanges": [
- {
- "start": 417.769,
- "end": 417.929,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 417.929,
- "end": 418.049,
- "confidence": 1,
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 418.049,
- "end": 418.229,
- "confidence": 1,
- "text": "this",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 418.229,
- "end": 418.449,
- "confidence": 1,
- "text": "case,",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 418.449,
- "end": 418.589,
- "confidence": 0.999,
- "text": "it's",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 418.589,
- "end": 418.809,
- "confidence": 1,
- "text": "not",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 418.809,
- "end": 418.909,
- "confidence": 0.988,
- "text": "what",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 418.909,
- "end": 419.069,
- "confidence": 1,
- "text": "this",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 419.069,
- "end": 419.409,
- "confidence": 1,
- "text": "robot",
- "offset": 37,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 419.409,
- "end": 420.269,
- "confidence": 0.9969,
- "text": "replaces.",
- "offset": 43,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "What this robot replaces is animal therapy in context, where we can't use really animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 58",
- "words": [
- {
- "start": 420.829,
- "end": 420.979,
- "text": "What",
- "confidence": 0.5075
- },
- {
- "start": 420.979,
- "end": 421.189,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 421.189,
- "end": 421.539,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 421.539,
- "end": 422.249,
- "text": "replaces",
- "confidence": 0.9968
- },
- {
- "start": 422.259,
- "end": 422.499,
- "text": "is",
- "confidence": 0.9929
- },
- {
- "start": 422.509,
- "end": 422.899,
- "text": "animal",
- "confidence": 1
- },
- {
- "start": 422.899,
- "end": 423.469,
- "text": "therapy",
- "confidence": 1
- },
- {
- "start": 423.959,
- "end": 424.129,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 424.129,
- "end": 424.759,
- "text": "context,",
- "confidence": 0.9191
- },
- {
- "start": 424.759,
- "end": 424.889,
- "text": "where",
- "confidence": 1
- },
- {
- "start": 424.889,
- "end": 425.009,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 425.009,
- "end": 425.529,
- "text": "can't",
- "confidence": 0.9744
- },
- {
- "start": 425.529,
- "end": 425.819,
- "text": "use",
- "confidence": 1
- },
- {
- "start": 425.819,
- "end": 426.099,
- "text": "really",
- "confidence": 0.9413
- },
- {
- "start": 426.099,
- "end": 426.909,
- "text": "animals.",
- "confidence": 0.9974
- }
- ],
- "start": 420.829
- },
- "entityRanges": [
- {
- "start": 420.829,
- "end": 420.979,
- "confidence": 0.5075,
- "text": "What",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 420.979,
- "end": 421.189,
- "confidence": 1,
- "text": "this",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 421.189,
- "end": 421.539,
- "confidence": 1,
- "text": "robot",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 421.539,
- "end": 422.249,
- "confidence": 0.9968,
- "text": "replaces",
- "offset": 16,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 422.259,
- "end": 422.499,
- "confidence": 0.9929,
- "text": "is",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 422.509,
- "end": 422.899,
- "confidence": 1,
- "text": "animal",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 422.899,
- "end": 423.469,
- "confidence": 1,
- "text": "therapy",
- "offset": 35,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 423.959,
- "end": 424.129,
- "confidence": 1,
- "text": "in",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 424.129,
- "end": 424.759,
- "confidence": 0.9191,
- "text": "context,",
- "offset": 46,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 424.759,
- "end": 424.889,
- "confidence": 1,
- "text": "where",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 424.889,
- "end": 425.009,
- "confidence": 1,
- "text": "we",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 425.009,
- "end": 425.529,
- "confidence": 0.9744,
- "text": "can't",
- "offset": 64,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 425.529,
- "end": 425.819,
- "confidence": 1,
- "text": "use",
- "offset": 70,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 425.819,
- "end": 426.099,
- "confidence": 0.9413,
- "text": "really",
- "offset": 74,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 426.099,
- "end": 426.909,
- "confidence": 0.9974,
- "text": "animals.",
- "offset": 81,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But we can use robots because people will consistently treat them like more like more like an animal than a device.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 59",
- "words": [
- {
- "start": 427.079,
- "end": 427.299,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 427.299,
- "end": 427.429,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 427.429,
- "end": 427.759,
- "text": "can",
- "confidence": 1
- },
- {
- "start": 427.759,
- "end": 427.949,
- "text": "use",
- "confidence": 1
- },
- {
- "start": 427.949,
- "end": 428.369,
- "text": "robots",
- "confidence": 0.9975
- },
- {
- "start": 428.369,
- "end": 428.649,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 428.659,
- "end": 428.919,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 428.919,
- "end": 429.029,
- "text": "will",
- "confidence": 0.9968
- },
- {
- "start": 429.029,
- "end": 429.939,
- "text": "consistently",
- "confidence": 0.9986
- },
- {
- "start": 429.939,
- "end": 430.309,
- "text": "treat",
- "confidence": 1
- },
- {
- "start": 430.309,
- "end": 430.629,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 430.639,
- "end": 430.859,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 430.859,
- "end": 431.359,
- "text": "more",
- "confidence": 0.9974
- },
- {
- "start": 431.679,
- "end": 431.829,
- "text": "like",
- "confidence": 0.9183
- },
- {
- "start": 431.829,
- "end": 432.049,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 432.049,
- "end": 432.209,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 432.209,
- "end": 432.289,
- "text": "an",
- "confidence": 1
- },
- {
- "start": 432.299,
- "end": 432.879,
- "text": "animal",
- "confidence": 1
- },
- {
- "start": 432.889,
- "end": 433.029,
- "text": "than",
- "confidence": 0.9995
- },
- {
- "start": 433.029,
- "end": 433.079,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 433.079,
- "end": 433.669,
- "text": "device.",
- "confidence": 1
- }
- ],
- "start": 427.079
- },
- "entityRanges": [
- {
- "start": 427.079,
- "end": 427.299,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 427.299,
- "end": 427.429,
- "confidence": 1,
- "text": "we",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 427.429,
- "end": 427.759,
- "confidence": 1,
- "text": "can",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 427.759,
- "end": 427.949,
- "confidence": 1,
- "text": "use",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 427.949,
- "end": 428.369,
- "confidence": 0.9975,
- "text": "robots",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 428.369,
- "end": 428.649,
- "confidence": 1,
- "text": "because",
- "offset": 22,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 428.659,
- "end": 428.919,
- "confidence": 1,
- "text": "people",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 428.919,
- "end": 429.029,
- "confidence": 0.9968,
- "text": "will",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 429.029,
- "end": 429.939,
- "confidence": 0.9986,
- "text": "consistently",
- "offset": 42,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 429.939,
- "end": 430.309,
- "confidence": 1,
- "text": "treat",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 430.309,
- "end": 430.629,
- "confidence": 1,
- "text": "them",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 430.639,
- "end": 430.859,
- "confidence": 1,
- "text": "like",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 430.859,
- "end": 431.359,
- "confidence": 0.9974,
- "text": "more",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 431.679,
- "end": 431.829,
- "confidence": 0.9183,
- "text": "like",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 431.829,
- "end": 432.049,
- "confidence": 1,
- "text": "more",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 432.049,
- "end": 432.209,
- "confidence": 1,
- "text": "like",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 432.209,
- "end": 432.289,
- "confidence": 1,
- "text": "an",
- "offset": 91,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 432.299,
- "end": 432.879,
- "confidence": 1,
- "text": "animal",
- "offset": 94,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 432.889,
- "end": 433.029,
- "confidence": 0.9995,
- "text": "than",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 433.029,
- "end": 433.079,
- "confidence": 1,
- "text": "a",
- "offset": 106,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 433.079,
- "end": 433.669,
- "confidence": 1,
- "text": "device.",
- "offset": 108,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Acknowledging this emotional connection to robots can also help us anticipate challenges as thes devices move into more intimate areas of people's lives.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 60",
- "words": [
- {
- "start": 435.459,
- "end": 436.179,
- "text": "Acknowledging",
- "confidence": 1
- },
- {
- "start": 436.179,
- "end": 436.349,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 436.349,
- "end": 436.739,
- "text": "emotional",
- "confidence": 1
- },
- {
- "start": 436.739,
- "end": 437.179,
- "text": "connection",
- "confidence": 1
- },
- {
- "start": 437.179,
- "end": 437.259,
- "text": "to",
- "confidence": 0.9873
- },
- {
- "start": 437.259,
- "end": 437.569,
- "text": "robots",
- "confidence": 0.9551
- },
- {
- "start": 437.569,
- "end": 437.729,
- "text": "can",
- "confidence": 1
- },
- {
- "start": 437.729,
- "end": 438.029,
- "text": "also",
- "confidence": 1
- },
- {
- "start": 438.029,
- "end": 438.239,
- "text": "help",
- "confidence": 1
- },
- {
- "start": 438.239,
- "end": 438.379,
- "text": "us",
- "confidence": 1
- },
- {
- "start": 438.379,
- "end": 438.909,
- "text": "anticipate",
- "confidence": 1
- },
- {
- "start": 438.909,
- "end": 439.839,
- "text": "challenges",
- "confidence": 0.9986
- },
- {
- "start": 439.849,
- "end": 440.119,
- "text": "as",
- "confidence": 1
- },
- {
- "start": 440.119,
- "end": 440.269,
- "text": "thes",
- "confidence": 0.3681
- },
- {
- "start": 440.269,
- "end": 440.869,
- "text": "devices",
- "confidence": 0.9852
- },
- {
- "start": 440.869,
- "end": 441.209,
- "text": "move",
- "confidence": 0.9953
- },
- {
- "start": 441.209,
- "end": 441.419,
- "text": "into",
- "confidence": 0.9953
- },
- {
- "start": 441.419,
- "end": 441.589,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 441.599,
- "end": 441.989,
- "text": "intimate",
- "confidence": 1
- },
- {
- "start": 441.989,
- "end": 442.329,
- "text": "areas",
- "confidence": 1
- },
- {
- "start": 442.329,
- "end": 442.419,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 442.429,
- "end": 442.779,
- "text": "people's",
- "confidence": 0.9473
- },
- {
- "start": 442.779,
- "end": 443.369,
- "text": "lives.",
- "confidence": 1
- }
- ],
- "start": 435.459
- },
- "entityRanges": [
- {
- "start": 435.459,
- "end": 436.179,
- "confidence": 1,
- "text": "Acknowledging",
- "offset": 0,
- "length": 13,
- "key": expect.any(String)
- },
- {
- "start": 436.179,
- "end": 436.349,
- "confidence": 1,
- "text": "this",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 436.349,
- "end": 436.739,
- "confidence": 1,
- "text": "emotional",
- "offset": 19,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 436.739,
- "end": 437.179,
- "confidence": 1,
- "text": "connection",
- "offset": 29,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 437.179,
- "end": 437.259,
- "confidence": 0.9873,
- "text": "to",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 437.259,
- "end": 437.569,
- "confidence": 0.9551,
- "text": "robots",
- "offset": 43,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 437.569,
- "end": 437.729,
- "confidence": 1,
- "text": "can",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 437.729,
- "end": 438.029,
- "confidence": 1,
- "text": "also",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 438.029,
- "end": 438.239,
- "confidence": 1,
- "text": "help",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 438.239,
- "end": 438.379,
- "confidence": 1,
- "text": "us",
- "offset": 64,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 438.379,
- "end": 438.909,
- "confidence": 1,
- "text": "anticipate",
- "offset": 67,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 438.909,
- "end": 439.839,
- "confidence": 0.9986,
- "text": "challenges",
- "offset": 78,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 439.849,
- "end": 440.119,
- "confidence": 1,
- "text": "as",
- "offset": 89,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 440.119,
- "end": 440.269,
- "confidence": 0.3681,
- "text": "thes",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 440.269,
- "end": 440.869,
- "confidence": 0.9852,
- "text": "devices",
- "offset": 97,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 440.869,
- "end": 441.209,
- "confidence": 0.9953,
- "text": "move",
- "offset": 105,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 441.209,
- "end": 441.419,
- "confidence": 0.9953,
- "text": "into",
- "offset": 110,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 441.419,
- "end": 441.589,
- "confidence": 1,
- "text": "more",
- "offset": 115,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 441.599,
- "end": 441.989,
- "confidence": 1,
- "text": "intimate",
- "offset": 120,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 441.989,
- "end": 442.329,
- "confidence": 1,
- "text": "areas",
- "offset": 129,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 442.329,
- "end": 442.419,
- "confidence": 1,
- "text": "of",
- "offset": 135,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 442.429,
- "end": 442.779,
- "confidence": 0.9473,
- "text": "people's",
- "offset": 138,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 442.779,
- "end": 443.369,
- "confidence": 1,
- "text": "lives.",
- "offset": 147,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "For example.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 61",
- "words": [
- {
- "start": 444.059,
- "end": 444.229,
- "text": "For",
- "confidence": 1
- },
- {
- "start": 444.229,
- "end": 444.799,
- "text": "example.",
- "confidence": 1
- }
- ],
- "start": 444.059
- },
- "entityRanges": [
- {
- "start": 444.059,
- "end": 444.229,
- "confidence": 1,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 444.229,
- "end": 444.799,
- "confidence": 1,
- "text": "example.",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Is it okay if your child's teddy bear robot records private conversations?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 62",
- "words": [
- {
- "start": 444.809,
- "end": 444.969,
- "text": "Is",
- "confidence": 1
- },
- {
- "start": 444.969,
- "end": 445.059,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 445.059,
- "end": 445.499,
- "text": "okay",
- "confidence": 0.6022
- },
- {
- "start": 445.499,
- "end": 445.619,
- "text": "if",
- "confidence": 1
- },
- {
- "start": 445.619,
- "end": 445.729,
- "text": "your",
- "confidence": 0.9966
- },
- {
- "start": 445.729,
- "end": 446.399,
- "text": "child's",
- "confidence": 0.9983
- },
- {
- "start": 446.669,
- "end": 446.979,
- "text": "teddy",
- "confidence": 1
- },
- {
- "start": 446.979,
- "end": 447.199,
- "text": "bear",
- "confidence": 1
- },
- {
- "start": 447.199,
- "end": 447.549,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 447.549,
- "end": 447.859,
- "text": "records",
- "confidence": 0.9947
- },
- {
- "start": 447.859,
- "end": 448.189,
- "text": "private",
- "confidence": 1
- },
- {
- "start": 448.189,
- "end": 449.169,
- "text": "conversations?",
- "confidence": 0.9986
- }
- ],
- "start": 444.809
- },
- "entityRanges": [
- {
- "start": 444.809,
- "end": 444.969,
- "confidence": 1,
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 444.969,
- "end": 445.059,
- "confidence": 1,
- "text": "it",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 445.059,
- "end": 445.499,
- "confidence": 0.6022,
- "text": "okay",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 445.499,
- "end": 445.619,
- "confidence": 1,
- "text": "if",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 445.619,
- "end": 445.729,
- "confidence": 0.9966,
- "text": "your",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 445.729,
- "end": 446.399,
- "confidence": 0.9983,
- "text": "child's",
- "offset": 19,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 446.669,
- "end": 446.979,
- "confidence": 1,
- "text": "teddy",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 446.979,
- "end": 447.199,
- "confidence": 1,
- "text": "bear",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 447.199,
- "end": 447.549,
- "confidence": 1,
- "text": "robot",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 447.549,
- "end": 447.859,
- "confidence": 0.9947,
- "text": "records",
- "offset": 44,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 447.859,
- "end": 448.189,
- "confidence": 1,
- "text": "private",
- "offset": 52,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 448.189,
- "end": 449.169,
- "confidence": 0.9986,
- "text": "conversations?",
- "offset": 60,
- "length": 14,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Is it okay if your sex robot has compelling in APP purchases Because robots bless capitalism equals questions around consumer protection and privacy?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 63",
- "words": [
- {
- "start": 449.749,
- "end": 449.869,
- "text": "Is",
- "confidence": 1
- },
- {
- "start": 449.869,
- "end": 449.969,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 449.969,
- "end": 450.289,
- "text": "okay",
- "confidence": 0.7056
- },
- {
- "start": 450.289,
- "end": 450.399,
- "text": "if",
- "confidence": 1
- },
- {
- "start": 450.399,
- "end": 450.529,
- "text": "your",
- "confidence": 0.9863
- },
- {
- "start": 450.529,
- "end": 451.039,
- "text": "sex",
- "confidence": 1
- },
- {
- "start": 451.039,
- "end": 451.399,
- "text": "robot",
- "confidence": 0.9965
- },
- {
- "start": 451.409,
- "end": 451.649,
- "text": "has",
- "confidence": 1
- },
- {
- "start": 451.649,
- "end": 452.319,
- "text": "compelling",
- "confidence": 1
- },
- {
- "start": 452.319,
- "end": 452.539,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 452.539,
- "end": 452.819,
- "text": "APP",
- "confidence": 1
- },
- {
- "start": 452.819,
- "end": 453.769,
- "text": "purchases",
- "confidence": 0.9995
- },
- {
- "start": 455.249,
- "end": 455.719,
- "text": "Because",
- "confidence": 1
- },
- {
- "start": 455.729,
- "end": 456.319,
- "text": "robots",
- "confidence": 0.9959
- },
- {
- "start": 456.319,
- "end": 456.629,
- "text": "bless",
- "confidence": 0.9343
- },
- {
- "start": 456.629,
- "end": 457.779,
- "text": "capitalism",
- "confidence": 1
- },
- {
- "start": 457.789,
- "end": 458.169,
- "text": "equals",
- "confidence": 1
- },
- {
- "start": 458.169,
- "end": 458.899,
- "text": "questions",
- "confidence": 0.9924
- },
- {
- "start": 458.909,
- "end": 459.489,
- "text": "around",
- "confidence": 0.8977
- },
- {
- "start": 459.719,
- "end": 460.179,
- "text": "consumer",
- "confidence": 1
- },
- {
- "start": 460.179,
- "end": 460.779,
- "text": "protection",
- "confidence": 1
- },
- {
- "start": 460.779,
- "end": 460.909,
- "text": "and",
- "confidence": 0.9985
- },
- {
- "start": 460.909,
- "end": 461.569,
- "text": "privacy?",
- "confidence": 1
- }
- ],
- "start": 449.749
- },
- "entityRanges": [
- {
- "start": 449.749,
- "end": 449.869,
- "confidence": 1,
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 449.869,
- "end": 449.969,
- "confidence": 1,
- "text": "it",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 449.969,
- "end": 450.289,
- "confidence": 0.7056,
- "text": "okay",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 450.289,
- "end": 450.399,
- "confidence": 1,
- "text": "if",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 450.399,
- "end": 450.529,
- "confidence": 0.9863,
- "text": "your",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 450.529,
- "end": 451.039,
- "confidence": 1,
- "text": "sex",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 451.039,
- "end": 451.399,
- "confidence": 0.9965,
- "text": "robot",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 451.409,
- "end": 451.649,
- "confidence": 1,
- "text": "has",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 451.649,
- "end": 452.319,
- "confidence": 1,
- "text": "compelling",
- "offset": 33,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 452.319,
- "end": 452.539,
- "confidence": 1,
- "text": "in",
- "offset": 44,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 452.539,
- "end": 452.819,
- "confidence": 1,
- "text": "APP",
- "offset": 47,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 452.819,
- "end": 453.769,
- "confidence": 0.9995,
- "text": "purchases",
- "offset": 51,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 455.249,
- "end": 455.719,
- "confidence": 1,
- "text": "Because",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 455.729,
- "end": 456.319,
- "confidence": 0.9959,
- "text": "robots",
- "offset": 69,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 456.319,
- "end": 456.629,
- "confidence": 0.9343,
- "text": "bless",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 456.629,
- "end": 457.779,
- "confidence": 1,
- "text": "capitalism",
- "offset": 82,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 457.789,
- "end": 458.169,
- "confidence": 1,
- "text": "equals",
- "offset": 93,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 458.169,
- "end": 458.899,
- "confidence": 0.9924,
- "text": "questions",
- "offset": 100,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 458.909,
- "end": 459.489,
- "confidence": 0.8977,
- "text": "around",
- "offset": 110,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 459.719,
- "end": 460.179,
- "confidence": 1,
- "text": "consumer",
- "offset": 117,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 460.179,
- "end": 460.779,
- "confidence": 1,
- "text": "protection",
- "offset": 126,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 460.779,
- "end": 460.909,
- "confidence": 0.9985,
- "text": "and",
- "offset": 137,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 460.909,
- "end": 461.569,
- "confidence": 1,
- "text": "privacy?",
- "offset": 141,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And those aren't the only reasons that our behavior around these machines could matter a few years after that first initial experience I had with this baby dinosaur robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 64",
- "words": [
- {
- "start": 462.539,
- "end": 462.699,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 462.699,
- "end": 462.869,
- "text": "those",
- "confidence": 1
- },
- {
- "start": 462.869,
- "end": 463.129,
- "text": "aren't",
- "confidence": 1
- },
- {
- "start": 463.139,
- "end": 463.269,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 463.269,
- "end": 463.509,
- "text": "only",
- "confidence": 1
- },
- {
- "start": 463.509,
- "end": 463.939,
- "text": "reasons",
- "confidence": 1
- },
- {
- "start": 463.939,
- "end": 464.059,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 464.059,
- "end": 464.179,
- "text": "our",
- "confidence": 0.7457
- },
- {
- "start": 464.179,
- "end": 464.789,
- "text": "behavior",
- "confidence": 0.7944
- },
- {
- "start": 464.789,
- "end": 465.029,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 465.029,
- "end": 465.199,
- "text": "these",
- "confidence": 1
- },
- {
- "start": 465.199,
- "end": 465.639,
- "text": "machines",
- "confidence": 1
- },
- {
- "start": 465.639,
- "end": 465.819,
- "text": "could",
- "confidence": 1
- },
- {
- "start": 465.819,
- "end": 466.269,
- "text": "matter",
- "confidence": 0.9997
- },
- {
- "start": 468.729,
- "end": 468.819,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 468.819,
- "end": 469.059,
- "text": "few",
- "confidence": 1
- },
- {
- "start": 469.059,
- "end": 469.339,
- "text": "years",
- "confidence": 1
- },
- {
- "start": 469.339,
- "end": 470.079,
- "text": "after",
- "confidence": 1
- },
- {
- "start": 470.139,
- "end": 470.369,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 470.369,
- "end": 470.689,
- "text": "first",
- "confidence": 1
- },
- {
- "start": 470.689,
- "end": 471.079,
- "text": "initial",
- "confidence": 1
- },
- {
- "start": 471.079,
- "end": 471.709,
- "text": "experience",
- "confidence": 1
- },
- {
- "start": 471.709,
- "end": 471.759,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 471.759,
- "end": 472.059,
- "text": "had",
- "confidence": 1
- },
- {
- "start": 472.059,
- "end": 472.199,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 472.199,
- "end": 472.399,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 472.399,
- "end": 472.649,
- "text": "baby",
- "confidence": 1
- },
- {
- "start": 472.649,
- "end": 473.129,
- "text": "dinosaur",
- "confidence": 1
- },
- {
- "start": 473.129,
- "end": 473.619,
- "text": "robot.",
- "confidence": 0.9935
- }
- ],
- "start": 462.539
- },
- "entityRanges": [
- {
- "start": 462.539,
- "end": 462.699,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 462.699,
- "end": 462.869,
- "confidence": 1,
- "text": "those",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 462.869,
- "end": 463.129,
- "confidence": 1,
- "text": "aren't",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 463.139,
- "end": 463.269,
- "confidence": 1,
- "text": "the",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 463.269,
- "end": 463.509,
- "confidence": 1,
- "text": "only",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 463.509,
- "end": 463.939,
- "confidence": 1,
- "text": "reasons",
- "offset": 26,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 463.939,
- "end": 464.059,
- "confidence": 1,
- "text": "that",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 464.059,
- "end": 464.179,
- "confidence": 0.7457,
- "text": "our",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 464.179,
- "end": 464.789,
- "confidence": 0.7944,
- "text": "behavior",
- "offset": 43,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 464.789,
- "end": 465.029,
- "confidence": 1,
- "text": "around",
- "offset": 52,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 465.029,
- "end": 465.199,
- "confidence": 1,
- "text": "these",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 465.199,
- "end": 465.639,
- "confidence": 1,
- "text": "machines",
- "offset": 65,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 465.639,
- "end": 465.819,
- "confidence": 1,
- "text": "could",
- "offset": 74,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 465.819,
- "end": 466.269,
- "confidence": 0.9997,
- "text": "matter",
- "offset": 80,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 468.729,
- "end": 468.819,
- "confidence": 1,
- "text": "a",
- "offset": 87,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 468.819,
- "end": 469.059,
- "confidence": 1,
- "text": "few",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 469.059,
- "end": 469.339,
- "confidence": 1,
- "text": "years",
- "offset": 93,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 469.339,
- "end": 470.079,
- "confidence": 1,
- "text": "after",
- "offset": 99,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 470.139,
- "end": 470.369,
- "confidence": 1,
- "text": "that",
- "offset": 105,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 470.369,
- "end": 470.689,
- "confidence": 1,
- "text": "first",
- "offset": 110,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 470.689,
- "end": 471.079,
- "confidence": 1,
- "text": "initial",
- "offset": 116,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 471.079,
- "end": 471.709,
- "confidence": 1,
- "text": "experience",
- "offset": 124,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 471.709,
- "end": 471.759,
- "confidence": 1,
- "text": "I",
- "offset": 135,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 471.759,
- "end": 472.059,
- "confidence": 1,
- "text": "had",
- "offset": 137,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 472.059,
- "end": 472.199,
- "confidence": 1,
- "text": "with",
- "offset": 141,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 472.199,
- "end": 472.399,
- "confidence": 1,
- "text": "this",
- "offset": 146,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 472.399,
- "end": 472.649,
- "confidence": 1,
- "text": "baby",
- "offset": 151,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 472.649,
- "end": 473.129,
- "confidence": 1,
- "text": "dinosaur",
- "offset": 156,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 473.129,
- "end": 473.619,
- "confidence": 0.9935,
- "text": "robot.",
- "offset": 165,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "I did a workshop with my friend Hana Scaasi, and we took five of these baby dinosaur robots, and we gave them two five teams of people, and we had them named them and play with them and interact with them for about an hour.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 65",
- "words": [
- {
- "start": 474.359,
- "end": 474.469,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 474.469,
- "end": 474.639,
- "text": "did",
- "confidence": 1
- },
- {
- "start": 474.639,
- "end": 474.709,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 474.709,
- "end": 475.149,
- "text": "workshop",
- "confidence": 1
- },
- {
- "start": 475.149,
- "end": 475.279,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 475.279,
- "end": 475.379,
- "text": "my",
- "confidence": 1
- },
- {
- "start": 475.379,
- "end": 475.679,
- "text": "friend",
- "confidence": 1
- },
- {
- "start": 475.679,
- "end": 475.919,
- "text": "Hana",
- "confidence": 0.1805
- },
- {
- "start": 475.919,
- "end": 476.379,
- "text": "Scaasi,",
- "confidence": 0.3187
- },
- {
- "start": 476.879,
- "end": 477.269,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 477.539,
- "end": 477.669,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 477.669,
- "end": 477.889,
- "text": "took",
- "confidence": 1
- },
- {
- "start": 477.889,
- "end": 478.249,
- "text": "five",
- "confidence": 1
- },
- {
- "start": 478.249,
- "end": 478.349,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 478.349,
- "end": 478.659,
- "text": "these",
- "confidence": 1
- },
- {
- "start": 478.669,
- "end": 478.889,
- "text": "baby",
- "confidence": 0.9997
- },
- {
- "start": 478.889,
- "end": 479.349,
- "text": "dinosaur",
- "confidence": 0.9996
- },
- {
- "start": 479.349,
- "end": 479.769,
- "text": "robots,",
- "confidence": 1
- },
- {
- "start": 479.769,
- "end": 479.899,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 479.899,
- "end": 479.979,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 479.979,
- "end": 480.189,
- "text": "gave",
- "confidence": 1
- },
- {
- "start": 480.189,
- "end": 480.319,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 480.319,
- "end": 480.409,
- "text": "two",
- "confidence": 0.5944
- },
- {
- "start": 480.409,
- "end": 480.749,
- "text": "five",
- "confidence": 1
- },
- {
- "start": 480.749,
- "end": 481.069,
- "text": "teams",
- "confidence": 1
- },
- {
- "start": 481.069,
- "end": 481.159,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 481.169,
- "end": 481.709,
- "text": "people,",
- "confidence": 1
- },
- {
- "start": 482.289,
- "end": 482.399,
- "text": "and",
- "confidence": 0.9715
- },
- {
- "start": 482.399,
- "end": 482.479,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 482.479,
- "end": 482.689,
- "text": "had",
- "confidence": 0.8768
- },
- {
- "start": 482.689,
- "end": 482.879,
- "text": "them",
- "confidence": 0.9955
- },
- {
- "start": 482.879,
- "end": 483.229,
- "text": "named",
- "confidence": 0.5633
- },
- {
- "start": 483.229,
- "end": 483.659,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 484.003,
- "end": 484.143,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 484.143,
- "end": 484.423,
- "text": "play",
- "confidence": 1
- },
- {
- "start": 484.423,
- "end": 484.603,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 484.603,
- "end": 485.113,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 485.123,
- "end": 485.263,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 485.263,
- "end": 485.773,
- "text": "interact",
- "confidence": 1
- },
- {
- "start": 485.773,
- "end": 485.913,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 485.913,
- "end": 486.313,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 486.313,
- "end": 486.723,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 486.803,
- "end": 487.163,
- "text": "about",
- "confidence": 1
- },
- {
- "start": 487.163,
- "end": 487.263,
- "text": "an",
- "confidence": 1
- },
- {
- "start": 487.263,
- "end": 487.723,
- "text": "hour.",
- "confidence": 1
- }
- ],
- "start": 474.359
- },
- "entityRanges": [
- {
- "start": 474.359,
- "end": 474.469,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 474.469,
- "end": 474.639,
- "confidence": 1,
- "text": "did",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 474.639,
- "end": 474.709,
- "confidence": 1,
- "text": "a",
- "offset": 6,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 474.709,
- "end": 475.149,
- "confidence": 1,
- "text": "workshop",
- "offset": 8,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 475.149,
- "end": 475.279,
- "confidence": 1,
- "text": "with",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 475.279,
- "end": 475.379,
- "confidence": 1,
- "text": "my",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 475.379,
- "end": 475.679,
- "confidence": 1,
- "text": "friend",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 475.679,
- "end": 475.919,
- "confidence": 0.1805,
- "text": "Hana",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 475.919,
- "end": 476.379,
- "confidence": 0.3187,
- "text": "Scaasi,",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 476.879,
- "end": 477.269,
- "confidence": 1,
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 477.539,
- "end": 477.669,
- "confidence": 1,
- "text": "we",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 477.669,
- "end": 477.889,
- "confidence": 1,
- "text": "took",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 477.889,
- "end": 478.249,
- "confidence": 1,
- "text": "five",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 478.249,
- "end": 478.349,
- "confidence": 1,
- "text": "of",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 478.349,
- "end": 478.659,
- "confidence": 1,
- "text": "these",
- "offset": 65,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 478.669,
- "end": 478.889,
- "confidence": 0.9997,
- "text": "baby",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 478.889,
- "end": 479.349,
- "confidence": 0.9996,
- "text": "dinosaur",
- "offset": 76,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 479.349,
- "end": 479.769,
- "confidence": 1,
- "text": "robots,",
- "offset": 85,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 479.769,
- "end": 479.899,
- "confidence": 1,
- "text": "and",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 479.899,
- "end": 479.979,
- "confidence": 1,
- "text": "we",
- "offset": 97,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 479.979,
- "end": 480.189,
- "confidence": 1,
- "text": "gave",
- "offset": 100,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 480.189,
- "end": 480.319,
- "confidence": 1,
- "text": "them",
- "offset": 105,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 480.319,
- "end": 480.409,
- "confidence": 0.5944,
- "text": "two",
- "offset": 110,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 480.409,
- "end": 480.749,
- "confidence": 1,
- "text": "five",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 480.749,
- "end": 481.069,
- "confidence": 1,
- "text": "teams",
- "offset": 119,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 481.069,
- "end": 481.159,
- "confidence": 1,
- "text": "of",
- "offset": 125,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 481.169,
- "end": 481.709,
- "confidence": 1,
- "text": "people,",
- "offset": 128,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 482.289,
- "end": 482.399,
- "confidence": 0.9715,
- "text": "and",
- "offset": 136,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 482.399,
- "end": 482.479,
- "confidence": 1,
- "text": "we",
- "offset": 140,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 482.479,
- "end": 482.689,
- "confidence": 0.8768,
- "text": "had",
- "offset": 143,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 482.689,
- "end": 482.879,
- "confidence": 0.9955,
- "text": "them",
- "offset": 147,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 482.879,
- "end": 483.229,
- "confidence": 0.5633,
- "text": "named",
- "offset": 152,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 483.229,
- "end": 483.659,
- "confidence": 1,
- "text": "them",
- "offset": 158,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 484.003,
- "end": 484.143,
- "confidence": 1,
- "text": "and",
- "offset": 163,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 484.143,
- "end": 484.423,
- "confidence": 1,
- "text": "play",
- "offset": 167,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 484.423,
- "end": 484.603,
- "confidence": 1,
- "text": "with",
- "offset": 172,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 484.603,
- "end": 485.113,
- "confidence": 1,
- "text": "them",
- "offset": 177,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 485.123,
- "end": 485.263,
- "confidence": 1,
- "text": "and",
- "offset": 182,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 485.263,
- "end": 485.773,
- "confidence": 1,
- "text": "interact",
- "offset": 186,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 485.773,
- "end": 485.913,
- "confidence": 1,
- "text": "with",
- "offset": 195,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 485.913,
- "end": 486.313,
- "confidence": 1,
- "text": "them",
- "offset": 200,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 486.313,
- "end": 486.723,
- "confidence": 1,
- "text": "for",
- "offset": 205,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 486.803,
- "end": 487.163,
- "confidence": 1,
- "text": "about",
- "offset": 209,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 487.163,
- "end": 487.263,
- "confidence": 1,
- "text": "an",
- "offset": 215,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 487.263,
- "end": 487.723,
- "confidence": 1,
- "text": "hour.",
- "offset": 218,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And then we unveiled a hammer and a hatchet, and we told them to torture and kill the robots.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 66",
- "words": [
- {
- "start": 488.703,
- "end": 488.903,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 488.903,
- "end": 489.063,
- "text": "then",
- "confidence": 1
- },
- {
- "start": 489.063,
- "end": 489.173,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 489.173,
- "end": 489.703,
- "text": "unveiled",
- "confidence": 1
- },
- {
- "start": 489.713,
- "end": 489.813,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 489.813,
- "end": 490.183,
- "text": "hammer",
- "confidence": 1
- },
- {
- "start": 490.183,
- "end": 490.283,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 490.283,
- "end": 490.323,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 490.323,
- "end": 490.913,
- "text": "hatchet,",
- "confidence": 1
- },
- {
- "start": 490.923,
- "end": 491.043,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 491.043,
- "end": 491.133,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 491.133,
- "end": 491.383,
- "text": "told",
- "confidence": 1
- },
- {
- "start": 491.383,
- "end": 491.503,
- "text": "them",
- "confidence": 1
- },
- {
- "start": 491.503,
- "end": 491.593,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 491.593,
- "end": 492.003,
- "text": "torture",
- "confidence": 1
- },
- {
- "start": 492.003,
- "end": 492.123,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 492.123,
- "end": 492.413,
- "text": "kill",
- "confidence": 1
- },
- {
- "start": 492.413,
- "end": 492.523,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 492.523,
- "end": 493.163,
- "text": "robots.",
- "confidence": 0.9756
- }
- ],
- "start": 488.703
- },
- "entityRanges": [
- {
- "start": 488.703,
- "end": 488.903,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 488.903,
- "end": 489.063,
- "confidence": 1,
- "text": "then",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 489.063,
- "end": 489.173,
- "confidence": 1,
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 489.173,
- "end": 489.703,
- "confidence": 1,
- "text": "unveiled",
- "offset": 12,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 489.713,
- "end": 489.813,
- "confidence": 1,
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 489.813,
- "end": 490.183,
- "confidence": 1,
- "text": "hammer",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 490.183,
- "end": 490.283,
- "confidence": 1,
- "text": "and",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 490.283,
- "end": 490.323,
- "confidence": 1,
- "text": "a",
- "offset": 34,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 490.323,
- "end": 490.913,
- "confidence": 1,
- "text": "hatchet,",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 490.923,
- "end": 491.043,
- "confidence": 1,
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 491.043,
- "end": 491.133,
- "confidence": 1,
- "text": "we",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 491.133,
- "end": 491.383,
- "confidence": 1,
- "text": "told",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 491.383,
- "end": 491.503,
- "confidence": 1,
- "text": "them",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 491.503,
- "end": 491.593,
- "confidence": 1,
- "text": "to",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 491.593,
- "end": 492.003,
- "confidence": 1,
- "text": "torture",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 492.003,
- "end": 492.123,
- "confidence": 1,
- "text": "and",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 492.123,
- "end": 492.413,
- "confidence": 1,
- "text": "kill",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 492.413,
- "end": 492.523,
- "confidence": 1,
- "text": "the",
- "offset": 82,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 492.523,
- "end": 493.163,
- "confidence": 0.9756,
- "text": "robots.",
- "offset": 86,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And this turned out to be a little more dramatic than we expected it to be because none of the participants would even so much a strike thes baby dinosaur robots.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 67",
- "words": [
- {
- "start": 496.833,
- "end": 497.183,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 497.193,
- "end": 497.403,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 497.403,
- "end": 497.653,
- "text": "turned",
- "confidence": 1
- },
- {
- "start": 497.653,
- "end": 497.773,
- "text": "out",
- "confidence": 1
- },
- {
- "start": 497.773,
- "end": 497.903,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 497.913,
- "end": 498.023,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 498.023,
- "end": 498.093,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 498.093,
- "end": 498.283,
- "text": "little",
- "confidence": 1
- },
- {
- "start": 498.283,
- "end": 498.433,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 498.433,
- "end": 498.993,
- "text": "dramatic",
- "confidence": 1
- },
- {
- "start": 498.993,
- "end": 499.123,
- "text": "than",
- "confidence": 1
- },
- {
- "start": 499.123,
- "end": 499.233,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 499.233,
- "end": 499.903,
- "text": "expected",
- "confidence": 1
- },
- {
- "start": 499.903,
- "end": 499.993,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 499.993,
- "end": 500.103,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 500.103,
- "end": 500.293,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 500.293,
- "end": 500.593,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 500.593,
- "end": 500.903,
- "text": "none",
- "confidence": 1
- },
- {
- "start": 500.903,
- "end": 501.003,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 501.003,
- "end": 501.103,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 501.103,
- "end": 501.853,
- "text": "participants",
- "confidence": 1
- },
- {
- "start": 501.853,
- "end": 502.233,
- "text": "would",
- "confidence": 0.9815
- },
- {
- "start": 502.343,
- "end": 502.703,
- "text": "even",
- "confidence": 1
- },
- {
- "start": 502.703,
- "end": 502.823,
- "text": "so",
- "confidence": 1
- },
- {
- "start": 502.823,
- "end": 503.003,
- "text": "much",
- "confidence": 0.9944
- },
- {
- "start": 503.003,
- "end": 503.063,
- "text": "a",
- "confidence": 0.7007
- },
- {
- "start": 503.063,
- "end": 503.553,
- "text": "strike",
- "confidence": 0.9997
- },
- {
- "start": 503.553,
- "end": 503.773,
- "text": "thes",
- "confidence": 0.4861
- },
- {
- "start": 503.783,
- "end": 503.963,
- "text": "baby",
- "confidence": 0.9227
- },
- {
- "start": 503.963,
- "end": 504.353,
- "text": "dinosaur",
- "confidence": 0.9955
- },
- {
- "start": 504.353,
- "end": 504.793,
- "text": "robots.",
- "confidence": 0.9816
- }
- ],
- "start": 496.833
- },
- "entityRanges": [
- {
- "start": 496.833,
- "end": 497.183,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 497.193,
- "end": 497.403,
- "confidence": 1,
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 497.403,
- "end": 497.653,
- "confidence": 1,
- "text": "turned",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 497.653,
- "end": 497.773,
- "confidence": 1,
- "text": "out",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 497.773,
- "end": 497.903,
- "confidence": 1,
- "text": "to",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 497.913,
- "end": 498.023,
- "confidence": 1,
- "text": "be",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 498.023,
- "end": 498.093,
- "confidence": 1,
- "text": "a",
- "offset": 26,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 498.093,
- "end": 498.283,
- "confidence": 1,
- "text": "little",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 498.283,
- "end": 498.433,
- "confidence": 1,
- "text": "more",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 498.433,
- "end": 498.993,
- "confidence": 1,
- "text": "dramatic",
- "offset": 40,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 498.993,
- "end": 499.123,
- "confidence": 1,
- "text": "than",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 499.123,
- "end": 499.233,
- "confidence": 1,
- "text": "we",
- "offset": 54,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 499.233,
- "end": 499.903,
- "confidence": 1,
- "text": "expected",
- "offset": 57,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 499.903,
- "end": 499.993,
- "confidence": 1,
- "text": "it",
- "offset": 66,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 499.993,
- "end": 500.103,
- "confidence": 1,
- "text": "to",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 500.103,
- "end": 500.293,
- "confidence": 1,
- "text": "be",
- "offset": 72,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 500.293,
- "end": 500.593,
- "confidence": 1,
- "text": "because",
- "offset": 75,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 500.593,
- "end": 500.903,
- "confidence": 1,
- "text": "none",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 500.903,
- "end": 501.003,
- "confidence": 1,
- "text": "of",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 501.003,
- "end": 501.103,
- "confidence": 1,
- "text": "the",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 501.103,
- "end": 501.853,
- "confidence": 1,
- "text": "participants",
- "offset": 95,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 501.853,
- "end": 502.233,
- "confidence": 0.9815,
- "text": "would",
- "offset": 108,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 502.343,
- "end": 502.703,
- "confidence": 1,
- "text": "even",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 502.703,
- "end": 502.823,
- "confidence": 1,
- "text": "so",
- "offset": 119,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 502.823,
- "end": 503.003,
- "confidence": 0.9944,
- "text": "much",
- "offset": 122,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 503.003,
- "end": 503.063,
- "confidence": 0.7007,
- "text": "a",
- "offset": 127,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 503.063,
- "end": 503.553,
- "confidence": 0.9997,
- "text": "strike",
- "offset": 129,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 503.553,
- "end": 503.773,
- "confidence": 0.4861,
- "text": "thes",
- "offset": 136,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 503.783,
- "end": 503.963,
- "confidence": 0.9227,
- "text": "baby",
- "offset": 141,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 503.963,
- "end": 504.353,
- "confidence": 0.9955,
- "text": "dinosaur",
- "offset": 146,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 504.353,
- "end": 504.793,
- "confidence": 0.9816,
- "text": "robots.",
- "offset": 155,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So we had to improvise a little, and at some point we said, OK, you can save your team's robot if you destroy another team's robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 68",
- "words": [
- {
- "start": 504.793,
- "end": 505.163,
- "text": "So",
- "confidence": 1
- },
- {
- "start": 505.353,
- "end": 505.543,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 505.543,
- "end": 505.643,
- "text": "had",
- "confidence": 0.9997
- },
- {
- "start": 505.643,
- "end": 505.723,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 505.723,
- "end": 506.213,
- "text": "improvise",
- "confidence": 1
- },
- {
- "start": 506.213,
- "end": 506.273,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 506.273,
- "end": 506.763,
- "text": "little,",
- "confidence": 1
- },
- {
- "start": 507.343,
- "end": 507.783,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 507.793,
- "end": 507.983,
- "text": "at",
- "confidence": 1
- },
- {
- "start": 507.983,
- "end": 508.153,
- "text": "some",
- "confidence": 1
- },
- {
- "start": 508.153,
- "end": 508.323,
- "text": "point",
- "confidence": 1
- },
- {
- "start": 508.323,
- "end": 508.403,
- "text": "we",
- "confidence": 0.5891
- },
- {
- "start": 508.403,
- "end": 508.713,
- "text": "said,",
- "confidence": 1
- },
- {
- "start": 508.713,
- "end": 509.363,
- "text": "OK,",
- "confidence": 0.5177
- },
- {
- "start": 510.053,
- "end": 510.353,
- "text": "you",
- "confidence": 1
- },
- {
- "start": 510.353,
- "end": 510.493,
- "text": "can",
- "confidence": 0.9984
- },
- {
- "start": 510.493,
- "end": 510.843,
- "text": "save",
- "confidence": 1
- },
- {
- "start": 510.843,
- "end": 511.153,
- "text": "your",
- "confidence": 0.9998
- },
- {
- "start": 511.153,
- "end": 511.603,
- "text": "team's",
- "confidence": 0.7843
- },
- {
- "start": 511.603,
- "end": 512.083,
- "text": "robot",
- "confidence": 0.994
- },
- {
- "start": 512.093,
- "end": 512.333,
- "text": "if",
- "confidence": 1
- },
- {
- "start": 512.333,
- "end": 512.433,
- "text": "you",
- "confidence": 0.9981
- },
- {
- "start": 512.433,
- "end": 513.023,
- "text": "destroy",
- "confidence": 1
- },
- {
- "start": 513.033,
- "end": 513.613,
- "text": "another",
- "confidence": 1
- },
- {
- "start": 513.613,
- "end": 514.033,
- "text": "team's",
- "confidence": 0.912
- },
- {
- "start": 514.033,
- "end": 514.563,
- "text": "robot.",
- "confidence": 0.941
- }
- ],
- "start": 504.793
- },
- "entityRanges": [
- {
- "start": 504.793,
- "end": 505.163,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 505.353,
- "end": 505.543,
- "confidence": 1,
- "text": "we",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 505.543,
- "end": 505.643,
- "confidence": 0.9997,
- "text": "had",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 505.643,
- "end": 505.723,
- "confidence": 1,
- "text": "to",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 505.723,
- "end": 506.213,
- "confidence": 1,
- "text": "improvise",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 506.213,
- "end": 506.273,
- "confidence": 1,
- "text": "a",
- "offset": 23,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 506.273,
- "end": 506.763,
- "confidence": 1,
- "text": "little,",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 507.343,
- "end": 507.783,
- "confidence": 1,
- "text": "and",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 507.793,
- "end": 507.983,
- "confidence": 1,
- "text": "at",
- "offset": 37,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 507.983,
- "end": 508.153,
- "confidence": 1,
- "text": "some",
- "offset": 40,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 508.153,
- "end": 508.323,
- "confidence": 1,
- "text": "point",
- "offset": 45,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 508.323,
- "end": 508.403,
- "confidence": 0.5891,
- "text": "we",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 508.403,
- "end": 508.713,
- "confidence": 1,
- "text": "said,",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 508.713,
- "end": 509.363,
- "confidence": 0.5177,
- "text": "OK,",
- "offset": 60,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 510.053,
- "end": 510.353,
- "confidence": 1,
- "text": "you",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 510.353,
- "end": 510.493,
- "confidence": 0.9984,
- "text": "can",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 510.493,
- "end": 510.843,
- "confidence": 1,
- "text": "save",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 510.843,
- "end": 511.153,
- "confidence": 0.9998,
- "text": "your",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 511.153,
- "end": 511.603,
- "confidence": 0.7843,
- "text": "team's",
- "offset": 82,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 511.603,
- "end": 512.083,
- "confidence": 0.994,
- "text": "robot",
- "offset": 89,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 512.093,
- "end": 512.333,
- "confidence": 1,
- "text": "if",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 512.333,
- "end": 512.433,
- "confidence": 0.9981,
- "text": "you",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 512.433,
- "end": 513.023,
- "confidence": 1,
- "text": "destroy",
- "offset": 102,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 513.033,
- "end": 513.613,
- "confidence": 1,
- "text": "another",
- "offset": 110,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 513.613,
- "end": 514.033,
- "confidence": 0.912,
- "text": "team's",
- "offset": 118,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 514.033,
- "end": 514.563,
- "confidence": 0.941,
- "text": "robot.",
- "offset": 125,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And even that didn't work.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 69",
- "words": [
- {
- "start": 516.813,
- "end": 516.993,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 516.993,
- "end": 517.173,
- "text": "even",
- "confidence": 1
- },
- {
- "start": 517.173,
- "end": 517.333,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 517.343,
- "end": 517.573,
- "text": "didn't",
- "confidence": 1
- },
- {
- "start": 517.573,
- "end": 517.853,
- "text": "work.",
- "confidence": 1
- }
- ],
- "start": 516.813
- },
- "entityRanges": [
- {
- "start": 516.813,
- "end": 516.993,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 516.993,
- "end": 517.173,
- "confidence": 1,
- "text": "even",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 517.173,
- "end": 517.333,
- "confidence": 1,
- "text": "that",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 517.343,
- "end": 517.573,
- "confidence": 1,
- "text": "didn't",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 517.573,
- "end": 517.853,
- "confidence": 1,
- "text": "work.",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "They couldn't do it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 70",
- "words": [
- {
- "start": 517.853,
- "end": 517.933,
- "text": "They",
- "confidence": 1
- },
- {
- "start": 517.933,
- "end": 518.213,
- "text": "couldn't",
- "confidence": 0.9992
- },
- {
- "start": 518.213,
- "end": 518.343,
- "text": "do",
- "confidence": 1
- },
- {
- "start": 518.343,
- "end": 518.523,
- "text": "it.",
- "confidence": 1
- }
- ],
- "start": 517.853
- },
- "entityRanges": [
- {
- "start": 517.853,
- "end": 517.933,
- "confidence": 1,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 517.933,
- "end": 518.213,
- "confidence": 0.9992,
- "text": "couldn't",
- "offset": 5,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 518.213,
- "end": 518.343,
- "confidence": 1,
- "text": "do",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 518.343,
- "end": 518.523,
- "confidence": 1,
- "text": "it.",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So finally we said, We're going to destroy all of the robots unless someone takes a hatchet toe.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 71",
- "words": [
- {
- "start": 518.623,
- "end": 518.823,
- "text": "So",
- "confidence": 1
- },
- {
- "start": 518.823,
- "end": 519.243,
- "text": "finally",
- "confidence": 1
- },
- {
- "start": 519.243,
- "end": 519.323,
- "text": "we",
- "confidence": 0.9952
- },
- {
- "start": 519.323,
- "end": 519.743,
- "text": "said,",
- "confidence": 1
- },
- {
- "start": 519.963,
- "end": 520.223,
- "text": "We're",
- "confidence": 0.9907
- },
- {
- "start": 520.223,
- "end": 520.343,
- "text": "going",
- "confidence": 1
- },
- {
- "start": 520.343,
- "end": 520.403,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 520.403,
- "end": 520.893,
- "text": "destroy",
- "confidence": 1
- },
- {
- "start": 520.903,
- "end": 521.183,
- "text": "all",
- "confidence": 1
- },
- {
- "start": 521.183,
- "end": 521.283,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 521.283,
- "end": 521.383,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 521.383,
- "end": 521.913,
- "text": "robots",
- "confidence": 0.4985
- },
- {
- "start": 521.923,
- "end": 522.213,
- "text": "unless",
- "confidence": 1
- },
- {
- "start": 522.213,
- "end": 522.493,
- "text": "someone",
- "confidence": 1
- },
- {
- "start": 522.493,
- "end": 522.703,
- "text": "takes",
- "confidence": 1
- },
- {
- "start": 522.703,
- "end": 522.763,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 522.763,
- "end": 523.223,
- "text": "hatchet",
- "confidence": 1
- },
- {
- "start": 523.223,
- "end": 523.363,
- "text": "toe.",
- "confidence": 0.4476
- }
- ],
- "start": 518.623
- },
- "entityRanges": [
- {
- "start": 518.623,
- "end": 518.823,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 518.823,
- "end": 519.243,
- "confidence": 1,
- "text": "finally",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 519.243,
- "end": 519.323,
- "confidence": 0.9952,
- "text": "we",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 519.323,
- "end": 519.743,
- "confidence": 1,
- "text": "said,",
- "offset": 14,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 519.963,
- "end": 520.223,
- "confidence": 0.9907,
- "text": "We're",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 520.223,
- "end": 520.343,
- "confidence": 1,
- "text": "going",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 520.343,
- "end": 520.403,
- "confidence": 1,
- "text": "to",
- "offset": 32,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 520.403,
- "end": 520.893,
- "confidence": 1,
- "text": "destroy",
- "offset": 35,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 520.903,
- "end": 521.183,
- "confidence": 1,
- "text": "all",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 521.183,
- "end": 521.283,
- "confidence": 1,
- "text": "of",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 521.283,
- "end": 521.383,
- "confidence": 1,
- "text": "the",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 521.383,
- "end": 521.913,
- "confidence": 0.4985,
- "text": "robots",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 521.923,
- "end": 522.213,
- "confidence": 1,
- "text": "unless",
- "offset": 61,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 522.213,
- "end": 522.493,
- "confidence": 1,
- "text": "someone",
- "offset": 68,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 522.493,
- "end": 522.703,
- "confidence": 1,
- "text": "takes",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 522.703,
- "end": 522.763,
- "confidence": 1,
- "text": "a",
- "offset": 82,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 522.763,
- "end": 523.223,
- "confidence": 1,
- "text": "hatchet",
- "offset": 84,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 523.223,
- "end": 523.363,
- "confidence": 0.4476,
- "text": "toe.",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "One of them and this guy stood up and he took the hatchet, and the whole room winced as he brought the hatchet down on the robot's neck.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 72",
- "words": [
- {
- "start": 523.363,
- "end": 523.563,
- "text": "One",
- "confidence": 0.9989
- },
- {
- "start": 523.563,
- "end": 523.703,
- "text": "of",
- "confidence": 0.9989
- },
- {
- "start": 523.713,
- "end": 523.993,
- "text": "them",
- "confidence": 0.9994
- },
- {
- "start": 525.543,
- "end": 525.783,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 525.783,
- "end": 525.973,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 525.973,
- "end": 526.233,
- "text": "guy",
- "confidence": 1
- },
- {
- "start": 526.233,
- "end": 526.503,
- "text": "stood",
- "confidence": 1
- },
- {
- "start": 526.503,
- "end": 526.793,
- "text": "up",
- "confidence": 1
- },
- {
- "start": 526.803,
- "end": 527.083,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 527.083,
- "end": 527.333,
- "text": "he",
- "confidence": 1
- },
- {
- "start": 527.343,
- "end": 527.633,
- "text": "took",
- "confidence": 1
- },
- {
- "start": 527.633,
- "end": 527.713,
- "text": "the",
- "confidence": 0.9973
- },
- {
- "start": 527.713,
- "end": 528.363,
- "text": "hatchet,",
- "confidence": 0.9813
- },
- {
- "start": 529.153,
- "end": 529.373,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 529.373,
- "end": 529.453,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 529.453,
- "end": 529.723,
- "text": "whole",
- "confidence": 1
- },
- {
- "start": 529.723,
- "end": 530.073,
- "text": "room",
- "confidence": 1
- },
- {
- "start": 530.073,
- "end": 530.553,
- "text": "winced",
- "confidence": 0.9978
- },
- {
- "start": 530.553,
- "end": 530.663,
- "text": "as",
- "confidence": 0.9978
- },
- {
- "start": 530.663,
- "end": 530.753,
- "text": "he",
- "confidence": 1
- },
- {
- "start": 530.753,
- "end": 531.003,
- "text": "brought",
- "confidence": 1
- },
- {
- "start": 531.003,
- "end": 531.083,
- "text": "the",
- "confidence": 0.9969
- },
- {
- "start": 531.083,
- "end": 531.473,
- "text": "hatchet",
- "confidence": 0.9326
- },
- {
- "start": 531.473,
- "end": 531.733,
- "text": "down",
- "confidence": 1
- },
- {
- "start": 531.733,
- "end": 531.823,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 531.823,
- "end": 531.923,
- "text": "the",
- "confidence": 0.9974
- },
- {
- "start": 531.923,
- "end": 532.423,
- "text": "robot's",
- "confidence": 0.9599
- },
- {
- "start": 532.423,
- "end": 533.063,
- "text": "neck.",
- "confidence": 0.9941
- }
- ],
- "start": 523.363
- },
- "entityRanges": [
- {
- "start": 523.363,
- "end": 523.563,
- "confidence": 0.9989,
- "text": "One",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 523.563,
- "end": 523.703,
- "confidence": 0.9989,
- "text": "of",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 523.713,
- "end": 523.993,
- "confidence": 0.9994,
- "text": "them",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 525.543,
- "end": 525.783,
- "confidence": 1,
- "text": "and",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 525.783,
- "end": 525.973,
- "confidence": 1,
- "text": "this",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 525.973,
- "end": 526.233,
- "confidence": 1,
- "text": "guy",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 526.233,
- "end": 526.503,
- "confidence": 1,
- "text": "stood",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 526.503,
- "end": 526.793,
- "confidence": 1,
- "text": "up",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 526.803,
- "end": 527.083,
- "confidence": 1,
- "text": "and",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 527.083,
- "end": 527.333,
- "confidence": 1,
- "text": "he",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 527.343,
- "end": 527.633,
- "confidence": 1,
- "text": "took",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 527.633,
- "end": 527.713,
- "confidence": 0.9973,
- "text": "the",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 527.713,
- "end": 528.363,
- "confidence": 0.9813,
- "text": "hatchet,",
- "offset": 50,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 529.153,
- "end": 529.373,
- "confidence": 1,
- "text": "and",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 529.373,
- "end": 529.453,
- "confidence": 1,
- "text": "the",
- "offset": 63,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 529.453,
- "end": 529.723,
- "confidence": 1,
- "text": "whole",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 529.723,
- "end": 530.073,
- "confidence": 1,
- "text": "room",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 530.073,
- "end": 530.553,
- "confidence": 0.9978,
- "text": "winced",
- "offset": 78,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 530.553,
- "end": 530.663,
- "confidence": 0.9978,
- "text": "as",
- "offset": 85,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 530.663,
- "end": 530.753,
- "confidence": 1,
- "text": "he",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 530.753,
- "end": 531.003,
- "confidence": 1,
- "text": "brought",
- "offset": 91,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 531.003,
- "end": 531.083,
- "confidence": 0.9969,
- "text": "the",
- "offset": 99,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 531.083,
- "end": 531.473,
- "confidence": 0.9326,
- "text": "hatchet",
- "offset": 103,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 531.473,
- "end": 531.733,
- "confidence": 1,
- "text": "down",
- "offset": 111,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 531.733,
- "end": 531.823,
- "confidence": 1,
- "text": "on",
- "offset": 116,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 531.823,
- "end": 531.923,
- "confidence": 0.9974,
- "text": "the",
- "offset": 119,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 531.923,
- "end": 532.423,
- "confidence": 0.9599,
- "text": "robot's",
- "offset": 123,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 532.423,
- "end": 533.063,
- "confidence": 0.9941,
- "text": "neck.",
- "offset": 131,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And there was this half joking, half serious moment of silence in the room for this fallen robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 73",
- "words": [
- {
- "start": 533.653,
- "end": 534.063,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 534.073,
- "end": 534.343,
- "text": "there",
- "confidence": 1
- },
- {
- "start": 534.343,
- "end": 534.503,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 534.503,
- "end": 534.683,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 534.683,
- "end": 535.113,
- "text": "half",
- "confidence": 1
- },
- {
- "start": 535.123,
- "end": 535.843,
- "text": "joking,",
- "confidence": 1
- },
- {
- "start": 536.003,
- "end": 536.663,
- "text": "half",
- "confidence": 1
- },
- {
- "start": 536.673,
- "end": 537.403,
- "text": "serious",
- "confidence": 1
- },
- {
- "start": 537.403,
- "end": 537.793,
- "text": "moment",
- "confidence": 1
- },
- {
- "start": 537.793,
- "end": 537.863,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 537.863,
- "end": 538.573,
- "text": "silence",
- "confidence": 1
- },
- {
- "start": 538.583,
- "end": 538.803,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 538.803,
- "end": 538.893,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 538.893,
- "end": 539.503,
- "text": "room",
- "confidence": 1
- },
- {
- "start": 540.043,
- "end": 540.263,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 540.263,
- "end": 540.493,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 540.493,
- "end": 541.013,
- "text": "fallen",
- "confidence": 0.5682
- },
- {
- "start": 541.013,
- "end": 541.563,
- "text": "robot.",
- "confidence": 0.9554
- }
- ],
- "start": 533.653
- },
- "entityRanges": [
- {
- "start": 533.653,
- "end": 534.063,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 534.073,
- "end": 534.343,
- "confidence": 1,
- "text": "there",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 534.343,
- "end": 534.503,
- "confidence": 1,
- "text": "was",
- "offset": 10,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 534.503,
- "end": 534.683,
- "confidence": 1,
- "text": "this",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 534.683,
- "end": 535.113,
- "confidence": 1,
- "text": "half",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 535.123,
- "end": 535.843,
- "confidence": 1,
- "text": "joking,",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 536.003,
- "end": 536.663,
- "confidence": 1,
- "text": "half",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 536.673,
- "end": 537.403,
- "confidence": 1,
- "text": "serious",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 537.403,
- "end": 537.793,
- "confidence": 1,
- "text": "moment",
- "offset": 45,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 537.793,
- "end": 537.863,
- "confidence": 1,
- "text": "of",
- "offset": 52,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 537.863,
- "end": 538.573,
- "confidence": 1,
- "text": "silence",
- "offset": 55,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 538.583,
- "end": 538.803,
- "confidence": 1,
- "text": "in",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 538.803,
- "end": 538.893,
- "confidence": 1,
- "text": "the",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 538.893,
- "end": 539.503,
- "confidence": 1,
- "text": "room",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 540.043,
- "end": 540.263,
- "confidence": 1,
- "text": "for",
- "offset": 75,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 540.263,
- "end": 540.493,
- "confidence": 1,
- "text": "this",
- "offset": 79,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 540.493,
- "end": 541.013,
- "confidence": 0.5682,
- "text": "fallen",
- "offset": 84,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 541.013,
- "end": 541.563,
- "confidence": 0.9554,
- "text": "robot.",
- "offset": 91,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So that was a really interesting experience.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 74",
- "words": [
- {
- "start": 543.153,
- "end": 543.613,
- "text": "So",
- "confidence": 1
- },
- {
- "start": 543.623,
- "end": 543.853,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 543.853,
- "end": 544.033,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 544.033,
- "end": 544.163,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 544.163,
- "end": 544.533,
- "text": "really",
- "confidence": 0.9984
- },
- {
- "start": 544.543,
- "end": 545.373,
- "text": "interesting",
- "confidence": 1
- },
- {
- "start": 545.373,
- "end": 546.503,
- "text": "experience.",
- "confidence": 1
- }
- ],
- "start": 543.153
- },
- "entityRanges": [
- {
- "start": 543.153,
- "end": 543.613,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 543.623,
- "end": 543.853,
- "confidence": 1,
- "text": "that",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 543.853,
- "end": 544.033,
- "confidence": 1,
- "text": "was",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 544.033,
- "end": 544.163,
- "confidence": 1,
- "text": "a",
- "offset": 12,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 544.163,
- "end": 544.533,
- "confidence": 0.9984,
- "text": "really",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 544.543,
- "end": 545.373,
- "confidence": 1,
- "text": "interesting",
- "offset": 21,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 545.373,
- "end": 546.503,
- "confidence": 1,
- "text": "experience.",
- "offset": 33,
- "length": 11,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Now it wasn't a controlled study, obviously, but it did lead to some later research that I did at MIT with Palash, Nandi and Cynthia Brazil, where we had people come into the lab and smashed thes hex bugs that move around in a really life like way like insects.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 75",
- "words": [
- {
- "start": 546.893,
- "end": 547.113,
- "text": "Now",
- "confidence": 1
- },
- {
- "start": 547.113,
- "end": 547.263,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 547.263,
- "end": 547.533,
- "text": "wasn't",
- "confidence": 0.9984
- },
- {
- "start": 547.533,
- "end": 547.573,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 547.573,
- "end": 548.253,
- "text": "controlled",
- "confidence": 1
- },
- {
- "start": 548.253,
- "end": 548.723,
- "text": "study,",
- "confidence": 1
- },
- {
- "start": 548.723,
- "end": 549.343,
- "text": "obviously,",
- "confidence": 1
- },
- {
- "start": 549.343,
- "end": 549.563,
- "text": "but",
- "confidence": 1
- },
- {
- "start": 549.563,
- "end": 549.683,
- "text": "it",
- "confidence": 1
- },
- {
- "start": 549.693,
- "end": 549.923,
- "text": "did",
- "confidence": 1
- },
- {
- "start": 549.923,
- "end": 550.133,
- "text": "lead",
- "confidence": 1
- },
- {
- "start": 550.133,
- "end": 550.203,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 550.203,
- "end": 550.423,
- "text": "some",
- "confidence": 0.9397
- },
- {
- "start": 550.423,
- "end": 550.723,
- "text": "later",
- "confidence": 1
- },
- {
- "start": 550.723,
- "end": 551.203,
- "text": "research",
- "confidence": 1
- },
- {
- "start": 551.203,
- "end": 551.343,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 551.343,
- "end": 551.393,
- "text": "I",
- "confidence": 1
- },
- {
- "start": 551.393,
- "end": 551.683,
- "text": "did",
- "confidence": 1
- },
- {
- "start": 551.683,
- "end": 551.873,
- "text": "at",
- "confidence": 0.8597
- },
- {
- "start": 551.873,
- "end": 552.153,
- "text": "MIT",
- "confidence": 0.4182
- },
- {
- "start": 552.163,
- "end": 552.473,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 552.473,
- "end": 552.823,
- "text": "Palash,",
- "confidence": 1
- },
- {
- "start": 552.823,
- "end": 553.163,
- "text": "Nandi",
- "confidence": 0.9179
- },
- {
- "start": 553.163,
- "end": 553.283,
- "text": "and",
- "confidence": 0.9522
- },
- {
- "start": 553.283,
- "end": 553.623,
- "text": "Cynthia",
- "confidence": 1
- },
- {
- "start": 553.623,
- "end": 554.273,
- "text": "Brazil,",
- "confidence": 0.9267
- },
- {
- "start": 554.383,
- "end": 554.843,
- "text": "where",
- "confidence": 1
- },
- {
- "start": 554.843,
- "end": 554.953,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 554.953,
- "end": 555.103,
- "text": "had",
- "confidence": 0.999
- },
- {
- "start": 555.103,
- "end": 555.333,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 555.333,
- "end": 555.513,
- "text": "come",
- "confidence": 0.9922
- },
- {
- "start": 555.513,
- "end": 555.703,
- "text": "into",
- "confidence": 0.9828
- },
- {
- "start": 555.703,
- "end": 555.813,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 555.813,
- "end": 556.333,
- "text": "lab",
- "confidence": 1
- },
- {
- "start": 556.643,
- "end": 556.883,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 556.883,
- "end": 557.243,
- "text": "smashed",
- "confidence": 0.6475
- },
- {
- "start": 557.243,
- "end": 557.423,
- "text": "thes",
- "confidence": 0.4842
- },
- {
- "start": 557.423,
- "end": 557.843,
- "text": "hex",
- "confidence": 0.9936
- },
- {
- "start": 557.843,
- "end": 558.193,
- "text": "bugs",
- "confidence": 0.9909
- },
- {
- "start": 558.193,
- "end": 558.303,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 558.303,
- "end": 558.593,
- "text": "move",
- "confidence": 0.9998
- },
- {
- "start": 558.593,
- "end": 559.103,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 559.103,
- "end": 559.213,
- "text": "in",
- "confidence": 1
- },
- {
- "start": 559.213,
- "end": 559.273,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 559.273,
- "end": 559.493,
- "text": "really",
- "confidence": 0.9884
- },
- {
- "start": 559.493,
- "end": 559.753,
- "text": "life",
- "confidence": 0.5584
- },
- {
- "start": 559.753,
- "end": 559.913,
- "text": "like",
- "confidence": 0.5584
- },
- {
- "start": 559.913,
- "end": 560.103,
- "text": "way",
- "confidence": 0.8737
- },
- {
- "start": 560.103,
- "end": 560.293,
- "text": "like",
- "confidence": 1
- },
- {
- "start": 560.303,
- "end": 561.163,
- "text": "insects.",
- "confidence": 1
- }
- ],
- "start": 546.893
- },
- "entityRanges": [
- {
- "start": 546.893,
- "end": 547.113,
- "confidence": 1,
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 547.113,
- "end": 547.263,
- "confidence": 1,
- "text": "it",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 547.263,
- "end": 547.533,
- "confidence": 0.9984,
- "text": "wasn't",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 547.533,
- "end": 547.573,
- "confidence": 1,
- "text": "a",
- "offset": 14,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 547.573,
- "end": 548.253,
- "confidence": 1,
- "text": "controlled",
- "offset": 16,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 548.253,
- "end": 548.723,
- "confidence": 1,
- "text": "study,",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 548.723,
- "end": 549.343,
- "confidence": 1,
- "text": "obviously,",
- "offset": 34,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 549.343,
- "end": 549.563,
- "confidence": 1,
- "text": "but",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 549.563,
- "end": 549.683,
- "confidence": 1,
- "text": "it",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 549.693,
- "end": 549.923,
- "confidence": 1,
- "text": "did",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 549.923,
- "end": 550.133,
- "confidence": 1,
- "text": "lead",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 550.133,
- "end": 550.203,
- "confidence": 1,
- "text": "to",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 550.203,
- "end": 550.423,
- "confidence": 0.9397,
- "text": "some",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 550.423,
- "end": 550.723,
- "confidence": 1,
- "text": "later",
- "offset": 69,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 550.723,
- "end": 551.203,
- "confidence": 1,
- "text": "research",
- "offset": 75,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 551.203,
- "end": 551.343,
- "confidence": 1,
- "text": "that",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 551.343,
- "end": 551.393,
- "confidence": 1,
- "text": "I",
- "offset": 89,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 551.393,
- "end": 551.683,
- "confidence": 1,
- "text": "did",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 551.683,
- "end": 551.873,
- "confidence": 0.8597,
- "text": "at",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 551.873,
- "end": 552.153,
- "confidence": 0.4182,
- "text": "MIT",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 552.163,
- "end": 552.473,
- "confidence": 1,
- "text": "with",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 552.473,
- "end": 552.823,
- "confidence": 1,
- "text": "Palash,",
- "offset": 107,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 552.823,
- "end": 553.163,
- "confidence": 0.9179,
- "text": "Nandi",
- "offset": 115,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 553.163,
- "end": 553.283,
- "confidence": 0.9522,
- "text": "and",
- "offset": 121,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 553.283,
- "end": 553.623,
- "confidence": 1,
- "text": "Cynthia",
- "offset": 125,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 553.623,
- "end": 554.273,
- "confidence": 0.9267,
- "text": "Brazil,",
- "offset": 133,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 554.383,
- "end": 554.843,
- "confidence": 1,
- "text": "where",
- "offset": 141,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 554.843,
- "end": 554.953,
- "confidence": 1,
- "text": "we",
- "offset": 147,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 554.953,
- "end": 555.103,
- "confidence": 0.999,
- "text": "had",
- "offset": 150,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 555.103,
- "end": 555.333,
- "confidence": 1,
- "text": "people",
- "offset": 154,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 555.333,
- "end": 555.513,
- "confidence": 0.9922,
- "text": "come",
- "offset": 161,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 555.513,
- "end": 555.703,
- "confidence": 0.9828,
- "text": "into",
- "offset": 166,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 555.703,
- "end": 555.813,
- "confidence": 1,
- "text": "the",
- "offset": 171,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 555.813,
- "end": 556.333,
- "confidence": 1,
- "text": "lab",
- "offset": 175,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 556.643,
- "end": 556.883,
- "confidence": 1,
- "text": "and",
- "offset": 179,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 556.883,
- "end": 557.243,
- "confidence": 0.6475,
- "text": "smashed",
- "offset": 183,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 557.243,
- "end": 557.423,
- "confidence": 0.4842,
- "text": "thes",
- "offset": 191,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 557.423,
- "end": 557.843,
- "confidence": 0.9936,
- "text": "hex",
- "offset": 196,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 557.843,
- "end": 558.193,
- "confidence": 0.9909,
- "text": "bugs",
- "offset": 200,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 558.193,
- "end": 558.303,
- "confidence": 1,
- "text": "that",
- "offset": 205,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 558.303,
- "end": 558.593,
- "confidence": 0.9998,
- "text": "move",
- "offset": 210,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 558.593,
- "end": 559.103,
- "confidence": 1,
- "text": "around",
- "offset": 215,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 559.103,
- "end": 559.213,
- "confidence": 1,
- "text": "in",
- "offset": 222,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 559.213,
- "end": 559.273,
- "confidence": 1,
- "text": "a",
- "offset": 225,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 559.273,
- "end": 559.493,
- "confidence": 0.9884,
- "text": "really",
- "offset": 227,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 559.493,
- "end": 559.753,
- "confidence": 0.5584,
- "text": "life",
- "offset": 234,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 559.753,
- "end": 559.913,
- "confidence": 0.5584,
- "text": "like",
- "offset": 239,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 559.913,
- "end": 560.103,
- "confidence": 0.8737,
- "text": "way",
- "offset": 244,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 560.103,
- "end": 560.293,
- "confidence": 1,
- "text": "like",
- "offset": 248,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 560.303,
- "end": 561.163,
- "confidence": 1,
- "text": "insects.",
- "offset": 253,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "So instead of choosing something cute people are drawn to, we chose something more basic.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 76",
- "words": [
- {
- "start": 561.253,
- "end": 561.473,
- "text": "So",
- "confidence": 1
- },
- {
- "start": 561.473,
- "end": 561.693,
- "text": "instead",
- "confidence": 1
- },
- {
- "start": 561.693,
- "end": 561.793,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 561.793,
- "end": 562.083,
- "text": "choosing",
- "confidence": 1
- },
- {
- "start": 562.083,
- "end": 562.343,
- "text": "something",
- "confidence": 1
- },
- {
- "start": 562.353,
- "end": 562.773,
- "text": "cute",
- "confidence": 0.9889
- },
- {
- "start": 562.783,
- "end": 563.393,
- "text": "people",
- "confidence": 0.9994
- },
- {
- "start": 563.653,
- "end": 563.843,
- "text": "are",
- "confidence": 0.9658
- },
- {
- "start": 563.843,
- "end": 564.223,
- "text": "drawn",
- "confidence": 1
- },
- {
- "start": 564.223,
- "end": 564.463,
- "text": "to,",
- "confidence": 0.8602
- },
- {
- "start": 564.463,
- "end": 564.563,
- "text": "we",
- "confidence": 0.9574
- },
- {
- "start": 564.563,
- "end": 564.773,
- "text": "chose",
- "confidence": 0.9397
- },
- {
- "start": 564.773,
- "end": 565.053,
- "text": "something",
- "confidence": 1
- },
- {
- "start": 565.053,
- "end": 565.243,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 565.243,
- "end": 566.063,
- "text": "basic.",
- "confidence": 1
- }
- ],
- "start": 561.253
- },
- "entityRanges": [
- {
- "start": 561.253,
- "end": 561.473,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 561.473,
- "end": 561.693,
- "confidence": 1,
- "text": "instead",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 561.693,
- "end": 561.793,
- "confidence": 1,
- "text": "of",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 561.793,
- "end": 562.083,
- "confidence": 1,
- "text": "choosing",
- "offset": 14,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 562.083,
- "end": 562.343,
- "confidence": 1,
- "text": "something",
- "offset": 23,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 562.353,
- "end": 562.773,
- "confidence": 0.9889,
- "text": "cute",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 562.783,
- "end": 563.393,
- "confidence": 0.9994,
- "text": "people",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 563.653,
- "end": 563.843,
- "confidence": 0.9658,
- "text": "are",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 563.843,
- "end": 564.223,
- "confidence": 1,
- "text": "drawn",
- "offset": 49,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 564.223,
- "end": 564.463,
- "confidence": 0.8602,
- "text": "to,",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 564.463,
- "end": 564.563,
- "confidence": 0.9574,
- "text": "we",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 564.563,
- "end": 564.773,
- "confidence": 0.9397,
- "text": "chose",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 564.773,
- "end": 565.053,
- "confidence": 1,
- "text": "something",
- "offset": 68,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 565.053,
- "end": 565.243,
- "confidence": 1,
- "text": "more",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 565.243,
- "end": 566.063,
- "confidence": 1,
- "text": "basic.",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And what we found was that high empathy people would hesitate more to hit the hex books.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 77",
- "words": [
- {
- "start": 566.553,
- "end": 567.043,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 567.203,
- "end": 567.403,
- "text": "what",
- "confidence": 1
- },
- {
- "start": 567.403,
- "end": 567.523,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 567.523,
- "end": 568.133,
- "text": "found",
- "confidence": 1
- },
- {
- "start": 568.143,
- "end": 568.533,
- "text": "was",
- "confidence": 1
- },
- {
- "start": 568.533,
- "end": 568.773,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 568.783,
- "end": 569.143,
- "text": "high",
- "confidence": 0.7431
- },
- {
- "start": 569.143,
- "end": 569.643,
- "text": "empathy",
- "confidence": 0.961
- },
- {
- "start": 569.643,
- "end": 570.093,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 570.093,
- "end": 570.243,
- "text": "would",
- "confidence": 1
- },
- {
- "start": 570.243,
- "end": 570.783,
- "text": "hesitate",
- "confidence": 1
- },
- {
- "start": 570.783,
- "end": 570.983,
- "text": "more",
- "confidence": 0.9398
- },
- {
- "start": 570.983,
- "end": 571.073,
- "text": "to",
- "confidence": 0.9105
- },
- {
- "start": 571.073,
- "end": 571.263,
- "text": "hit",
- "confidence": 1
- },
- {
- "start": 571.263,
- "end": 571.353,
- "text": "the",
- "confidence": 0.9988
- },
- {
- "start": 571.353,
- "end": 571.673,
- "text": "hex",
- "confidence": 0.9947
- },
- {
- "start": 571.673,
- "end": 572.183,
- "text": "books.",
- "confidence": 0.9813
- }
- ],
- "start": 566.553
- },
- "entityRanges": [
- {
- "start": 566.553,
- "end": 567.043,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 567.203,
- "end": 567.403,
- "confidence": 1,
- "text": "what",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 567.403,
- "end": 567.523,
- "confidence": 1,
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 567.523,
- "end": 568.133,
- "confidence": 1,
- "text": "found",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 568.143,
- "end": 568.533,
- "confidence": 1,
- "text": "was",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 568.533,
- "end": 568.773,
- "confidence": 1,
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 568.783,
- "end": 569.143,
- "confidence": 0.7431,
- "text": "high",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 569.143,
- "end": 569.643,
- "confidence": 0.961,
- "text": "empathy",
- "offset": 32,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 569.643,
- "end": 570.093,
- "confidence": 1,
- "text": "people",
- "offset": 40,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 570.093,
- "end": 570.243,
- "confidence": 1,
- "text": "would",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 570.243,
- "end": 570.783,
- "confidence": 1,
- "text": "hesitate",
- "offset": 53,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 570.783,
- "end": 570.983,
- "confidence": 0.9398,
- "text": "more",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 570.983,
- "end": 571.073,
- "confidence": 0.9105,
- "text": "to",
- "offset": 67,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 571.073,
- "end": 571.263,
- "confidence": 1,
- "text": "hit",
- "offset": 70,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 571.263,
- "end": 571.353,
- "confidence": 0.9988,
- "text": "the",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 571.353,
- "end": 571.673,
- "confidence": 0.9947,
- "text": "hex",
- "offset": 78,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 571.673,
- "end": 572.183,
- "confidence": 0.9813,
- "text": "books.",
- "offset": 82,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Now this is just a little study, but it's part of a larger body of research that is starting to indicate that there may be a connection between people's tendencies for empathy and their behaviour around robots.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 78",
- "words": [
- {
- "start": 573.553,
- "end": 573.663,
- "text": "Now",
- "confidence": 0.9854
- },
- {
- "start": 573.663,
- "end": 573.813,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 573.813,
- "end": 573.903,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 573.903,
- "end": 574.103,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 574.103,
- "end": 574.143,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 574.143,
- "end": 574.403,
- "text": "little",
- "confidence": 1
- },
- {
- "start": 574.403,
- "end": 574.893,
- "text": "study,",
- "confidence": 1
- },
- {
- "start": 574.893,
- "end": 575.303,
- "text": "but",
- "confidence": 1
- },
- {
- "start": 575.473,
- "end": 575.723,
- "text": "it's",
- "confidence": 0.9963
- },
- {
- "start": 575.723,
- "end": 575.963,
- "text": "part",
- "confidence": 1
- },
- {
- "start": 575.963,
- "end": 576.033,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 576.033,
- "end": 576.103,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 576.103,
- "end": 576.483,
- "text": "larger",
- "confidence": 1
- },
- {
- "start": 576.483,
- "end": 576.753,
- "text": "body",
- "confidence": 1
- },
- {
- "start": 576.753,
- "end": 576.873,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 576.873,
- "end": 577.533,
- "text": "research",
- "confidence": 1
- },
- {
- "start": 577.543,
- "end": 578.003,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 578.013,
- "end": 578.233,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 578.233,
- "end": 578.603,
- "text": "starting",
- "confidence": 1
- },
- {
- "start": 578.603,
- "end": 578.733,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 578.743,
- "end": 579.183,
- "text": "indicate",
- "confidence": 1
- },
- {
- "start": 579.183,
- "end": 579.293,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 579.293,
- "end": 579.423,
- "text": "there",
- "confidence": 1
- },
- {
- "start": 579.423,
- "end": 579.613,
- "text": "may",
- "confidence": 1
- },
- {
- "start": 579.613,
- "end": 579.843,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 579.843,
- "end": 579.933,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 579.933,
- "end": 580.533,
- "text": "connection",
- "confidence": 1
- },
- {
- "start": 580.533,
- "end": 580.863,
- "text": "between",
- "confidence": 1
- },
- {
- "start": 580.863,
- "end": 581.283,
- "text": "people's",
- "confidence": 0.7644
- },
- {
- "start": 581.283,
- "end": 581.793,
- "text": "tendencies",
- "confidence": 0.9996
- },
- {
- "start": 581.793,
- "end": 581.903,
- "text": "for",
- "confidence": 0.9982
- },
- {
- "start": 581.903,
- "end": 582.613,
- "text": "empathy",
- "confidence": 1
- },
- {
- "start": 582.823,
- "end": 583.043,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 583.043,
- "end": 583.163,
- "text": "their",
- "confidence": 0.9869
- },
- {
- "start": 583.163,
- "end": 583.823,
- "text": "behaviour",
- "confidence": 0.5966
- },
- {
- "start": 583.823,
- "end": 584.193,
- "text": "around",
- "confidence": 0.9973
- },
- {
- "start": 584.193,
- "end": 584.903,
- "text": "robots.",
- "confidence": 0.9952
- }
- ],
- "start": 573.553
- },
- "entityRanges": [
- {
- "start": 573.553,
- "end": 573.663,
- "confidence": 0.9854,
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 573.663,
- "end": 573.813,
- "confidence": 1,
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 573.813,
- "end": 573.903,
- "confidence": 1,
- "text": "is",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 573.903,
- "end": 574.103,
- "confidence": 1,
- "text": "just",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 574.103,
- "end": 574.143,
- "confidence": 1,
- "text": "a",
- "offset": 17,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 574.143,
- "end": 574.403,
- "confidence": 1,
- "text": "little",
- "offset": 19,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 574.403,
- "end": 574.893,
- "confidence": 1,
- "text": "study,",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 574.893,
- "end": 575.303,
- "confidence": 1,
- "text": "but",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 575.473,
- "end": 575.723,
- "confidence": 0.9963,
- "text": "it's",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 575.723,
- "end": 575.963,
- "confidence": 1,
- "text": "part",
- "offset": 42,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 575.963,
- "end": 576.033,
- "confidence": 1,
- "text": "of",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 576.033,
- "end": 576.103,
- "confidence": 1,
- "text": "a",
- "offset": 50,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 576.103,
- "end": 576.483,
- "confidence": 1,
- "text": "larger",
- "offset": 52,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 576.483,
- "end": 576.753,
- "confidence": 1,
- "text": "body",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 576.753,
- "end": 576.873,
- "confidence": 1,
- "text": "of",
- "offset": 64,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 576.873,
- "end": 577.533,
- "confidence": 1,
- "text": "research",
- "offset": 67,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 577.543,
- "end": 578.003,
- "confidence": 1,
- "text": "that",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 578.013,
- "end": 578.233,
- "confidence": 1,
- "text": "is",
- "offset": 81,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 578.233,
- "end": 578.603,
- "confidence": 1,
- "text": "starting",
- "offset": 84,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 578.603,
- "end": 578.733,
- "confidence": 1,
- "text": "to",
- "offset": 93,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 578.743,
- "end": 579.183,
- "confidence": 1,
- "text": "indicate",
- "offset": 96,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 579.183,
- "end": 579.293,
- "confidence": 1,
- "text": "that",
- "offset": 105,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 579.293,
- "end": 579.423,
- "confidence": 1,
- "text": "there",
- "offset": 110,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 579.423,
- "end": 579.613,
- "confidence": 1,
- "text": "may",
- "offset": 116,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 579.613,
- "end": 579.843,
- "confidence": 1,
- "text": "be",
- "offset": 120,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 579.843,
- "end": 579.933,
- "confidence": 1,
- "text": "a",
- "offset": 123,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 579.933,
- "end": 580.533,
- "confidence": 1,
- "text": "connection",
- "offset": 125,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 580.533,
- "end": 580.863,
- "confidence": 1,
- "text": "between",
- "offset": 136,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 580.863,
- "end": 581.283,
- "confidence": 0.7644,
- "text": "people's",
- "offset": 144,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 581.283,
- "end": 581.793,
- "confidence": 0.9996,
- "text": "tendencies",
- "offset": 153,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 581.793,
- "end": 581.903,
- "confidence": 0.9982,
- "text": "for",
- "offset": 164,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 581.903,
- "end": 582.613,
- "confidence": 1,
- "text": "empathy",
- "offset": 168,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 582.823,
- "end": 583.043,
- "confidence": 1,
- "text": "and",
- "offset": 176,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 583.043,
- "end": 583.163,
- "confidence": 0.9869,
- "text": "their",
- "offset": 180,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 583.163,
- "end": 583.823,
- "confidence": 0.5966,
- "text": "behaviour",
- "offset": 186,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 583.823,
- "end": 584.193,
- "confidence": 0.9973,
- "text": "around",
- "offset": 196,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 584.193,
- "end": 584.903,
- "confidence": 0.9952,
- "text": "robots.",
- "offset": 203,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But my question for the coming era of human robot interaction is not.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 79",
- "words": [
- {
- "start": 585.653,
- "end": 585.853,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 585.853,
- "end": 586.083,
- "text": "my",
- "confidence": 1
- },
- {
- "start": 586.083,
- "end": 586.813,
- "text": "question",
- "confidence": 1
- },
- {
- "start": 586.823,
- "end": 587.003,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 587.003,
- "end": 587.093,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 587.093,
- "end": 587.513,
- "text": "coming",
- "confidence": 1
- },
- {
- "start": 587.513,
- "end": 587.953,
- "text": "era",
- "confidence": 1
- },
- {
- "start": 587.963,
- "end": 588.083,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 588.083,
- "end": 588.383,
- "text": "human",
- "confidence": 1
- },
- {
- "start": 588.383,
- "end": 588.683,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 588.683,
- "end": 589.343,
- "text": "interaction",
- "confidence": 1
- },
- {
- "start": 589.353,
- "end": 589.543,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 589.543,
- "end": 590.023,
- "text": "not.",
- "confidence": 1
- }
- ],
- "start": 585.653
- },
- "entityRanges": [
- {
- "start": 585.653,
- "end": 585.853,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 585.853,
- "end": 586.083,
- "confidence": 1,
- "text": "my",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 586.083,
- "end": 586.813,
- "confidence": 1,
- "text": "question",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 586.823,
- "end": 587.003,
- "confidence": 1,
- "text": "for",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 587.003,
- "end": 587.093,
- "confidence": 1,
- "text": "the",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 587.093,
- "end": 587.513,
- "confidence": 1,
- "text": "coming",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 587.513,
- "end": 587.953,
- "confidence": 1,
- "text": "era",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 587.963,
- "end": 588.083,
- "confidence": 1,
- "text": "of",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 588.083,
- "end": 588.383,
- "confidence": 1,
- "text": "human",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 588.383,
- "end": 588.683,
- "confidence": 1,
- "text": "robot",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 588.683,
- "end": 589.343,
- "confidence": 1,
- "text": "interaction",
- "offset": 50,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 589.353,
- "end": 589.543,
- "confidence": 1,
- "text": "is",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 589.543,
- "end": 590.023,
- "confidence": 1,
- "text": "not.",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Do we empathize with robots?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 80",
- "words": [
- {
- "start": 590.443,
- "end": 590.593,
- "text": "Do",
- "confidence": 0.9156
- },
- {
- "start": 590.593,
- "end": 590.753,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 590.753,
- "end": 591.413,
- "text": "empathize",
- "confidence": 1
- },
- {
- "start": 591.413,
- "end": 591.593,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 591.593,
- "end": 592.323,
- "text": "robots?",
- "confidence": 0.9999
- }
- ],
- "start": 590.443
- },
- "entityRanges": [
- {
- "start": 590.443,
- "end": 590.593,
- "confidence": 0.9156,
- "text": "Do",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 590.593,
- "end": 590.753,
- "confidence": 1,
- "text": "we",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 590.753,
- "end": 591.413,
- "confidence": 1,
- "text": "empathize",
- "offset": 6,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 591.413,
- "end": 591.593,
- "confidence": 1,
- "text": "with",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 591.593,
- "end": 592.323,
- "confidence": 0.9999,
- "text": "robots?",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It's Can robots change people's empathy?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 81",
- "words": [
- {
- "start": 593.183,
- "end": 593.413,
- "text": "It's",
- "confidence": 0.9165
- },
- {
- "start": 593.413,
- "end": 593.833,
- "text": "Can",
- "confidence": 0.7455
- },
- {
- "start": 593.833,
- "end": 594.303,
- "text": "robots",
- "confidence": 0.9883
- },
- {
- "start": 594.313,
- "end": 595.023,
- "text": "change",
- "confidence": 0.9
- },
- {
- "start": 595.033,
- "end": 595.403,
- "text": "people's",
- "confidence": 0.9989
- },
- {
- "start": 595.413,
- "end": 595.973,
- "text": "empathy?",
- "confidence": 0.9988
- }
- ],
- "start": 593.183
- },
- "entityRanges": [
- {
- "start": 593.183,
- "end": 593.413,
- "confidence": 0.9165,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 593.413,
- "end": 593.833,
- "confidence": 0.7455,
- "text": "Can",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 593.833,
- "end": 594.303,
- "confidence": 0.9883,
- "text": "robots",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 594.313,
- "end": 595.023,
- "confidence": 0.9,
- "text": "change",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 595.033,
- "end": 595.403,
- "confidence": 0.9989,
- "text": "people's",
- "offset": 23,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 595.413,
- "end": 595.973,
- "confidence": 0.9988,
- "text": "empathy?",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Is there reason to, for example, prevent your child from kicking a robotic dog, not just start of respect for property but because the child might be more likely to take a real dog?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 82",
- "words": [
- {
- "start": 597.453,
- "end": 597.683,
- "text": "Is",
- "confidence": 1
- },
- {
- "start": 597.683,
- "end": 597.873,
- "text": "there",
- "confidence": 1
- },
- {
- "start": 597.873,
- "end": 598.263,
- "text": "reason",
- "confidence": 1
- },
- {
- "start": 598.263,
- "end": 598.503,
- "text": "to,",
- "confidence": 0.9545
- },
- {
- "start": 598.503,
- "end": 598.673,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 598.673,
- "end": 599.503,
- "text": "example,",
- "confidence": 1
- },
- {
- "start": 599.783,
- "end": 600.123,
- "text": "prevent",
- "confidence": 1
- },
- {
- "start": 600.123,
- "end": 600.243,
- "text": "your",
- "confidence": 1
- },
- {
- "start": 600.243,
- "end": 600.693,
- "text": "child",
- "confidence": 1
- },
- {
- "start": 600.693,
- "end": 600.853,
- "text": "from",
- "confidence": 1
- },
- {
- "start": 600.853,
- "end": 601.223,
- "text": "kicking",
- "confidence": 1
- },
- {
- "start": 601.223,
- "end": 601.313,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 601.313,
- "end": 601.673,
- "text": "robotic",
- "confidence": 0.9861
- },
- {
- "start": 601.683,
- "end": 602.053,
- "text": "dog,",
- "confidence": 0.9961
- },
- {
- "start": 603.153,
- "end": 603.533,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 603.543,
- "end": 603.763,
- "text": "just",
- "confidence": 0.9913
- },
- {
- "start": 603.845,
- "end": 604.045,
- "text": "start",
- "confidence": 0.5532
- },
- {
- "start": 604.045,
- "end": 604.145,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 604.145,
- "end": 604.655,
- "text": "respect",
- "confidence": 0.9984
- },
- {
- "start": 604.655,
- "end": 604.785,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 604.785,
- "end": 605.515,
- "text": "property",
- "confidence": 1
- },
- {
- "start": 606.085,
- "end": 606.285,
- "text": "but",
- "confidence": 1
- },
- {
- "start": 606.285,
- "end": 606.825,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 606.825,
- "end": 606.935,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 606.935,
- "end": 607.235,
- "text": "child",
- "confidence": 1
- },
- {
- "start": 607.235,
- "end": 607.365,
- "text": "might",
- "confidence": 0.999
- },
- {
- "start": 607.365,
- "end": 607.455,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 607.455,
- "end": 607.635,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 607.635,
- "end": 607.965,
- "text": "likely",
- "confidence": 1
- },
- {
- "start": 607.965,
- "end": 608.065,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 608.065,
- "end": 608.255,
- "text": "take",
- "confidence": 0.8054
- },
- {
- "start": 608.255,
- "end": 608.335,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 608.335,
- "end": 608.535,
- "text": "real",
- "confidence": 1
- },
- {
- "start": 608.535,
- "end": 609.005,
- "text": "dog?",
- "confidence": 0.9951
- }
- ],
- "start": 597.453
- },
- "entityRanges": [
- {
- "start": 597.453,
- "end": 597.683,
- "confidence": 1,
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 597.683,
- "end": 597.873,
- "confidence": 1,
- "text": "there",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 597.873,
- "end": 598.263,
- "confidence": 1,
- "text": "reason",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 598.263,
- "end": 598.503,
- "confidence": 0.9545,
- "text": "to,",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 598.503,
- "end": 598.673,
- "confidence": 1,
- "text": "for",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 598.673,
- "end": 599.503,
- "confidence": 1,
- "text": "example,",
- "offset": 24,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 599.783,
- "end": 600.123,
- "confidence": 1,
- "text": "prevent",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 600.123,
- "end": 600.243,
- "confidence": 1,
- "text": "your",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 600.243,
- "end": 600.693,
- "confidence": 1,
- "text": "child",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 600.693,
- "end": 600.853,
- "confidence": 1,
- "text": "from",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 600.853,
- "end": 601.223,
- "confidence": 1,
- "text": "kicking",
- "offset": 57,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 601.223,
- "end": 601.313,
- "confidence": 1,
- "text": "a",
- "offset": 65,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 601.313,
- "end": 601.673,
- "confidence": 0.9861,
- "text": "robotic",
- "offset": 67,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 601.683,
- "end": 602.053,
- "confidence": 0.9961,
- "text": "dog,",
- "offset": 75,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 603.153,
- "end": 603.533,
- "confidence": 1,
- "text": "not",
- "offset": 80,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 603.543,
- "end": 603.763,
- "confidence": 0.9913,
- "text": "just",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 603.845,
- "end": 604.045,
- "confidence": 0.5532,
- "text": "start",
- "offset": 89,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 604.045,
- "end": 604.145,
- "confidence": 1,
- "text": "of",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 604.145,
- "end": 604.655,
- "confidence": 0.9984,
- "text": "respect",
- "offset": 98,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 604.655,
- "end": 604.785,
- "confidence": 1,
- "text": "for",
- "offset": 106,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 604.785,
- "end": 605.515,
- "confidence": 1,
- "text": "property",
- "offset": 110,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 606.085,
- "end": 606.285,
- "confidence": 1,
- "text": "but",
- "offset": 119,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 606.285,
- "end": 606.825,
- "confidence": 1,
- "text": "because",
- "offset": 123,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 606.825,
- "end": 606.935,
- "confidence": 1,
- "text": "the",
- "offset": 131,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 606.935,
- "end": 607.235,
- "confidence": 1,
- "text": "child",
- "offset": 135,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 607.235,
- "end": 607.365,
- "confidence": 0.999,
- "text": "might",
- "offset": 141,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 607.365,
- "end": 607.455,
- "confidence": 1,
- "text": "be",
- "offset": 147,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 607.455,
- "end": 607.635,
- "confidence": 1,
- "text": "more",
- "offset": 150,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 607.635,
- "end": 607.965,
- "confidence": 1,
- "text": "likely",
- "offset": 155,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 607.965,
- "end": 608.065,
- "confidence": 1,
- "text": "to",
- "offset": 162,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 608.065,
- "end": 608.255,
- "confidence": 0.8054,
- "text": "take",
- "offset": 165,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 608.255,
- "end": 608.335,
- "confidence": 1,
- "text": "a",
- "offset": 170,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 608.335,
- "end": 608.535,
- "confidence": 1,
- "text": "real",
- "offset": 172,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 608.535,
- "end": 609.005,
- "confidence": 0.9951,
- "text": "dog?",
- "offset": 177,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And again, it's not just kids.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 83",
- "words": [
- {
- "start": 610.485,
- "end": 610.655,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 610.655,
- "end": 610.955,
- "text": "again,",
- "confidence": 1
- },
- {
- "start": 610.955,
- "end": 611.165,
- "text": "it's",
- "confidence": 1
- },
- {
- "start": 611.165,
- "end": 611.455,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 611.455,
- "end": 611.705,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 611.715,
- "end": 612.325,
- "text": "kids.",
- "confidence": 0.9999
- }
- ],
- "start": 610.485
- },
- "entityRanges": [
- {
- "start": 610.485,
- "end": 610.655,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 610.655,
- "end": 610.955,
- "confidence": 1,
- "text": "again,",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 610.955,
- "end": 611.165,
- "confidence": 1,
- "text": "it's",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 611.165,
- "end": 611.455,
- "confidence": 1,
- "text": "not",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 611.455,
- "end": 611.705,
- "confidence": 1,
- "text": "just",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 611.715,
- "end": 612.325,
- "confidence": 0.9999,
- "text": "kids.",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "This is the violent video games question, but it's on a completely new level because of this visceral physicality that we respond more intensely to than two images on a screen when we behave violently towards robots, specifically robots that are designed to mimic life.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 84",
- "words": [
- {
- "start": 613.525,
- "end": 613.755,
- "text": "This",
- "confidence": 1
- },
- {
- "start": 613.755,
- "end": 613.955,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 613.955,
- "end": 614.365,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 614.375,
- "end": 615.035,
- "text": "violent",
- "confidence": 1
- },
- {
- "start": 615.045,
- "end": 615.395,
- "text": "video",
- "confidence": 0.8166
- },
- {
- "start": 615.395,
- "end": 615.685,
- "text": "games",
- "confidence": 0.8166
- },
- {
- "start": 615.685,
- "end": 616.135,
- "text": "question,",
- "confidence": 0.9927
- },
- {
- "start": 616.135,
- "end": 616.275,
- "text": "but",
- "confidence": 1
- },
- {
- "start": 616.275,
- "end": 616.375,
- "text": "it's",
- "confidence": 0.9932
- },
- {
- "start": 616.375,
- "end": 616.475,
- "text": "on",
- "confidence": 0.9035
- },
- {
- "start": 616.475,
- "end": 616.525,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 616.525,
- "end": 617.145,
- "text": "completely",
- "confidence": 1
- },
- {
- "start": 617.145,
- "end": 617.275,
- "text": "new",
- "confidence": 1
- },
- {
- "start": 617.275,
- "end": 617.605,
- "text": "level",
- "confidence": 1
- },
- {
- "start": 617.605,
- "end": 617.835,
- "text": "because",
- "confidence": 1
- },
- {
- "start": 617.835,
- "end": 617.935,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 617.935,
- "end": 618.115,
- "text": "this",
- "confidence": 1
- },
- {
- "start": 618.115,
- "end": 618.815,
- "text": "visceral",
- "confidence": 1
- },
- {
- "start": 618.815,
- "end": 619.745,
- "text": "physicality",
- "confidence": 1
- },
- {
- "start": 619.745,
- "end": 619.915,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 619.915,
- "end": 620.055,
- "text": "we",
- "confidence": 0.9983
- },
- {
- "start": 620.055,
- "end": 620.725,
- "text": "respond",
- "confidence": 0.999
- },
- {
- "start": 620.725,
- "end": 621.075,
- "text": "more",
- "confidence": 1
- },
- {
- "start": 621.075,
- "end": 621.725,
- "text": "intensely",
- "confidence": 1
- },
- {
- "start": 621.725,
- "end": 622.195,
- "text": "to",
- "confidence": 0.5973
- },
- {
- "start": 622.425,
- "end": 622.565,
- "text": "than",
- "confidence": 0.6316
- },
- {
- "start": 622.565,
- "end": 622.705,
- "text": "two",
- "confidence": 0.4157
- },
- {
- "start": 622.715,
- "end": 623.125,
- "text": "images",
- "confidence": 1
- },
- {
- "start": 623.125,
- "end": 623.225,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 623.225,
- "end": 623.285,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 623.285,
- "end": 623.935,
- "text": "screen",
- "confidence": 1
- },
- {
- "start": 625.635,
- "end": 625.835,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 625.835,
- "end": 625.955,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 625.955,
- "end": 626.285,
- "text": "behave",
- "confidence": 1
- },
- {
- "start": 626.285,
- "end": 626.895,
- "text": "violently",
- "confidence": 1
- },
- {
- "start": 626.895,
- "end": 627.425,
- "text": "towards",
- "confidence": 1
- },
- {
- "start": 627.425,
- "end": 628.075,
- "text": "robots,",
- "confidence": 0.9569
- },
- {
- "start": 628.085,
- "end": 628.815,
- "text": "specifically",
- "confidence": 0.9936
- },
- {
- "start": 628.815,
- "end": 629.215,
- "text": "robots",
- "confidence": 1
- },
- {
- "start": 629.215,
- "end": 629.355,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 629.355,
- "end": 629.425,
- "text": "are",
- "confidence": 0.9991
- },
- {
- "start": 629.425,
- "end": 629.955,
- "text": "designed",
- "confidence": 1
- },
- {
- "start": 629.955,
- "end": 630.075,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 630.075,
- "end": 630.395,
- "text": "mimic",
- "confidence": 1
- },
- {
- "start": 630.395,
- "end": 630.915,
- "text": "life.",
- "confidence": 1
- }
- ],
- "start": 613.525
- },
- "entityRanges": [
- {
- "start": 613.525,
- "end": 613.755,
- "confidence": 1,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 613.755,
- "end": 613.955,
- "confidence": 1,
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 613.955,
- "end": 614.365,
- "confidence": 1,
- "text": "the",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 614.375,
- "end": 615.035,
- "confidence": 1,
- "text": "violent",
- "offset": 12,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 615.045,
- "end": 615.395,
- "confidence": 0.8166,
- "text": "video",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 615.395,
- "end": 615.685,
- "confidence": 0.8166,
- "text": "games",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 615.685,
- "end": 616.135,
- "confidence": 0.9927,
- "text": "question,",
- "offset": 32,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 616.135,
- "end": 616.275,
- "confidence": 1,
- "text": "but",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 616.275,
- "end": 616.375,
- "confidence": 0.9932,
- "text": "it's",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 616.375,
- "end": 616.475,
- "confidence": 0.9035,
- "text": "on",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 616.475,
- "end": 616.525,
- "confidence": 1,
- "text": "a",
- "offset": 54,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 616.525,
- "end": 617.145,
- "confidence": 1,
- "text": "completely",
- "offset": 56,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 617.145,
- "end": 617.275,
- "confidence": 1,
- "text": "new",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 617.275,
- "end": 617.605,
- "confidence": 1,
- "text": "level",
- "offset": 71,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 617.605,
- "end": 617.835,
- "confidence": 1,
- "text": "because",
- "offset": 77,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 617.835,
- "end": 617.935,
- "confidence": 1,
- "text": "of",
- "offset": 85,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 617.935,
- "end": 618.115,
- "confidence": 1,
- "text": "this",
- "offset": 88,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 618.115,
- "end": 618.815,
- "confidence": 1,
- "text": "visceral",
- "offset": 93,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 618.815,
- "end": 619.745,
- "confidence": 1,
- "text": "physicality",
- "offset": 102,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 619.745,
- "end": 619.915,
- "confidence": 1,
- "text": "that",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 619.915,
- "end": 620.055,
- "confidence": 0.9983,
- "text": "we",
- "offset": 119,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 620.055,
- "end": 620.725,
- "confidence": 0.999,
- "text": "respond",
- "offset": 122,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 620.725,
- "end": 621.075,
- "confidence": 1,
- "text": "more",
- "offset": 130,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 621.075,
- "end": 621.725,
- "confidence": 1,
- "text": "intensely",
- "offset": 135,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 621.725,
- "end": 622.195,
- "confidence": 0.5973,
- "text": "to",
- "offset": 145,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 622.425,
- "end": 622.565,
- "confidence": 0.6316,
- "text": "than",
- "offset": 148,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 622.565,
- "end": 622.705,
- "confidence": 0.4157,
- "text": "two",
- "offset": 153,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 622.715,
- "end": 623.125,
- "confidence": 1,
- "text": "images",
- "offset": 157,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 623.125,
- "end": 623.225,
- "confidence": 1,
- "text": "on",
- "offset": 164,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 623.225,
- "end": 623.285,
- "confidence": 1,
- "text": "a",
- "offset": 167,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 623.285,
- "end": 623.935,
- "confidence": 1,
- "text": "screen",
- "offset": 169,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 625.635,
- "end": 625.835,
- "confidence": 1,
- "text": "when",
- "offset": 176,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 625.835,
- "end": 625.955,
- "confidence": 1,
- "text": "we",
- "offset": 181,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 625.955,
- "end": 626.285,
- "confidence": 1,
- "text": "behave",
- "offset": 184,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 626.285,
- "end": 626.895,
- "confidence": 1,
- "text": "violently",
- "offset": 191,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 626.895,
- "end": 627.425,
- "confidence": 1,
- "text": "towards",
- "offset": 201,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 627.425,
- "end": 628.075,
- "confidence": 0.9569,
- "text": "robots,",
- "offset": 209,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 628.085,
- "end": 628.815,
- "confidence": 0.9936,
- "text": "specifically",
- "offset": 217,
- "length": 12,
- "key": expect.any(String)
- },
- {
- "start": 628.815,
- "end": 629.215,
- "confidence": 1,
- "text": "robots",
- "offset": 230,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 629.215,
- "end": 629.355,
- "confidence": 1,
- "text": "that",
- "offset": 237,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 629.355,
- "end": 629.425,
- "confidence": 0.9991,
- "text": "are",
- "offset": 242,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 629.425,
- "end": 629.955,
- "confidence": 1,
- "text": "designed",
- "offset": 246,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 629.955,
- "end": 630.075,
- "confidence": 1,
- "text": "to",
- "offset": 255,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 630.075,
- "end": 630.395,
- "confidence": 1,
- "text": "mimic",
- "offset": 258,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 630.395,
- "end": 630.915,
- "confidence": 1,
- "text": "life.",
- "offset": 264,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Is that a healthy outlet for violent behavior?",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 85",
- "words": [
- {
- "start": 631.365,
- "end": 631.555,
- "text": "Is",
- "confidence": 1
- },
- {
- "start": 631.555,
- "end": 631.895,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 632.525,
- "end": 632.635,
- "text": "a",
- "confidence": 0.9975
- },
- {
- "start": 632.635,
- "end": 633.015,
- "text": "healthy",
- "confidence": 1
- },
- {
- "start": 633.015,
- "end": 633.485,
- "text": "outlet",
- "confidence": 1
- },
- {
- "start": 633.485,
- "end": 633.615,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 633.615,
- "end": 633.945,
- "text": "violent",
- "confidence": 1
- },
- {
- "start": 633.955,
- "end": 634.555,
- "text": "behavior?",
- "confidence": 0.721
- }
- ],
- "start": 631.365
- },
- "entityRanges": [
- {
- "start": 631.365,
- "end": 631.555,
- "confidence": 1,
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 631.555,
- "end": 631.895,
- "confidence": 1,
- "text": "that",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 632.525,
- "end": 632.635,
- "confidence": 0.9975,
- "text": "a",
- "offset": 8,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 632.635,
- "end": 633.015,
- "confidence": 1,
- "text": "healthy",
- "offset": 10,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 633.015,
- "end": 633.485,
- "confidence": 1,
- "text": "outlet",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 633.485,
- "end": 633.615,
- "confidence": 1,
- "text": "for",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 633.615,
- "end": 633.945,
- "confidence": 1,
- "text": "violent",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 633.955,
- "end": 634.555,
- "confidence": 0.721,
- "text": "behavior?",
- "offset": 37,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Or is that training our cruelty muscles we don't know.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 86",
- "words": [
- {
- "start": 635.305,
- "end": 635.465,
- "text": "Or",
- "confidence": 1
- },
- {
- "start": 635.465,
- "end": 635.605,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 635.605,
- "end": 635.905,
- "text": "that",
- "confidence": 1
- },
- {
- "start": 635.915,
- "end": 636.415,
- "text": "training",
- "confidence": 1
- },
- {
- "start": 636.415,
- "end": 636.515,
- "text": "our",
- "confidence": 0.6403
- },
- {
- "start": 636.515,
- "end": 637.015,
- "text": "cruelty",
- "confidence": 0.9613
- },
- {
- "start": 637.015,
- "end": 637.695,
- "text": "muscles",
- "confidence": 0.7677
- },
- {
- "start": 639.495,
- "end": 639.645,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 639.645,
- "end": 639.835,
- "text": "don't",
- "confidence": 0.9992
- },
- {
- "start": 639.835,
- "end": 640.135,
- "text": "know.",
- "confidence": 0.9991
- }
- ],
- "start": 635.305
- },
- "entityRanges": [
- {
- "start": 635.305,
- "end": 635.465,
- "confidence": 1,
- "text": "Or",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 635.465,
- "end": 635.605,
- "confidence": 1,
- "text": "is",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 635.605,
- "end": 635.905,
- "confidence": 1,
- "text": "that",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 635.915,
- "end": 636.415,
- "confidence": 1,
- "text": "training",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 636.415,
- "end": 636.515,
- "confidence": 0.6403,
- "text": "our",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 636.515,
- "end": 637.015,
- "confidence": 0.9613,
- "text": "cruelty",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 637.015,
- "end": 637.695,
- "confidence": 0.7677,
- "text": "muscles",
- "offset": 32,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 639.495,
- "end": 639.645,
- "confidence": 1,
- "text": "we",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 639.645,
- "end": 639.835,
- "confidence": 0.9992,
- "text": "don't",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 639.835,
- "end": 640.135,
- "confidence": 0.9991,
- "text": "know.",
- "offset": 49,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "But the answer this question has the potential to impact human behavior.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 87",
- "words": [
- {
- "start": 642.585,
- "end": 642.735,
- "text": "But",
- "confidence": 1
- },
- {
- "start": 642.735,
- "end": 642.885,
- "text": "the",
- "confidence": 0.9994
- },
- {
- "start": 642.885,
- "end": 643.265,
- "text": "answer",
- "confidence": 0.9866
- },
- {
- "start": 643.265,
- "end": 643.465,
- "text": "this",
- "confidence": 0.8613
- },
- {
- "start": 643.465,
- "end": 644.095,
- "text": "question",
- "confidence": 0.999
- },
- {
- "start": 644.105,
- "end": 644.335,
- "text": "has",
- "confidence": 1
- },
- {
- "start": 644.335,
- "end": 644.415,
- "text": "the",
- "confidence": 0.9939
- },
- {
- "start": 644.415,
- "end": 644.895,
- "text": "potential",
- "confidence": 1
- },
- {
- "start": 644.895,
- "end": 644.985,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 644.995,
- "end": 645.445,
- "text": "impact",
- "confidence": 1
- },
- {
- "start": 645.445,
- "end": 645.715,
- "text": "human",
- "confidence": 1
- },
- {
- "start": 645.715,
- "end": 646.445,
- "text": "behavior.",
- "confidence": 0.9891
- }
- ],
- "start": 642.585
- },
- "entityRanges": [
- {
- "start": 642.585,
- "end": 642.735,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 642.735,
- "end": 642.885,
- "confidence": 0.9994,
- "text": "the",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 642.885,
- "end": 643.265,
- "confidence": 0.9866,
- "text": "answer",
- "offset": 8,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 643.265,
- "end": 643.465,
- "confidence": 0.8613,
- "text": "this",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 643.465,
- "end": 644.095,
- "confidence": 0.999,
- "text": "question",
- "offset": 20,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 644.105,
- "end": 644.335,
- "confidence": 1,
- "text": "has",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 644.335,
- "end": 644.415,
- "confidence": 0.9939,
- "text": "the",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 644.415,
- "end": 644.895,
- "confidence": 1,
- "text": "potential",
- "offset": 37,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 644.895,
- "end": 644.985,
- "confidence": 1,
- "text": "to",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 644.995,
- "end": 645.445,
- "confidence": 1,
- "text": "impact",
- "offset": 50,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 645.445,
- "end": 645.715,
- "confidence": 1,
- "text": "human",
- "offset": 57,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 645.715,
- "end": 646.445,
- "confidence": 0.9891,
- "text": "behavior.",
- "offset": 63,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It has the potential to impact social norms.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 88",
- "words": [
- {
- "start": 646.565,
- "end": 646.705,
- "text": "It",
- "confidence": 0.9779
- },
- {
- "start": 646.705,
- "end": 646.885,
- "text": "has",
- "confidence": 1
- },
- {
- "start": 646.885,
- "end": 646.985,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 646.985,
- "end": 647.425,
- "text": "potential",
- "confidence": 1
- },
- {
- "start": 647.425,
- "end": 647.505,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 647.505,
- "end": 647.925,
- "text": "impact",
- "confidence": 0.9852
- },
- {
- "start": 647.925,
- "end": 648.305,
- "text": "social",
- "confidence": 1
- },
- {
- "start": 648.305,
- "end": 648.965,
- "text": "norms.",
- "confidence": 1
- }
- ],
- "start": 646.565
- },
- "entityRanges": [
- {
- "start": 646.565,
- "end": 646.705,
- "confidence": 0.9779,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 646.705,
- "end": 646.885,
- "confidence": 1,
- "text": "has",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 646.885,
- "end": 646.985,
- "confidence": 1,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 646.985,
- "end": 647.425,
- "confidence": 1,
- "text": "potential",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 647.425,
- "end": 647.505,
- "confidence": 1,
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 647.505,
- "end": 647.925,
- "confidence": 0.9852,
- "text": "impact",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 647.925,
- "end": 648.305,
- "confidence": 1,
- "text": "social",
- "offset": 31,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 648.305,
- "end": 648.965,
- "confidence": 1,
- "text": "norms.",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It has the potential to inspire rules around what we can and can't do with certain robots similar to our animal cruelty laws.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 89",
- "words": [
- {
- "start": 649.305,
- "end": 649.475,
- "text": "It",
- "confidence": 0.9997
- },
- {
- "start": 649.475,
- "end": 649.665,
- "text": "has",
- "confidence": 1
- },
- {
- "start": 649.665,
- "end": 649.765,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 649.765,
- "end": 650.225,
- "text": "potential",
- "confidence": 1
- },
- {
- "start": 650.225,
- "end": 650.365,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 650.365,
- "end": 650.905,
- "text": "inspire",
- "confidence": 1
- },
- {
- "start": 650.905,
- "end": 651.425,
- "text": "rules",
- "confidence": 0.9965
- },
- {
- "start": 651.435,
- "end": 651.795,
- "text": "around",
- "confidence": 1
- },
- {
- "start": 651.795,
- "end": 651.915,
- "text": "what",
- "confidence": 1
- },
- {
- "start": 651.915,
- "end": 652.245,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 652.255,
- "end": 652.635,
- "text": "can",
- "confidence": 1
- },
- {
- "start": 652.635,
- "end": 652.735,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 652.735,
- "end": 653.025,
- "text": "can't",
- "confidence": 1
- },
- {
- "start": 653.025,
- "end": 653.205,
- "text": "do",
- "confidence": 1
- },
- {
- "start": 653.205,
- "end": 653.335,
- "text": "with",
- "confidence": 1
- },
- {
- "start": 653.335,
- "end": 653.605,
- "text": "certain",
- "confidence": 1
- },
- {
- "start": 653.605,
- "end": 654.225,
- "text": "robots",
- "confidence": 0.582
- },
- {
- "start": 654.235,
- "end": 654.675,
- "text": "similar",
- "confidence": 1
- },
- {
- "start": 654.675,
- "end": 654.765,
- "text": "to",
- "confidence": 0.9981
- },
- {
- "start": 654.765,
- "end": 654.955,
- "text": "our",
- "confidence": 0.9843
- },
- {
- "start": 654.965,
- "end": 655.315,
- "text": "animal",
- "confidence": 1
- },
- {
- "start": 655.315,
- "end": 655.725,
- "text": "cruelty",
- "confidence": 0.9301
- },
- {
- "start": 655.725,
- "end": 656.245,
- "text": "laws.",
- "confidence": 1
- }
- ],
- "start": 649.305
- },
- "entityRanges": [
- {
- "start": 649.305,
- "end": 649.475,
- "confidence": 0.9997,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 649.475,
- "end": 649.665,
- "confidence": 1,
- "text": "has",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 649.665,
- "end": 649.765,
- "confidence": 1,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 649.765,
- "end": 650.225,
- "confidence": 1,
- "text": "potential",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 650.225,
- "end": 650.365,
- "confidence": 1,
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 650.365,
- "end": 650.905,
- "confidence": 1,
- "text": "inspire",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 650.905,
- "end": 651.425,
- "confidence": 0.9965,
- "text": "rules",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 651.435,
- "end": 651.795,
- "confidence": 1,
- "text": "around",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 651.795,
- "end": 651.915,
- "confidence": 1,
- "text": "what",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 651.915,
- "end": 652.245,
- "confidence": 1,
- "text": "we",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 652.255,
- "end": 652.635,
- "confidence": 1,
- "text": "can",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 652.635,
- "end": 652.735,
- "confidence": 1,
- "text": "and",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 652.735,
- "end": 653.025,
- "confidence": 1,
- "text": "can't",
- "offset": 61,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 653.025,
- "end": 653.205,
- "confidence": 1,
- "text": "do",
- "offset": 67,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 653.205,
- "end": 653.335,
- "confidence": 1,
- "text": "with",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 653.335,
- "end": 653.605,
- "confidence": 1,
- "text": "certain",
- "offset": 75,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 653.605,
- "end": 654.225,
- "confidence": 0.582,
- "text": "robots",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 654.235,
- "end": 654.675,
- "confidence": 1,
- "text": "similar",
- "offset": 90,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 654.675,
- "end": 654.765,
- "confidence": 0.9981,
- "text": "to",
- "offset": 98,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 654.765,
- "end": 654.955,
- "confidence": 0.9843,
- "text": "our",
- "offset": 101,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 654.965,
- "end": 655.315,
- "confidence": 1,
- "text": "animal",
- "offset": 105,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 655.315,
- "end": 655.725,
- "confidence": 0.9301,
- "text": "cruelty",
- "offset": 112,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 655.725,
- "end": 656.245,
- "confidence": 1,
- "text": "laws.",
- "offset": 120,
- "length": 5,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Because even if robots can't feel our behaviour towards them might matter for us.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 90",
- "words": [
- {
- "start": 657.185,
- "end": 657.555,
- "text": "Because",
- "confidence": 1
- },
- {
- "start": 657.565,
- "end": 657.855,
- "text": "even",
- "confidence": 1
- },
- {
- "start": 657.855,
- "end": 657.995,
- "text": "if",
- "confidence": 1
- },
- {
- "start": 657.995,
- "end": 658.415,
- "text": "robots",
- "confidence": 0.998
- },
- {
- "start": 658.415,
- "end": 658.735,
- "text": "can't",
- "confidence": 0.9972
- },
- {
- "start": 658.735,
- "end": 659.355,
- "text": "feel",
- "confidence": 1
- },
- {
- "start": 660.085,
- "end": 660.265,
- "text": "our",
- "confidence": 0.9961
- },
- {
- "start": 660.265,
- "end": 660.865,
- "text": "behaviour",
- "confidence": 0.5655
- },
- {
- "start": 660.865,
- "end": 661.215,
- "text": "towards",
- "confidence": 1
- },
- {
- "start": 661.215,
- "end": 661.415,
- "text": "them",
- "confidence": 0.995
- },
- {
- "start": 661.415,
- "end": 661.645,
- "text": "might",
- "confidence": 0.9988
- },
- {
- "start": 661.645,
- "end": 662.225,
- "text": "matter",
- "confidence": 1
- },
- {
- "start": 662.405,
- "end": 662.635,
- "text": "for",
- "confidence": 1
- },
- {
- "start": 662.635,
- "end": 663.125,
- "text": "us.",
- "confidence": 1
- }
- ],
- "start": 657.185
- },
- "entityRanges": [
- {
- "start": 657.185,
- "end": 657.555,
- "confidence": 1,
- "text": "Because",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 657.565,
- "end": 657.855,
- "confidence": 1,
- "text": "even",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 657.855,
- "end": 657.995,
- "confidence": 1,
- "text": "if",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 657.995,
- "end": 658.415,
- "confidence": 0.998,
- "text": "robots",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 658.415,
- "end": 658.735,
- "confidence": 0.9972,
- "text": "can't",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 658.735,
- "end": 659.355,
- "confidence": 1,
- "text": "feel",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 660.085,
- "end": 660.265,
- "confidence": 0.9961,
- "text": "our",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 660.265,
- "end": 660.865,
- "confidence": 0.5655,
- "text": "behaviour",
- "offset": 38,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 660.865,
- "end": 661.215,
- "confidence": 1,
- "text": "towards",
- "offset": 48,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 661.215,
- "end": 661.415,
- "confidence": 0.995,
- "text": "them",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 661.415,
- "end": 661.645,
- "confidence": 0.9988,
- "text": "might",
- "offset": 61,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 661.645,
- "end": 662.225,
- "confidence": 1,
- "text": "matter",
- "offset": 67,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 662.405,
- "end": 662.635,
- "confidence": 1,
- "text": "for",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 662.635,
- "end": 663.125,
- "confidence": 1,
- "text": "us.",
- "offset": 78,
- "length": 3,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "And regardless of whether we end up changing our rules, robots might be able to help us come to a new understanding of ourselves.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 91",
- "words": [
- {
- "start": 664.885,
- "end": 665.075,
- "text": "And",
- "confidence": 1
- },
- {
- "start": 665.075,
- "end": 665.585,
- "text": "regardless",
- "confidence": 0.9923
- },
- {
- "start": 665.585,
- "end": 665.675,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 665.675,
- "end": 665.915,
- "text": "whether",
- "confidence": 1
- },
- {
- "start": 665.915,
- "end": 666.055,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 666.055,
- "end": 666.205,
- "text": "end",
- "confidence": 1
- },
- {
- "start": 666.205,
- "end": 666.285,
- "text": "up",
- "confidence": 0.9597
- },
- {
- "start": 666.295,
- "end": 666.865,
- "text": "changing",
- "confidence": 1
- },
- {
- "start": 666.865,
- "end": 667.015,
- "text": "our",
- "confidence": 0.9869
- },
- {
- "start": 667.015,
- "end": 667.695,
- "text": "rules,",
- "confidence": 1
- },
- {
- "start": 668.895,
- "end": 669.315,
- "text": "robots",
- "confidence": 0.9929
- },
- {
- "start": 669.315,
- "end": 669.575,
- "text": "might",
- "confidence": 1
- },
- {
- "start": 669.585,
- "end": 669.735,
- "text": "be",
- "confidence": 1
- },
- {
- "start": 669.735,
- "end": 669.935,
- "text": "able",
- "confidence": 0.9966
- },
- {
- "start": 669.935,
- "end": 670.015,
- "text": "to",
- "confidence": 0.9966
- },
- {
- "start": 670.015,
- "end": 670.245,
- "text": "help",
- "confidence": 1
- },
- {
- "start": 670.245,
- "end": 670.375,
- "text": "us",
- "confidence": 1
- },
- {
- "start": 670.375,
- "end": 670.585,
- "text": "come",
- "confidence": 1
- },
- {
- "start": 670.585,
- "end": 670.715,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 670.715,
- "end": 670.795,
- "text": "a",
- "confidence": 0.922
- },
- {
- "start": 670.795,
- "end": 671.005,
- "text": "new",
- "confidence": 1
- },
- {
- "start": 671.005,
- "end": 671.585,
- "text": "understanding",
- "confidence": 1
- },
- {
- "start": 671.585,
- "end": 671.665,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 671.665,
- "end": 672.495,
- "text": "ourselves.",
- "confidence": 1
- }
- ],
- "start": 664.885
- },
- "entityRanges": [
- {
- "start": 664.885,
- "end": 665.075,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 665.075,
- "end": 665.585,
- "confidence": 0.9923,
- "text": "regardless",
- "offset": 4,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 665.585,
- "end": 665.675,
- "confidence": 1,
- "text": "of",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 665.675,
- "end": 665.915,
- "confidence": 1,
- "text": "whether",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 665.915,
- "end": 666.055,
- "confidence": 1,
- "text": "we",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 666.055,
- "end": 666.205,
- "confidence": 1,
- "text": "end",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 666.205,
- "end": 666.285,
- "confidence": 0.9597,
- "text": "up",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 666.295,
- "end": 666.865,
- "confidence": 1,
- "text": "changing",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)
- },
- {
- "start": 666.865,
- "end": 667.015,
- "confidence": 0.9869,
- "text": "our",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 667.015,
- "end": 667.695,
- "confidence": 1,
- "text": "rules,",
- "offset": 49,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 668.895,
- "end": 669.315,
- "confidence": 0.9929,
- "text": "robots",
- "offset": 56,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 669.315,
- "end": 669.575,
- "confidence": 1,
- "text": "might",
- "offset": 63,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 669.585,
- "end": 669.735,
- "confidence": 1,
- "text": "be",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 669.735,
- "end": 669.935,
- "confidence": 0.9966,
- "text": "able",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 669.935,
- "end": 670.015,
- "confidence": 0.9966,
- "text": "to",
- "offset": 77,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 670.015,
- "end": 670.245,
- "confidence": 1,
- "text": "help",
- "offset": 80,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 670.245,
- "end": 670.375,
- "confidence": 1,
- "text": "us",
- "offset": 85,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 670.375,
- "end": 670.585,
- "confidence": 1,
- "text": "come",
- "offset": 88,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 670.585,
- "end": 670.715,
- "confidence": 1,
- "text": "to",
- "offset": 93,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 670.715,
- "end": 670.795,
- "confidence": 0.922,
- "text": "a",
- "offset": 96,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 670.795,
- "end": 671.005,
- "confidence": 1,
- "text": "new",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 671.005,
- "end": 671.585,
- "confidence": 1,
- "text": "understanding",
- "offset": 102,
- "length": 13,
- "key": expect.any(String)
- },
- {
- "start": 671.585,
- "end": 671.665,
- "confidence": 1,
- "text": "of",
- "offset": 116,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 671.665,
- "end": 672.495,
- "confidence": 1,
- "text": "ourselves.",
- "offset": 119,
- "length": 10,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Most of what I've learned over the past ten years has not been about technology at all.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 92",
- "words": [
- {
- "start": 674.225,
- "end": 674.485,
- "text": "Most",
- "confidence": 1
- },
- {
- "start": 674.485,
- "end": 674.545,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 674.545,
- "end": 674.665,
- "text": "what",
- "confidence": 1
- },
- {
- "start": 674.665,
- "end": 674.765,
- "text": "I've",
- "confidence": 0.9948
- },
- {
- "start": 674.765,
- "end": 675.055,
- "text": "learned",
- "confidence": 1
- },
- {
- "start": 675.055,
- "end": 675.155,
- "text": "over",
- "confidence": 1
- },
- {
- "start": 675.155,
- "end": 675.235,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 675.235,
- "end": 675.535,
- "text": "past",
- "confidence": 1
- },
- {
- "start": 675.535,
- "end": 675.715,
- "text": "ten",
- "confidence": 1
- },
- {
- "start": 675.715,
- "end": 676.355,
- "text": "years",
- "confidence": 1
- },
- {
- "start": 676.455,
- "end": 676.625,
- "text": "has",
- "confidence": 0.683
- },
- {
- "start": 676.625,
- "end": 676.845,
- "text": "not",
- "confidence": 1
- },
- {
- "start": 676.855,
- "end": 676.975,
- "text": "been",
- "confidence": 1
- },
- {
- "start": 676.975,
- "end": 677.195,
- "text": "about",
- "confidence": 0.999
- },
- {
- "start": 677.195,
- "end": 677.735,
- "text": "technology",
- "confidence": 1
- },
- {
- "start": 677.735,
- "end": 677.815,
- "text": "at",
- "confidence": 0.8737
- },
- {
- "start": 677.815,
- "end": 678.085,
- "text": "all.",
- "confidence": 1
- }
- ],
- "start": 674.225
- },
- "entityRanges": [
- {
- "start": 674.225,
- "end": 674.485,
- "confidence": 1,
- "text": "Most",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 674.485,
- "end": 674.545,
- "confidence": 1,
- "text": "of",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 674.545,
- "end": 674.665,
- "confidence": 1,
- "text": "what",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 674.665,
- "end": 674.765,
- "confidence": 0.9948,
- "text": "I've",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 674.765,
- "end": 675.055,
- "confidence": 1,
- "text": "learned",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 675.055,
- "end": 675.155,
- "confidence": 1,
- "text": "over",
- "offset": 26,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 675.155,
- "end": 675.235,
- "confidence": 1,
- "text": "the",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 675.235,
- "end": 675.535,
- "confidence": 1,
- "text": "past",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 675.535,
- "end": 675.715,
- "confidence": 1,
- "text": "ten",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 675.715,
- "end": 676.355,
- "confidence": 1,
- "text": "years",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 676.455,
- "end": 676.625,
- "confidence": 0.683,
- "text": "has",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 676.625,
- "end": 676.845,
- "confidence": 1,
- "text": "not",
- "offset": 54,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 676.855,
- "end": 676.975,
- "confidence": 1,
- "text": "been",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 676.975,
- "end": 677.195,
- "confidence": 0.999,
- "text": "about",
- "offset": 63,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 677.195,
- "end": 677.735,
- "confidence": 1,
- "text": "technology",
- "offset": 69,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 677.735,
- "end": 677.815,
- "confidence": 0.8737,
- "text": "at",
- "offset": 80,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 677.815,
- "end": 678.085,
- "confidence": 1,
- "text": "all.",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "It's been about human psychology and empathy and how we relate to others.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 93",
- "words": [
- {
- "start": 678.825,
- "end": 679.065,
- "text": "It's",
- "confidence": 0.9955
- },
- {
- "start": 679.065,
- "end": 679.205,
- "text": "been",
- "confidence": 1
- },
- {
- "start": 679.205,
- "end": 679.445,
- "text": "about",
- "confidence": 1
- },
- {
- "start": 679.445,
- "end": 679.755,
- "text": "human",
- "confidence": 1
- },
- {
- "start": 679.755,
- "end": 680.655,
- "text": "psychology",
- "confidence": 1
- },
- {
- "start": 681.385,
- "end": 681.555,
- "text": "and",
- "confidence": 0.6365
- },
- {
- "start": 681.565,
- "end": 682.295,
- "text": "empathy",
- "confidence": 1
- },
- {
- "start": 682.305,
- "end": 682.445,
- "text": "and",
- "confidence": 1
- },
- {
- "start": 682.445,
- "end": 682.665,
- "text": "how",
- "confidence": 1
- },
- {
- "start": 682.665,
- "end": 682.785,
- "text": "we",
- "confidence": 1
- },
- {
- "start": 682.785,
- "end": 683.125,
- "text": "relate",
- "confidence": 0.77
- },
- {
- "start": 683.125,
- "end": 683.215,
- "text": "to",
- "confidence": 0.9999
- },
- {
- "start": 683.225,
- "end": 683.895,
- "text": "others.",
- "confidence": 1
- }
- ],
- "start": 678.825
- },
- "entityRanges": [
- {
- "start": 678.825,
- "end": 679.065,
- "confidence": 0.9955,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 679.065,
- "end": 679.205,
- "confidence": 1,
- "text": "been",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 679.205,
- "end": 679.445,
- "confidence": 1,
- "text": "about",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 679.445,
- "end": 679.755,
- "confidence": 1,
- "text": "human",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 679.755,
- "end": 680.655,
- "confidence": 1,
- "text": "psychology",
- "offset": 22,
- "length": 10,
- "key": expect.any(String)
- },
- {
- "start": 681.385,
- "end": 681.555,
- "confidence": 0.6365,
- "text": "and",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 681.565,
- "end": 682.295,
- "confidence": 1,
- "text": "empathy",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 682.305,
- "end": 682.445,
- "confidence": 1,
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 682.445,
- "end": 682.665,
- "confidence": 1,
- "text": "how",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 682.665,
- "end": 682.785,
- "confidence": 1,
- "text": "we",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 682.785,
- "end": 683.125,
- "confidence": 0.77,
- "text": "relate",
- "offset": 56,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 683.125,
- "end": 683.215,
- "confidence": 0.9999,
- "text": "to",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 683.225,
- "end": 683.895,
- "confidence": 1,
- "text": "others.",
- "offset": 66,
- "length": 7,
- "key": expect.any(String)
- }
- ]
- },
- {
- "text": "Because when a child is kind to a Roomba, when a soldier tries to save a robot on the battlefield or when a group of people refuses to harm a robotic baby dinosaur, those robots aren't just motors and gears and algorithms, their reflections of our own humanity.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 94",
- "words": [
- {
- "start": 685.495,
- "end": 685.825,
- "text": "Because",
- "confidence": 1
- },
- {
- "start": 685.825,
- "end": 685.965,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 685.965,
- "end": 686.055,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 686.055,
- "end": 686.475,
- "text": "child",
- "confidence": 1
- },
- {
- "start": 686.475,
- "end": 686.595,
- "text": "is",
- "confidence": 1
- },
- {
- "start": 686.595,
- "end": 686.985,
- "text": "kind",
- "confidence": 1
- },
- {
- "start": 686.985,
- "end": 687.115,
- "text": "to",
- "confidence": 0.9759
- },
- {
- "start": 687.115,
- "end": 687.195,
- "text": "a",
- "confidence": 0.9955
- },
- {
- "start": 687.195,
- "end": 687.815,
- "text": "Roomba,",
- "confidence": 0.9997
- },
- {
- "start": 689.235,
- "end": 689.395,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 689.395,
- "end": 689.465,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 689.465,
- "end": 689.975,
- "text": "soldier",
- "confidence": 1
- },
- {
- "start": 689.975,
- "end": 690.335,
- "text": "tries",
- "confidence": 1
- },
- {
- "start": 690.335,
- "end": 690.435,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 690.435,
- "end": 690.765,
- "text": "save",
- "confidence": 0.9983
- },
- {
- "start": 690.765,
- "end": 690.845,
- "text": "a",
- "confidence": 0.9956
- },
- {
- "start": 690.845,
- "end": 691.225,
- "text": "robot",
- "confidence": 1
- },
- {
- "start": 691.225,
- "end": 691.345,
- "text": "on",
- "confidence": 1
- },
- {
- "start": 691.345,
- "end": 691.425,
- "text": "the",
- "confidence": 1
- },
- {
- "start": 691.425,
- "end": 692.295,
- "text": "battlefield",
- "confidence": 0.9308
- },
- {
- "start": 693.135,
- "end": 693.415,
- "text": "or",
- "confidence": 1
- },
- {
- "start": 693.415,
- "end": 693.555,
- "text": "when",
- "confidence": 1
- },
- {
- "start": 693.555,
- "end": 693.615,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 693.615,
- "end": 693.835,
- "text": "group",
- "confidence": 1
- },
- {
- "start": 693.835,
- "end": 693.955,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 693.955,
- "end": 694.335,
- "text": "people",
- "confidence": 1
- },
- {
- "start": 694.335,
- "end": 694.885,
- "text": "refuses",
- "confidence": 1
- },
- {
- "start": 694.885,
- "end": 694.975,
- "text": "to",
- "confidence": 1
- },
- {
- "start": 694.975,
- "end": 695.425,
- "text": "harm",
- "confidence": 1
- },
- {
- "start": 695.425,
- "end": 695.515,
- "text": "a",
- "confidence": 1
- },
- {
- "start": 695.515,
- "end": 695.895,
- "text": "robotic",
- "confidence": 0.9885
- },
- {
- "start": 695.905,
- "end": 696.115,
- "text": "baby",
- "confidence": 0.9996
- },
- {
- "start": 696.115,
- "end": 696.895,
- "text": "dinosaur,",
- "confidence": 1
- },
- {
- "start": 698.215,
- "end": 698.445,
- "text": "those",
- "confidence": 1
- },
- {
- "start": 698.445,
- "end": 698.835,
- "text": "robots",
- "confidence": 1
- },
- {
- "start": 698.845,
- "end": 699.095,
- "text": "aren't",
- "confidence": 1
- },
- {
- "start": 699.095,
- "end": 699.435,
- "text": "just",
- "confidence": 1
- },
- {
- "start": 699.445,
- "end": 699.925,
- "text": "motors",
- "confidence": 0.9957
- },
- {
- "start": 699.925,
- "end": 700.035,
- "text": "and",
- "confidence": 0.9928
- },
- {
- "start": 700.035,
- "end": 700.355,
- "text": "gears",
- "confidence": 0.6655
- },
- {
- "start": 700.355,
- "end": 700.465,
- "text": "and",
- "confidence": 0.9963
- },
- {
- "start": 700.465,
- "end": 701.395,
- "text": "algorithms,",
- "confidence": 1
- },
- {
- "start": 702.485,
- "end": 702.655,
- "text": "their",
- "confidence": 0.8498
- },
- {
- "start": 702.655,
- "end": 703.245,
- "text": "reflections",
- "confidence": 1
- },
- {
- "start": 703.245,
- "end": 703.335,
- "text": "of",
- "confidence": 1
- },
- {
- "start": 703.335,
- "end": 703.475,
- "text": "our",
- "confidence": 1
- },
- {
- "start": 703.475,
- "end": 703.635,
- "text": "own",
- "confidence": 1
- },
- {
- "start": 703.635,
- "end": 704.305,
- "text": "humanity.",
- "confidence": 1
- }
- ],
- "start": 685.495
- },
- "entityRanges": [
- {
- "start": 685.495,
- "end": 685.825,
- "confidence": 1,
- "text": "Because",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 685.825,
- "end": 685.965,
- "confidence": 1,
- "text": "when",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 685.965,
- "end": 686.055,
- "confidence": 1,
- "text": "a",
- "offset": 13,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 686.055,
- "end": 686.475,
- "confidence": 1,
- "text": "child",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 686.475,
- "end": 686.595,
- "confidence": 1,
- "text": "is",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 686.595,
- "end": 686.985,
- "confidence": 1,
- "text": "kind",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 686.985,
- "end": 687.115,
- "confidence": 0.9759,
- "text": "to",
- "offset": 29,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 687.115,
- "end": 687.195,
- "confidence": 0.9955,
- "text": "a",
- "offset": 32,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 687.195,
- "end": 687.815,
- "confidence": 0.9997,
- "text": "Roomba,",
- "offset": 34,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 689.235,
- "end": 689.395,
- "confidence": 1,
- "text": "when",
- "offset": 42,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 689.395,
- "end": 689.465,
- "confidence": 1,
- "text": "a",
- "offset": 47,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 689.465,
- "end": 689.975,
- "confidence": 1,
- "text": "soldier",
- "offset": 49,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 689.975,
- "end": 690.335,
- "confidence": 1,
- "text": "tries",
- "offset": 57,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 690.335,
- "end": 690.435,
- "confidence": 1,
- "text": "to",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 690.435,
- "end": 690.765,
- "confidence": 0.9983,
- "text": "save",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 690.765,
- "end": 690.845,
- "confidence": 0.9956,
- "text": "a",
- "offset": 71,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 690.845,
- "end": 691.225,
- "confidence": 1,
- "text": "robot",
- "offset": 73,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 691.225,
- "end": 691.345,
- "confidence": 1,
- "text": "on",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 691.345,
- "end": 691.425,
- "confidence": 1,
- "text": "the",
- "offset": 82,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 691.425,
- "end": 692.295,
- "confidence": 0.9308,
- "text": "battlefield",
- "offset": 86,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 693.135,
- "end": 693.415,
- "confidence": 1,
- "text": "or",
- "offset": 98,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 693.415,
- "end": 693.555,
- "confidence": 1,
- "text": "when",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 693.555,
- "end": 693.615,
- "confidence": 1,
- "text": "a",
- "offset": 106,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 693.615,
- "end": 693.835,
- "confidence": 1,
- "text": "group",
- "offset": 108,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 693.835,
- "end": 693.955,
- "confidence": 1,
- "text": "of",
- "offset": 114,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 693.955,
- "end": 694.335,
- "confidence": 1,
- "text": "people",
- "offset": 117,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 694.335,
- "end": 694.885,
- "confidence": 1,
- "text": "refuses",
- "offset": 124,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 694.885,
- "end": 694.975,
- "confidence": 1,
- "text": "to",
- "offset": 132,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 694.975,
- "end": 695.425,
- "confidence": 1,
- "text": "harm",
- "offset": 135,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 695.425,
- "end": 695.515,
- "confidence": 1,
- "text": "a",
- "offset": 140,
- "length": 1,
- "key": expect.any(String)
- },
- {
- "start": 695.515,
- "end": 695.895,
- "confidence": 0.9885,
- "text": "robotic",
- "offset": 142,
- "length": 7,
- "key": expect.any(String)
- },
- {
- "start": 695.905,
- "end": 696.115,
- "confidence": 0.9996,
- "text": "baby",
- "offset": 150,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 696.115,
- "end": 696.895,
- "confidence": 1,
- "text": "dinosaur,",
- "offset": 155,
- "length": 9,
- "key": expect.any(String)
- },
- {
- "start": 698.215,
- "end": 698.445,
- "confidence": 1,
- "text": "those",
- "offset": 165,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 698.445,
- "end": 698.835,
- "confidence": 1,
- "text": "robots",
- "offset": 171,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 698.845,
- "end": 699.095,
- "confidence": 1,
- "text": "aren't",
- "offset": 178,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 699.095,
- "end": 699.435,
- "confidence": 1,
- "text": "just",
- "offset": 185,
- "length": 4,
- "key": expect.any(String)
- },
- {
- "start": 699.445,
- "end": 699.925,
- "confidence": 0.9957,
- "text": "motors",
- "offset": 190,
- "length": 6,
- "key": expect.any(String)
- },
- {
- "start": 699.925,
- "end": 700.035,
- "confidence": 0.9928,
- "text": "and",
- "offset": 197,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 700.035,
- "end": 700.355,
- "confidence": 0.6655,
- "text": "gears",
- "offset": 201,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 700.355,
- "end": 700.465,
- "confidence": 0.9963,
- "text": "and",
- "offset": 207,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 700.465,
- "end": 701.395,
- "confidence": 1,
- "text": "algorithms,",
- "offset": 211,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 702.485,
- "end": 702.655,
- "confidence": 0.8498,
- "text": "their",
- "offset": 223,
- "length": 5,
- "key": expect.any(String)
- },
- {
- "start": 702.655,
- "end": 703.245,
- "confidence": 1,
- "text": "reflections",
- "offset": 229,
- "length": 11,
- "key": expect.any(String)
- },
- {
- "start": 703.245,
- "end": 703.335,
- "confidence": 1,
- "text": "of",
- "offset": 241,
- "length": 2,
- "key": expect.any(String)
- },
- {
- "start": 703.335,
- "end": 703.475,
- "confidence": 1,
- "text": "our",
- "offset": 244,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 703.475,
- "end": 703.635,
- "confidence": 1,
- "text": "own",
- "offset": 248,
- "length": 3,
- "key": expect.any(String)
- },
- {
- "start": 703.635,
- "end": 704.305,
- "confidence": 1,
- "text": "humanity.",
- "offset": 252,
- "length": 9,
- "key": expect.any(String)
- }
- ]
- }
- ]
-
-export default draftTranscriptSample;
diff --git a/src/lib/Util/adapters/autoEdit2/example-usage.js b/src/lib/Util/adapters/autoEdit2/example-usage.js
deleted file mode 100644
index 66fd1585..00000000
--- a/src/lib/Util/adapters/autoEdit2/example-usage.js
+++ /dev/null
@@ -1,4 +0,0 @@
-const autoEdit2ToDraft = require('./index');
-const autoEdit2TedTalkTranscript = require('./sample/autoEdit2TedTalkTranscript.sample.json');
-
-console.log(autoEdit2ToDraft(autoEdit2TedTalkTranscript));
diff --git a/src/lib/Util/adapters/autoEdit2/index.test.js b/src/lib/Util/adapters/autoEdit2/index.test.js
deleted file mode 100644
index c7754bfa..00000000
--- a/src/lib/Util/adapters/autoEdit2/index.test.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import autoEdit2ToDraft from './index.js';
-// TODO: could make this test run faster by shortning the two sample to one or two paragraphs?
-import draftTranscriptExample from './sample/autoEdit2ToDraft.sample.js';
-import autoEdit2TedTalkTranscript from './sample/autoEdit2TedTalkTranscript.sample.json';
-
-describe('bbcKaldiToDraft', () => {
- const result = autoEdit2ToDraft(autoEdit2TedTalkTranscript, 'text');
- it('Should be defined', ( ) => {
- expect(result).toBeDefined();
- });
-
- it('Should be equal to expected value', ( ) => {
- expect(result).toEqual(draftTranscriptExample);
- });
-});
diff --git a/src/lib/Util/adapters/autoEdit2/sample/autoEdit2ToDraft.sample.js b/src/lib/Util/adapters/autoEdit2/sample/autoEdit2ToDraft.sample.js
deleted file mode 100644
index 12dd95e6..00000000
--- a/src/lib/Util/adapters/autoEdit2/sample/autoEdit2ToDraft.sample.js
+++ /dev/null
@@ -1,23840 +0,0 @@
-const draftTranscriptExample = [
- {
- "text": "There is a day.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 0",
- "words": [
- {
- "text": "There",
- "start": 13.05,
- "end": 13.21
- },
- {
- "text": "is",
- "start": 13.21,
- "end": 13.38
- },
- {
- "text": "a",
- "start": 13.38,
- "end": 13.44
- },
- {
- "text": "day.",
- "start": 13.44,
- "end": 13.86
- }
- ],
- "start": 13.05
- },
- "entityRanges": [
- {
- "start": 13.05,
- "end": 13.21,
- "text": "There",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 13.21,
- "end": 13.38,
- "text": "is",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 13.38,
- "end": 13.44,
- "text": "a",
- "offset": 9,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 13.44,
- "end": 13.86,
- "text": "day.",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "About ten years ago when I asked a friend to hold a baby dinosaur robot upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 1",
- "words": [
- {
- "text": "About",
- "start": 13.86,
- "end": 14.13
- },
- {
- "text": "ten",
- "start": 14.13,
- "end": 14.37
- },
- {
- "text": "years",
- "start": 14.37,
- "end": 14.61
- },
- {
- "text": "ago",
- "start": 14.61,
- "end": 15.15
- },
- {
- "text": "when",
- "start": 15.44,
- "end": 15.67
- },
- {
- "text": "I",
- "start": 15.67,
- "end": 15.82
- },
- {
- "text": "asked",
- "start": 15.82,
- "end": 16.19
- },
- {
- "text": "a",
- "start": 16.19,
- "end": 16.27
- },
- {
- "text": "friend",
- "start": 16.27,
- "end": 16.65
- },
- {
- "text": "to",
- "start": 16.65,
- "end": 16.74
- },
- {
- "text": "hold",
- "start": 16.74,
- "end": 17.2
- },
- {
- "text": "a",
- "start": 17.23,
- "end": 17.32
- },
- {
- "text": "baby",
- "start": 17.32,
- "end": 17.63
- },
- {
- "text": "dinosaur",
- "start": 17.63,
- "end": 18.13
- },
- {
- "text": "robot",
- "start": 18.17,
- "end": 18.61
- },
- {
- "text": "upside",
- "start": 18.72,
- "end": 19.17
- },
- {
- "text": "down.",
- "start": 19.17,
- "end": 19.56
- }
- ],
- "start": 13.86
- },
- "entityRanges": [
- {
- "start": 13.86,
- "end": 14.13,
- "text": "About",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 14.13,
- "end": 14.37,
- "text": "ten",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 14.37,
- "end": 14.61,
- "text": "years",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 14.61,
- "end": 15.15,
- "text": "ago",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 15.44,
- "end": 15.67,
- "text": "when",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 15.67,
- "end": 15.82,
- "text": "I",
- "offset": 25,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 15.82,
- "end": 16.19,
- "text": "asked",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.19,
- "end": 16.27,
- "text": "a",
- "offset": 33,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.27,
- "end": 16.65,
- "text": "friend",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.65,
- "end": 16.74,
- "text": "to",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.74,
- "end": 17.2,
- "text": "hold",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 17.23,
- "end": 17.32,
- "text": "a",
- "offset": 50,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 17.32,
- "end": 17.63,
- "text": "baby",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 17.63,
- "end": 18.13,
- "text": "dinosaur",
- "offset": 57,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 18.17,
- "end": 18.61,
- "text": "robot",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 18.72,
- "end": 19.17,
- "text": "upside",
- "offset": 72,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 19.17,
- "end": 19.56,
- "text": "down.",
- "offset": 79,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Was this toy.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 2",
- "words": [
- {
- "text": "Was",
- "start": 21.88,
- "end": 22.04
- },
- {
- "text": "this",
- "start": 22.08,
- "end": 22.25
- },
- {
- "text": "toy.",
- "start": 22.25,
- "end": 22.69
- }
- ],
- "start": 21.88
- },
- "entityRanges": [
- {
- "start": 21.88,
- "end": 22.04,
- "text": "Was",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 22.08,
- "end": 22.25,
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 22.25,
- "end": 22.69,
- "text": "toy.",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Pre or that he'd ordered and I was really excited about it because I've always loved about this one has really caught technical features.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 3",
- "words": [
- {
- "text": "Pre",
- "start": 22.83,
- "end": 23.21
- },
- {
- "text": "or",
- "start": 23.27,
- "end": 23.75
- },
- {
- "text": "that",
- "start": 24.2,
- "end": 24.6
- },
- {
- "text": "he'd",
- "start": 24.66,
- "end": 24.86
- },
- {
- "text": "ordered",
- "start": 24.87,
- "end": 25.32
- },
- {
- "text": "and",
- "start": 25.33,
- "end": 25.43
- },
- {
- "text": "I",
- "start": 25.43,
- "end": 25.49
- },
- {
- "text": "was",
- "start": 25.49,
- "end": 25.66
- },
- {
- "text": "really",
- "start": 25.66,
- "end": 25.87
- },
- {
- "text": "excited",
- "start": 25.87,
- "end": 26.49
- },
- {
- "text": "about",
- "start": 26.49,
- "end": 26.82
- },
- {
- "text": "it",
- "start": 26.82,
- "end": 27.05
- },
- {
- "text": "because",
- "start": 27.05,
- "end": 27.77
- },
- {
- "text": "I've",
- "start": 28.44,
- "end": 28.59
- },
- {
- "text": "always",
- "start": 28.59,
- "end": 28.78
- },
- {
- "text": "loved",
- "start": 28.78,
- "end": 29.04
- },
- {
- "text": "about",
- "start": 29.06,
- "end": 29.59
- },
- {
- "text": "this",
- "start": 29.79,
- "end": 30.04
- },
- {
- "text": "one",
- "start": 30.04,
- "end": 30.19
- },
- {
- "text": "has",
- "start": 30.19,
- "end": 30.45
- },
- {
- "text": "really",
- "start": 30.45,
- "end": 30.77
- },
- {
- "text": "caught",
- "start": 30.77,
- "end": 30.96
- },
- {
- "text": "technical",
- "start": 30.96,
- "end": 31.33
- },
- {
- "text": "features.",
- "start": 31.33,
- "end": 31.79
- }
- ],
- "start": 22.83
- },
- "entityRanges": [
- {
- "start": 22.83,
- "end": 23.21,
- "text": "Pre",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 23.27,
- "end": 23.75,
- "text": "or",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 24.2,
- "end": 24.6,
- "text": "that",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 24.66,
- "end": 24.86,
- "text": "he'd",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 24.87,
- "end": 25.32,
- "text": "ordered",
- "offset": 17,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.33,
- "end": 25.43,
- "text": "and",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.43,
- "end": 25.49,
- "text": "I",
- "offset": 29,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.49,
- "end": 25.66,
- "text": "was",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.66,
- "end": 25.87,
- "text": "really",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.87,
- "end": 26.49,
- "text": "excited",
- "offset": 42,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 26.49,
- "end": 26.82,
- "text": "about",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 26.82,
- "end": 27.05,
- "text": "it",
- "offset": 56,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 27.05,
- "end": 27.77,
- "text": "because",
- "offset": 59,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 28.44,
- "end": 28.59,
- "text": "I've",
- "offset": 67,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 28.59,
- "end": 28.78,
- "text": "always",
- "offset": 72,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 28.78,
- "end": 29.04,
- "text": "loved",
- "offset": 79,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 29.06,
- "end": 29.59,
- "text": "about",
- "offset": 85,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 29.79,
- "end": 30.04,
- "text": "this",
- "offset": 91,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.04,
- "end": 30.19,
- "text": "one",
- "offset": 96,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.19,
- "end": 30.45,
- "text": "has",
- "offset": 100,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.45,
- "end": 30.77,
- "text": "really",
- "offset": 104,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.77,
- "end": 30.96,
- "text": "caught",
- "offset": 111,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.96,
- "end": 31.33,
- "text": "technical",
- "offset": 118,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 31.33,
- "end": 31.79,
- "text": "features.",
- "offset": 128,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It had moulders and touch sensors and had an infrared camera and one of the things that had was a tilt sensor so it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 4",
- "words": [
- {
- "text": "It",
- "start": 31.81,
- "end": 31.92
- },
- {
- "text": "had",
- "start": 31.92,
- "end": 32.15
- },
- {
- "text": "moulders",
- "start": 32.15,
- "end": 32.74
- },
- {
- "text": "and",
- "start": 32.75,
- "end": 32.91
- },
- {
- "text": "touch",
- "start": 32.91,
- "end": 33.17
- },
- {
- "text": "sensors",
- "start": 33.17,
- "end": 33.88
- },
- {
- "text": "and",
- "start": 34.2,
- "end": 34.47
- },
- {
- "text": "had",
- "start": 34.49,
- "end": 34.7
- },
- {
- "text": "an",
- "start": 34.71,
- "end": 34.8
- },
- {
- "text": "infrared",
- "start": 34.8,
- "end": 35.22
- },
- {
- "text": "camera",
- "start": 35.32,
- "end": 35.98
- },
- {
- "text": "and",
- "start": 36.48,
- "end": 36.64
- },
- {
- "text": "one",
- "start": 36.65,
- "end": 36.79
- },
- {
- "text": "of",
- "start": 36.79,
- "end": 36.87
- },
- {
- "text": "the",
- "start": 36.87,
- "end": 36.98
- },
- {
- "text": "things",
- "start": 36.98,
- "end": 37.22
- },
- {
- "text": "that",
- "start": 37.22,
- "end": 37.33
- },
- {
- "text": "had",
- "start": 37.33,
- "end": 37.53
- },
- {
- "text": "was",
- "start": 37.53,
- "end": 37.63
- },
- {
- "text": "a",
- "start": 37.63,
- "end": 37.85
- },
- {
- "text": "tilt",
- "start": 37.95,
- "end": 38.39
- },
- {
- "text": "sensor",
- "start": 38.39,
- "end": 39.03
- },
- {
- "text": "so",
- "start": 39.24,
- "end": 39.51
- },
- {
- "text": "it.",
- "start": 39.51,
- "end": 39.62
- }
- ],
- "start": 31.81
- },
- "entityRanges": [
- {
- "start": 31.81,
- "end": 31.92,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 31.92,
- "end": 32.15,
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.15,
- "end": 32.74,
- "text": "moulders",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.75,
- "end": 32.91,
- "text": "and",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.91,
- "end": 33.17,
- "text": "touch",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 33.17,
- "end": 33.88,
- "text": "sensors",
- "offset": 26,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.2,
- "end": 34.47,
- "text": "and",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.49,
- "end": 34.7,
- "text": "had",
- "offset": 38,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.71,
- "end": 34.8,
- "text": "an",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.8,
- "end": 35.22,
- "text": "infrared",
- "offset": 45,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 35.32,
- "end": 35.98,
- "text": "camera",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.48,
- "end": 36.64,
- "text": "and",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.65,
- "end": 36.79,
- "text": "one",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.79,
- "end": 36.87,
- "text": "of",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.87,
- "end": 36.98,
- "text": "the",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.98,
- "end": 37.22,
- "text": "things",
- "offset": 76,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.22,
- "end": 37.33,
- "text": "that",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.33,
- "end": 37.53,
- "text": "had",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.53,
- "end": 37.63,
- "text": "was",
- "offset": 92,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.63,
- "end": 37.85,
- "text": "a",
- "offset": 96,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.95,
- "end": 38.39,
- "text": "tilt",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 38.39,
- "end": 39.03,
- "text": "sensor",
- "offset": 103,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.24,
- "end": 39.51,
- "text": "so",
- "offset": 110,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.51,
- "end": 39.62,
- "text": "it.",
- "offset": 113,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Knew what direction.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 5",
- "words": [
- {
- "text": "Knew",
- "start": 39.62,
- "end": 39.82
- },
- {
- "text": "what",
- "start": 39.82,
- "end": 39.96
- },
- {
- "text": "direction.",
- "start": 39.96,
- "end": 40.53
- }
- ],
- "start": 39.62
- },
- "entityRanges": [
- {
- "start": 39.62,
- "end": 39.82,
- "text": "Knew",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.82,
- "end": 39.96,
- "text": "what",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.96,
- "end": 40.53,
- "text": "direction.",
- "offset": 10,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It was facing when you held it upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 6",
- "words": [
- {
- "text": "It",
- "start": 40.53,
- "end": 40.64
- },
- {
- "text": "was",
- "start": 40.64,
- "end": 40.85
- },
- {
- "text": "facing",
- "start": 40.85,
- "end": 41.54
- },
- {
- "text": "when",
- "start": 42.03,
- "end": 42.26
- },
- {
- "text": "you",
- "start": 42.32,
- "end": 42.44
- },
- {
- "text": "held",
- "start": 42.44,
- "end": 42.62
- },
- {
- "text": "it",
- "start": 42.62,
- "end": 42.73
- },
- {
- "text": "upside",
- "start": 42.73,
- "end": 43.05
- },
- {
- "text": "down.",
- "start": 43.05,
- "end": 43.61
- }
- ],
- "start": 40.53
- },
- "entityRanges": [
- {
- "start": 40.53,
- "end": 40.64,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 40.64,
- "end": 40.85,
- "text": "was",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 40.85,
- "end": 41.54,
- "text": "facing",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.03,
- "end": 42.26,
- "text": "when",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.32,
- "end": 42.44,
- "text": "you",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.44,
- "end": 42.62,
- "text": "held",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.62,
- "end": 42.73,
- "text": "it",
- "offset": 28,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.73,
- "end": 43.05,
- "text": "upside",
- "offset": 31,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 43.05,
- "end": 43.61,
- "text": "down.",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I thought super courts are showing after my friend and I said to hold it by that helps you do that we were watching the theatrics of this robe that struggle and cry out and after a few seconds.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 7",
- "words": [
- {
- "text": "I",
- "start": 46.53,
- "end": 46.69
- },
- {
- "text": "thought",
- "start": 46.69,
- "end": 46.91
- },
- {
- "text": "super",
- "start": 46.98,
- "end": 47.57
- },
- {
- "text": "courts",
- "start": 47.57,
- "end": 47.89
- },
- {
- "text": "are",
- "start": 47.93,
- "end": 48.19
- },
- {
- "text": "showing",
- "start": 48.24,
- "end": 48.69
- },
- {
- "text": "after",
- "start": 48.68,
- "end": 48.87
- },
- {
- "text": "my",
- "start": 48.93,
- "end": 49.04
- },
- {
- "text": "friend",
- "start": 49.04,
- "end": 49.56
- },
- {
- "text": "and",
- "start": 49.97,
- "end": 50.14
- },
- {
- "text": "I",
- "start": 50.14,
- "end": 50.22
- },
- {
- "text": "said",
- "start": 50.22,
- "end": 50.41
- },
- {
- "text": "to",
- "start": 50.43,
- "end": 50.59
- },
- {
- "text": "hold",
- "start": 50.59,
- "end": 50.83
- },
- {
- "text": "it",
- "start": 50.83,
- "end": 50.95
- },
- {
- "text": "by",
- "start": 50.95,
- "end": 51.07
- },
- {
- "text": "that",
- "start": 51.08,
- "end": 51.25
- },
- {
- "text": "helps",
- "start": 51.25,
- "end": 51.61
- },
- {
- "text": "you",
- "start": 51.61,
- "end": 51.72
- },
- {
- "text": "do",
- "start": 51.72,
- "end": 51.82
- },
- {
- "text": "that",
- "start": 51.82,
- "end": 52.11
- },
- {
- "text": "we",
- "start": 55.19,
- "end": 55.26
- },
- {
- "text": "were",
- "start": 55.34,
- "end": 55.49
- },
- {
- "text": "watching",
- "start": 55.49,
- "end": 55.93
- },
- {
- "text": "the",
- "start": 55.93,
- "end": 56.02
- },
- {
- "text": "theatrics",
- "start": 56.02,
- "end": 56.92
- },
- {
- "text": "of",
- "start": 56.92,
- "end": 57.02
- },
- {
- "text": "this",
- "start": 57.02,
- "end": 57.24
- },
- {
- "text": "robe",
- "start": 57.24,
- "end": 57.52
- },
- {
- "text": "that",
- "start": 57.52,
- "end": 58.01
- },
- {
- "text": "struggle",
- "start": 58.89,
- "end": 59.84
- },
- {
- "text": "and",
- "start": 59.89,
- "end": 60.09
- },
- {
- "text": "cry",
- "start": 60.09,
- "end": 60.68
- },
- {
- "text": "out",
- "start": 60.68,
- "end": 61.08
- },
- {
- "text": "and",
- "start": 62.77,
- "end": 63.02
- },
- {
- "text": "after",
- "start": 63.25,
- "end": 63.53
- },
- {
- "text": "a",
- "start": 63.53,
- "end": 63.58
- },
- {
- "text": "few",
- "start": 63.58,
- "end": 63.74
- },
- {
- "text": "seconds.",
- "start": 63.74,
- "end": 64.52
- }
- ],
- "start": 46.53
- },
- "entityRanges": [
- {
- "start": 46.53,
- "end": 46.69,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 46.69,
- "end": 46.91,
- "text": "thought",
- "offset": 2,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 46.98,
- "end": 47.57,
- "text": "super",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 47.57,
- "end": 47.89,
- "text": "courts",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 47.93,
- "end": 48.19,
- "text": "are",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.24,
- "end": 48.69,
- "text": "showing",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.68,
- "end": 48.87,
- "text": "after",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.93,
- "end": 49.04,
- "text": "my",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 49.04,
- "end": 49.56,
- "text": "friend",
- "offset": 44,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 49.97,
- "end": 50.14,
- "text": "and",
- "offset": 51,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.14,
- "end": 50.22,
- "text": "I",
- "offset": 55,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.22,
- "end": 50.41,
- "text": "said",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.43,
- "end": 50.59,
- "text": "to",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.59,
- "end": 50.83,
- "text": "hold",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.83,
- "end": 50.95,
- "text": "it",
- "offset": 70,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.95,
- "end": 51.07,
- "text": "by",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.08,
- "end": 51.25,
- "text": "that",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.25,
- "end": 51.61,
- "text": "helps",
- "offset": 81,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.61,
- "end": 51.72,
- "text": "you",
- "offset": 87,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.72,
- "end": 51.82,
- "text": "do",
- "offset": 91,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.82,
- "end": 52.11,
- "text": "that",
- "offset": 94,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.19,
- "end": 55.26,
- "text": "we",
- "offset": 99,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.34,
- "end": 55.49,
- "text": "were",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.49,
- "end": 55.93,
- "text": "watching",
- "offset": 107,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.93,
- "end": 56.02,
- "text": "the",
- "offset": 116,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 56.02,
- "end": 56.92,
- "text": "theatrics",
- "offset": 120,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 56.92,
- "end": 57.02,
- "text": "of",
- "offset": 130,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 57.02,
- "end": 57.24,
- "text": "this",
- "offset": 133,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 57.24,
- "end": 57.52,
- "text": "robe",
- "offset": 138,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 57.52,
- "end": 58.01,
- "text": "that",
- "offset": 143,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 58.89,
- "end": 59.84,
- "text": "struggle",
- "offset": 148,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 59.89,
- "end": 60.09,
- "text": "and",
- "offset": 157,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 60.09,
- "end": 60.68,
- "text": "cry",
- "offset": 161,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 60.68,
- "end": 61.08,
- "text": "out",
- "offset": 165,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 62.77,
- "end": 63.02,
- "text": "and",
- "offset": 169,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.25,
- "end": 63.53,
- "text": "after",
- "offset": 173,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.53,
- "end": 63.58,
- "text": "a",
- "offset": 179,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.58,
- "end": 63.74,
- "text": "few",
- "offset": 181,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.74,
- "end": 64.52,
- "text": "seconds.",
- "offset": 185,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "First to bother me a little and I said o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 8",
- "words": [
- {
- "text": "First",
- "start": 64.88,
- "end": 65.27
- },
- {
- "text": "to",
- "start": 65.32,
- "end": 65.43
- },
- {
- "text": "bother",
- "start": 65.46,
- "end": 65.74
- },
- {
- "text": "me",
- "start": 65.76,
- "end": 65.95
- },
- {
- "text": "a",
- "start": 65.95,
- "end": 66.06
- },
- {
- "text": "little",
- "start": 66.06,
- "end": 66.45
- },
- {
- "text": "and",
- "start": 67.77,
- "end": 67.84
- },
- {
- "text": "I",
- "start": 67.84,
- "end": 67.97
- },
- {
- "text": "said",
- "start": 67.97,
- "end": 68.22
- },
- {
- "text": "o.k.",
- "start": 68.22,
- "end": 68.85
- }
- ],
- "start": 64.88
- },
- "entityRanges": [
- {
- "start": 64.88,
- "end": 65.27,
- "text": "First",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 65.32,
- "end": 65.43,
- "text": "to",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 65.46,
- "end": 65.74,
- "text": "bother",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 65.76,
- "end": 65.95,
- "text": "me",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 65.95,
- "end": 66.06,
- "text": "a",
- "offset": 19,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 66.06,
- "end": 66.45,
- "text": "little",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 67.77,
- "end": 67.84,
- "text": "and",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 67.84,
- "end": 67.97,
- "text": "I",
- "offset": 32,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 67.97,
- "end": 68.22,
- "text": "said",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 68.22,
- "end": 68.85,
- "text": "o.k.",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "That's enough.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 9",
- "words": [
- {
- "text": "That's",
- "start": 69.97,
- "end": 70.22
- },
- {
- "text": "enough.",
- "start": 70.22,
- "end": 70.58
- }
- ],
- "start": 69.97
- },
- "entityRanges": [
- {
- "start": 69.97,
- "end": 70.22,
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 70.22,
- "end": 70.58,
- "text": "enough.",
- "offset": 7,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Now, let's put him back down and then pepper, about to make it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 10",
- "words": [
- {
- "text": "Now,",
- "start": 70.58,
- "end": 71.11
- },
- {
- "text": "let's",
- "start": 71.92,
- "end": 72.12
- },
- {
- "text": "put",
- "start": 72.12,
- "end": 72.25
- },
- {
- "text": "him",
- "start": 72.25,
- "end": 72.33
- },
- {
- "text": "back",
- "start": 72.33,
- "end": 72.54
- },
- {
- "text": "down",
- "start": 72.54,
- "end": 73.09
- },
- {
- "text": "and",
- "start": 74.17,
- "end": 74.41
- },
- {
- "text": "then",
- "start": 74.51,
- "end": 74.6
- },
- {
- "text": "pepper,",
- "start": 74.62,
- "end": 75.02
- },
- {
- "text": "about",
- "start": 75.03,
- "end": 75.32
- },
- {
- "text": "to",
- "start": 75.32,
- "end": 75.42
- },
- {
- "text": "make",
- "start": 75.43,
- "end": 75.58
- },
- {
- "text": "it.",
- "start": 75.57,
- "end": 75.66
- }
- ],
- "start": 70.58
- },
- "entityRanges": [
- {
- "start": 70.58,
- "end": 71.11,
- "text": "Now,",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 71.92,
- "end": 72.12,
- "text": "let's",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.12,
- "end": 72.25,
- "text": "put",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.25,
- "end": 72.33,
- "text": "him",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.33,
- "end": 72.54,
- "text": "back",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.54,
- "end": 73.09,
- "text": "down",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 74.17,
- "end": 74.41,
- "text": "and",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 74.51,
- "end": 74.6,
- "text": "then",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 74.62,
- "end": 75.02,
- "text": "pepper,",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.03,
- "end": 75.32,
- "text": "about",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.32,
- "end": 75.42,
- "text": "to",
- "offset": 52,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.43,
- "end": 75.58,
- "text": "make",
- "offset": 55,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.57,
- "end": 75.66,
- "text": "it.",
- "offset": 60,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Stop crying.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 11",
- "words": [
- {
- "text": "Stop",
- "start": 75.67,
- "end": 75.92
- },
- {
- "text": "crying.",
- "start": 75.92,
- "end": 76.45
- }
- ],
- "start": 75.67
- },
- "entityRanges": [
- {
- "start": 75.67,
- "end": 75.92,
- "text": "Stop",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.92,
- "end": 76.45,
- "text": "crying.",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If I was kind of a weird experience for me one thing I wasn't the most maternal person at the time.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 12",
- "words": [
- {
- "text": "If",
- "start": 76.48,
- "end": 76.76
- },
- {
- "text": "I",
- "start": 78.9,
- "end": 79.04
- },
- {
- "text": "was",
- "start": 79.15,
- "end": 79.29
- },
- {
- "text": "kind",
- "start": 79.29,
- "end": 79.44
- },
- {
- "text": "of",
- "start": 79.44,
- "end": 79.51
- },
- {
- "text": "a",
- "start": 79.51,
- "end": 79.65
- },
- {
- "text": "weird",
- "start": 79.65,
- "end": 79.93
- },
- {
- "text": "experience",
- "start": 79.93,
- "end": 80.64
- },
- {
- "text": "for",
- "start": 80.64,
- "end": 80.78
- },
- {
- "text": "me",
- "start": 80.78,
- "end": 81.38
- },
- {
- "text": "one",
- "start": 82.1,
- "end": 82.36
- },
- {
- "text": "thing",
- "start": 82.36,
- "end": 82.67
- },
- {
- "text": "I",
- "start": 82.85,
- "end": 83.02
- },
- {
- "text": "wasn't",
- "start": 83.03,
- "end": 83.31
- },
- {
- "text": "the",
- "start": 83.31,
- "end": 83.38
- },
- {
- "text": "most",
- "start": 83.38,
- "end": 83.72
- },
- {
- "text": "maternal",
- "start": 83.76,
- "end": 84.39
- },
- {
- "text": "person",
- "start": 84.39,
- "end": 84.94
- },
- {
- "text": "at",
- "start": 84.94,
- "end": 85.07
- },
- {
- "text": "the",
- "start": 85.07,
- "end": 85.15
- },
- {
- "text": "time.",
- "start": 85.15,
- "end": 85.8
- }
- ],
- "start": 76.48
- },
- "entityRanges": [
- {
- "start": 76.48,
- "end": 76.76,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 78.9,
- "end": 79.04,
- "text": "I",
- "offset": 3,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.15,
- "end": 79.29,
- "text": "was",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.29,
- "end": 79.44,
- "text": "kind",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.44,
- "end": 79.51,
- "text": "of",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.51,
- "end": 79.65,
- "text": "a",
- "offset": 17,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.65,
- "end": 79.93,
- "text": "weird",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.93,
- "end": 80.64,
- "text": "experience",
- "offset": 25,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 80.64,
- "end": 80.78,
- "text": "for",
- "offset": 36,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 80.78,
- "end": 81.38,
- "text": "me",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 82.1,
- "end": 82.36,
- "text": "one",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 82.36,
- "end": 82.67,
- "text": "thing",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 82.85,
- "end": 83.02,
- "text": "I",
- "offset": 53,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.03,
- "end": 83.31,
- "text": "wasn't",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.31,
- "end": 83.38,
- "text": "the",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.38,
- "end": 83.72,
- "text": "most",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.76,
- "end": 84.39,
- "text": "maternal",
- "offset": 71,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 84.39,
- "end": 84.94,
- "text": "person",
- "offset": 80,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 84.94,
- "end": 85.07,
- "text": "at",
- "offset": 87,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 85.07,
- "end": 85.15,
- "text": "the",
- "offset": 90,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 85.15,
- "end": 85.8,
- "text": "time.",
- "offset": 94,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Although, since I've become a mother and nine months ago and their babies also score and you're the master now, but my response.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 13",
- "words": [
- {
- "text": "Although,",
- "start": 86.66,
- "end": 86.93
- },
- {
- "text": "since",
- "start": 86.94,
- "end": 87.19
- },
- {
- "text": "I've",
- "start": 87.21,
- "end": 87.38
- },
- {
- "text": "become",
- "start": 87.38,
- "end": 87.6
- },
- {
- "text": "a",
- "start": 87.6,
- "end": 87.65
- },
- {
- "text": "mother",
- "start": 87.65,
- "end": 87.95
- },
- {
- "text": "and",
- "start": 87.95,
- "end": 88.06
- },
- {
- "text": "nine",
- "start": 88.06,
- "end": 88.26
- },
- {
- "text": "months",
- "start": 88.26,
- "end": 88.49
- },
- {
- "text": "ago",
- "start": 88.49,
- "end": 88.91
- },
- {
- "text": "and",
- "start": 89.44,
- "end": 89.78
- },
- {
- "text": "their",
- "start": 89.9,
- "end": 90.16
- },
- {
- "text": "babies",
- "start": 90.18,
- "end": 90.47
- },
- {
- "text": "also",
- "start": 90.49,
- "end": 90.7
- },
- {
- "text": "score",
- "start": 90.71,
- "end": 90.99
- },
- {
- "text": "and",
- "start": 90.98,
- "end": 91.21
- },
- {
- "text": "you're",
- "start": 91.22,
- "end": 91.42
- },
- {
- "text": "the",
- "start": 91.42,
- "end": 91.49
- },
- {
- "text": "master",
- "start": 91.5,
- "end": 91.81
- },
- {
- "text": "now,",
- "start": 91.81,
- "end": 92.1
- },
- {
- "text": "but",
- "start": 95.03,
- "end": 95.27
- },
- {
- "text": "my",
- "start": 95.27,
- "end": 95.48
- },
- {
- "text": "response.",
- "start": 95.48,
- "end": 95.9
- }
- ],
- "start": 86.66
- },
- "entityRanges": [
- {
- "start": 86.66,
- "end": 86.93,
- "text": "Although,",
- "offset": 0,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 86.94,
- "end": 87.19,
- "text": "since",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.21,
- "end": 87.38,
- "text": "I've",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.38,
- "end": 87.6,
- "text": "become",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.6,
- "end": 87.65,
- "text": "a",
- "offset": 28,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.65,
- "end": 87.95,
- "text": "mother",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.95,
- "end": 88.06,
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 88.06,
- "end": 88.26,
- "text": "nine",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 88.26,
- "end": 88.49,
- "text": "months",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 88.49,
- "end": 88.91,
- "text": "ago",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 89.44,
- "end": 89.78,
- "text": "and",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 89.9,
- "end": 90.16,
- "text": "their",
- "offset": 61,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.18,
- "end": 90.47,
- "text": "babies",
- "offset": 67,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.49,
- "end": 90.7,
- "text": "also",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.71,
- "end": 90.99,
- "text": "score",
- "offset": 79,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.98,
- "end": 91.21,
- "text": "and",
- "offset": 85,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.22,
- "end": 91.42,
- "text": "you're",
- "offset": 89,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.42,
- "end": 91.49,
- "text": "the",
- "offset": 96,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.5,
- "end": 91.81,
- "text": "master",
- "offset": 100,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.81,
- "end": 92.1,
- "text": "now,",
- "offset": 107,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.03,
- "end": 95.27,
- "text": "but",
- "offset": 112,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.27,
- "end": 95.48,
- "text": "my",
- "offset": 116,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.48,
- "end": 95.9,
- "text": "response.",
- "offset": 119,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This robot was also interesting because I knew exactly how this machine worked it in yet.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 14",
- "words": [
- {
- "text": "This",
- "start": 95.91,
- "end": 96.12
- },
- {
- "text": "robot",
- "start": 96.12,
- "end": 96.43
- },
- {
- "text": "was",
- "start": 96.43,
- "end": 96.58
- },
- {
- "text": "also",
- "start": 96.58,
- "end": 96.85
- },
- {
- "text": "interesting",
- "start": 96.85,
- "end": 97.26
- },
- {
- "text": "because",
- "start": 97.26,
- "end": 97.71
- },
- {
- "text": "I",
- "start": 97.84,
- "end": 97.93
- },
- {
- "text": "knew",
- "start": 98,
- "end": 98.18
- },
- {
- "text": "exactly",
- "start": 98.18,
- "end": 98.91
- },
- {
- "text": "how",
- "start": 98.91,
- "end": 99.18
- },
- {
- "text": "this",
- "start": 99.18,
- "end": 99.4
- },
- {
- "text": "machine",
- "start": 99.4,
- "end": 100.04
- },
- {
- "text": "worked",
- "start": 100.07,
- "end": 100.5
- },
- {
- "text": "it",
- "start": 100.6,
- "end": 100.86
- },
- {
- "text": "in",
- "start": 101.5,
- "end": 101.67
- },
- {
- "text": "yet.",
- "start": 101.67,
- "end": 101.84
- }
- ],
- "start": 95.91
- },
- "entityRanges": [
- {
- "start": 95.91,
- "end": 96.12,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.12,
- "end": 96.43,
- "text": "robot",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.43,
- "end": 96.58,
- "text": "was",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.58,
- "end": 96.85,
- "text": "also",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.85,
- "end": 97.26,
- "text": "interesting",
- "offset": 20,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 97.26,
- "end": 97.71,
- "text": "because",
- "offset": 32,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 97.84,
- "end": 97.93,
- "text": "I",
- "offset": 40,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 98,
- "end": 98.18,
- "text": "knew",
- "offset": 42,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 98.18,
- "end": 98.91,
- "text": "exactly",
- "offset": 47,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 98.91,
- "end": 99.18,
- "text": "how",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 99.18,
- "end": 99.4,
- "text": "this",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 99.4,
- "end": 100.04,
- "text": "machine",
- "offset": 64,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 100.07,
- "end": 100.5,
- "text": "worked",
- "offset": 72,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 100.6,
- "end": 100.86,
- "text": "it",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 101.5,
- "end": 101.67,
- "text": "in",
- "offset": 82,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 101.67,
- "end": 101.84,
- "text": "yet.",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I still felt compelled to be kind to it that observation sparked curiosity that I spent the fat, the past decade pursuing.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 15",
- "words": [
- {
- "text": "I",
- "start": 101.87,
- "end": 101.97
- },
- {
- "text": "still",
- "start": 101.97,
- "end": 102.37
- },
- {
- "text": "felt",
- "start": 102.37,
- "end": 102.65
- },
- {
- "text": "compelled",
- "start": 102.65,
- "end": 103.39
- },
- {
- "text": "to",
- "start": 103.39,
- "end": 103.51
- },
- {
- "text": "be",
- "start": 103.51,
- "end": 103.66
- },
- {
- "text": "kind",
- "start": 103.66,
- "end": 104.41
- },
- {
- "text": "to",
- "start": 104.44,
- "end": 104.58
- },
- {
- "text": "it",
- "start": 104.58,
- "end": 104.79
- },
- {
- "text": "that",
- "start": 106.5,
- "end": 106.9
- },
- {
- "text": "observation",
- "start": 106.93,
- "end": 107.7
- },
- {
- "text": "sparked",
- "start": 107.7,
- "end": 108.1
- },
- {
- "text": "curiosity",
- "start": 108.14,
- "end": 108.93
- },
- {
- "text": "that",
- "start": 108.93,
- "end": 109.27
- },
- {
- "text": "I",
- "start": 109.27,
- "end": 109.41
- },
- {
- "text": "spent",
- "start": 109.41,
- "end": 109.74
- },
- {
- "text": "the",
- "start": 109.74,
- "end": 109.81
- },
- {
- "text": "fat,",
- "start": 109.81,
- "end": 110.27
- },
- {
- "text": "the",
- "start": 110.27,
- "end": 110.36
- },
- {
- "text": "past",
- "start": 110.36,
- "end": 110.71
- },
- {
- "text": "decade",
- "start": 110.74,
- "end": 111.29
- },
- {
- "text": "pursuing.",
- "start": 111.29,
- "end": 111.99
- }
- ],
- "start": 101.87
- },
- "entityRanges": [
- {
- "start": 101.87,
- "end": 101.97,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 101.97,
- "end": 102.37,
- "text": "still",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 102.37,
- "end": 102.65,
- "text": "felt",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 102.65,
- "end": 103.39,
- "text": "compelled",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 103.39,
- "end": 103.51,
- "text": "to",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 103.51,
- "end": 103.66,
- "text": "be",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 103.66,
- "end": 104.41,
- "text": "kind",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 104.44,
- "end": 104.58,
- "text": "to",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 104.58,
- "end": 104.79,
- "text": "it",
- "offset": 37,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 106.5,
- "end": 106.9,
- "text": "that",
- "offset": 40,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 106.93,
- "end": 107.7,
- "text": "observation",
- "offset": 45,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 107.7,
- "end": 108.1,
- "text": "sparked",
- "offset": 57,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 108.14,
- "end": 108.93,
- "text": "curiosity",
- "offset": 65,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 108.93,
- "end": 109.27,
- "text": "that",
- "offset": 75,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.27,
- "end": 109.41,
- "text": "I",
- "offset": 80,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.41,
- "end": 109.74,
- "text": "spent",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.74,
- "end": 109.81,
- "text": "the",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.81,
- "end": 110.27,
- "text": "fat,",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 110.27,
- "end": 110.36,
- "text": "the",
- "offset": 97,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 110.36,
- "end": 110.71,
- "text": "past",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 110.74,
- "end": 111.29,
- "text": "decade",
- "offset": 106,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 111.29,
- "end": 111.99,
- "text": "pursuing.",
- "offset": 113,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Why did they comfort this robe.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 16",
- "words": [
- {
- "text": "Why",
- "start": 112.92,
- "end": 113.19
- },
- {
- "text": "did",
- "start": 113.19,
- "end": 113.33
- },
- {
- "text": "they",
- "start": 113.33,
- "end": 113.45
- },
- {
- "text": "comfort",
- "start": 113.45,
- "end": 113.9
- },
- {
- "text": "this",
- "start": 113.92,
- "end": 114.18
- },
- {
- "text": "robe.",
- "start": 114.18,
- "end": 114.54
- }
- ],
- "start": 112.92
- },
- "entityRanges": [
- {
- "start": 112.92,
- "end": 113.19,
- "text": "Why",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.19,
- "end": 113.33,
- "text": "did",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.33,
- "end": 113.45,
- "text": "they",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.45,
- "end": 113.9,
- "text": "comfort",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.92,
- "end": 114.18,
- "text": "this",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 114.18,
- "end": 114.54,
- "text": "robe.",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "One of the things I discovered was that my treatment of this machine was more than just an awkward moment in my living room that inner world were increasingly into breeding robots into our in things like that might actually have consequences because the first thing I discovered is that.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 17",
- "words": [
- {
- "text": "One",
- "start": 116.29,
- "end": 116.48
- },
- {
- "text": "of",
- "start": 116.48,
- "end": 116.57
- },
- {
- "text": "the",
- "start": 116.57,
- "end": 116.64
- },
- {
- "text": "things",
- "start": 116.64,
- "end": 116.87
- },
- {
- "text": "I",
- "start": 116.87,
- "end": 116.93
- },
- {
- "text": "discovered",
- "start": 116.93,
- "end": 117.57
- },
- {
- "text": "was",
- "start": 117.57,
- "end": 117.76
- },
- {
- "text": "that",
- "start": 117.76,
- "end": 118.28
- },
- {
- "text": "my",
- "start": 118.45,
- "end": 118.6
- },
- {
- "text": "treatment",
- "start": 118.6,
- "end": 119.19
- },
- {
- "text": "of",
- "start": 119.19,
- "end": 119.26
- },
- {
- "text": "this",
- "start": 119.26,
- "end": 119.45
- },
- {
- "text": "machine",
- "start": 119.45,
- "end": 119.79
- },
- {
- "text": "was",
- "start": 119.79,
- "end": 119.95
- },
- {
- "text": "more",
- "start": 119.95,
- "end": 120.22
- },
- {
- "text": "than",
- "start": 120.22,
- "end": 120.36
- },
- {
- "text": "just",
- "start": 120.36,
- "end": 120.86
- },
- {
- "text": "an",
- "start": 120.98,
- "end": 121.16
- },
- {
- "text": "awkward",
- "start": 121.19,
- "end": 121.6
- },
- {
- "text": "moment",
- "start": 121.6,
- "end": 122.09
- },
- {
- "text": "in",
- "start": 122.09,
- "end": 122.16
- },
- {
- "text": "my",
- "start": 122.16,
- "end": 122.3
- },
- {
- "text": "living",
- "start": 122.3,
- "end": 122.62
- },
- {
- "text": "room",
- "start": 122.62,
- "end": 123
- },
- {
- "text": "that",
- "start": 123.54,
- "end": 123.76
- },
- {
- "text": "inner",
- "start": 123.76,
- "end": 123.91
- },
- {
- "text": "world",
- "start": 123.95,
- "end": 124.42
- },
- {
- "text": "were",
- "start": 124.44,
- "end": 124.63
- },
- {
- "text": "increasingly",
- "start": 124.64,
- "end": 125.42
- },
- {
- "text": "into",
- "start": 125.44,
- "end": 125.88
- },
- {
- "text": "breeding",
- "start": 125.89,
- "end": 126.49
- },
- {
- "text": "robots",
- "start": 126.49,
- "end": 127.03
- },
- {
- "text": "into",
- "start": 127.22,
- "end": 127.53
- },
- {
- "text": "our",
- "start": 127.53,
- "end": 128.09
- },
- {
- "text": "in",
- "start": 128.93,
- "end": 129.18
- },
- {
- "text": "things",
- "start": 129.23,
- "end": 129.55
- },
- {
- "text": "like",
- "start": 129.57,
- "end": 129.75
- },
- {
- "text": "that",
- "start": 129.75,
- "end": 130.04
- },
- {
- "text": "might",
- "start": 130.04,
- "end": 130.29
- },
- {
- "text": "actually",
- "start": 130.39,
- "end": 130.75
- },
- {
- "text": "have",
- "start": 130.75,
- "end": 130.88
- },
- {
- "text": "consequences",
- "start": 130.88,
- "end": 132.17
- },
- {
- "text": "because",
- "start": 133.44,
- "end": 133.68
- },
- {
- "text": "the",
- "start": 133.68,
- "end": 133.76
- },
- {
- "text": "first",
- "start": 133.76,
- "end": 134.02
- },
- {
- "text": "thing",
- "start": 134.02,
- "end": 134.2
- },
- {
- "text": "I",
- "start": 134.24,
- "end": 134.33
- },
- {
- "text": "discovered",
- "start": 134.33,
- "end": 135.13
- },
- {
- "text": "is",
- "start": 135.16,
- "end": 135.34
- },
- {
- "text": "that.",
- "start": 135.34,
- "end": 135.52
- }
- ],
- "start": 116.29
- },
- "entityRanges": [
- {
- "start": 116.29,
- "end": 116.48,
- "text": "One",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.48,
- "end": 116.57,
- "text": "of",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.57,
- "end": 116.64,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.64,
- "end": 116.87,
- "text": "things",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.87,
- "end": 116.93,
- "text": "I",
- "offset": 18,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.93,
- "end": 117.57,
- "text": "discovered",
- "offset": 20,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 117.57,
- "end": 117.76,
- "text": "was",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 117.76,
- "end": 118.28,
- "text": "that",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 118.45,
- "end": 118.6,
- "text": "my",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 118.6,
- "end": 119.19,
- "text": "treatment",
- "offset": 43,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.19,
- "end": 119.26,
- "text": "of",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.26,
- "end": 119.45,
- "text": "this",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.45,
- "end": 119.79,
- "text": "machine",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.79,
- "end": 119.95,
- "text": "was",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.95,
- "end": 120.22,
- "text": "more",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 120.22,
- "end": 120.36,
- "text": "than",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 120.36,
- "end": 120.86,
- "text": "just",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 120.98,
- "end": 121.16,
- "text": "an",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 121.19,
- "end": 121.6,
- "text": "awkward",
- "offset": 91,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 121.6,
- "end": 122.09,
- "text": "moment",
- "offset": 99,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.09,
- "end": 122.16,
- "text": "in",
- "offset": 106,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.16,
- "end": 122.3,
- "text": "my",
- "offset": 109,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.3,
- "end": 122.62,
- "text": "living",
- "offset": 112,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.62,
- "end": 123,
- "text": "room",
- "offset": 119,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.54,
- "end": 123.76,
- "text": "that",
- "offset": 124,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.76,
- "end": 123.91,
- "text": "inner",
- "offset": 129,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.95,
- "end": 124.42,
- "text": "world",
- "offset": 135,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 124.44,
- "end": 124.63,
- "text": "were",
- "offset": 141,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 124.64,
- "end": 125.42,
- "text": "increasingly",
- "offset": 146,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 125.44,
- "end": 125.88,
- "text": "into",
- "offset": 159,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 125.89,
- "end": 126.49,
- "text": "breeding",
- "offset": 164,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 126.49,
- "end": 127.03,
- "text": "robots",
- "offset": 173,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 127.22,
- "end": 127.53,
- "text": "into",
- "offset": 180,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 127.53,
- "end": 128.09,
- "text": "our",
- "offset": 185,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 128.93,
- "end": 129.18,
- "text": "in",
- "offset": 189,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 129.23,
- "end": 129.55,
- "text": "things",
- "offset": 192,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 129.57,
- "end": 129.75,
- "text": "like",
- "offset": 199,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 129.75,
- "end": 130.04,
- "text": "that",
- "offset": 204,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.04,
- "end": 130.29,
- "text": "might",
- "offset": 209,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.39,
- "end": 130.75,
- "text": "actually",
- "offset": 215,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.75,
- "end": 130.88,
- "text": "have",
- "offset": 224,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.88,
- "end": 132.17,
- "text": "consequences",
- "offset": 229,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 133.44,
- "end": 133.68,
- "text": "because",
- "offset": 242,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 133.68,
- "end": 133.76,
- "text": "the",
- "offset": 250,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 133.76,
- "end": 134.02,
- "text": "first",
- "offset": 254,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.02,
- "end": 134.2,
- "text": "thing",
- "offset": 260,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.24,
- "end": 134.33,
- "text": "I",
- "offset": 266,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.33,
- "end": 135.13,
- "text": "discovered",
- "offset": 268,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 135.16,
- "end": 135.34,
- "text": "is",
- "offset": 279,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 135.34,
- "end": 135.52,
- "text": "that.",
- "offset": 282,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's not just me in two thousand seven.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 18",
- "words": [
- {
- "text": "It's",
- "start": 135.55,
- "end": 135.8
- },
- {
- "text": "not",
- "start": 135.8,
- "end": 136.04
- },
- {
- "text": "just",
- "start": 136.04,
- "end": 136.41
- },
- {
- "text": "me",
- "start": 136.41,
- "end": 136.98
- },
- {
- "text": "in",
- "start": 139.25,
- "end": 139.41
- },
- {
- "text": "two",
- "start": 139.41,
- "end": 139.58
- },
- {
- "text": "thousand",
- "start": 139.58,
- "end": 140.05
- },
- {
- "text": "seven.",
- "start": 140.05,
- "end": 140.67
- }
- ],
- "start": 135.55
- },
- "entityRanges": [
- {
- "start": 135.55,
- "end": 135.8,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 135.8,
- "end": 136.04,
- "text": "not",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 136.04,
- "end": 136.41,
- "text": "just",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 136.41,
- "end": 136.98,
- "text": "me",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 139.25,
- "end": 139.41,
- "text": "in",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 139.41,
- "end": 139.58,
- "text": "two",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 139.58,
- "end": 140.05,
- "text": "thousand",
- "offset": 24,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 140.05,
- "end": 140.67,
- "text": "seven.",
- "offset": 33,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The Washington Post reported that the United States military was testing this robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 19",
- "words": [
- {
- "text": "The",
- "start": 140.75,
- "end": 140.88
- },
- {
- "text": "Washington",
- "start": 140.88,
- "end": 141.4
- },
- {
- "text": "Post",
- "start": 141.4,
- "end": 141.74
- },
- {
- "text": "reported",
- "start": 141.74,
- "end": 142.27
- },
- {
- "text": "that",
- "start": 142.27,
- "end": 142.42
- },
- {
- "text": "the",
- "start": 142.42,
- "end": 142.51
- },
- {
- "text": "United",
- "start": 142.51,
- "end": 142.92
- },
- {
- "text": "States",
- "start": 142.92,
- "end": 143.21
- },
- {
- "text": "military",
- "start": 143.21,
- "end": 144.05
- },
- {
- "text": "was",
- "start": 144.08,
- "end": 144.28
- },
- {
- "text": "testing",
- "start": 144.28,
- "end": 144.82
- },
- {
- "text": "this",
- "start": 144.82,
- "end": 145.13
- },
- {
- "text": "robot.",
- "start": 145.33,
- "end": 145.75
- }
- ],
- "start": 140.75
- },
- "entityRanges": [
- {
- "start": 140.75,
- "end": 140.88,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 140.88,
- "end": 141.4,
- "text": "Washington",
- "offset": 4,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 141.4,
- "end": 141.74,
- "text": "Post",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 141.74,
- "end": 142.27,
- "text": "reported",
- "offset": 20,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.27,
- "end": 142.42,
- "text": "that",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.42,
- "end": 142.51,
- "text": "the",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.51,
- "end": 142.92,
- "text": "United",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.92,
- "end": 143.21,
- "text": "States",
- "offset": 45,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 143.21,
- "end": 144.05,
- "text": "military",
- "offset": 52,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 144.08,
- "end": 144.28,
- "text": "was",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 144.28,
- "end": 144.82,
- "text": "testing",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 144.82,
- "end": 145.13,
- "text": "this",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 145.33,
- "end": 145.75,
- "text": "robot.",
- "offset": 78,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The diffused landmines.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 20",
- "words": [
- {
- "text": "The",
- "start": 145.82,
- "end": 145.94
- },
- {
- "text": "diffused",
- "start": 145.95,
- "end": 146.53
- },
- {
- "text": "landmines.",
- "start": 146.61,
- "end": 147.31
- }
- ],
- "start": 145.82
- },
- "entityRanges": [
- {
- "start": 145.82,
- "end": 145.94,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 145.95,
- "end": 146.53,
- "text": "diffused",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 146.61,
- "end": 147.31,
- "text": "landmines.",
- "offset": 13,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We workers.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 21",
- "words": [
- {
- "text": "We",
- "start": 147.4,
- "end": 147.64
- },
- {
- "text": "workers.",
- "start": 147.71,
- "end": 148.04
- }
- ],
- "start": 147.4
- },
- "entityRanges": [
- {
- "start": 147.4,
- "end": 147.64,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 147.71,
- "end": 148.04,
- "text": "workers.",
- "offset": 3,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It was shaped like a stick insect and you'd walk around a minefield on its legs and every time he stepped on a mine.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 22",
- "words": [
- {
- "text": "It",
- "start": 148.2,
- "end": 148.38
- },
- {
- "text": "was",
- "start": 148.43,
- "end": 148.59
- },
- {
- "text": "shaped",
- "start": 148.59,
- "end": 148.95
- },
- {
- "text": "like",
- "start": 148.95,
- "end": 149.09
- },
- {
- "text": "a",
- "start": 149.09,
- "end": 149.16
- },
- {
- "text": "stick",
- "start": 149.16,
- "end": 149.59
- },
- {
- "text": "insect",
- "start": 149.59,
- "end": 150.09
- },
- {
- "text": "and",
- "start": 150.1,
- "end": 150.4
- },
- {
- "text": "you'd",
- "start": 150.44,
- "end": 150.67
- },
- {
- "text": "walk",
- "start": 150.7,
- "end": 150.94
- },
- {
- "text": "around",
- "start": 150.94,
- "end": 151.16
- },
- {
- "text": "a",
- "start": 151.16,
- "end": 151.2
- },
- {
- "text": "minefield",
- "start": 151.2,
- "end": 151.78
- },
- {
- "text": "on",
- "start": 151.8,
- "end": 151.89
- },
- {
- "text": "its",
- "start": 151.89,
- "end": 152.06
- },
- {
- "text": "legs",
- "start": 152.06,
- "end": 152.57
- },
- {
- "text": "and",
- "start": 152.83,
- "end": 152.94
- },
- {
- "text": "every",
- "start": 153.07,
- "end": 153.29
- },
- {
- "text": "time",
- "start": 153.29,
- "end": 153.47
- },
- {
- "text": "he",
- "start": 153.47,
- "end": 153.54
- },
- {
- "text": "stepped",
- "start": 153.54,
- "end": 153.9
- },
- {
- "text": "on",
- "start": 153.9,
- "end": 153.98
- },
- {
- "text": "a",
- "start": 153.98,
- "end": 154.03
- },
- {
- "text": "mine.",
- "start": 154.03,
- "end": 154.45
- }
- ],
- "start": 148.2
- },
- "entityRanges": [
- {
- "start": 148.2,
- "end": 148.38,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 148.43,
- "end": 148.59,
- "text": "was",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 148.59,
- "end": 148.95,
- "text": "shaped",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 148.95,
- "end": 149.09,
- "text": "like",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 149.09,
- "end": 149.16,
- "text": "a",
- "offset": 19,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 149.16,
- "end": 149.59,
- "text": "stick",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 149.59,
- "end": 150.09,
- "text": "insect",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.1,
- "end": 150.4,
- "text": "and",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.44,
- "end": 150.67,
- "text": "you'd",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.7,
- "end": 150.94,
- "text": "walk",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.94,
- "end": 151.16,
- "text": "around",
- "offset": 49,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.16,
- "end": 151.2,
- "text": "a",
- "offset": 56,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.2,
- "end": 151.78,
- "text": "minefield",
- "offset": 58,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.8,
- "end": 151.89,
- "text": "on",
- "offset": 68,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.89,
- "end": 152.06,
- "text": "its",
- "offset": 71,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 152.06,
- "end": 152.57,
- "text": "legs",
- "offset": 75,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 152.83,
- "end": 152.94,
- "text": "and",
- "offset": 80,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.07,
- "end": 153.29,
- "text": "every",
- "offset": 84,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.29,
- "end": 153.47,
- "text": "time",
- "offset": 90,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.47,
- "end": 153.54,
- "text": "he",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.54,
- "end": 153.9,
- "text": "stepped",
- "offset": 98,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.9,
- "end": 153.98,
- "text": "on",
- "offset": 106,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.98,
- "end": 154.03,
- "text": "a",
- "offset": 109,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.03,
- "end": 154.45,
- "text": "mine.",
- "offset": 111,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "One of the legs would blow up and continue on the other legs to blow up our minds and the colonel was in charge of this testing exercise.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 23",
- "words": [
- {
- "text": "One",
- "start": 154.48,
- "end": 154.64
- },
- {
- "text": "of",
- "start": 154.64,
- "end": 154.73
- },
- {
- "text": "the",
- "start": 154.73,
- "end": 154.82
- },
- {
- "text": "legs",
- "start": 154.82,
- "end": 155.09
- },
- {
- "text": "would",
- "start": 155.09,
- "end": 155.21
- },
- {
- "text": "blow",
- "start": 155.21,
- "end": 155.47
- },
- {
- "text": "up",
- "start": 155.47,
- "end": 155.76
- },
- {
- "text": "and",
- "start": 155.79,
- "end": 155.99
- },
- {
- "text": "continue",
- "start": 156.02,
- "end": 156.53
- },
- {
- "text": "on",
- "start": 156.53,
- "end": 156.63
- },
- {
- "text": "the",
- "start": 156.63,
- "end": 156.71
- },
- {
- "text": "other",
- "start": 156.71,
- "end": 156.91
- },
- {
- "text": "legs",
- "start": 156.91,
- "end": 157.27
- },
- {
- "text": "to",
- "start": 157.28,
- "end": 157.39
- },
- {
- "text": "blow",
- "start": 157.39,
- "end": 157.58
- },
- {
- "text": "up",
- "start": 157.58,
- "end": 157.73
- },
- {
- "text": "our",
- "start": 157.73,
- "end": 157.85
- },
- {
- "text": "minds",
- "start": 157.85,
- "end": 158.43
- },
- {
- "text": "and",
- "start": 159.23,
- "end": 159.5
- },
- {
- "text": "the",
- "start": 159.53,
- "end": 159.69
- },
- {
- "text": "colonel",
- "start": 159.69,
- "end": 160.15
- },
- {
- "text": "was",
- "start": 160.15,
- "end": 160.35
- },
- {
- "text": "in",
- "start": 160.36,
- "end": 160.46
- },
- {
- "text": "charge",
- "start": 160.46,
- "end": 160.94
- },
- {
- "text": "of",
- "start": 160.94,
- "end": 161.03
- },
- {
- "text": "this",
- "start": 161.03,
- "end": 161.19
- },
- {
- "text": "testing",
- "start": 161.2,
- "end": 161.72
- },
- {
- "text": "exercise.",
- "start": 161.72,
- "end": 162.65
- }
- ],
- "start": 154.48
- },
- "entityRanges": [
- {
- "start": 154.48,
- "end": 154.64,
- "text": "One",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.64,
- "end": 154.73,
- "text": "of",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.73,
- "end": 154.82,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.82,
- "end": 155.09,
- "text": "legs",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.09,
- "end": 155.21,
- "text": "would",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.21,
- "end": 155.47,
- "text": "blow",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.47,
- "end": 155.76,
- "text": "up",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.79,
- "end": 155.99,
- "text": "and",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.02,
- "end": 156.53,
- "text": "continue",
- "offset": 34,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.53,
- "end": 156.63,
- "text": "on",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.63,
- "end": 156.71,
- "text": "the",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.71,
- "end": 156.91,
- "text": "other",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.91,
- "end": 157.27,
- "text": "legs",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.28,
- "end": 157.39,
- "text": "to",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.39,
- "end": 157.58,
- "text": "blow",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.58,
- "end": 157.73,
- "text": "up",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.73,
- "end": 157.85,
- "text": "our",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.85,
- "end": 158.43,
- "text": "minds",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 159.23,
- "end": 159.5,
- "text": "and",
- "offset": 82,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 159.53,
- "end": 159.69,
- "text": "the",
- "offset": 86,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 159.69,
- "end": 160.15,
- "text": "colonel",
- "offset": 90,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.15,
- "end": 160.35,
- "text": "was",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.36,
- "end": 160.46,
- "text": "in",
- "offset": 102,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.46,
- "end": 160.94,
- "text": "charge",
- "offset": 105,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.94,
- "end": 161.03,
- "text": "of",
- "offset": 112,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 161.03,
- "end": 161.19,
- "text": "this",
- "offset": 115,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 161.2,
- "end": 161.72,
- "text": "testing",
- "offset": 120,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 161.72,
- "end": 162.65,
- "text": "exercise.",
- "offset": 128,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The calming it off because he says it's too inhumane to watch this damaged for about dragging itself along now.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 24",
- "words": [
- {
- "text": "The",
- "start": 163.16,
- "end": 163.33
- },
- {
- "text": "calming",
- "start": 163.33,
- "end": 163.67
- },
- {
- "text": "it",
- "start": 163.68,
- "end": 163.91
- },
- {
- "text": "off",
- "start": 163.91,
- "end": 164.42
- },
- {
- "text": "because",
- "start": 165.18,
- "end": 165.59
- },
- {
- "text": "he",
- "start": 165.59,
- "end": 165.74
- },
- {
- "text": "says",
- "start": 165.74,
- "end": 166.16
- },
- {
- "text": "it's",
- "start": 166.19,
- "end": 166.49
- },
- {
- "text": "too",
- "start": 166.49,
- "end": 166.77
- },
- {
- "text": "inhumane",
- "start": 166.77,
- "end": 167.63
- },
- {
- "text": "to",
- "start": 167.63,
- "end": 167.82
- },
- {
- "text": "watch",
- "start": 167.82,
- "end": 168.38
- },
- {
- "text": "this",
- "start": 168.38,
- "end": 168.6
- },
- {
- "text": "damaged",
- "start": 168.6,
- "end": 169.1
- },
- {
- "text": "for",
- "start": 169.11,
- "end": 169.29
- },
- {
- "text": "about",
- "start": 169.28,
- "end": 169.58
- },
- {
- "text": "dragging",
- "start": 169.61,
- "end": 170.1
- },
- {
- "text": "itself",
- "start": 170.1,
- "end": 170.45
- },
- {
- "text": "along",
- "start": 170.45,
- "end": 170.95
- },
- {
- "text": "now.",
- "start": 174.95,
- "end": 175.19
- }
- ],
- "start": 163.16
- },
- "entityRanges": [
- {
- "start": 163.16,
- "end": 163.33,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.33,
- "end": 163.67,
- "text": "calming",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.68,
- "end": 163.91,
- "text": "it",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.91,
- "end": 164.42,
- "text": "off",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 165.18,
- "end": 165.59,
- "text": "because",
- "offset": 19,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 165.59,
- "end": 165.74,
- "text": "he",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 165.74,
- "end": 166.16,
- "text": "says",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 166.19,
- "end": 166.49,
- "text": "it's",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 166.49,
- "end": 166.77,
- "text": "too",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 166.77,
- "end": 167.63,
- "text": "inhumane",
- "offset": 44,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 167.63,
- "end": 167.82,
- "text": "to",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 167.82,
- "end": 168.38,
- "text": "watch",
- "offset": 56,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 168.38,
- "end": 168.6,
- "text": "this",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 168.6,
- "end": 169.1,
- "text": "damaged",
- "offset": 67,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 169.11,
- "end": 169.29,
- "text": "for",
- "offset": 75,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 169.28,
- "end": 169.58,
- "text": "about",
- "offset": 79,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 169.61,
- "end": 170.1,
- "text": "dragging",
- "offset": 85,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 170.1,
- "end": 170.45,
- "text": "itself",
- "offset": 94,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 170.45,
- "end": 170.95,
- "text": "along",
- "offset": 101,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 174.95,
- "end": 175.19,
- "text": "now.",
- "offset": 107,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "What would cause a hardened military officer and someone like myself to have this response to robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 25",
- "words": [
- {
- "text": "What",
- "start": 175.19,
- "end": 175.41
- },
- {
- "text": "would",
- "start": 175.41,
- "end": 175.54
- },
- {
- "text": "cause",
- "start": 175.54,
- "end": 176.21
- },
- {
- "text": "a",
- "start": 176.24,
- "end": 176.42
- },
- {
- "text": "hardened",
- "start": 176.42,
- "end": 176.97
- },
- {
- "text": "military",
- "start": 176.97,
- "end": 177.67
- },
- {
- "text": "officer",
- "start": 177.67,
- "end": 178.5
- },
- {
- "text": "and",
- "start": 178.8,
- "end": 179.05
- },
- {
- "text": "someone",
- "start": 179.05,
- "end": 179.44
- },
- {
- "text": "like",
- "start": 179.44,
- "end": 179.6
- },
- {
- "text": "myself",
- "start": 179.6,
- "end": 180.33
- },
- {
- "text": "to",
- "start": 180.95,
- "end": 181.1
- },
- {
- "text": "have",
- "start": 181.1,
- "end": 181.29
- },
- {
- "text": "this",
- "start": 181.29,
- "end": 181.44
- },
- {
- "text": "response",
- "start": 181.44,
- "end": 181.94
- },
- {
- "text": "to",
- "start": 181.94,
- "end": 182.06
- },
- {
- "text": "robot.",
- "start": 182.07,
- "end": 182.34
- }
- ],
- "start": 175.19
- },
- "entityRanges": [
- {
- "start": 175.19,
- "end": 175.41,
- "text": "What",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 175.41,
- "end": 175.54,
- "text": "would",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 175.54,
- "end": 176.21,
- "text": "cause",
- "offset": 11,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 176.24,
- "end": 176.42,
- "text": "a",
- "offset": 17,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 176.42,
- "end": 176.97,
- "text": "hardened",
- "offset": 19,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 176.97,
- "end": 177.67,
- "text": "military",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 177.67,
- "end": 178.5,
- "text": "officer",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 178.8,
- "end": 179.05,
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 179.05,
- "end": 179.44,
- "text": "someone",
- "offset": 49,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 179.44,
- "end": 179.6,
- "text": "like",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 179.6,
- "end": 180.33,
- "text": "myself",
- "offset": 62,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 180.95,
- "end": 181.1,
- "text": "to",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.1,
- "end": 181.29,
- "text": "have",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.29,
- "end": 181.44,
- "text": "this",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.44,
- "end": 181.94,
- "text": "response",
- "offset": 82,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.94,
- "end": 182.06,
- "text": "to",
- "offset": 91,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 182.07,
- "end": 182.34,
- "text": "robot.",
- "offset": 94,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "That's what.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 26",
- "words": [
- {
- "text": "That's",
- "start": 182.36,
- "end": 182.83
- },
- {
- "text": "what.",
- "start": 183.53,
- "end": 183.98
- }
- ],
- "start": 182.36
- },
- "entityRanges": [
- {
- "start": 182.36,
- "end": 182.83,
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 183.53,
- "end": 183.98,
- "text": "what.",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Of course, were primed by science fiction, pop culture really wanna personified.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 27",
- "words": [
- {
- "text": "Of",
- "start": 184.07,
- "end": 184.23
- },
- {
- "text": "course,",
- "start": 184.23,
- "end": 184.53
- },
- {
- "text": "were",
- "start": 184.53,
- "end": 184.65
- },
- {
- "text": "primed",
- "start": 184.65,
- "end": 185.2
- },
- {
- "text": "by",
- "start": 185.2,
- "end": 185.32
- },
- {
- "text": "science",
- "start": 185.32,
- "end": 185.78
- },
- {
- "text": "fiction,",
- "start": 185.78,
- "end": 186.09
- },
- {
- "text": "pop",
- "start": 186.09,
- "end": 186.45
- },
- {
- "text": "culture",
- "start": 186.45,
- "end": 186.87
- },
- {
- "text": "really",
- "start": 186.9,
- "end": 187.18
- },
- {
- "text": "wanna",
- "start": 187.18,
- "end": 187.37
- },
- {
- "text": "personified.",
- "start": 187.37,
- "end": 187.93
- }
- ],
- "start": 184.07
- },
- "entityRanges": [
- {
- "start": 184.07,
- "end": 184.23,
- "text": "Of",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 184.23,
- "end": 184.53,
- "text": "course,",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 184.53,
- "end": 184.65,
- "text": "were",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 184.65,
- "end": 185.2,
- "text": "primed",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 185.2,
- "end": 185.32,
- "text": "by",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 185.32,
- "end": 185.78,
- "text": "science",
- "offset": 26,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 185.78,
- "end": 186.09,
- "text": "fiction,",
- "offset": 34,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 186.09,
- "end": 186.45,
- "text": "pop",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 186.45,
- "end": 186.87,
- "text": "culture",
- "offset": 47,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 186.9,
- "end": 187.18,
- "text": "really",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 187.18,
- "end": 187.37,
- "text": "wanna",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 187.37,
- "end": 187.93,
- "text": "personified.",
- "offset": 68,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "These things, but it goes a little bit deeper than that it turns out that we are biologically hard wired to project intent and life unto the movement in a physical space.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 28",
- "words": [
- {
- "text": "These",
- "start": 188.06,
- "end": 188.3
- },
- {
- "text": "things,",
- "start": 188.31,
- "end": 188.94
- },
- {
- "text": "but",
- "start": 189.47,
- "end": 189.73
- },
- {
- "text": "it",
- "start": 189.76,
- "end": 189.89
- },
- {
- "text": "goes",
- "start": 189.89,
- "end": 190.08
- },
- {
- "text": "a",
- "start": 190.08,
- "end": 190.13
- },
- {
- "text": "little",
- "start": 190.13,
- "end": 190.33
- },
- {
- "text": "bit",
- "start": 190.33,
- "end": 190.49
- },
- {
- "text": "deeper",
- "start": 190.49,
- "end": 190.8
- },
- {
- "text": "than",
- "start": 190.8,
- "end": 190.94
- },
- {
- "text": "that",
- "start": 190.94,
- "end": 191.19
- },
- {
- "text": "it",
- "start": 192.24,
- "end": 192.38
- },
- {
- "text": "turns",
- "start": 192.38,
- "end": 192.7
- },
- {
- "text": "out",
- "start": 192.7,
- "end": 192.82
- },
- {
- "text": "that",
- "start": 192.82,
- "end": 192.95
- },
- {
- "text": "we",
- "start": 192.95,
- "end": 193.02
- },
- {
- "text": "are",
- "start": 193.02,
- "end": 193.08
- },
- {
- "text": "biologically",
- "start": 193.08,
- "end": 193.95
- },
- {
- "text": "hard",
- "start": 193.95,
- "end": 194.49
- },
- {
- "text": "wired",
- "start": 194.49,
- "end": 194.96
- },
- {
- "text": "to",
- "start": 194.96,
- "end": 195.09
- },
- {
- "text": "project",
- "start": 195.09,
- "end": 195.84
- },
- {
- "text": "intent",
- "start": 196.1,
- "end": 196.86
- },
- {
- "text": "and",
- "start": 196.9,
- "end": 197.16
- },
- {
- "text": "life",
- "start": 197.19,
- "end": 197.62
- },
- {
- "text": "unto",
- "start": 197.65,
- "end": 198.21
- },
- {
- "text": "the",
- "start": 198.49,
- "end": 198.73
- },
- {
- "text": "movement",
- "start": 198.8,
- "end": 199.38
- },
- {
- "text": "in",
- "start": 199.38,
- "end": 199.48
- },
- {
- "text": "a",
- "start": 199.48,
- "end": 199.56
- },
- {
- "text": "physical",
- "start": 199.56,
- "end": 200.12
- },
- {
- "text": "space.",
- "start": 200.12,
- "end": 200.52
- }
- ],
- "start": 188.06
- },
- "entityRanges": [
- {
- "start": 188.06,
- "end": 188.3,
- "text": "These",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 188.31,
- "end": 188.94,
- "text": "things,",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 189.47,
- "end": 189.73,
- "text": "but",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 189.76,
- "end": 189.89,
- "text": "it",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 189.89,
- "end": 190.08,
- "text": "goes",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.08,
- "end": 190.13,
- "text": "a",
- "offset": 26,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.13,
- "end": 190.33,
- "text": "little",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.33,
- "end": 190.49,
- "text": "bit",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.49,
- "end": 190.8,
- "text": "deeper",
- "offset": 39,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.8,
- "end": 190.94,
- "text": "than",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.94,
- "end": 191.19,
- "text": "that",
- "offset": 51,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.24,
- "end": 192.38,
- "text": "it",
- "offset": 56,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.38,
- "end": 192.7,
- "text": "turns",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.7,
- "end": 192.82,
- "text": "out",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.82,
- "end": 192.95,
- "text": "that",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.95,
- "end": 193.02,
- "text": "we",
- "offset": 74,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 193.02,
- "end": 193.08,
- "text": "are",
- "offset": 77,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 193.08,
- "end": 193.95,
- "text": "biologically",
- "offset": 81,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 193.95,
- "end": 194.49,
- "text": "hard",
- "offset": 94,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 194.49,
- "end": 194.96,
- "text": "wired",
- "offset": 99,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 194.96,
- "end": 195.09,
- "text": "to",
- "offset": 105,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 195.09,
- "end": 195.84,
- "text": "project",
- "offset": 108,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 196.1,
- "end": 196.86,
- "text": "intent",
- "offset": 116,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 196.9,
- "end": 197.16,
- "text": "and",
- "offset": 123,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 197.19,
- "end": 197.62,
- "text": "life",
- "offset": 127,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 197.65,
- "end": 198.21,
- "text": "unto",
- "offset": 132,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 198.49,
- "end": 198.73,
- "text": "the",
- "offset": 137,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 198.8,
- "end": 199.38,
- "text": "movement",
- "offset": 141,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 199.38,
- "end": 199.48,
- "text": "in",
- "offset": 150,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 199.48,
- "end": 199.56,
- "text": "a",
- "offset": 153,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 199.56,
- "end": 200.12,
- "text": "physical",
- "offset": 155,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 200.12,
- "end": 200.52,
- "text": "space.",
- "offset": 164,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It seems that harnessed to us some people treat all sort of robots like their life.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 29",
- "words": [
- {
- "text": "It",
- "start": 200.52,
- "end": 200.67
- },
- {
- "text": "seems",
- "start": 200.67,
- "end": 201.13
- },
- {
- "text": "that",
- "start": 201.13,
- "end": 201.25
- },
- {
- "text": "harnessed",
- "start": 201.25,
- "end": 201.82
- },
- {
- "text": "to",
- "start": 201.82,
- "end": 201.96
- },
- {
- "text": "us",
- "start": 201.96,
- "end": 202.44
- },
- {
- "text": "some",
- "start": 203.04,
- "end": 203.28
- },
- {
- "text": "people",
- "start": 203.38,
- "end": 203.75
- },
- {
- "text": "treat",
- "start": 203.75,
- "end": 204
- },
- {
- "text": "all",
- "start": 204.03,
- "end": 204.22
- },
- {
- "text": "sort",
- "start": 204.22,
- "end": 204.47
- },
- {
- "text": "of",
- "start": 204.47,
- "end": 204.59
- },
- {
- "text": "robots",
- "start": 204.59,
- "end": 204.95
- },
- {
- "text": "like",
- "start": 204.95,
- "end": 205.13
- },
- {
- "text": "their",
- "start": 205.13,
- "end": 205.32
- },
- {
- "text": "life.",
- "start": 205.32,
- "end": 205.86
- }
- ],
- "start": 200.52
- },
- "entityRanges": [
- {
- "start": 200.52,
- "end": 200.67,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 200.67,
- "end": 201.13,
- "text": "seems",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.13,
- "end": 201.25,
- "text": "that",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.25,
- "end": 201.82,
- "text": "harnessed",
- "offset": 14,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.82,
- "end": 201.96,
- "text": "to",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.96,
- "end": 202.44,
- "text": "us",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 203.04,
- "end": 203.28,
- "text": "some",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 203.38,
- "end": 203.75,
- "text": "people",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 203.75,
- "end": 204,
- "text": "treat",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.03,
- "end": 204.22,
- "text": "all",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.22,
- "end": 204.47,
- "text": "sort",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.47,
- "end": 204.59,
- "text": "of",
- "offset": 57,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.59,
- "end": 204.95,
- "text": "robots",
- "offset": 60,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.95,
- "end": 205.13,
- "text": "like",
- "offset": 67,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 205.13,
- "end": 205.32,
- "text": "their",
- "offset": 72,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 205.32,
- "end": 205.86,
- "text": "life.",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If these bomb disposal unit's get names.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 30",
- "words": [
- {
- "text": "If",
- "start": 206.13,
- "end": 206.48
- },
- {
- "text": "these",
- "start": 206.68,
- "end": 206.95
- },
- {
- "text": "bomb",
- "start": 206.95,
- "end": 207.25
- },
- {
- "text": "disposal",
- "start": 207.25,
- "end": 208.02
- },
- {
- "text": "unit's",
- "start": 208.05,
- "end": 208.58
- },
- {
- "text": "get",
- "start": 208.58,
- "end": 208.76
- },
- {
- "text": "names.",
- "start": 208.76,
- "end": 209.41
- }
- ],
- "start": 206.13
- },
- "entityRanges": [
- {
- "start": 206.13,
- "end": 206.48,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 206.68,
- "end": 206.95,
- "text": "these",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 206.95,
- "end": 207.25,
- "text": "bomb",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 207.25,
- "end": 208.02,
- "text": "disposal",
- "offset": 14,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 208.05,
- "end": 208.58,
- "text": "unit's",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 208.58,
- "end": 208.76,
- "text": "get",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 208.76,
- "end": 209.41,
- "text": "names.",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They get medals of honour.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 31",
- "words": [
- {
- "text": "They",
- "start": 209.42,
- "end": 209.54
- },
- {
- "text": "get",
- "start": 209.54,
- "end": 209.73
- },
- {
- "text": "medals",
- "start": 209.73,
- "end": 210.18
- },
- {
- "text": "of",
- "start": 210.18,
- "end": 210.27
- },
- {
- "text": "honour.",
- "start": 210.27,
- "end": 210.67
- }
- ],
- "start": 209.42
- },
- "entityRanges": [
- {
- "start": 209.42,
- "end": 209.54,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 209.54,
- "end": 209.73,
- "text": "get",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 209.73,
- "end": 210.18,
- "text": "medals",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 210.18,
- "end": 210.27,
- "text": "of",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 210.27,
- "end": 210.67,
- "text": "honour.",
- "offset": 19,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They've had funerals for them with gun salutes.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 32",
- "words": [
- {
- "text": "They've",
- "start": 211.1,
- "end": 211.26
- },
- {
- "text": "had",
- "start": 211.27,
- "end": 211.41
- },
- {
- "text": "funerals",
- "start": 211.41,
- "end": 212.05
- },
- {
- "text": "for",
- "start": 212.05,
- "end": 212.19
- },
- {
- "text": "them",
- "start": 212.19,
- "end": 212.37
- },
- {
- "text": "with",
- "start": 212.37,
- "end": 212.51
- },
- {
- "text": "gun",
- "start": 212.53,
- "end": 212.81
- },
- {
- "text": "salutes.",
- "start": 212.81,
- "end": 213.35
- }
- ],
- "start": 211.1
- },
- "entityRanges": [
- {
- "start": 211.1,
- "end": 211.26,
- "text": "They've",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 211.27,
- "end": 211.41,
- "text": "had",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 211.41,
- "end": 212.05,
- "text": "funerals",
- "offset": 12,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.05,
- "end": 212.19,
- "text": "for",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.19,
- "end": 212.37,
- "text": "them",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.37,
- "end": 212.51,
- "text": "with",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.53,
- "end": 212.81,
- "text": "gun",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.81,
- "end": 213.35,
- "text": "salutes.",
- "offset": 39,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Research shows that we do this.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 33",
- "words": [
- {
- "text": "Research",
- "start": 214.94,
- "end": 215.35
- },
- {
- "text": "shows",
- "start": 215.36,
- "end": 215.58
- },
- {
- "text": "that",
- "start": 215.58,
- "end": 215.67
- },
- {
- "text": "we",
- "start": 215.67,
- "end": 215.76
- },
- {
- "text": "do",
- "start": 215.76,
- "end": 215.88
- },
- {
- "text": "this.",
- "start": 215.88,
- "end": 216.06
- }
- ],
- "start": 214.94
- },
- "entityRanges": [
- {
- "start": 214.94,
- "end": 215.35,
- "text": "Research",
- "offset": 0,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.36,
- "end": 215.58,
- "text": "shows",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.58,
- "end": 215.67,
- "text": "that",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.67,
- "end": 215.76,
- "text": "we",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.76,
- "end": 215.88,
- "text": "do",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.88,
- "end": 216.06,
- "text": "this.",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Even with very simple household robots like the room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 34",
- "words": [
- {
- "text": "Even",
- "start": 216.09,
- "end": 216.33
- },
- {
- "text": "with",
- "start": 216.33,
- "end": 216.49
- },
- {
- "text": "very",
- "start": 216.5,
- "end": 216.8
- },
- {
- "text": "simple",
- "start": 216.8,
- "end": 217.19
- },
- {
- "text": "household",
- "start": 217.19,
- "end": 217.76
- },
- {
- "text": "robots",
- "start": 217.76,
- "end": 218.27
- },
- {
- "text": "like",
- "start": 218.27,
- "end": 218.57
- },
- {
- "text": "the",
- "start": 218.83,
- "end": 219.03
- },
- {
- "text": "room.",
- "start": 219.03,
- "end": 219.3
- }
- ],
- "start": 216.09
- },
- "entityRanges": [
- {
- "start": 216.09,
- "end": 216.33,
- "text": "Even",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 216.33,
- "end": 216.49,
- "text": "with",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 216.5,
- "end": 216.8,
- "text": "very",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 216.8,
- "end": 217.19,
- "text": "simple",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 217.19,
- "end": 217.76,
- "text": "household",
- "offset": 22,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 217.76,
- "end": 218.27,
- "text": "robots",
- "offset": 32,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 218.27,
- "end": 218.57,
- "text": "like",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 218.83,
- "end": 219.03,
- "text": "the",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 219.03,
- "end": 219.3,
- "text": "room.",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "A vacuum cleaner off.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 35",
- "words": [
- {
- "text": "A",
- "start": 219.3,
- "end": 219.4
- },
- {
- "text": "vacuum",
- "start": 219.41,
- "end": 219.85
- },
- {
- "text": "cleaner",
- "start": 219.85,
- "end": 220.29
- },
- {
- "text": "off.",
- "start": 220.93,
- "end": 221.35
- }
- ],
- "start": 219.3
- },
- "entityRanges": [
- {
- "start": 219.3,
- "end": 219.4,
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 219.41,
- "end": 219.85,
- "text": "vacuum",
- "offset": 2,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 219.85,
- "end": 220.29,
- "text": "cleaner",
- "offset": 9,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 220.93,
- "end": 221.35,
- "text": "off.",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Just a desk that runs around you for a clean it just the fact that it's moving around on his own will cause people to name.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 36",
- "words": [
- {
- "text": "Just",
- "start": 221.68,
- "end": 221.93
- },
- {
- "text": "a",
- "start": 221.93,
- "end": 222
- },
- {
- "text": "desk",
- "start": 222,
- "end": 222.53
- },
- {
- "text": "that",
- "start": 222.53,
- "end": 222.7
- },
- {
- "text": "runs",
- "start": 222.7,
- "end": 222.98
- },
- {
- "text": "around",
- "start": 222.98,
- "end": 223.28
- },
- {
- "text": "you",
- "start": 223.28,
- "end": 223.36
- },
- {
- "text": "for",
- "start": 223.36,
- "end": 223.74
- },
- {
- "text": "a",
- "start": 223.74,
- "end": 223.86
- },
- {
- "text": "clean",
- "start": 223.86,
- "end": 224.25
- },
- {
- "text": "it",
- "start": 224.28,
- "end": 224.49
- },
- {
- "text": "just",
- "start": 224.84,
- "end": 225
- },
- {
- "text": "the",
- "start": 225.02,
- "end": 225.1
- },
- {
- "text": "fact",
- "start": 225.1,
- "end": 225.45
- },
- {
- "text": "that",
- "start": 225.45,
- "end": 225.57
- },
- {
- "text": "it's",
- "start": 225.57,
- "end": 225.75
- },
- {
- "text": "moving",
- "start": 225.74,
- "end": 226.23
- },
- {
- "text": "around",
- "start": 226.23,
- "end": 226.56
- },
- {
- "text": "on",
- "start": 226.56,
- "end": 226.67
- },
- {
- "text": "his",
- "start": 226.67,
- "end": 226.83
- },
- {
- "text": "own",
- "start": 226.83,
- "end": 227.11
- },
- {
- "text": "will",
- "start": 227.11,
- "end": 227.22
- },
- {
- "text": "cause",
- "start": 227.22,
- "end": 227.55
- },
- {
- "text": "people",
- "start": 227.55,
- "end": 227.8
- },
- {
- "text": "to",
- "start": 227.8,
- "end": 227.97
- },
- {
- "text": "name.",
- "start": 227.97,
- "end": 228.42
- }
- ],
- "start": 221.68
- },
- "entityRanges": [
- {
- "start": 221.68,
- "end": 221.93,
- "text": "Just",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 221.93,
- "end": 222,
- "text": "a",
- "offset": 5,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222,
- "end": 222.53,
- "text": "desk",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222.53,
- "end": 222.7,
- "text": "that",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222.7,
- "end": 222.98,
- "text": "runs",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222.98,
- "end": 223.28,
- "text": "around",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.28,
- "end": 223.36,
- "text": "you",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.36,
- "end": 223.74,
- "text": "for",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.74,
- "end": 223.86,
- "text": "a",
- "offset": 37,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.86,
- "end": 224.25,
- "text": "clean",
- "offset": 39,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 224.28,
- "end": 224.49,
- "text": "it",
- "offset": 45,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 224.84,
- "end": 225,
- "text": "just",
- "offset": 48,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.02,
- "end": 225.1,
- "text": "the",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.1,
- "end": 225.45,
- "text": "fact",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.45,
- "end": 225.57,
- "text": "that",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.57,
- "end": 225.75,
- "text": "it's",
- "offset": 67,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.74,
- "end": 226.23,
- "text": "moving",
- "offset": 72,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.23,
- "end": 226.56,
- "text": "around",
- "offset": 79,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.56,
- "end": 226.67,
- "text": "on",
- "offset": 86,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.67,
- "end": 226.83,
- "text": "his",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.83,
- "end": 227.11,
- "text": "own",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.11,
- "end": 227.22,
- "text": "will",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.22,
- "end": 227.55,
- "text": "cause",
- "offset": 102,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.55,
- "end": 227.8,
- "text": "people",
- "offset": 108,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.8,
- "end": 227.97,
- "text": "to",
- "offset": 115,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.97,
- "end": 228.42,
- "text": "name.",
- "offset": 118,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The remember feel bad for the room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 37",
- "words": [
- {
- "text": "The",
- "start": 228.42,
- "end": 228.5
- },
- {
- "text": "remember",
- "start": 228.49,
- "end": 229.03
- },
- {
- "text": "feel",
- "start": 229.44,
- "end": 229.69
- },
- {
- "text": "bad",
- "start": 229.7,
- "end": 230.13
- },
- {
- "text": "for",
- "start": 230.13,
- "end": 230.29
- },
- {
- "text": "the",
- "start": 230.29,
- "end": 230.4
- },
- {
- "text": "room.",
- "start": 230.4,
- "end": 230.59
- }
- ],
- "start": 228.42
- },
- "entityRanges": [
- {
- "start": 228.42,
- "end": 228.5,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 228.49,
- "end": 229.03,
- "text": "remember",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 229.44,
- "end": 229.69,
- "text": "feel",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 229.7,
- "end": 230.13,
- "text": "bad",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.13,
- "end": 230.29,
- "text": "for",
- "offset": 22,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.29,
- "end": 230.4,
- "text": "the",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.4,
- "end": 230.59,
- "text": "room.",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But when he gets stuck under the couch and we can design about specifically to invoke this response using eyes and faces were movements movement.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 38",
- "words": [
- {
- "text": "But",
- "start": 230.59,
- "end": 230.73
- },
- {
- "text": "when",
- "start": 230.74,
- "end": 230.85
- },
- {
- "text": "he",
- "start": 230.85,
- "end": 230.93
- },
- {
- "text": "gets",
- "start": 230.93,
- "end": 231.12
- },
- {
- "text": "stuck",
- "start": 231.12,
- "end": 231.44
- },
- {
- "text": "under",
- "start": 231.44,
- "end": 231.62
- },
- {
- "text": "the",
- "start": 231.63,
- "end": 231.74
- },
- {
- "text": "couch",
- "start": 231.74,
- "end": 232.56
- },
- {
- "text": "and",
- "start": 234.23,
- "end": 234.38
- },
- {
- "text": "we",
- "start": 234.58,
- "end": 234.71
- },
- {
- "text": "can",
- "start": 234.71,
- "end": 234.87
- },
- {
- "text": "design",
- "start": 234.87,
- "end": 235.36
- },
- {
- "text": "about",
- "start": 235.38,
- "end": 235.68
- },
- {
- "text": "specifically",
- "start": 235.68,
- "end": 236.49
- },
- {
- "text": "to",
- "start": 236.49,
- "end": 236.66
- },
- {
- "text": "invoke",
- "start": 236.66,
- "end": 237
- },
- {
- "text": "this",
- "start": 237.01,
- "end": 237.21
- },
- {
- "text": "response",
- "start": 237.21,
- "end": 237.78
- },
- {
- "text": "using",
- "start": 237.78,
- "end": 238.14
- },
- {
- "text": "eyes",
- "start": 238.2,
- "end": 238.92
- },
- {
- "text": "and",
- "start": 239.17,
- "end": 239.34
- },
- {
- "text": "faces",
- "start": 239.34,
- "end": 240.23
- },
- {
- "text": "were",
- "start": 240.4,
- "end": 240.52
- },
- {
- "text": "movements",
- "start": 240.58,
- "end": 241.06
- },
- {
- "text": "movement.",
- "start": 241.06,
- "end": 241.33
- }
- ],
- "start": 230.59
- },
- "entityRanges": [
- {
- "start": 230.59,
- "end": 230.73,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.74,
- "end": 230.85,
- "text": "when",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.85,
- "end": 230.93,
- "text": "he",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.93,
- "end": 231.12,
- "text": "gets",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.12,
- "end": 231.44,
- "text": "stuck",
- "offset": 17,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.44,
- "end": 231.62,
- "text": "under",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.63,
- "end": 231.74,
- "text": "the",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.74,
- "end": 232.56,
- "text": "couch",
- "offset": 33,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 234.23,
- "end": 234.38,
- "text": "and",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 234.58,
- "end": 234.71,
- "text": "we",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 234.71,
- "end": 234.87,
- "text": "can",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 234.87,
- "end": 235.36,
- "text": "design",
- "offset": 50,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 235.38,
- "end": 235.68,
- "text": "about",
- "offset": 57,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 235.68,
- "end": 236.49,
- "text": "specifically",
- "offset": 63,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 236.49,
- "end": 236.66,
- "text": "to",
- "offset": 76,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 236.66,
- "end": 237,
- "text": "invoke",
- "offset": 79,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 237.01,
- "end": 237.21,
- "text": "this",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 237.21,
- "end": 237.78,
- "text": "response",
- "offset": 91,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 237.78,
- "end": 238.14,
- "text": "using",
- "offset": 100,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 238.2,
- "end": 238.92,
- "text": "eyes",
- "offset": 106,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 239.17,
- "end": 239.34,
- "text": "and",
- "offset": 111,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 239.34,
- "end": 240.23,
- "text": "faces",
- "offset": 115,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 240.4,
- "end": 240.52,
- "text": "were",
- "offset": 121,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 240.58,
- "end": 241.06,
- "text": "movements",
- "offset": 126,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 241.06,
- "end": 241.33,
- "text": "movement.",
- "offset": 136,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "People are magically subconsciously associated with states of mind.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 39",
- "words": [
- {
- "text": "People",
- "start": 241.35,
- "end": 241.71
- },
- {
- "text": "are",
- "start": 241.74,
- "end": 241.96
- },
- {
- "text": "magically",
- "start": 241.97,
- "end": 242.52
- },
- {
- "text": "subconsciously",
- "start": 242.54,
- "end": 243.47
- },
- {
- "text": "associated",
- "start": 243.48,
- "end": 244.37
- },
- {
- "text": "with",
- "start": 244.57,
- "end": 244.74
- },
- {
- "text": "states",
- "start": 244.74,
- "end": 245.09
- },
- {
- "text": "of",
- "start": 245.09,
- "end": 245.18
- },
- {
- "text": "mind.",
- "start": 245.18,
- "end": 245.85
- }
- ],
- "start": 241.35
- },
- "entityRanges": [
- {
- "start": 241.35,
- "end": 241.71,
- "text": "People",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 241.74,
- "end": 241.96,
- "text": "are",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 241.97,
- "end": 242.52,
- "text": "magically",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 242.54,
- "end": 243.47,
- "text": "subconsciously",
- "offset": 21,
- "length": 14,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 243.48,
- "end": 244.37,
- "text": "associated",
- "offset": 36,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 244.57,
- "end": 244.74,
- "text": "with",
- "offset": 47,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 244.74,
- "end": 245.09,
- "text": "states",
- "offset": 52,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 245.09,
- "end": 245.18,
- "text": "of",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 245.18,
- "end": 245.85,
- "text": "mind.",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "There's an entire body of research called Human robot interaction that really shows how well.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 40",
- "words": [
- {
- "text": "There's",
- "start": 246.61,
- "end": 246.83
- },
- {
- "text": "an",
- "start": 246.84,
- "end": 246.95
- },
- {
- "text": "entire",
- "start": 246.95,
- "end": 247.37
- },
- {
- "text": "body",
- "start": 247.37,
- "end": 247.58
- },
- {
- "text": "of",
- "start": 247.58,
- "end": 247.69
- },
- {
- "text": "research",
- "start": 247.69,
- "end": 248.11
- },
- {
- "text": "called",
- "start": 248.11,
- "end": 248.33
- },
- {
- "text": "Human",
- "start": 248.32,
- "end": 248.58
- },
- {
- "text": "robot",
- "start": 248.59,
- "end": 248.86
- },
- {
- "text": "interaction",
- "start": 248.89,
- "end": 249.35
- },
- {
- "text": "that",
- "start": 249.36,
- "end": 249.59
- },
- {
- "text": "really",
- "start": 249.64,
- "end": 249.92
- },
- {
- "text": "shows",
- "start": 249.92,
- "end": 250.41
- },
- {
- "text": "how",
- "start": 250.41,
- "end": 250.57
- },
- {
- "text": "well.",
- "start": 250.57,
- "end": 250.71
- }
- ],
- "start": 246.61
- },
- "entityRanges": [
- {
- "start": 246.61,
- "end": 246.83,
- "text": "There's",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 246.84,
- "end": 246.95,
- "text": "an",
- "offset": 8,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 246.95,
- "end": 247.37,
- "text": "entire",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 247.37,
- "end": 247.58,
- "text": "body",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 247.58,
- "end": 247.69,
- "text": "of",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 247.69,
- "end": 248.11,
- "text": "research",
- "offset": 26,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.11,
- "end": 248.33,
- "text": "called",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.32,
- "end": 248.58,
- "text": "Human",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.59,
- "end": 248.86,
- "text": "robot",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.89,
- "end": 249.35,
- "text": "interaction",
- "offset": 54,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 249.36,
- "end": 249.59,
- "text": "that",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 249.64,
- "end": 249.92,
- "text": "really",
- "offset": 71,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 249.92,
- "end": 250.41,
- "text": "shows",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.41,
- "end": 250.57,
- "text": "how",
- "offset": 84,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.57,
- "end": 250.71,
- "text": "well.",
- "offset": 88,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This works so.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 41",
- "words": [
- {
- "text": "This",
- "start": 250.71,
- "end": 250.89
- },
- {
- "text": "works",
- "start": 250.89,
- "end": 251.33
- },
- {
- "text": "so.",
- "start": 251.66,
- "end": 251.88
- }
- ],
- "start": 250.71
- },
- "entityRanges": [
- {
- "start": 250.71,
- "end": 250.89,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.89,
- "end": 251.33,
- "text": "works",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 251.66,
- "end": 251.88,
- "text": "so.",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 42",
- "words": [
- {
- "text": "For",
- "start": 251.88,
- "end": 252.01
- },
- {
- "text": "example.",
- "start": 252.01,
- "end": 252.57
- }
- ],
- "start": 251.88
- },
- "entityRanges": [
- {
- "start": 251.88,
- "end": 252.01,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 252.01,
- "end": 252.57,
- "text": "example.",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Researchers at Stanford University found out that makes people really uncomfortable when you ask them to touch her about his private parts from this pot from many other studies.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 43",
- "words": [
- {
- "text": "Researchers",
- "start": 252.57,
- "end": 253.13
- },
- {
- "text": "at",
- "start": 253.13,
- "end": 253.34
- },
- {
- "text": "Stanford",
- "start": 253.42,
- "end": 253.97
- },
- {
- "text": "University",
- "start": 253.97,
- "end": 254.48
- },
- {
- "text": "found",
- "start": 254.48,
- "end": 254.77
- },
- {
- "text": "out",
- "start": 254.77,
- "end": 254.94
- },
- {
- "text": "that",
- "start": 254.94,
- "end": 255.09
- },
- {
- "text": "makes",
- "start": 255.1,
- "end": 255.32
- },
- {
- "text": "people",
- "start": 255.32,
- "end": 255.67
- },
- {
- "text": "really",
- "start": 255.67,
- "end": 255.93
- },
- {
- "text": "uncomfortable",
- "start": 255.93,
- "end": 256.58
- },
- {
- "text": "when",
- "start": 256.58,
- "end": 256.68
- },
- {
- "text": "you",
- "start": 256.68,
- "end": 256.82
- },
- {
- "text": "ask",
- "start": 256.82,
- "end": 257.05
- },
- {
- "text": "them",
- "start": 257.05,
- "end": 257.17
- },
- {
- "text": "to",
- "start": 257.17,
- "end": 257.27
- },
- {
- "text": "touch",
- "start": 257.27,
- "end": 257.54
- },
- {
- "text": "her",
- "start": 257.54,
- "end": 257.63
- },
- {
- "text": "about",
- "start": 257.63,
- "end": 257.83
- },
- {
- "text": "his",
- "start": 257.83,
- "end": 257.97
- },
- {
- "text": "private",
- "start": 257.97,
- "end": 258.38
- },
- {
- "text": "parts",
- "start": 258.38,
- "end": 258.94
- },
- {
- "text": "from",
- "start": 261.64,
- "end": 261.93
- },
- {
- "text": "this",
- "start": 261.93,
- "end": 262.11
- },
- {
- "text": "pot",
- "start": 262.11,
- "end": 262.24
- },
- {
- "text": "from",
- "start": 262.23,
- "end": 262.48
- },
- {
- "text": "many",
- "start": 262.48,
- "end": 262.81
- },
- {
- "text": "other",
- "start": 262.81,
- "end": 262.99
- },
- {
- "text": "studies.",
- "start": 262.99,
- "end": 263.39
- }
- ],
- "start": 252.57
- },
- "entityRanges": [
- {
- "start": 252.57,
- "end": 253.13,
- "text": "Researchers",
- "offset": 0,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 253.13,
- "end": 253.34,
- "text": "at",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 253.42,
- "end": 253.97,
- "text": "Stanford",
- "offset": 15,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 253.97,
- "end": 254.48,
- "text": "University",
- "offset": 24,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 254.48,
- "end": 254.77,
- "text": "found",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 254.77,
- "end": 254.94,
- "text": "out",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 254.94,
- "end": 255.09,
- "text": "that",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.1,
- "end": 255.32,
- "text": "makes",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.32,
- "end": 255.67,
- "text": "people",
- "offset": 56,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.67,
- "end": 255.93,
- "text": "really",
- "offset": 63,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.93,
- "end": 256.58,
- "text": "uncomfortable",
- "offset": 70,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 256.58,
- "end": 256.68,
- "text": "when",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 256.68,
- "end": 256.82,
- "text": "you",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 256.82,
- "end": 257.05,
- "text": "ask",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.05,
- "end": 257.17,
- "text": "them",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.17,
- "end": 257.27,
- "text": "to",
- "offset": 102,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.27,
- "end": 257.54,
- "text": "touch",
- "offset": 105,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.54,
- "end": 257.63,
- "text": "her",
- "offset": 111,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.63,
- "end": 257.83,
- "text": "about",
- "offset": 115,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.83,
- "end": 257.97,
- "text": "his",
- "offset": 121,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.97,
- "end": 258.38,
- "text": "private",
- "offset": 125,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 258.38,
- "end": 258.94,
- "text": "parts",
- "offset": 133,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 261.64,
- "end": 261.93,
- "text": "from",
- "offset": 139,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 261.93,
- "end": 262.11,
- "text": "this",
- "offset": 144,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.11,
- "end": 262.24,
- "text": "pot",
- "offset": 149,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.23,
- "end": 262.48,
- "text": "from",
- "offset": 153,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.48,
- "end": 262.81,
- "text": "many",
- "offset": 158,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.81,
- "end": 262.99,
- "text": "other",
- "offset": 163,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.99,
- "end": 263.39,
- "text": "studies.",
- "offset": 169,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We know.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 44",
- "words": [
- {
- "text": "We",
- "start": 263.39,
- "end": 263.56
- },
- {
- "text": "know.",
- "start": 263.57,
- "end": 264.06
- }
- ],
- "start": 263.39
- },
- "entityRanges": [
- {
- "start": 263.39,
- "end": 263.56,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 263.57,
- "end": 264.06,
- "text": "know.",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We know that people respond to the Hughes, given to them by the lifelike machines.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 45",
- "words": [
- {
- "text": "We",
- "start": 264.48,
- "end": 264.66
- },
- {
- "text": "know",
- "start": 264.66,
- "end": 265.09
- },
- {
- "text": "that",
- "start": 265.09,
- "end": 265.27
- },
- {
- "text": "people",
- "start": 265.27,
- "end": 265.79
- },
- {
- "text": "respond",
- "start": 265.79,
- "end": 266.42
- },
- {
- "text": "to",
- "start": 266.42,
- "end": 266.52
- },
- {
- "text": "the",
- "start": 266.52,
- "end": 266.64
- },
- {
- "text": "Hughes,",
- "start": 266.66,
- "end": 267.28
- },
- {
- "text": "given",
- "start": 267.28,
- "end": 267.56
- },
- {
- "text": "to",
- "start": 267.56,
- "end": 267.67
- },
- {
- "text": "them",
- "start": 267.67,
- "end": 267.88
- },
- {
- "text": "by",
- "start": 267.88,
- "end": 267.99
- },
- {
- "text": "the",
- "start": 267.99,
- "end": 268.18
- },
- {
- "text": "lifelike",
- "start": 268.2,
- "end": 268.69
- },
- {
- "text": "machines.",
- "start": 268.69,
- "end": 269.46
- }
- ],
- "start": 264.48
- },
- "entityRanges": [
- {
- "start": 264.48,
- "end": 264.66,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 264.66,
- "end": 265.09,
- "text": "know",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 265.09,
- "end": 265.27,
- "text": "that",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 265.27,
- "end": 265.79,
- "text": "people",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 265.79,
- "end": 266.42,
- "text": "respond",
- "offset": 20,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 266.42,
- "end": 266.52,
- "text": "to",
- "offset": 28,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 266.52,
- "end": 266.64,
- "text": "the",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 266.66,
- "end": 267.28,
- "text": "Hughes,",
- "offset": 35,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.28,
- "end": 267.56,
- "text": "given",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.56,
- "end": 267.67,
- "text": "to",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.67,
- "end": 267.88,
- "text": "them",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.88,
- "end": 267.99,
- "text": "by",
- "offset": 57,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.99,
- "end": 268.18,
- "text": "the",
- "offset": 60,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 268.2,
- "end": 268.69,
- "text": "lifelike",
- "offset": 64,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 268.69,
- "end": 269.46,
- "text": "machines.",
- "offset": 73,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Even if they know that they're natural.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 46",
- "words": [
- {
- "text": "Even",
- "start": 269.89,
- "end": 270.2
- },
- {
- "text": "if",
- "start": 270.2,
- "end": 270.3
- },
- {
- "text": "they",
- "start": 270.3,
- "end": 270.43
- },
- {
- "text": "know",
- "start": 270.43,
- "end": 270.67
- },
- {
- "text": "that",
- "start": 270.67,
- "end": 270.84
- },
- {
- "text": "they're",
- "start": 270.84,
- "end": 271.01
- },
- {
- "text": "natural.",
- "start": 271.09,
- "end": 271.45
- }
- ],
- "start": 269.89
- },
- "entityRanges": [
- {
- "start": 269.89,
- "end": 270.2,
- "text": "Even",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.2,
- "end": 270.3,
- "text": "if",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.3,
- "end": 270.43,
- "text": "they",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.43,
- "end": 270.67,
- "text": "know",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.67,
- "end": 270.84,
- "text": "that",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.84,
- "end": 271.01,
- "text": "they're",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 271.09,
- "end": 271.45,
- "text": "natural.",
- "offset": 31,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We're heading towards a world where real butter everywhere robotic technology is moving out from behind factory was entering workplaces households and as these machines.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 47",
- "words": [
- {
- "text": "We're",
- "start": 274.49,
- "end": 274.69
- },
- {
- "text": "heading",
- "start": 274.69,
- "end": 274.96
- },
- {
- "text": "towards",
- "start": 274.96,
- "end": 275.21
- },
- {
- "text": "a",
- "start": 275.21,
- "end": 275.28
- },
- {
- "text": "world",
- "start": 275.28,
- "end": 275.7
- },
- {
- "text": "where",
- "start": 275.7,
- "end": 275.86
- },
- {
- "text": "real",
- "start": 275.86,
- "end": 276.11
- },
- {
- "text": "butter",
- "start": 276.11,
- "end": 276.53
- },
- {
- "text": "everywhere",
- "start": 276.56,
- "end": 277.16
- },
- {
- "text": "robotic",
- "start": 277.7,
- "end": 278.01
- },
- {
- "text": "technology",
- "start": 278.03,
- "end": 278.6
- },
- {
- "text": "is",
- "start": 278.61,
- "end": 278.86
- },
- {
- "text": "moving",
- "start": 278.86,
- "end": 279.25
- },
- {
- "text": "out",
- "start": 279.25,
- "end": 279.41
- },
- {
- "text": "from",
- "start": 279.41,
- "end": 279.57
- },
- {
- "text": "behind",
- "start": 279.57,
- "end": 279.83
- },
- {
- "text": "factory",
- "start": 279.83,
- "end": 280.26
- },
- {
- "text": "was",
- "start": 280.26,
- "end": 280.8
- },
- {
- "text": "entering",
- "start": 280.94,
- "end": 281.39
- },
- {
- "text": "workplaces",
- "start": 281.42,
- "end": 282.34
- },
- {
- "text": "households",
- "start": 282.45,
- "end": 283.26
- },
- {
- "text": "and",
- "start": 283.69,
- "end": 284
- },
- {
- "text": "as",
- "start": 284.13,
- "end": 284.34
- },
- {
- "text": "these",
- "start": 284.34,
- "end": 284.55
- },
- {
- "text": "machines.",
- "start": 284.55,
- "end": 285.22
- }
- ],
- "start": 274.49
- },
- "entityRanges": [
- {
- "start": 274.49,
- "end": 274.69,
- "text": "We're",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 274.69,
- "end": 274.96,
- "text": "heading",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 274.96,
- "end": 275.21,
- "text": "towards",
- "offset": 14,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.21,
- "end": 275.28,
- "text": "a",
- "offset": 22,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.28,
- "end": 275.7,
- "text": "world",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.7,
- "end": 275.86,
- "text": "where",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.86,
- "end": 276.11,
- "text": "real",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 276.11,
- "end": 276.53,
- "text": "butter",
- "offset": 41,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 276.56,
- "end": 277.16,
- "text": "everywhere",
- "offset": 48,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 277.7,
- "end": 278.01,
- "text": "robotic",
- "offset": 59,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 278.03,
- "end": 278.6,
- "text": "technology",
- "offset": 67,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 278.61,
- "end": 278.86,
- "text": "is",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 278.86,
- "end": 279.25,
- "text": "moving",
- "offset": 81,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.25,
- "end": 279.41,
- "text": "out",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.41,
- "end": 279.57,
- "text": "from",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.57,
- "end": 279.83,
- "text": "behind",
- "offset": 97,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.83,
- "end": 280.26,
- "text": "factory",
- "offset": 104,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 280.26,
- "end": 280.8,
- "text": "was",
- "offset": 112,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 280.94,
- "end": 281.39,
- "text": "entering",
- "offset": 116,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 281.42,
- "end": 282.34,
- "text": "workplaces",
- "offset": 125,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 282.45,
- "end": 283.26,
- "text": "households",
- "offset": 136,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 283.69,
- "end": 284,
- "text": "and",
- "offset": 147,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 284.13,
- "end": 284.34,
- "text": "as",
- "offset": 151,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 284.34,
- "end": 284.55,
- "text": "these",
- "offset": 154,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 284.55,
- "end": 285.22,
- "text": "machines.",
- "offset": 160,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They can sense and make a ton of decisions and learn enter into the shared spaces.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 48",
- "words": [
- {
- "text": "They",
- "start": 285.22,
- "end": 285.34
- },
- {
- "text": "can",
- "start": 285.34,
- "end": 285.88
- },
- {
- "text": "sense",
- "start": 285.91,
- "end": 286.65
- },
- {
- "text": "and",
- "start": 286.68,
- "end": 286.99
- },
- {
- "text": "make",
- "start": 287.16,
- "end": 287.34
- },
- {
- "text": "a",
- "start": 287.38,
- "end": 287.47
- },
- {
- "text": "ton",
- "start": 287.48,
- "end": 287.76
- },
- {
- "text": "of",
- "start": 287.76,
- "end": 288.01
- },
- {
- "text": "decisions",
- "start": 288.04,
- "end": 288.69
- },
- {
- "text": "and",
- "start": 288.69,
- "end": 288.9
- },
- {
- "text": "learn",
- "start": 288.94,
- "end": 289.57
- },
- {
- "text": "enter",
- "start": 290.05,
- "end": 290.38
- },
- {
- "text": "into",
- "start": 290.38,
- "end": 290.58
- },
- {
- "text": "the",
- "start": 290.58,
- "end": 290.73
- },
- {
- "text": "shared",
- "start": 290.73,
- "end": 291.08
- },
- {
- "text": "spaces.",
- "start": 291.08,
- "end": 292.16
- }
- ],
- "start": 285.22
- },
- "entityRanges": [
- {
- "start": 285.22,
- "end": 285.34,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 285.34,
- "end": 285.88,
- "text": "can",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 285.91,
- "end": 286.65,
- "text": "sense",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 286.68,
- "end": 286.99,
- "text": "and",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.16,
- "end": 287.34,
- "text": "make",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.38,
- "end": 287.47,
- "text": "a",
- "offset": 24,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.48,
- "end": 287.76,
- "text": "ton",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.76,
- "end": 288.01,
- "text": "of",
- "offset": 30,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 288.04,
- "end": 288.69,
- "text": "decisions",
- "offset": 33,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 288.69,
- "end": 288.9,
- "text": "and",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 288.94,
- "end": 289.57,
- "text": "learn",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.05,
- "end": 290.38,
- "text": "enter",
- "offset": 53,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.38,
- "end": 290.58,
- "text": "into",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.58,
- "end": 290.73,
- "text": "the",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.73,
- "end": 291.08,
- "text": "shared",
- "offset": 68,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 291.08,
- "end": 292.16,
- "text": "spaces.",
- "offset": 75,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I think that may be the best analogy.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 49",
- "words": [
- {
- "text": "I",
- "start": 292.68,
- "end": 292.78
- },
- {
- "text": "think",
- "start": 292.78,
- "end": 293.01
- },
- {
- "text": "that",
- "start": 293.01,
- "end": 293.2
- },
- {
- "text": "may",
- "start": 293.2,
- "end": 293.27
- },
- {
- "text": "be",
- "start": 293.27,
- "end": 293.42
- },
- {
- "text": "the",
- "start": 293.42,
- "end": 293.51
- },
- {
- "text": "best",
- "start": 293.51,
- "end": 293.76
- },
- {
- "text": "analogy.",
- "start": 293.76,
- "end": 294.33
- }
- ],
- "start": 292.68
- },
- "entityRanges": [
- {
- "start": 292.68,
- "end": 292.78,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 292.78,
- "end": 293.01,
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.01,
- "end": 293.2,
- "text": "that",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.2,
- "end": 293.27,
- "text": "may",
- "offset": 13,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.27,
- "end": 293.42,
- "text": "be",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.42,
- "end": 293.51,
- "text": "the",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.51,
- "end": 293.76,
- "text": "best",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.76,
- "end": 294.33,
- "text": "analogy.",
- "offset": 29,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We have for this is our relationship with animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 50",
- "words": [
- {
- "text": "We",
- "start": 294.33,
- "end": 294.45
- },
- {
- "text": "have",
- "start": 294.45,
- "end": 294.72
- },
- {
- "text": "for",
- "start": 294.72,
- "end": 294.84
- },
- {
- "text": "this",
- "start": 294.84,
- "end": 295.08
- },
- {
- "text": "is",
- "start": 295.08,
- "end": 295.22
- },
- {
- "text": "our",
- "start": 295.22,
- "end": 295.3
- },
- {
- "text": "relationship",
- "start": 295.3,
- "end": 296.04
- },
- {
- "text": "with",
- "start": 296.04,
- "end": 296.21
- },
- {
- "text": "animals.",
- "start": 296.33,
- "end": 297.08
- }
- ],
- "start": 294.33
- },
- "entityRanges": [
- {
- "start": 294.33,
- "end": 294.45,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 294.45,
- "end": 294.72,
- "text": "have",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 294.72,
- "end": 294.84,
- "text": "for",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 294.84,
- "end": 295.08,
- "text": "this",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 295.08,
- "end": 295.22,
- "text": "is",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 295.22,
- "end": 295.3,
- "text": "our",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 295.3,
- "end": 296.04,
- "text": "relationship",
- "offset": 24,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 296.04,
- "end": 296.21,
- "text": "with",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 296.33,
- "end": 297.08,
- "text": "animals.",
- "offset": 42,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Thousands of years ago, we started to domesticate animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 51",
- "words": [
- {
- "text": "Thousands",
- "start": 297.46,
- "end": 297.99
- },
- {
- "text": "of",
- "start": 297.99,
- "end": 298.08
- },
- {
- "text": "years",
- "start": 298.08,
- "end": 298.33
- },
- {
- "text": "ago,",
- "start": 298.33,
- "end": 298.82
- },
- {
- "text": "we",
- "start": 299.29,
- "end": 299.44
- },
- {
- "text": "started",
- "start": 299.44,
- "end": 299.76
- },
- {
- "text": "to",
- "start": 299.76,
- "end": 299.86
- },
- {
- "text": "domesticate",
- "start": 299.86,
- "end": 300.53
- },
- {
- "text": "animals.",
- "start": 300.53,
- "end": 301.15
- }
- ],
- "start": 297.46
- },
- "entityRanges": [
- {
- "start": 297.46,
- "end": 297.99,
- "text": "Thousands",
- "offset": 0,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 297.99,
- "end": 298.08,
- "text": "of",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 298.08,
- "end": 298.33,
- "text": "years",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 298.33,
- "end": 298.82,
- "text": "ago,",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.29,
- "end": 299.44,
- "text": "we",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.44,
- "end": 299.76,
- "text": "started",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.76,
- "end": 299.86,
- "text": "to",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.86,
- "end": 300.53,
- "text": "domesticate",
- "offset": 38,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 300.53,
- "end": 301.15,
- "text": "animals.",
- "offset": 50,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We train them for work and weaponry and companionship and throughout history.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 52",
- "words": [
- {
- "text": "We",
- "start": 301.5,
- "end": 301.64
- },
- {
- "text": "train",
- "start": 301.64,
- "end": 301.98
- },
- {
- "text": "them",
- "start": 301.98,
- "end": 302.15
- },
- {
- "text": "for",
- "start": 302.15,
- "end": 302.39
- },
- {
- "text": "work",
- "start": 302.42,
- "end": 302.89
- },
- {
- "text": "and",
- "start": 302.92,
- "end": 303.14
- },
- {
- "text": "weaponry",
- "start": 303.14,
- "end": 303.84
- },
- {
- "text": "and",
- "start": 303.87,
- "end": 303.95
- },
- {
- "text": "companionship",
- "start": 303.94,
- "end": 304.91
- },
- {
- "text": "and",
- "start": 305.35,
- "end": 305.62
- },
- {
- "text": "throughout",
- "start": 305.65,
- "end": 305.92
- },
- {
- "text": "history.",
- "start": 305.92,
- "end": 306.44
- }
- ],
- "start": 301.5
- },
- "entityRanges": [
- {
- "start": 301.5,
- "end": 301.64,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 301.64,
- "end": 301.98,
- "text": "train",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 301.98,
- "end": 302.15,
- "text": "them",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 302.15,
- "end": 302.39,
- "text": "for",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 302.42,
- "end": 302.89,
- "text": "work",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 302.92,
- "end": 303.14,
- "text": "and",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 303.14,
- "end": 303.84,
- "text": "weaponry",
- "offset": 27,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 303.87,
- "end": 303.95,
- "text": "and",
- "offset": 36,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 303.94,
- "end": 304.91,
- "text": "companionship",
- "offset": 40,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 305.35,
- "end": 305.62,
- "text": "and",
- "offset": 54,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 305.65,
- "end": 305.92,
- "text": "throughout",
- "offset": 58,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 305.92,
- "end": 306.44,
- "text": "history.",
- "offset": 69,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We've treated.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 53",
- "words": [
- {
- "text": "We've",
- "start": 306.44,
- "end": 306.6
- },
- {
- "text": "treated.",
- "start": 306.6,
- "end": 306.93
- }
- ],
- "start": 306.44
- },
- "entityRanges": [
- {
- "start": 306.44,
- "end": 306.6,
- "text": "We've",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 306.6,
- "end": 306.93,
- "text": "treated.",
- "offset": 6,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Some animals like tools like products and other animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 54",
- "words": [
- {
- "text": "Some",
- "start": 306.94,
- "end": 307.2
- },
- {
- "text": "animals",
- "start": 307.23,
- "end": 307.76
- },
- {
- "text": "like",
- "start": 307.76,
- "end": 307.93
- },
- {
- "text": "tools",
- "start": 307.96,
- "end": 308.7
- },
- {
- "text": "like",
- "start": 308.96,
- "end": 309.21
- },
- {
- "text": "products",
- "start": 309.21,
- "end": 310.11
- },
- {
- "text": "and",
- "start": 310.46,
- "end": 310.74
- },
- {
- "text": "other",
- "start": 310.76,
- "end": 310.97
- },
- {
- "text": "animals.",
- "start": 310.97,
- "end": 311.32
- }
- ],
- "start": 306.94
- },
- "entityRanges": [
- {
- "start": 306.94,
- "end": 307.2,
- "text": "Some",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 307.23,
- "end": 307.76,
- "text": "animals",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 307.76,
- "end": 307.93,
- "text": "like",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 307.96,
- "end": 308.7,
- "text": "tools",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 308.96,
- "end": 309.21,
- "text": "like",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 309.21,
- "end": 310.11,
- "text": "products",
- "offset": 29,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 310.46,
- "end": 310.74,
- "text": "and",
- "offset": 38,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 310.76,
- "end": 310.97,
- "text": "other",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 310.97,
- "end": 311.32,
- "text": "animals.",
- "offset": 48,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We treated with kindness and given a place in society as our companions.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 55",
- "words": [
- {
- "text": "We",
- "start": 311.32,
- "end": 311.45
- },
- {
- "text": "treated",
- "start": 311.45,
- "end": 311.73
- },
- {
- "text": "with",
- "start": 311.73,
- "end": 311.87
- },
- {
- "text": "kindness",
- "start": 311.87,
- "end": 312.58
- },
- {
- "text": "and",
- "start": 312.61,
- "end": 312.78
- },
- {
- "text": "given",
- "start": 312.85,
- "end": 313.09
- },
- {
- "text": "a",
- "start": 313.09,
- "end": 313.16
- },
- {
- "text": "place",
- "start": 313.16,
- "end": 313.55
- },
- {
- "text": "in",
- "start": 313.55,
- "end": 313.64
- },
- {
- "text": "society",
- "start": 313.64,
- "end": 314.12
- },
- {
- "text": "as",
- "start": 314.12,
- "end": 314.25
- },
- {
- "text": "our",
- "start": 314.25,
- "end": 314.31
- },
- {
- "text": "companions.",
- "start": 314.31,
- "end": 315.19
- }
- ],
- "start": 311.32
- },
- "entityRanges": [
- {
- "start": 311.32,
- "end": 311.45,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 311.45,
- "end": 311.73,
- "text": "treated",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 311.73,
- "end": 311.87,
- "text": "with",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 311.87,
- "end": 312.58,
- "text": "kindness",
- "offset": 16,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 312.61,
- "end": 312.78,
- "text": "and",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 312.85,
- "end": 313.09,
- "text": "given",
- "offset": 29,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.09,
- "end": 313.16,
- "text": "a",
- "offset": 35,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.16,
- "end": 313.55,
- "text": "place",
- "offset": 37,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.55,
- "end": 313.64,
- "text": "in",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.64,
- "end": 314.12,
- "text": "society",
- "offset": 46,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 314.12,
- "end": 314.25,
- "text": "as",
- "offset": 54,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 314.25,
- "end": 314.31,
- "text": "our",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 314.31,
- "end": 315.19,
- "text": "companions.",
- "offset": 61,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I think was more.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 56",
- "words": [
- {
- "text": "I",
- "start": 315.81,
- "end": 315.94
- },
- {
- "text": "think",
- "start": 315.94,
- "end": 316.15
- },
- {
- "text": "was",
- "start": 316.29,
- "end": 316.55
- },
- {
- "text": "more.",
- "start": 316.55,
- "end": 316.68
- }
- ],
- "start": 315.81
- },
- "entityRanges": [
- {
- "start": 315.81,
- "end": 315.94,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 315.94,
- "end": 316.15,
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.29,
- "end": 316.55,
- "text": "was",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.55,
- "end": 316.68,
- "text": "more.",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We might start to integrate robots in similar ways animals are her life.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 57",
- "words": [
- {
- "text": "We",
- "start": 316.68,
- "end": 316.81
- },
- {
- "text": "might",
- "start": 316.81,
- "end": 316.98
- },
- {
- "text": "start",
- "start": 316.98,
- "end": 317.18
- },
- {
- "text": "to",
- "start": 317.18,
- "end": 317.35
- },
- {
- "text": "integrate",
- "start": 317.38,
- "end": 317.79
- },
- {
- "text": "robots",
- "start": 317.82,
- "end": 318.4
- },
- {
- "text": "in",
- "start": 318.39,
- "end": 318.53
- },
- {
- "text": "similar",
- "start": 318.54,
- "end": 318.94
- },
- {
- "text": "ways",
- "start": 318.94,
- "end": 319.63
- },
- {
- "text": "animals",
- "start": 323.05,
- "end": 323.52
- },
- {
- "text": "are",
- "start": 323.52,
- "end": 323.68
- },
- {
- "text": "her",
- "start": 323.68,
- "end": 323.73
- },
- {
- "text": "life.",
- "start": 323.73,
- "end": 324.55
- }
- ],
- "start": 316.68
- },
- "entityRanges": [
- {
- "start": 316.68,
- "end": 316.81,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.81,
- "end": 316.98,
- "text": "might",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.98,
- "end": 317.18,
- "text": "start",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.18,
- "end": 317.35,
- "text": "to",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.38,
- "end": 317.79,
- "text": "integrate",
- "offset": 18,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.82,
- "end": 318.4,
- "text": "robots",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 318.39,
- "end": 318.53,
- "text": "in",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 318.54,
- "end": 318.94,
- "text": "similar",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 318.94,
- "end": 319.63,
- "text": "ways",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.05,
- "end": 323.52,
- "text": "animals",
- "offset": 51,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.52,
- "end": 323.68,
- "text": "are",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.68,
- "end": 323.73,
- "text": "her",
- "offset": 63,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.73,
- "end": 324.55,
- "text": "life.",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Robert and that.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 58",
- "words": [
- {
- "text": "Robert",
- "start": 324.59,
- "end": 325.03
- },
- {
- "text": "and",
- "start": 325.03,
- "end": 325.18
- },
- {
- "text": "that.",
- "start": 325.18,
- "end": 325.48
- }
- ],
- "start": 324.59
- },
- "entityRanges": [
- {
- "start": 324.59,
- "end": 325.03,
- "text": "Robert",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 325.03,
- "end": 325.18,
- "text": "and",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 325.18,
- "end": 325.48,
- "text": "that.",
- "offset": 11,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And I can tell you from working with her brother sister for pretty far away from developing robots that can feel anything but we feel for them and that matters because if we're trying to integrate robots into the shared spaces.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 59",
- "words": [
- {
- "text": "And",
- "start": 326.56,
- "end": 326.61
- },
- {
- "text": "I",
- "start": 327.63,
- "end": 327.76
- },
- {
- "text": "can",
- "start": 327.88,
- "end": 328.03
- },
- {
- "text": "tell",
- "start": 328.03,
- "end": 328.25
- },
- {
- "text": "you",
- "start": 328.25,
- "end": 328.34
- },
- {
- "text": "from",
- "start": 328.34,
- "end": 328.61
- },
- {
- "text": "working",
- "start": 328.64,
- "end": 328.94
- },
- {
- "text": "with",
- "start": 328.94,
- "end": 329.04
- },
- {
- "text": "her",
- "start": 329.04,
- "end": 329.14
- },
- {
- "text": "brother",
- "start": 329.14,
- "end": 329.37
- },
- {
- "text": "sister",
- "start": 329.41,
- "end": 329.78
- },
- {
- "text": "for",
- "start": 329.79,
- "end": 330.03
- },
- {
- "text": "pretty",
- "start": 330.23,
- "end": 330.52
- },
- {
- "text": "far",
- "start": 330.52,
- "end": 330.74
- },
- {
- "text": "away",
- "start": 330.74,
- "end": 331.03
- },
- {
- "text": "from",
- "start": 331.03,
- "end": 331.24
- },
- {
- "text": "developing",
- "start": 331.24,
- "end": 331.71
- },
- {
- "text": "robots",
- "start": 331.71,
- "end": 332.05
- },
- {
- "text": "that",
- "start": 332.05,
- "end": 332.14
- },
- {
- "text": "can",
- "start": 332.13,
- "end": 332.28
- },
- {
- "text": "feel",
- "start": 332.28,
- "end": 332.69
- },
- {
- "text": "anything",
- "start": 332.69,
- "end": 333.21
- },
- {
- "text": "but",
- "start": 335.04,
- "end": 335.28
- },
- {
- "text": "we",
- "start": 335.28,
- "end": 335.52
- },
- {
- "text": "feel",
- "start": 335.52,
- "end": 335.77
- },
- {
- "text": "for",
- "start": 335.77,
- "end": 335.96
- },
- {
- "text": "them",
- "start": 335.96,
- "end": 336.44
- },
- {
- "text": "and",
- "start": 337.7,
- "end": 337.86
- },
- {
- "text": "that",
- "start": 337.98,
- "end": 338.21
- },
- {
- "text": "matters",
- "start": 338.21,
- "end": 338.98
- },
- {
- "text": "because",
- "start": 339.01,
- "end": 339.55
- },
- {
- "text": "if",
- "start": 339.58,
- "end": 339.79
- },
- {
- "text": "we're",
- "start": 339.79,
- "end": 339.88
- },
- {
- "text": "trying",
- "start": 339.88,
- "end": 340.15
- },
- {
- "text": "to",
- "start": 340.15,
- "end": 340.3
- },
- {
- "text": "integrate",
- "start": 340.33,
- "end": 340.92
- },
- {
- "text": "robots",
- "start": 340.92,
- "end": 341.39
- },
- {
- "text": "into",
- "start": 341.39,
- "end": 341.55
- },
- {
- "text": "the",
- "start": 341.55,
- "end": 341.7
- },
- {
- "text": "shared",
- "start": 341.7,
- "end": 342.05
- },
- {
- "text": "spaces.",
- "start": 342.05,
- "end": 342.7
- }
- ],
- "start": 326.56
- },
- "entityRanges": [
- {
- "start": 326.56,
- "end": 326.61,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 327.63,
- "end": 327.76,
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 327.88,
- "end": 328.03,
- "text": "can",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.03,
- "end": 328.25,
- "text": "tell",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.25,
- "end": 328.34,
- "text": "you",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.34,
- "end": 328.61,
- "text": "from",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.64,
- "end": 328.94,
- "text": "working",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.94,
- "end": 329.04,
- "text": "with",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.04,
- "end": 329.14,
- "text": "her",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.14,
- "end": 329.37,
- "text": "brother",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.41,
- "end": 329.78,
- "text": "sister",
- "offset": 49,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.79,
- "end": 330.03,
- "text": "for",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 330.23,
- "end": 330.52,
- "text": "pretty",
- "offset": 60,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 330.52,
- "end": 330.74,
- "text": "far",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 330.74,
- "end": 331.03,
- "text": "away",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 331.03,
- "end": 331.24,
- "text": "from",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 331.24,
- "end": 331.71,
- "text": "developing",
- "offset": 81,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 331.71,
- "end": 332.05,
- "text": "robots",
- "offset": 92,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.05,
- "end": 332.14,
- "text": "that",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.13,
- "end": 332.28,
- "text": "can",
- "offset": 104,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.28,
- "end": 332.69,
- "text": "feel",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.69,
- "end": 333.21,
- "text": "anything",
- "offset": 113,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.04,
- "end": 335.28,
- "text": "but",
- "offset": 122,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.28,
- "end": 335.52,
- "text": "we",
- "offset": 126,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.52,
- "end": 335.77,
- "text": "feel",
- "offset": 129,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.77,
- "end": 335.96,
- "text": "for",
- "offset": 134,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.96,
- "end": 336.44,
- "text": "them",
- "offset": 138,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 337.7,
- "end": 337.86,
- "text": "and",
- "offset": 143,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 337.98,
- "end": 338.21,
- "text": "that",
- "offset": 147,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 338.21,
- "end": 338.98,
- "text": "matters",
- "offset": 152,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.01,
- "end": 339.55,
- "text": "because",
- "offset": 160,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.58,
- "end": 339.79,
- "text": "if",
- "offset": 168,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.79,
- "end": 339.88,
- "text": "we're",
- "offset": 171,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.88,
- "end": 340.15,
- "text": "trying",
- "offset": 177,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 340.15,
- "end": 340.3,
- "text": "to",
- "offset": 184,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 340.33,
- "end": 340.92,
- "text": "integrate",
- "offset": 187,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 340.92,
- "end": 341.39,
- "text": "robots",
- "offset": 197,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 341.39,
- "end": 341.55,
- "text": "into",
- "offset": 204,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 341.55,
- "end": 341.7,
- "text": "the",
- "offset": 209,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 341.7,
- "end": 342.05,
- "text": "shared",
- "offset": 213,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 342.05,
- "end": 342.7,
- "text": "spaces.",
- "offset": 220,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We need to understand that people treat them differently than other devices that in some cases.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 60",
- "words": [
- {
- "text": "We",
- "start": 342.7,
- "end": 342.78
- },
- {
- "text": "need",
- "start": 342.79,
- "end": 342.96
- },
- {
- "text": "to",
- "start": 342.96,
- "end": 343.05
- },
- {
- "text": "understand",
- "start": 343.08,
- "end": 343.81
- },
- {
- "text": "that",
- "start": 343.81,
- "end": 343.92
- },
- {
- "text": "people",
- "start": 343.92,
- "end": 344.36
- },
- {
- "text": "treat",
- "start": 344.37,
- "end": 344.63
- },
- {
- "text": "them",
- "start": 344.63,
- "end": 344.79
- },
- {
- "text": "differently",
- "start": 344.79,
- "end": 345.39
- },
- {
- "text": "than",
- "start": 345.39,
- "end": 345.53
- },
- {
- "text": "other",
- "start": 345.53,
- "end": 345.74
- },
- {
- "text": "devices",
- "start": 345.74,
- "end": 346.61
- },
- {
- "text": "that",
- "start": 347.37,
- "end": 347.65
- },
- {
- "text": "in",
- "start": 347.65,
- "end": 347.78
- },
- {
- "text": "some",
- "start": 347.78,
- "end": 348.08
- },
- {
- "text": "cases.",
- "start": 348.08,
- "end": 348.94
- }
- ],
- "start": 342.7
- },
- "entityRanges": [
- {
- "start": 342.7,
- "end": 342.78,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 342.79,
- "end": 342.96,
- "text": "need",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 342.96,
- "end": 343.05,
- "text": "to",
- "offset": 8,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 343.08,
- "end": 343.81,
- "text": "understand",
- "offset": 11,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 343.81,
- "end": 343.92,
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 343.92,
- "end": 344.36,
- "text": "people",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 344.37,
- "end": 344.63,
- "text": "treat",
- "offset": 34,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 344.63,
- "end": 344.79,
- "text": "them",
- "offset": 40,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 344.79,
- "end": 345.39,
- "text": "differently",
- "offset": 45,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 345.39,
- "end": 345.53,
- "text": "than",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 345.53,
- "end": 345.74,
- "text": "other",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 345.74,
- "end": 346.61,
- "text": "devices",
- "offset": 68,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 347.37,
- "end": 347.65,
- "text": "that",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 347.65,
- "end": 347.78,
- "text": "in",
- "offset": 81,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 347.78,
- "end": 348.08,
- "text": "some",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 348.08,
- "end": 348.94,
- "text": "cases.",
- "offset": 89,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example, the kiss of a soldier who becomes emotionally attached to the robot, but they were worse.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 61",
- "words": [
- {
- "text": "For",
- "start": 349.19,
- "end": 349.36
- },
- {
- "text": "example,",
- "start": 349.36,
- "end": 349.91
- },
- {
- "text": "the",
- "start": 349.97,
- "end": 350.09
- },
- {
- "text": "kiss",
- "start": 350.09,
- "end": 350.39
- },
- {
- "text": "of",
- "start": 350.39,
- "end": 350.47
- },
- {
- "text": "a",
- "start": 350.47,
- "end": 350.53
- },
- {
- "text": "soldier",
- "start": 350.53,
- "end": 351
- },
- {
- "text": "who",
- "start": 351,
- "end": 351.1
- },
- {
- "text": "becomes",
- "start": 351.1,
- "end": 351.42
- },
- {
- "text": "emotionally",
- "start": 351.42,
- "end": 351.99
- },
- {
- "text": "attached",
- "start": 351.99,
- "end": 352.52
- },
- {
- "text": "to",
- "start": 352.52,
- "end": 352.62
- },
- {
- "text": "the",
- "start": 352.62,
- "end": 352.76
- },
- {
- "text": "robot,",
- "start": 352.76,
- "end": 352.97
- },
- {
- "text": "but",
- "start": 352.97,
- "end": 353.18
- },
- {
- "text": "they",
- "start": 353.18,
- "end": 353.33
- },
- {
- "text": "were",
- "start": 353.34,
- "end": 353.57
- },
- {
- "text": "worse.",
- "start": 353.61,
- "end": 354.04
- }
- ],
- "start": 349.19
- },
- "entityRanges": [
- {
- "start": 349.19,
- "end": 349.36,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 349.36,
- "end": 349.91,
- "text": "example,",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 349.97,
- "end": 350.09,
- "text": "the",
- "offset": 13,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.09,
- "end": 350.39,
- "text": "kiss",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.39,
- "end": 350.47,
- "text": "of",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.47,
- "end": 350.53,
- "text": "a",
- "offset": 25,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.53,
- "end": 351,
- "text": "soldier",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351,
- "end": 351.1,
- "text": "who",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.1,
- "end": 351.42,
- "text": "becomes",
- "offset": 39,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.42,
- "end": 351.99,
- "text": "emotionally",
- "offset": 47,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.99,
- "end": 352.52,
- "text": "attached",
- "offset": 59,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.52,
- "end": 352.62,
- "text": "to",
- "offset": 68,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.62,
- "end": 352.76,
- "text": "the",
- "offset": 71,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.76,
- "end": 352.97,
- "text": "robot,",
- "offset": 75,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.97,
- "end": 353.18,
- "text": "but",
- "offset": 82,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 353.18,
- "end": 353.33,
- "text": "they",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 353.34,
- "end": 353.57,
- "text": "were",
- "offset": 91,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 353.61,
- "end": 354.04,
- "text": "worse.",
- "offset": 96,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "That can be anything from inefficient to dangerous.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 62",
- "words": [
- {
- "text": "That",
- "start": 354.49,
- "end": 354.67
- },
- {
- "text": "can",
- "start": 354.67,
- "end": 354.8
- },
- {
- "text": "be",
- "start": 354.8,
- "end": 354.94
- },
- {
- "text": "anything",
- "start": 354.94,
- "end": 355.3
- },
- {
- "text": "from",
- "start": 355.3,
- "end": 355.46
- },
- {
- "text": "inefficient",
- "start": 355.49,
- "end": 355.9
- },
- {
- "text": "to",
- "start": 355.95,
- "end": 356.13
- },
- {
- "text": "dangerous.",
- "start": 356.14,
- "end": 357
- }
- ],
- "start": 354.49
- },
- "entityRanges": [
- {
- "start": 354.49,
- "end": 354.67,
- "text": "That",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.67,
- "end": 354.8,
- "text": "can",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.8,
- "end": 354.94,
- "text": "be",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.94,
- "end": 355.3,
- "text": "anything",
- "offset": 12,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 355.3,
- "end": 355.46,
- "text": "from",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 355.49,
- "end": 355.9,
- "text": "inefficient",
- "offset": 26,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 355.95,
- "end": 356.13,
- "text": "to",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 356.14,
- "end": 357,
- "text": "dangerous.",
- "offset": 41,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But in other cases.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 63",
- "words": [
- {
- "text": "But",
- "start": 358.53,
- "end": 358.69
- },
- {
- "text": "in",
- "start": 358.69,
- "end": 358.81
- },
- {
- "text": "other",
- "start": 358.81,
- "end": 359.02
- },
- {
- "text": "cases.",
- "start": 359.02,
- "end": 359.42
- }
- ],
- "start": 358.53
- },
- "entityRanges": [
- {
- "start": 358.53,
- "end": 358.69,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 358.69,
- "end": 358.81,
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 358.81,
- "end": 359.02,
- "text": "other",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.02,
- "end": 359.42,
- "text": "cases.",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It can actually be used for the faster this emotional connection to products.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 64",
- "words": [
- {
- "text": "It",
- "start": 359.42,
- "end": 359.49
- },
- {
- "text": "can",
- "start": 359.49,
- "end": 359.63
- },
- {
- "text": "actually",
- "start": 359.63,
- "end": 359.94
- },
- {
- "text": "be",
- "start": 359.94,
- "end": 360.16
- },
- {
- "text": "used",
- "start": 360.16,
- "end": 360.44
- },
- {
- "text": "for",
- "start": 360.44,
- "end": 360.69
- },
- {
- "text": "the",
- "start": 360.69,
- "end": 360.77
- },
- {
- "text": "faster",
- "start": 360.77,
- "end": 361.32
- },
- {
- "text": "this",
- "start": 361.34,
- "end": 361.51
- },
- {
- "text": "emotional",
- "start": 361.51,
- "end": 361.92
- },
- {
- "text": "connection",
- "start": 361.92,
- "end": 362.45
- },
- {
- "text": "to",
- "start": 362.45,
- "end": 362.57
- },
- {
- "text": "products.",
- "start": 362.63,
- "end": 363.3
- }
- ],
- "start": 359.42
- },
- "entityRanges": [
- {
- "start": 359.42,
- "end": 359.49,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.49,
- "end": 359.63,
- "text": "can",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.63,
- "end": 359.94,
- "text": "actually",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.94,
- "end": 360.16,
- "text": "be",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.16,
- "end": 360.44,
- "text": "used",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.44,
- "end": 360.69,
- "text": "for",
- "offset": 24,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.69,
- "end": 360.77,
- "text": "the",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.77,
- "end": 361.32,
- "text": "faster",
- "offset": 32,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 361.34,
- "end": 361.51,
- "text": "this",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 361.51,
- "end": 361.92,
- "text": "emotional",
- "offset": 44,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 361.92,
- "end": 362.45,
- "text": "connection",
- "offset": 54,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 362.45,
- "end": 362.57,
- "text": "to",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 362.63,
- "end": 363.3,
- "text": "products.",
- "offset": 68,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We're really seeing some great use cases.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 65",
- "words": [
- {
- "text": "We're",
- "start": 364.14,
- "end": 364.35
- },
- {
- "text": "really",
- "start": 364.39,
- "end": 364.63
- },
- {
- "text": "seeing",
- "start": 364.63,
- "end": 364.96
- },
- {
- "text": "some",
- "start": 364.96,
- "end": 365.15
- },
- {
- "text": "great",
- "start": 365.15,
- "end": 365.49
- },
- {
- "text": "use",
- "start": 365.49,
- "end": 365.75
- },
- {
- "text": "cases.",
- "start": 365.75,
- "end": 366.26
- }
- ],
- "start": 364.14
- },
- "entityRanges": [
- {
- "start": 364.14,
- "end": 364.35,
- "text": "We're",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.39,
- "end": 364.63,
- "text": "really",
- "offset": 6,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.63,
- "end": 364.96,
- "text": "seeing",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.96,
- "end": 365.15,
- "text": "some",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 365.15,
- "end": 365.49,
- "text": "great",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 365.49,
- "end": 365.75,
- "text": "use",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 365.75,
- "end": 366.26,
- "text": "cases.",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example, robots working with artistic children to engage them in ways that we haven't seen previously a robot's working with teachers to engage kids and running with no results and it's not just for kids early studies show that robots can help doctors and patients and health care settings and this is the Para b.b.c.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 66",
- "words": [
- {
- "text": "For",
- "start": 366.26,
- "end": 366.38
- },
- {
- "text": "example,",
- "start": 366.38,
- "end": 366.89
- },
- {
- "text": "robots",
- "start": 366.89,
- "end": 367.27
- },
- {
- "text": "working",
- "start": 367.29,
- "end": 367.6
- },
- {
- "text": "with",
- "start": 367.6,
- "end": 367.78
- },
- {
- "text": "artistic",
- "start": 367.81,
- "end": 368.42
- },
- {
- "text": "children",
- "start": 368.42,
- "end": 368.95
- },
- {
- "text": "to",
- "start": 368.95,
- "end": 369.1
- },
- {
- "text": "engage",
- "start": 369.1,
- "end": 369.67
- },
- {
- "text": "them",
- "start": 369.67,
- "end": 369.93
- },
- {
- "text": "in",
- "start": 369.93,
- "end": 370.1
- },
- {
- "text": "ways",
- "start": 370.1,
- "end": 370.38
- },
- {
- "text": "that",
- "start": 370.38,
- "end": 370.48
- },
- {
- "text": "we",
- "start": 370.48,
- "end": 370.59
- },
- {
- "text": "haven't",
- "start": 370.59,
- "end": 370.96
- },
- {
- "text": "seen",
- "start": 370.96,
- "end": 371.18
- },
- {
- "text": "previously",
- "start": 371.18,
- "end": 372.04
- },
- {
- "text": "a",
- "start": 372.55,
- "end": 372.78
- },
- {
- "text": "robot's",
- "start": 372.78,
- "end": 373.18
- },
- {
- "text": "working",
- "start": 373.18,
- "end": 373.51
- },
- {
- "text": "with",
- "start": 373.51,
- "end": 373.66
- },
- {
- "text": "teachers",
- "start": 373.66,
- "end": 374.22
- },
- {
- "text": "to",
- "start": 374.22,
- "end": 374.35
- },
- {
- "text": "engage",
- "start": 374.35,
- "end": 374.75
- },
- {
- "text": "kids",
- "start": 374.75,
- "end": 375.03
- },
- {
- "text": "and",
- "start": 375.03,
- "end": 375.17
- },
- {
- "text": "running",
- "start": 375.17,
- "end": 375.59
- },
- {
- "text": "with",
- "start": 375.59,
- "end": 375.77
- },
- {
- "text": "no",
- "start": 375.77,
- "end": 375.9
- },
- {
- "text": "results",
- "start": 375.89,
- "end": 376.65
- },
- {
- "text": "and",
- "start": 377.29,
- "end": 377.4
- },
- {
- "text": "it's",
- "start": 377.51,
- "end": 377.7
- },
- {
- "text": "not",
- "start": 377.7,
- "end": 377.88
- },
- {
- "text": "just",
- "start": 377.88,
- "end": 378.06
- },
- {
- "text": "for",
- "start": 378.06,
- "end": 378.18
- },
- {
- "text": "kids",
- "start": 378.18,
- "end": 378.88
- },
- {
- "text": "early",
- "start": 379.73,
- "end": 380.04
- },
- {
- "text": "studies",
- "start": 380.04,
- "end": 380.42
- },
- {
- "text": "show",
- "start": 380.42,
- "end": 380.74
- },
- {
- "text": "that",
- "start": 380.74,
- "end": 381.05
- },
- {
- "text": "robots",
- "start": 381.08,
- "end": 381.41
- },
- {
- "text": "can",
- "start": 381.41,
- "end": 381.54
- },
- {
- "text": "help",
- "start": 381.54,
- "end": 381.75
- },
- {
- "text": "doctors",
- "start": 381.75,
- "end": 382.27
- },
- {
- "text": "and",
- "start": 382.27,
- "end": 382.36
- },
- {
- "text": "patients",
- "start": 382.36,
- "end": 383.01
- },
- {
- "text": "and",
- "start": 383.01,
- "end": 383.08
- },
- {
- "text": "health",
- "start": 383.08,
- "end": 383.43
- },
- {
- "text": "care",
- "start": 383.43,
- "end": 383.65
- },
- {
- "text": "settings",
- "start": 383.65,
- "end": 384.4
- },
- {
- "text": "and",
- "start": 384.82,
- "end": 385.09
- },
- {
- "text": "this",
- "start": 385.53,
- "end": 385.74
- },
- {
- "text": "is",
- "start": 385.74,
- "end": 385.9
- },
- {
- "text": "the",
- "start": 385.9,
- "end": 385.98
- },
- {
- "text": "Para",
- "start": 385.98,
- "end": 386.41
- },
- {
- "text": "b.b.c.",
- "start": 386.44,
- "end": 386.71
- }
- ],
- "start": 366.26
- },
- "entityRanges": [
- {
- "start": 366.26,
- "end": 366.38,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 366.38,
- "end": 366.89,
- "text": "example,",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 366.89,
- "end": 367.27,
- "text": "robots",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 367.29,
- "end": 367.6,
- "text": "working",
- "offset": 20,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 367.6,
- "end": 367.78,
- "text": "with",
- "offset": 28,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 367.81,
- "end": 368.42,
- "text": "artistic",
- "offset": 33,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 368.42,
- "end": 368.95,
- "text": "children",
- "offset": 42,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 368.95,
- "end": 369.1,
- "text": "to",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 369.1,
- "end": 369.67,
- "text": "engage",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 369.67,
- "end": 369.93,
- "text": "them",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 369.93,
- "end": 370.1,
- "text": "in",
- "offset": 66,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.1,
- "end": 370.38,
- "text": "ways",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.38,
- "end": 370.48,
- "text": "that",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.48,
- "end": 370.59,
- "text": "we",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.59,
- "end": 370.96,
- "text": "haven't",
- "offset": 82,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.96,
- "end": 371.18,
- "text": "seen",
- "offset": 90,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 371.18,
- "end": 372.04,
- "text": "previously",
- "offset": 95,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 372.55,
- "end": 372.78,
- "text": "a",
- "offset": 106,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 372.78,
- "end": 373.18,
- "text": "robot's",
- "offset": 108,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 373.18,
- "end": 373.51,
- "text": "working",
- "offset": 116,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 373.51,
- "end": 373.66,
- "text": "with",
- "offset": 124,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 373.66,
- "end": 374.22,
- "text": "teachers",
- "offset": 129,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 374.22,
- "end": 374.35,
- "text": "to",
- "offset": 138,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 374.35,
- "end": 374.75,
- "text": "engage",
- "offset": 141,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 374.75,
- "end": 375.03,
- "text": "kids",
- "offset": 148,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.03,
- "end": 375.17,
- "text": "and",
- "offset": 153,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.17,
- "end": 375.59,
- "text": "running",
- "offset": 157,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.59,
- "end": 375.77,
- "text": "with",
- "offset": 165,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.77,
- "end": 375.9,
- "text": "no",
- "offset": 170,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.89,
- "end": 376.65,
- "text": "results",
- "offset": 173,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.29,
- "end": 377.4,
- "text": "and",
- "offset": 181,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.51,
- "end": 377.7,
- "text": "it's",
- "offset": 185,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.7,
- "end": 377.88,
- "text": "not",
- "offset": 190,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.88,
- "end": 378.06,
- "text": "just",
- "offset": 194,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 378.06,
- "end": 378.18,
- "text": "for",
- "offset": 199,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 378.18,
- "end": 378.88,
- "text": "kids",
- "offset": 203,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 379.73,
- "end": 380.04,
- "text": "early",
- "offset": 208,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 380.04,
- "end": 380.42,
- "text": "studies",
- "offset": 214,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 380.42,
- "end": 380.74,
- "text": "show",
- "offset": 222,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 380.74,
- "end": 381.05,
- "text": "that",
- "offset": 227,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.08,
- "end": 381.41,
- "text": "robots",
- "offset": 232,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.41,
- "end": 381.54,
- "text": "can",
- "offset": 239,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.54,
- "end": 381.75,
- "text": "help",
- "offset": 243,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.75,
- "end": 382.27,
- "text": "doctors",
- "offset": 248,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 382.27,
- "end": 382.36,
- "text": "and",
- "offset": 256,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 382.36,
- "end": 383.01,
- "text": "patients",
- "offset": 260,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.01,
- "end": 383.08,
- "text": "and",
- "offset": 269,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.08,
- "end": 383.43,
- "text": "health",
- "offset": 273,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.43,
- "end": 383.65,
- "text": "care",
- "offset": 280,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.65,
- "end": 384.4,
- "text": "settings",
- "offset": 285,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 384.82,
- "end": 385.09,
- "text": "and",
- "offset": 294,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.53,
- "end": 385.74,
- "text": "this",
- "offset": 298,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.74,
- "end": 385.9,
- "text": "is",
- "offset": 303,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.9,
- "end": 385.98,
- "text": "the",
- "offset": 306,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.98,
- "end": 386.41,
- "text": "Para",
- "offset": 310,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 386.44,
- "end": 386.71,
- "text": "b.b.c.",
- "offset": 315,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Euro, but is used in nursing homes and with dementia patients has been around for a while and I remember years ago.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 67",
- "words": [
- {
- "text": "Euro,",
- "start": 386.77,
- "end": 386.99
- },
- {
- "text": "but",
- "start": 387.04,
- "end": 387.33
- },
- {
- "text": "is",
- "start": 387.36,
- "end": 387.55
- },
- {
- "text": "used",
- "start": 387.55,
- "end": 387.91
- },
- {
- "text": "in",
- "start": 387.94,
- "end": 388.06
- },
- {
- "text": "nursing",
- "start": 388.06,
- "end": 388.48
- },
- {
- "text": "homes",
- "start": 388.48,
- "end": 388.94
- },
- {
- "text": "and",
- "start": 388.94,
- "end": 389
- },
- {
- "text": "with",
- "start": 388.99,
- "end": 389.15
- },
- {
- "text": "dementia",
- "start": 389.16,
- "end": 389.63
- },
- {
- "text": "patients",
- "start": 389.63,
- "end": 390.37
- },
- {
- "text": "has",
- "start": 390.52,
- "end": 390.65
- },
- {
- "text": "been",
- "start": 390.65,
- "end": 390.78
- },
- {
- "text": "around",
- "start": 390.78,
- "end": 391.08
- },
- {
- "text": "for",
- "start": 391.08,
- "end": 391.22
- },
- {
- "text": "a",
- "start": 391.22,
- "end": 391.3
- },
- {
- "text": "while",
- "start": 391.3,
- "end": 391.83
- },
- {
- "text": "and",
- "start": 392.17,
- "end": 392.3
- },
- {
- "text": "I",
- "start": 392.35,
- "end": 392.47
- },
- {
- "text": "remember",
- "start": 392.47,
- "end": 393.02
- },
- {
- "text": "years",
- "start": 393.36,
- "end": 393.81
- },
- {
- "text": "ago.",
- "start": 393.81,
- "end": 394.06
- }
- ],
- "start": 386.77
- },
- "entityRanges": [
- {
- "start": 386.77,
- "end": 386.99,
- "text": "Euro,",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.04,
- "end": 387.33,
- "text": "but",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.36,
- "end": 387.55,
- "text": "is",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.55,
- "end": 387.91,
- "text": "used",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.94,
- "end": 388.06,
- "text": "in",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.06,
- "end": 388.48,
- "text": "nursing",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.48,
- "end": 388.94,
- "text": "homes",
- "offset": 29,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.94,
- "end": 389,
- "text": "and",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.99,
- "end": 389.15,
- "text": "with",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 389.16,
- "end": 389.63,
- "text": "dementia",
- "offset": 44,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 389.63,
- "end": 390.37,
- "text": "patients",
- "offset": 53,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 390.52,
- "end": 390.65,
- "text": "has",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 390.65,
- "end": 390.78,
- "text": "been",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 390.78,
- "end": 391.08,
- "text": "around",
- "offset": 71,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 391.08,
- "end": 391.22,
- "text": "for",
- "offset": 78,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 391.22,
- "end": 391.3,
- "text": "a",
- "offset": 82,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 391.3,
- "end": 391.83,
- "text": "while",
- "offset": 84,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 392.17,
- "end": 392.3,
- "text": "and",
- "offset": 90,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 392.35,
- "end": 392.47,
- "text": "I",
- "offset": 94,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 392.47,
- "end": 393.02,
- "text": "remember",
- "offset": 96,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 393.36,
- "end": 393.81,
- "text": "years",
- "offset": 105,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 393.81,
- "end": 394.06,
- "text": "ago.",
- "offset": 111,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Being at a party and telling someone about this throwback and her response was on my cart.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 68",
- "words": [
- {
- "text": "Being",
- "start": 394.06,
- "end": 394.25
- },
- {
- "text": "at",
- "start": 394.25,
- "end": 394.3
- },
- {
- "text": "a",
- "start": 394.3,
- "end": 394.37
- },
- {
- "text": "party",
- "start": 394.38,
- "end": 395.12
- },
- {
- "text": "and",
- "start": 395.6,
- "end": 395.75
- },
- {
- "text": "telling",
- "start": 395.75,
- "end": 396.19
- },
- {
- "text": "someone",
- "start": 396.19,
- "end": 396.44
- },
- {
- "text": "about",
- "start": 396.44,
- "end": 396.7
- },
- {
- "text": "this",
- "start": 396.71,
- "end": 396.83
- },
- {
- "text": "throwback",
- "start": 396.9,
- "end": 397.34
- },
- {
- "text": "and",
- "start": 398.18,
- "end": 398.33
- },
- {
- "text": "her",
- "start": 398.36,
- "end": 398.54
- },
- {
- "text": "response",
- "start": 398.54,
- "end": 399.06
- },
- {
- "text": "was",
- "start": 399.06,
- "end": 399.67
- },
- {
- "text": "on",
- "start": 400.34,
- "end": 400.54
- },
- {
- "text": "my",
- "start": 400.54,
- "end": 400.63
- },
- {
- "text": "cart.",
- "start": 400.64,
- "end": 401.35
- }
- ],
- "start": 394.06
- },
- "entityRanges": [
- {
- "start": 394.06,
- "end": 394.25,
- "text": "Being",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 394.25,
- "end": 394.3,
- "text": "at",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 394.3,
- "end": 394.37,
- "text": "a",
- "offset": 9,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 394.38,
- "end": 395.12,
- "text": "party",
- "offset": 11,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 395.6,
- "end": 395.75,
- "text": "and",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 395.75,
- "end": 396.19,
- "text": "telling",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.19,
- "end": 396.44,
- "text": "someone",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.44,
- "end": 396.7,
- "text": "about",
- "offset": 37,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.71,
- "end": 396.83,
- "text": "this",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.9,
- "end": 397.34,
- "text": "throwback",
- "offset": 48,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 398.18,
- "end": 398.33,
- "text": "and",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 398.36,
- "end": 398.54,
- "text": "her",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 398.54,
- "end": 399.06,
- "text": "response",
- "offset": 66,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 399.06,
- "end": 399.67,
- "text": "was",
- "offset": 75,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 400.34,
- "end": 400.54,
- "text": "on",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 400.54,
- "end": 400.63,
- "text": "my",
- "offset": 82,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 400.64,
- "end": 401.35,
- "text": "cart.",
- "offset": 85,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I can't believe you're giving people robots instead of human care.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 69",
- "words": [
- {
- "text": "I",
- "start": 405.04,
- "end": 405.13
- },
- {
- "text": "can't",
- "start": 405.13,
- "end": 405.46
- },
- {
- "text": "believe",
- "start": 405.46,
- "end": 405.78
- },
- {
- "text": "you're",
- "start": 405.78,
- "end": 405.89
- },
- {
- "text": "giving",
- "start": 405.88,
- "end": 406.17
- },
- {
- "text": "people",
- "start": 406.17,
- "end": 406.55
- },
- {
- "text": "robots",
- "start": 406.56,
- "end": 407.1
- },
- {
- "text": "instead",
- "start": 407.11,
- "end": 407.45
- },
- {
- "text": "of",
- "start": 407.45,
- "end": 407.53
- },
- {
- "text": "human",
- "start": 407.53,
- "end": 407.89
- },
- {
- "text": "care.",
- "start": 407.89,
- "end": 408.39
- }
- ],
- "start": 405.04
- },
- "entityRanges": [
- {
- "start": 405.04,
- "end": 405.13,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.13,
- "end": 405.46,
- "text": "can't",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.46,
- "end": 405.78,
- "text": "believe",
- "offset": 8,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.78,
- "end": 405.89,
- "text": "you're",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.88,
- "end": 406.17,
- "text": "giving",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 406.17,
- "end": 406.55,
- "text": "people",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 406.56,
- "end": 407.1,
- "text": "robots",
- "offset": 37,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.11,
- "end": 407.45,
- "text": "instead",
- "offset": 44,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.45,
- "end": 407.53,
- "text": "of",
- "offset": 52,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.53,
- "end": 407.89,
- "text": "human",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.89,
- "end": 408.39,
- "text": "care.",
- "offset": 61,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And this is a really common response and I think it's absolutely cracked because that would be terrible.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 70",
- "words": [
- {
- "text": "And",
- "start": 410.47,
- "end": 410.57
- },
- {
- "text": "this",
- "start": 410.65,
- "end": 410.83
- },
- {
- "text": "is",
- "start": 410.83,
- "end": 410.94
- },
- {
- "text": "a",
- "start": 410.94,
- "end": 411.06
- },
- {
- "text": "really",
- "start": 411.06,
- "end": 411.35
- },
- {
- "text": "common",
- "start": 411.35,
- "end": 411.67
- },
- {
- "text": "response",
- "start": 411.67,
- "end": 412.38
- },
- {
- "text": "and",
- "start": 412.41,
- "end": 412.68
- },
- {
- "text": "I",
- "start": 412.71,
- "end": 412.81
- },
- {
- "text": "think",
- "start": 412.81,
- "end": 413.01
- },
- {
- "text": "it's",
- "start": 413.01,
- "end": 413.17
- },
- {
- "text": "absolutely",
- "start": 413.24,
- "end": 414.05
- },
- {
- "text": "cracked",
- "start": 414.05,
- "end": 414.72
- },
- {
- "text": "because",
- "start": 414.93,
- "end": 415.28
- },
- {
- "text": "that",
- "start": 415.31,
- "end": 415.62
- },
- {
- "text": "would",
- "start": 415.62,
- "end": 415.91
- },
- {
- "text": "be",
- "start": 415.91,
- "end": 416.13
- },
- {
- "text": "terrible.",
- "start": 416.13,
- "end": 416.94
- }
- ],
- "start": 410.47
- },
- "entityRanges": [
- {
- "start": 410.47,
- "end": 410.57,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 410.65,
- "end": 410.83,
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 410.83,
- "end": 410.94,
- "text": "is",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 410.94,
- "end": 411.06,
- "text": "a",
- "offset": 12,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 411.06,
- "end": 411.35,
- "text": "really",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 411.35,
- "end": 411.67,
- "text": "common",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 411.67,
- "end": 412.38,
- "text": "response",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 412.41,
- "end": 412.68,
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 412.71,
- "end": 412.81,
- "text": "I",
- "offset": 41,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 412.81,
- "end": 413.01,
- "text": "think",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 413.01,
- "end": 413.17,
- "text": "it's",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 413.24,
- "end": 414.05,
- "text": "absolutely",
- "offset": 54,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 414.05,
- "end": 414.72,
- "text": "cracked",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 414.93,
- "end": 415.28,
- "text": "because",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 415.31,
- "end": 415.62,
- "text": "that",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 415.62,
- "end": 415.91,
- "text": "would",
- "offset": 86,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 415.91,
- "end": 416.13,
- "text": "be",
- "offset": 92,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 416.13,
- "end": 416.94,
- "text": "terrible.",
- "offset": 95,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But in this case.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 71",
- "words": [
- {
- "text": "But",
- "start": 417.78,
- "end": 417.94
- },
- {
- "text": "in",
- "start": 417.94,
- "end": 418.05
- },
- {
- "text": "this",
- "start": 418.05,
- "end": 418.24
- },
- {
- "text": "case.",
- "start": 418.24,
- "end": 418.46
- }
- ],
- "start": 417.78
- },
- "entityRanges": [
- {
- "start": 417.78,
- "end": 417.94,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 417.94,
- "end": 418.05,
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.05,
- "end": 418.24,
- "text": "this",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.24,
- "end": 418.46,
- "text": "case.",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's not with this robot replaces what this robot replaces his animal therapy in context where we kit.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 72",
- "words": [
- {
- "text": "It's",
- "start": 418.46,
- "end": 418.6
- },
- {
- "text": "not",
- "start": 418.6,
- "end": 418.83
- },
- {
- "text": "with",
- "start": 418.83,
- "end": 418.91
- },
- {
- "text": "this",
- "start": 418.91,
- "end": 419.08
- },
- {
- "text": "robot",
- "start": 419.08,
- "end": 419.41
- },
- {
- "text": "replaces",
- "start": 419.45,
- "end": 420.28
- },
- {
- "text": "what",
- "start": 420.67,
- "end": 420.95
- },
- {
- "text": "this",
- "start": 420.96,
- "end": 421.16
- },
- {
- "text": "robot",
- "start": 421.16,
- "end": 421.55
- },
- {
- "text": "replaces",
- "start": 421.55,
- "end": 422.25
- },
- {
- "text": "his",
- "start": 422.28,
- "end": 422.49
- },
- {
- "text": "animal",
- "start": 422.56,
- "end": 422.91
- },
- {
- "text": "therapy",
- "start": 422.91,
- "end": 423.65
- },
- {
- "text": "in",
- "start": 423.97,
- "end": 424.13
- },
- {
- "text": "context",
- "start": 424.14,
- "end": 424.77
- },
- {
- "text": "where",
- "start": 424.77,
- "end": 424.87
- },
- {
- "text": "we",
- "start": 424.87,
- "end": 425.02
- },
- {
- "text": "kit.",
- "start": 425.02,
- "end": 425.47
- }
- ],
- "start": 418.46
- },
- "entityRanges": [
- {
- "start": 418.46,
- "end": 418.6,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.6,
- "end": 418.83,
- "text": "not",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.83,
- "end": 418.91,
- "text": "with",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.91,
- "end": 419.08,
- "text": "this",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 419.08,
- "end": 419.41,
- "text": "robot",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 419.45,
- "end": 420.28,
- "text": "replaces",
- "offset": 25,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 420.67,
- "end": 420.95,
- "text": "what",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 420.96,
- "end": 421.16,
- "text": "this",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 421.16,
- "end": 421.55,
- "text": "robot",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 421.55,
- "end": 422.25,
- "text": "replaces",
- "offset": 50,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 422.28,
- "end": 422.49,
- "text": "his",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 422.56,
- "end": 422.91,
- "text": "animal",
- "offset": 63,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 422.91,
- "end": 423.65,
- "text": "therapy",
- "offset": 70,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 423.97,
- "end": 424.13,
- "text": "in",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 424.14,
- "end": 424.77,
- "text": "context",
- "offset": 81,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 424.77,
- "end": 424.87,
- "text": "where",
- "offset": 89,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 424.87,
- "end": 425.02,
- "text": "we",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 425.02,
- "end": 425.47,
- "text": "kit.",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Use real animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 73",
- "words": [
- {
- "text": "Use",
- "start": 425.47,
- "end": 425.8
- },
- {
- "text": "real",
- "start": 425.83,
- "end": 426.15
- },
- {
- "text": "animals.",
- "start": 426.15,
- "end": 426.89
- }
- ],
- "start": 425.47
- },
- "entityRanges": [
- {
- "start": 425.47,
- "end": 425.8,
- "text": "Use",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 425.83,
- "end": 426.15,
- "text": "real",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 426.15,
- "end": 426.89,
- "text": "animals.",
- "offset": 9,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We can use robots because people were consistently treat them like more.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 74",
- "words": [
- {
- "text": "We",
- "start": 427.25,
- "end": 427.44
- },
- {
- "text": "can",
- "start": 427.44,
- "end": 427.78
- },
- {
- "text": "use",
- "start": 427.78,
- "end": 427.96
- },
- {
- "text": "robots",
- "start": 427.96,
- "end": 428.38
- },
- {
- "text": "because",
- "start": 428.38,
- "end": 428.66
- },
- {
- "text": "people",
- "start": 428.66,
- "end": 428.97
- },
- {
- "text": "were",
- "start": 428.97,
- "end": 429.05
- },
- {
- "text": "consistently",
- "start": 429.06,
- "end": 429.96
- },
- {
- "text": "treat",
- "start": 429.96,
- "end": 430.32
- },
- {
- "text": "them",
- "start": 430.32,
- "end": 430.63
- },
- {
- "text": "like",
- "start": 430.66,
- "end": 430.87
- },
- {
- "text": "more.",
- "start": 430.87,
- "end": 431.33
- }
- ],
- "start": 427.25
- },
- "entityRanges": [
- {
- "start": 427.25,
- "end": 427.44,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 427.44,
- "end": 427.78,
- "text": "can",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 427.78,
- "end": 427.96,
- "text": "use",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 427.96,
- "end": 428.38,
- "text": "robots",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 428.38,
- "end": 428.66,
- "text": "because",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 428.66,
- "end": 428.97,
- "text": "people",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 428.97,
- "end": 429.05,
- "text": "were",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 429.06,
- "end": 429.96,
- "text": "consistently",
- "offset": 38,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 429.96,
- "end": 430.32,
- "text": "treat",
- "offset": 51,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 430.32,
- "end": 430.63,
- "text": "them",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 430.66,
- "end": 430.87,
- "text": "like",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 430.87,
- "end": 431.33,
- "text": "more.",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "More like an animal and a device acknowledging this emotional connection.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 75",
- "words": [
- {
- "text": "More",
- "start": 431.79,
- "end": 431.99
- },
- {
- "text": "like",
- "start": 431.99,
- "end": 432.24
- },
- {
- "text": "an",
- "start": 432.24,
- "end": 432.3
- },
- {
- "text": "animal",
- "start": 432.34,
- "end": 432.88
- },
- {
- "text": "and",
- "start": 432.91,
- "end": 433.05
- },
- {
- "text": "a",
- "start": 433.05,
- "end": 433.11
- },
- {
- "text": "device",
- "start": 433.1,
- "end": 433.61
- },
- {
- "text": "acknowledging",
- "start": 435.49,
- "end": 436.2
- },
- {
- "text": "this",
- "start": 436.2,
- "end": 436.36
- },
- {
- "text": "emotional",
- "start": 436.36,
- "end": 436.74
- },
- {
- "text": "connection.",
- "start": 436.74,
- "end": 437.22
- }
- ],
- "start": 431.79
- },
- "entityRanges": [
- {
- "start": 431.79,
- "end": 431.99,
- "text": "More",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 431.99,
- "end": 432.24,
- "text": "like",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 432.24,
- "end": 432.3,
- "text": "an",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 432.34,
- "end": 432.88,
- "text": "animal",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 432.91,
- "end": 433.05,
- "text": "and",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 433.05,
- "end": 433.11,
- "text": "a",
- "offset": 24,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 433.1,
- "end": 433.61,
- "text": "device",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 435.49,
- "end": 436.2,
- "text": "acknowledging",
- "offset": 33,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 436.2,
- "end": 436.36,
- "text": "this",
- "offset": 47,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 436.36,
- "end": 436.74,
- "text": "emotional",
- "offset": 52,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 436.74,
- "end": 437.22,
- "text": "connection.",
- "offset": 62,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Roberts can also help us anticipate challenges as these devices.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 76",
- "words": [
- {
- "text": "Roberts",
- "start": 437.22,
- "end": 437.48
- },
- {
- "text": "can",
- "start": 437.58,
- "end": 437.74
- },
- {
- "text": "also",
- "start": 437.74,
- "end": 438.02
- },
- {
- "text": "help",
- "start": 438.02,
- "end": 438.24
- },
- {
- "text": "us",
- "start": 438.24,
- "end": 438.41
- },
- {
- "text": "anticipate",
- "start": 438.41,
- "end": 438.92
- },
- {
- "text": "challenges",
- "start": 438.92,
- "end": 439.85
- },
- {
- "text": "as",
- "start": 439.88,
- "end": 440.13
- },
- {
- "text": "these",
- "start": 440.13,
- "end": 440.28
- },
- {
- "text": "devices.",
- "start": 440.28,
- "end": 440.87
- }
- ],
- "start": 437.22
- },
- "entityRanges": [
- {
- "start": 437.22,
- "end": 437.48,
- "text": "Roberts",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 437.58,
- "end": 437.74,
- "text": "can",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 437.74,
- "end": 438.02,
- "text": "also",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.02,
- "end": 438.24,
- "text": "help",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.24,
- "end": 438.41,
- "text": "us",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.41,
- "end": 438.92,
- "text": "anticipate",
- "offset": 25,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.92,
- "end": 439.85,
- "text": "challenges",
- "offset": 36,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 439.88,
- "end": 440.13,
- "text": "as",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 440.13,
- "end": 440.28,
- "text": "these",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 440.28,
- "end": 440.87,
- "text": "devices.",
- "offset": 56,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Move into more intimate areas of people's lives.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 77",
- "words": [
- {
- "text": "Move",
- "start": 440.87,
- "end": 441.22
- },
- {
- "text": "into",
- "start": 441.23,
- "end": 441.42
- },
- {
- "text": "more",
- "start": 441.42,
- "end": 441.57
- },
- {
- "text": "intimate",
- "start": 441.6,
- "end": 442.02
- },
- {
- "text": "areas",
- "start": 442.02,
- "end": 442.34
- },
- {
- "text": "of",
- "start": 442.34,
- "end": 442.43
- },
- {
- "text": "people's",
- "start": 442.43,
- "end": 442.78
- },
- {
- "text": "lives.",
- "start": 442.78,
- "end": 443.4
- }
- ],
- "start": 440.87
- },
- "entityRanges": [
- {
- "start": 440.87,
- "end": 441.22,
- "text": "Move",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 441.23,
- "end": 441.42,
- "text": "into",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 441.42,
- "end": 441.57,
- "text": "more",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 441.6,
- "end": 442.02,
- "text": "intimate",
- "offset": 15,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.02,
- "end": 442.34,
- "text": "areas",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.34,
- "end": 442.43,
- "text": "of",
- "offset": 30,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.43,
- "end": 442.78,
- "text": "people's",
- "offset": 33,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.78,
- "end": 443.4,
- "text": "lives.",
- "offset": 42,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example is it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 78",
- "words": [
- {
- "text": "For",
- "start": 444.07,
- "end": 444.23
- },
- {
- "text": "example",
- "start": 444.23,
- "end": 444.8
- },
- {
- "text": "is",
- "start": 444.83,
- "end": 444.98
- },
- {
- "text": "it.",
- "start": 444.98,
- "end": 445.07
- }
- ],
- "start": 444.07
- },
- "entityRanges": [
- {
- "start": 444.07,
- "end": 444.23,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.23,
- "end": 444.8,
- "text": "example",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.83,
- "end": 444.98,
- "text": "is",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.98,
- "end": 445.07,
- "text": "it.",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 79",
- "words": [
- {
- "text": "o.k.",
- "start": 445.07,
- "end": 445.5
- }
- ],
- "start": 445.07
- },
- "entityRanges": [
- {
- "start": 445.07,
- "end": 445.5,
- "text": "o.k.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If your child's teddy bear about records private conversations.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 80",
- "words": [
- {
- "text": "If",
- "start": 445.51,
- "end": 445.64
- },
- {
- "text": "your",
- "start": 445.64,
- "end": 445.74
- },
- {
- "text": "child's",
- "start": 445.74,
- "end": 446.42
- },
- {
- "text": "teddy",
- "start": 446.68,
- "end": 446.99
- },
- {
- "text": "bear",
- "start": 446.99,
- "end": 447.17
- },
- {
- "text": "about",
- "start": 447.18,
- "end": 447.55
- },
- {
- "text": "records",
- "start": 447.55,
- "end": 447.87
- },
- {
- "text": "private",
- "start": 447.87,
- "end": 448.19
- },
- {
- "text": "conversations.",
- "start": 448.19,
- "end": 449.2
- }
- ],
- "start": 445.51
- },
- "entityRanges": [
- {
- "start": 445.51,
- "end": 445.64,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 445.64,
- "end": 445.74,
- "text": "your",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 445.74,
- "end": 446.42,
- "text": "child's",
- "offset": 8,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 446.68,
- "end": 446.99,
- "text": "teddy",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 446.99,
- "end": 447.17,
- "text": "bear",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 447.18,
- "end": 447.55,
- "text": "about",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 447.55,
- "end": 447.87,
- "text": "records",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 447.87,
- "end": 448.19,
- "text": "private",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 448.19,
- "end": 449.2,
- "text": "conversations.",
- "offset": 49,
- "length": 14,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Is it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 81",
- "words": [
- {
- "text": "Is",
- "start": 449.76,
- "end": 449.88
- },
- {
- "text": "it.",
- "start": 449.88,
- "end": 449.98
- }
- ],
- "start": 449.76
- },
- "entityRanges": [
- {
- "start": 449.76,
- "end": 449.88,
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 449.88,
- "end": 449.98,
- "text": "it.",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 82",
- "words": [
- {
- "text": "o.k.",
- "start": 449.98,
- "end": 450.3
- }
- ],
- "start": 449.98
- },
- "entityRanges": [
- {
- "start": 449.98,
- "end": 450.3,
- "text": "o.k.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If your sex robot has compelling in a as if because of rope have left capitalism equals questions around consumer protection and private and those aren't the only reason, said her behaviour around these machines could matter.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 83",
- "words": [
- {
- "text": "If",
- "start": 450.3,
- "end": 450.43
- },
- {
- "text": "your",
- "start": 450.43,
- "end": 450.58
- },
- {
- "text": "sex",
- "start": 450.59,
- "end": 451.04
- },
- {
- "text": "robot",
- "start": 451.04,
- "end": 451.46
- },
- {
- "text": "has",
- "start": 451.46,
- "end": 451.65
- },
- {
- "text": "compelling",
- "start": 451.65,
- "end": 452.31
- },
- {
- "text": "in",
- "start": 452.34,
- "end": 452.54
- },
- {
- "text": "a",
- "start": 452.55,
- "end": 452.89
- },
- {
- "text": "as",
- "start": 453.31,
- "end": 453.64
- },
- {
- "text": "if",
- "start": 454.22,
- "end": 455.01
- },
- {
- "text": "because",
- "start": 455.29,
- "end": 455.66
- },
- {
- "text": "of",
- "start": 455.66,
- "end": 455.75
- },
- {
- "text": "rope",
- "start": 455.75,
- "end": 456.03
- },
- {
- "text": "have",
- "start": 456.03,
- "end": 456.3
- },
- {
- "text": "left",
- "start": 456.32,
- "end": 456.67
- },
- {
- "text": "capitalism",
- "start": 456.68,
- "end": 457.78
- },
- {
- "text": "equals",
- "start": 457.81,
- "end": 458.17
- },
- {
- "text": "questions",
- "start": 458.17,
- "end": 458.9
- },
- {
- "text": "around",
- "start": 458.93,
- "end": 459.53
- },
- {
- "text": "consumer",
- "start": 459.72,
- "end": 460.18
- },
- {
- "text": "protection",
- "start": 460.18,
- "end": 460.79
- },
- {
- "text": "and",
- "start": 460.79,
- "end": 460.89
- },
- {
- "text": "private",
- "start": 460.9,
- "end": 461.47
- },
- {
- "text": "and",
- "start": 462.55,
- "end": 462.69
- },
- {
- "text": "those",
- "start": 462.69,
- "end": 462.9
- },
- {
- "text": "aren't",
- "start": 462.9,
- "end": 463.14
- },
- {
- "text": "the",
- "start": 463.14,
- "end": 463.27
- },
- {
- "text": "only",
- "start": 463.27,
- "end": 463.54
- },
- {
- "text": "reason,",
- "start": 463.54,
- "end": 463.9
- },
- {
- "text": "said",
- "start": 463.9,
- "end": 464.05
- },
- {
- "text": "her",
- "start": 464.05,
- "end": 464.19
- },
- {
- "text": "behaviour",
- "start": 464.19,
- "end": 464.78
- },
- {
- "text": "around",
- "start": 464.78,
- "end": 465.04
- },
- {
- "text": "these",
- "start": 465.04,
- "end": 465.21
- },
- {
- "text": "machines",
- "start": 465.21,
- "end": 465.64
- },
- {
- "text": "could",
- "start": 465.64,
- "end": 465.83
- },
- {
- "text": "matter.",
- "start": 465.83,
- "end": 466.27
- }
- ],
- "start": 450.3
- },
- "entityRanges": [
- {
- "start": 450.3,
- "end": 450.43,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 450.43,
- "end": 450.58,
- "text": "your",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 450.59,
- "end": 451.04,
- "text": "sex",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 451.04,
- "end": 451.46,
- "text": "robot",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 451.46,
- "end": 451.65,
- "text": "has",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 451.65,
- "end": 452.31,
- "text": "compelling",
- "offset": 22,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 452.34,
- "end": 452.54,
- "text": "in",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 452.55,
- "end": 452.89,
- "text": "a",
- "offset": 36,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 453.31,
- "end": 453.64,
- "text": "as",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 454.22,
- "end": 455.01,
- "text": "if",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 455.29,
- "end": 455.66,
- "text": "because",
- "offset": 44,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 455.66,
- "end": 455.75,
- "text": "of",
- "offset": 52,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 455.75,
- "end": 456.03,
- "text": "rope",
- "offset": 55,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 456.03,
- "end": 456.3,
- "text": "have",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 456.32,
- "end": 456.67,
- "text": "left",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 456.68,
- "end": 457.78,
- "text": "capitalism",
- "offset": 70,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 457.81,
- "end": 458.17,
- "text": "equals",
- "offset": 81,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 458.17,
- "end": 458.9,
- "text": "questions",
- "offset": 88,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 458.93,
- "end": 459.53,
- "text": "around",
- "offset": 98,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 459.72,
- "end": 460.18,
- "text": "consumer",
- "offset": 105,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 460.18,
- "end": 460.79,
- "text": "protection",
- "offset": 114,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 460.79,
- "end": 460.89,
- "text": "and",
- "offset": 125,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 460.9,
- "end": 461.47,
- "text": "private",
- "offset": 129,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 462.55,
- "end": 462.69,
- "text": "and",
- "offset": 137,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 462.69,
- "end": 462.9,
- "text": "those",
- "offset": 141,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 462.9,
- "end": 463.14,
- "text": "aren't",
- "offset": 147,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.14,
- "end": 463.27,
- "text": "the",
- "offset": 154,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.27,
- "end": 463.54,
- "text": "only",
- "offset": 158,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.54,
- "end": 463.9,
- "text": "reason,",
- "offset": 163,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.9,
- "end": 464.05,
- "text": "said",
- "offset": 171,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 464.05,
- "end": 464.19,
- "text": "her",
- "offset": 176,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 464.19,
- "end": 464.78,
- "text": "behaviour",
- "offset": 180,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 464.78,
- "end": 465.04,
- "text": "around",
- "offset": 190,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.04,
- "end": 465.21,
- "text": "these",
- "offset": 197,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.21,
- "end": 465.64,
- "text": "machines",
- "offset": 203,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.64,
- "end": 465.83,
- "text": "could",
- "offset": 212,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.83,
- "end": 466.27,
- "text": "matter.",
- "offset": 218,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "A few years after that first initial experience.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 84",
- "words": [
- {
- "text": "A",
- "start": 468.75,
- "end": 468.83
- },
- {
- "text": "few",
- "start": 468.83,
- "end": 469.1
- },
- {
- "text": "years",
- "start": 469.1,
- "end": 469.36
- },
- {
- "text": "after",
- "start": 469.36,
- "end": 470.1
- },
- {
- "text": "that",
- "start": 470.14,
- "end": 470.36
- },
- {
- "text": "first",
- "start": 470.36,
- "end": 470.7
- },
- {
- "text": "initial",
- "start": 470.7,
- "end": 471.09
- },
- {
- "text": "experience.",
- "start": 471.09,
- "end": 471.72
- }
- ],
- "start": 468.75
- },
- "entityRanges": [
- {
- "start": 468.75,
- "end": 468.83,
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 468.83,
- "end": 469.1,
- "text": "few",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 469.1,
- "end": 469.36,
- "text": "years",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 469.36,
- "end": 470.1,
- "text": "after",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 470.14,
- "end": 470.36,
- "text": "that",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 470.36,
- "end": 470.7,
- "text": "first",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 470.7,
- "end": 471.09,
- "text": "initial",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 471.09,
- "end": 471.72,
- "text": "experience.",
- "offset": 37,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I had with this baby dinosaur role that I do workshop with my friend Hannah Scott sort.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 85",
- "words": [
- {
- "text": "I",
- "start": 471.72,
- "end": 471.8
- },
- {
- "text": "had",
- "start": 471.8,
- "end": 472.08
- },
- {
- "text": "with",
- "start": 472.08,
- "end": 472.21
- },
- {
- "text": "this",
- "start": 472.21,
- "end": 472.42
- },
- {
- "text": "baby",
- "start": 472.42,
- "end": 472.67
- },
- {
- "text": "dinosaur",
- "start": 472.67,
- "end": 473.12
- },
- {
- "text": "role",
- "start": 473.12,
- "end": 473.28
- },
- {
- "text": "that",
- "start": 473.28,
- "end": 473.67
- },
- {
- "text": "I",
- "start": 474.11,
- "end": 474.26
- },
- {
- "text": "do",
- "start": 474.47,
- "end": 474.69
- },
- {
- "text": "workshop",
- "start": 474.71,
- "end": 475.16
- },
- {
- "text": "with",
- "start": 475.16,
- "end": 475.29
- },
- {
- "text": "my",
- "start": 475.29,
- "end": 475.39
- },
- {
- "text": "friend",
- "start": 475.39,
- "end": 475.69
- },
- {
- "text": "Hannah",
- "start": 475.69,
- "end": 475.96
- },
- {
- "text": "Scott",
- "start": 475.96,
- "end": 476.27
- },
- {
- "text": "sort.",
- "start": 476.28,
- "end": 476.73
- }
- ],
- "start": 471.72
- },
- "entityRanges": [
- {
- "start": 471.72,
- "end": 471.8,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 471.8,
- "end": 472.08,
- "text": "had",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.08,
- "end": 472.21,
- "text": "with",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.21,
- "end": 472.42,
- "text": "this",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.42,
- "end": 472.67,
- "text": "baby",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.67,
- "end": 473.12,
- "text": "dinosaur",
- "offset": 21,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 473.12,
- "end": 473.28,
- "text": "role",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 473.28,
- "end": 473.67,
- "text": "that",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 474.11,
- "end": 474.26,
- "text": "I",
- "offset": 40,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 474.47,
- "end": 474.69,
- "text": "do",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 474.71,
- "end": 475.16,
- "text": "workshop",
- "offset": 45,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.16,
- "end": 475.29,
- "text": "with",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.29,
- "end": 475.39,
- "text": "my",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.39,
- "end": 475.69,
- "text": "friend",
- "offset": 62,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.69,
- "end": 475.96,
- "text": "Hannah",
- "offset": 69,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.96,
- "end": 476.27,
- "text": "Scott",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 476.28,
- "end": 476.73,
- "text": "sort.",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Then we took five of these baby dinosaur about we give them.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 86",
- "words": [
- {
- "text": "Then",
- "start": 476.89,
- "end": 477.27
- },
- {
- "text": "we",
- "start": 477.55,
- "end": 477.68
- },
- {
- "text": "took",
- "start": 477.68,
- "end": 477.88
- },
- {
- "text": "five",
- "start": 477.88,
- "end": 478.26
- },
- {
- "text": "of",
- "start": 478.26,
- "end": 478.36
- },
- {
- "text": "these",
- "start": 478.36,
- "end": 478.67
- },
- {
- "text": "baby",
- "start": 478.67,
- "end": 478.9
- },
- {
- "text": "dinosaur",
- "start": 478.9,
- "end": 479.38
- },
- {
- "text": "about",
- "start": 479.39,
- "end": 479.77
- },
- {
- "text": "we",
- "start": 479.82,
- "end": 479.98
- },
- {
- "text": "give",
- "start": 479.99,
- "end": 480.19
- },
- {
- "text": "them.",
- "start": 480.19,
- "end": 480.33
- }
- ],
- "start": 476.89
- },
- "entityRanges": [
- {
- "start": 476.89,
- "end": 477.27,
- "text": "Then",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 477.55,
- "end": 477.68,
- "text": "we",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 477.68,
- "end": 477.88,
- "text": "took",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 477.88,
- "end": 478.26,
- "text": "five",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.26,
- "end": 478.36,
- "text": "of",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.36,
- "end": 478.67,
- "text": "these",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.67,
- "end": 478.9,
- "text": "baby",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.9,
- "end": 479.38,
- "text": "dinosaur",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 479.39,
- "end": 479.77,
- "text": "about",
- "offset": 41,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 479.82,
- "end": 479.98,
- "text": "we",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 479.99,
- "end": 480.19,
- "text": "give",
- "offset": 50,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480.19,
- "end": 480.33,
- "text": "them.",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The five teams of people.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 87",
- "words": [
- {
- "text": "The",
- "start": 480.33,
- "end": 480.4
- },
- {
- "text": "five",
- "start": 480.4,
- "end": 480.76
- },
- {
- "text": "teams",
- "start": 480.76,
- "end": 481.08
- },
- {
- "text": "of",
- "start": 481.08,
- "end": 481.17
- },
- {
- "text": "people.",
- "start": 481.17,
- "end": 481.72
- }
- ],
- "start": 480.33
- },
- "entityRanges": [
- {
- "start": 480.33,
- "end": 480.4,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480.4,
- "end": 480.76,
- "text": "five",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480.76,
- "end": 481.08,
- "text": "teams",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 481.08,
- "end": 481.17,
- "text": "of",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 481.17,
- "end": 481.72,
- "text": "people.",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We had the name them and play with them and interact with them for about an hour and then we unveiled a and a hatchet and we told them to torture and kill the US.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 88",
- "words": [
- {
- "text": "We",
- "start": 482.31,
- "end": 482.51
- },
- {
- "text": "had",
- "start": 482.51,
- "end": 482.7
- },
- {
- "text": "the",
- "start": 482.7,
- "end": 482.79
- },
- {
- "text": "name",
- "start": 482.79,
- "end": 483.22
- },
- {
- "text": "them",
- "start": 483.22,
- "end": 483.68
- },
- {
- "text": "and",
- "start": 484,
- "end": 484.13
- },
- {
- "text": "play",
- "start": 484.13,
- "end": 484.43
- },
- {
- "text": "with",
- "start": 484.43,
- "end": 484.61
- },
- {
- "text": "them",
- "start": 484.61,
- "end": 485.11
- },
- {
- "text": "and",
- "start": 485.14,
- "end": 485.24
- },
- {
- "text": "interact",
- "start": 485.24,
- "end": 485.79
- },
- {
- "text": "with",
- "start": 485.79,
- "end": 485.92
- },
- {
- "text": "them",
- "start": 485.92,
- "end": 486.3
- },
- {
- "text": "for",
- "start": 486.3,
- "end": 486.75
- },
- {
- "text": "about",
- "start": 486.82,
- "end": 487.17
- },
- {
- "text": "an",
- "start": 487.17,
- "end": 487.28
- },
- {
- "text": "hour",
- "start": 487.28,
- "end": 487.74
- },
- {
- "text": "and",
- "start": 488.48,
- "end": 488.58
- },
- {
- "text": "then",
- "start": 488.81,
- "end": 489.07
- },
- {
- "text": "we",
- "start": 489.07,
- "end": 489.19
- },
- {
- "text": "unveiled",
- "start": 489.19,
- "end": 489.7
- },
- {
- "text": "a",
- "start": 489.73,
- "end": 489.82
- },
- {
- "text": "and",
- "start": 489.97,
- "end": 490.23
- },
- {
- "text": "a",
- "start": 490.23,
- "end": 490.33
- },
- {
- "text": "hatchet",
- "start": 490.33,
- "end": 490.9
- },
- {
- "text": "and",
- "start": 490.92,
- "end": 491
- },
- {
- "text": "we",
- "start": 491.02,
- "end": 491.14
- },
- {
- "text": "told",
- "start": 491.14,
- "end": 491.39
- },
- {
- "text": "them",
- "start": 491.39,
- "end": 491.51
- },
- {
- "text": "to",
- "start": 491.51,
- "end": 491.61
- },
- {
- "text": "torture",
- "start": 491.61,
- "end": 492.01
- },
- {
- "text": "and",
- "start": 492.01,
- "end": 492.1
- },
- {
- "text": "kill",
- "start": 492.1,
- "end": 492.41
- },
- {
- "text": "the",
- "start": 492.41,
- "end": 492.56
- },
- {
- "text": "US.",
- "start": 492.57,
- "end": 493.16
- }
- ],
- "start": 482.31
- },
- "entityRanges": [
- {
- "start": 482.31,
- "end": 482.51,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 482.51,
- "end": 482.7,
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 482.7,
- "end": 482.79,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 482.79,
- "end": 483.22,
- "text": "name",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 483.22,
- "end": 483.68,
- "text": "them",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484,
- "end": 484.13,
- "text": "and",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484.13,
- "end": 484.43,
- "text": "play",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484.43,
- "end": 484.61,
- "text": "with",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484.61,
- "end": 485.11,
- "text": "them",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.14,
- "end": 485.24,
- "text": "and",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.24,
- "end": 485.79,
- "text": "interact",
- "offset": 44,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.79,
- "end": 485.92,
- "text": "with",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.92,
- "end": 486.3,
- "text": "them",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 486.3,
- "end": 486.75,
- "text": "for",
- "offset": 63,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 486.82,
- "end": 487.17,
- "text": "about",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 487.17,
- "end": 487.28,
- "text": "an",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 487.28,
- "end": 487.74,
- "text": "hour",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 488.48,
- "end": 488.58,
- "text": "and",
- "offset": 81,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 488.81,
- "end": 489.07,
- "text": "then",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.07,
- "end": 489.19,
- "text": "we",
- "offset": 90,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.19,
- "end": 489.7,
- "text": "unveiled",
- "offset": 93,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.73,
- "end": 489.82,
- "text": "a",
- "offset": 102,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.97,
- "end": 490.23,
- "text": "and",
- "offset": 104,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.23,
- "end": 490.33,
- "text": "a",
- "offset": 108,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.33,
- "end": 490.9,
- "text": "hatchet",
- "offset": 110,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.92,
- "end": 491,
- "text": "and",
- "offset": 118,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.02,
- "end": 491.14,
- "text": "we",
- "offset": 122,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.14,
- "end": 491.39,
- "text": "told",
- "offset": 125,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.39,
- "end": 491.51,
- "text": "them",
- "offset": 130,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.51,
- "end": 491.61,
- "text": "to",
- "offset": 135,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.61,
- "end": 492.01,
- "text": "torture",
- "offset": 138,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.01,
- "end": 492.1,
- "text": "and",
- "offset": 146,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.1,
- "end": 492.41,
- "text": "kill",
- "offset": 150,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.41,
- "end": 492.56,
- "text": "the",
- "offset": 155,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.57,
- "end": 493.16,
- "text": "US.",
- "offset": 159,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Let's try not to be a little more dramatic than we expected it to be because none of the participants would even so much a strike these be.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 89",
- "words": [
- {
- "text": "Let's",
- "start": 497.16,
- "end": 497.39
- },
- {
- "text": "try",
- "start": 497.41,
- "end": 497.58
- },
- {
- "text": "not",
- "start": 497.58,
- "end": 497.78
- },
- {
- "text": "to",
- "start": 497.78,
- "end": 497.92
- },
- {
- "text": "be",
- "start": 497.92,
- "end": 498.04
- },
- {
- "text": "a",
- "start": 498.04,
- "end": 498.1
- },
- {
- "text": "little",
- "start": 498.1,
- "end": 498.29
- },
- {
- "text": "more",
- "start": 498.29,
- "end": 498.43
- },
- {
- "text": "dramatic",
- "start": 498.43,
- "end": 499.01
- },
- {
- "text": "than",
- "start": 499.01,
- "end": 499.13
- },
- {
- "text": "we",
- "start": 499.13,
- "end": 499.24
- },
- {
- "text": "expected",
- "start": 499.24,
- "end": 499.91
- },
- {
- "text": "it",
- "start": 499.91,
- "end": 500.01
- },
- {
- "text": "to",
- "start": 500.01,
- "end": 500.12
- },
- {
- "text": "be",
- "start": 500.12,
- "end": 500.3
- },
- {
- "text": "because",
- "start": 500.3,
- "end": 500.6
- },
- {
- "text": "none",
- "start": 500.6,
- "end": 500.91
- },
- {
- "text": "of",
- "start": 500.91,
- "end": 501.02
- },
- {
- "text": "the",
- "start": 501.02,
- "end": 501.1
- },
- {
- "text": "participants",
- "start": 501.1,
- "end": 501.86
- },
- {
- "text": "would",
- "start": 501.86,
- "end": 502.16
- },
- {
- "text": "even",
- "start": 502.43,
- "end": 502.71
- },
- {
- "text": "so",
- "start": 502.71,
- "end": 502.81
- },
- {
- "text": "much",
- "start": 502.81,
- "end": 503.01
- },
- {
- "text": "a",
- "start": 503.01,
- "end": 503.09
- },
- {
- "text": "strike",
- "start": 503.09,
- "end": 503.57
- },
- {
- "text": "these",
- "start": 503.57,
- "end": 503.78
- },
- {
- "text": "be.",
- "start": 503.78,
- "end": 503.98
- }
- ],
- "start": 497.16
- },
- "entityRanges": [
- {
- "start": 497.16,
- "end": 497.39,
- "text": "Let's",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.41,
- "end": 497.58,
- "text": "try",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.58,
- "end": 497.78,
- "text": "not",
- "offset": 10,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.78,
- "end": 497.92,
- "text": "to",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.92,
- "end": 498.04,
- "text": "be",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.04,
- "end": 498.1,
- "text": "a",
- "offset": 20,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.1,
- "end": 498.29,
- "text": "little",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.29,
- "end": 498.43,
- "text": "more",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.43,
- "end": 499.01,
- "text": "dramatic",
- "offset": 34,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.01,
- "end": 499.13,
- "text": "than",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.13,
- "end": 499.24,
- "text": "we",
- "offset": 48,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.24,
- "end": 499.91,
- "text": "expected",
- "offset": 51,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.91,
- "end": 500.01,
- "text": "it",
- "offset": 60,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.01,
- "end": 500.12,
- "text": "to",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.12,
- "end": 500.3,
- "text": "be",
- "offset": 66,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.3,
- "end": 500.6,
- "text": "because",
- "offset": 69,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.6,
- "end": 500.91,
- "text": "none",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.91,
- "end": 501.02,
- "text": "of",
- "offset": 82,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 501.02,
- "end": 501.1,
- "text": "the",
- "offset": 85,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 501.1,
- "end": 501.86,
- "text": "participants",
- "offset": 89,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 501.86,
- "end": 502.16,
- "text": "would",
- "offset": 102,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 502.43,
- "end": 502.71,
- "text": "even",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 502.71,
- "end": 502.81,
- "text": "so",
- "offset": 113,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 502.81,
- "end": 503.01,
- "text": "much",
- "offset": 116,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 503.01,
- "end": 503.09,
- "text": "a",
- "offset": 121,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 503.09,
- "end": 503.57,
- "text": "strike",
- "offset": 123,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 503.57,
- "end": 503.78,
- "text": "these",
- "offset": 130,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 503.78,
- "end": 503.98,
- "text": "be.",
- "offset": 136,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Thanks.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 90",
- "words": [
- {
- "text": "Thanks.",
- "start": 503.99,
- "end": 504.3
- }
- ],
- "start": 503.99
- },
- "entityRanges": [
- {
- "start": 503.99,
- "end": 504.3,
- "text": "Thanks.",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "About so we had to improvise a lot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 91",
- "words": [
- {
- "text": "About",
- "start": 504.41,
- "end": 504.67
- },
- {
- "text": "so",
- "start": 504.76,
- "end": 505.11
- },
- {
- "text": "we",
- "start": 505.42,
- "end": 505.56
- },
- {
- "text": "had",
- "start": 505.56,
- "end": 505.65
- },
- {
- "text": "to",
- "start": 505.65,
- "end": 505.71
- },
- {
- "text": "improvise",
- "start": 505.71,
- "end": 506.22
- },
- {
- "text": "a",
- "start": 506.22,
- "end": 506.31
- },
- {
- "text": "lot.",
- "start": 506.32,
- "end": 506.66
- }
- ],
- "start": 504.41
- },
- "entityRanges": [
- {
- "start": 504.41,
- "end": 504.67,
- "text": "About",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 504.76,
- "end": 505.11,
- "text": "so",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.42,
- "end": 505.56,
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.56,
- "end": 505.65,
- "text": "had",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.65,
- "end": 505.71,
- "text": "to",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.71,
- "end": 506.22,
- "text": "improvise",
- "offset": 19,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 506.22,
- "end": 506.31,
- "text": "a",
- "offset": 29,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 506.32,
- "end": 506.66,
- "text": "lot.",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And at some point.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 92",
- "words": [
- {
- "text": "And",
- "start": 507.36,
- "end": 507.78
- },
- {
- "text": "at",
- "start": 507.81,
- "end": 507.99
- },
- {
- "text": "some",
- "start": 507.99,
- "end": 508.16
- },
- {
- "text": "point.",
- "start": 508.16,
- "end": 508.33
- }
- ],
- "start": 507.36
- },
- "entityRanges": [
- {
- "start": 507.36,
- "end": 507.78,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 507.81,
- "end": 507.99,
- "text": "at",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 507.99,
- "end": 508.16,
- "text": "some",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 508.16,
- "end": 508.33,
- "text": "point.",
- "offset": 12,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We said o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 93",
- "words": [
- {
- "text": "We",
- "start": 508.33,
- "end": 508.41
- },
- {
- "text": "said",
- "start": 508.42,
- "end": 508.72
- },
- {
- "text": "o.k.",
- "start": 508.72,
- "end": 509.36
- }
- ],
- "start": 508.33
- },
- "entityRanges": [
- {
- "start": 508.33,
- "end": 508.41,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 508.42,
- "end": 508.72,
- "text": "said",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 508.72,
- "end": 509.36,
- "text": "o.k.",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "You can save your team's row.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 94",
- "words": [
- {
- "text": "You",
- "start": 510.06,
- "end": 510.35
- },
- {
- "text": "can",
- "start": 510.35,
- "end": 510.51
- },
- {
- "text": "save",
- "start": 510.51,
- "end": 510.86
- },
- {
- "text": "your",
- "start": 510.86,
- "end": 511.16
- },
- {
- "text": "team's",
- "start": 511.16,
- "end": 511.6
- },
- {
- "text": "row.",
- "start": 511.6,
- "end": 511.76
- }
- ],
- "start": 510.06
- },
- "entityRanges": [
- {
- "start": 510.06,
- "end": 510.35,
- "text": "You",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 510.35,
- "end": 510.51,
- "text": "can",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 510.51,
- "end": 510.86,
- "text": "save",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 510.86,
- "end": 511.16,
- "text": "your",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 511.16,
- "end": 511.6,
- "text": "team's",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 511.6,
- "end": 511.76,
- "text": "row.",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But if you destroy another team's Rover and anything that didn't work.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 95",
- "words": [
- {
- "text": "But",
- "start": 511.77,
- "end": 512.08
- },
- {
- "text": "if",
- "start": 512.11,
- "end": 512.33
- },
- {
- "text": "you",
- "start": 512.33,
- "end": 512.45
- },
- {
- "text": "destroy",
- "start": 512.45,
- "end": 513.02
- },
- {
- "text": "another",
- "start": 513.05,
- "end": 513.63
- },
- {
- "text": "team's",
- "start": 513.64,
- "end": 514.02
- },
- {
- "text": "Rover",
- "start": 514.04,
- "end": 514.52
- },
- {
- "text": "and",
- "start": 514.94,
- "end": 515.35
- },
- {
- "text": "anything",
- "start": 516.83,
- "end": 517.17
- },
- {
- "text": "that",
- "start": 517.17,
- "end": 517.34
- },
- {
- "text": "didn't",
- "start": 517.34,
- "end": 517.58
- },
- {
- "text": "work.",
- "start": 517.58,
- "end": 517.85
- }
- ],
- "start": 511.77
- },
- "entityRanges": [
- {
- "start": 511.77,
- "end": 512.08,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 512.11,
- "end": 512.33,
- "text": "if",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 512.33,
- "end": 512.45,
- "text": "you",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 512.45,
- "end": 513.02,
- "text": "destroy",
- "offset": 11,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 513.05,
- "end": 513.63,
- "text": "another",
- "offset": 19,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 513.64,
- "end": 514.02,
- "text": "team's",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 514.04,
- "end": 514.52,
- "text": "Rover",
- "offset": 34,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 514.94,
- "end": 515.35,
- "text": "and",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 516.83,
- "end": 517.17,
- "text": "anything",
- "offset": 44,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.17,
- "end": 517.34,
- "text": "that",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.34,
- "end": 517.58,
- "text": "didn't",
- "offset": 58,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.58,
- "end": 517.85,
- "text": "work.",
- "offset": 65,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "He couldn't do it finally said, We're gonna destroy all the robots.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 96",
- "words": [
- {
- "text": "He",
- "start": 517.87,
- "end": 517.94
- },
- {
- "text": "couldn't",
- "start": 517.94,
- "end": 518.22
- },
- {
- "text": "do",
- "start": 518.22,
- "end": 518.34
- },
- {
- "text": "it",
- "start": 518.34,
- "end": 518.57
- },
- {
- "text": "finally",
- "start": 518.74,
- "end": 519.31
- },
- {
- "text": "said,",
- "start": 519.33,
- "end": 519.74
- },
- {
- "text": "We're",
- "start": 520.05,
- "end": 520.23
- },
- {
- "text": "gonna",
- "start": 520.23,
- "end": 520.4
- },
- {
- "text": "destroy",
- "start": 520.41,
- "end": 520.9
- },
- {
- "text": "all",
- "start": 520.93,
- "end": 521.26
- },
- {
- "text": "the",
- "start": 521.27,
- "end": 521.39
- },
- {
- "text": "robots.",
- "start": 521.39,
- "end": 521.67
- }
- ],
- "start": 517.87
- },
- "entityRanges": [
- {
- "start": 517.87,
- "end": 517.94,
- "text": "He",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.94,
- "end": 518.22,
- "text": "couldn't",
- "offset": 3,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 518.22,
- "end": 518.34,
- "text": "do",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 518.34,
- "end": 518.57,
- "text": "it",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 518.74,
- "end": 519.31,
- "text": "finally",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 519.33,
- "end": 519.74,
- "text": "said,",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.05,
- "end": 520.23,
- "text": "We're",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.23,
- "end": 520.4,
- "text": "gonna",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.41,
- "end": 520.9,
- "text": "destroy",
- "offset": 44,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.93,
- "end": 521.26,
- "text": "all",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 521.27,
- "end": 521.39,
- "text": "the",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 521.39,
- "end": 521.67,
- "text": "robots.",
- "offset": 60,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But unless someone takes a hatchet or one of them.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 97",
- "words": [
- {
- "text": "But",
- "start": 521.67,
- "end": 521.94
- },
- {
- "text": "unless",
- "start": 521.97,
- "end": 522.2
- },
- {
- "text": "someone",
- "start": 522.2,
- "end": 522.5
- },
- {
- "text": "takes",
- "start": 522.5,
- "end": 522.71
- },
- {
- "text": "a",
- "start": 522.71,
- "end": 522.77
- },
- {
- "text": "hatchet",
- "start": 522.77,
- "end": 523.24
- },
- {
- "text": "or",
- "start": 523.24,
- "end": 523.35
- },
- {
- "text": "one",
- "start": 523.35,
- "end": 523.57
- },
- {
- "text": "of",
- "start": 523.57,
- "end": 523.72
- },
- {
- "text": "them.",
- "start": 523.72,
- "end": 524
- }
- ],
- "start": 521.67
- },
- "entityRanges": [
- {
- "start": 521.67,
- "end": 521.94,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 521.97,
- "end": 522.2,
- "text": "unless",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.2,
- "end": 522.5,
- "text": "someone",
- "offset": 11,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.5,
- "end": 522.71,
- "text": "takes",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.71,
- "end": 522.77,
- "text": "a",
- "offset": 25,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.77,
- "end": 523.24,
- "text": "hatchet",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.24,
- "end": 523.35,
- "text": "or",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.35,
- "end": 523.57,
- "text": "one",
- "offset": 38,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.57,
- "end": 523.72,
- "text": "of",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.72,
- "end": 524,
- "text": "them.",
- "offset": 45,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This guy stood up and he took the hatchet and the whole room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 98",
- "words": [
- {
- "text": "This",
- "start": 525.69,
- "end": 525.98
- },
- {
- "text": "guy",
- "start": 525.98,
- "end": 526.24
- },
- {
- "text": "stood",
- "start": 526.24,
- "end": 526.51
- },
- {
- "text": "up",
- "start": 526.51,
- "end": 526.77
- },
- {
- "text": "and",
- "start": 526.8,
- "end": 527.05
- },
- {
- "text": "he",
- "start": 527.05,
- "end": 527.3
- },
- {
- "text": "took",
- "start": 527.3,
- "end": 527.64
- },
- {
- "text": "the",
- "start": 527.64,
- "end": 527.72
- },
- {
- "text": "hatchet",
- "start": 527.82,
- "end": 528.36
- },
- {
- "text": "and",
- "start": 529.11,
- "end": 529.31
- },
- {
- "text": "the",
- "start": 529.38,
- "end": 529.46
- },
- {
- "text": "whole",
- "start": 529.46,
- "end": 529.73
- },
- {
- "text": "room.",
- "start": 529.73,
- "end": 530.09
- }
- ],
- "start": 525.69
- },
- "entityRanges": [
- {
- "start": 525.69,
- "end": 525.98,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 525.98,
- "end": 526.24,
- "text": "guy",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 526.24,
- "end": 526.51,
- "text": "stood",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 526.51,
- "end": 526.77,
- "text": "up",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 526.8,
- "end": 527.05,
- "text": "and",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.05,
- "end": 527.3,
- "text": "he",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.3,
- "end": 527.64,
- "text": "took",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.64,
- "end": 527.72,
- "text": "the",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.82,
- "end": 528.36,
- "text": "hatchet",
- "offset": 34,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.11,
- "end": 529.31,
- "text": "and",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.38,
- "end": 529.46,
- "text": "the",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.46,
- "end": 529.73,
- "text": "whole",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.73,
- "end": 530.09,
- "text": "room.",
- "offset": 56,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Winston, the brother had to down on robot's neck and there was this have joking.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 99",
- "words": [
- {
- "text": "Winston,",
- "start": 530.13,
- "end": 530.64
- },
- {
- "text": "the",
- "start": 530.65,
- "end": 530.76
- },
- {
- "text": "brother",
- "start": 530.77,
- "end": 531.1
- },
- {
- "text": "had",
- "start": 531.1,
- "end": 531.35
- },
- {
- "text": "to",
- "start": 531.35,
- "end": 531.45
- },
- {
- "text": "down",
- "start": 531.45,
- "end": 531.79
- },
- {
- "text": "on",
- "start": 531.79,
- "end": 531.9
- },
- {
- "text": "robot's",
- "start": 531.93,
- "end": 532.37
- },
- {
- "text": "neck",
- "start": 532.43,
- "end": 533.04
- },
- {
- "text": "and",
- "start": 533.65,
- "end": 533.99
- },
- {
- "text": "there",
- "start": 534.07,
- "end": 534.32
- },
- {
- "text": "was",
- "start": 534.33,
- "end": 534.52
- },
- {
- "text": "this",
- "start": 534.52,
- "end": 534.7
- },
- {
- "text": "have",
- "start": 534.7,
- "end": 535.14
- },
- {
- "text": "joking.",
- "start": 535.14,
- "end": 535.85
- }
- ],
- "start": 530.13
- },
- "entityRanges": [
- {
- "start": 530.13,
- "end": 530.64,
- "text": "Winston,",
- "offset": 0,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 530.65,
- "end": 530.76,
- "text": "the",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 530.77,
- "end": 531.1,
- "text": "brother",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.1,
- "end": 531.35,
- "text": "had",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.35,
- "end": 531.45,
- "text": "to",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.45,
- "end": 531.79,
- "text": "down",
- "offset": 28,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.79,
- "end": 531.9,
- "text": "on",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.93,
- "end": 532.37,
- "text": "robot's",
- "offset": 36,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 532.43,
- "end": 533.04,
- "text": "neck",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 533.65,
- "end": 533.99,
- "text": "and",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.07,
- "end": 534.32,
- "text": "there",
- "offset": 53,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.33,
- "end": 534.52,
- "text": "was",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.52,
- "end": 534.7,
- "text": "this",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.7,
- "end": 535.14,
- "text": "have",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 535.14,
- "end": 535.85,
- "text": "joking.",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Half serious moment of silence in the room for this far and but so that was a really interesting experience.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 100",
- "words": [
- {
- "text": "Half",
- "start": 536.03,
- "end": 536.66
- },
- {
- "text": "serious",
- "start": 536.69,
- "end": 537.43
- },
- {
- "text": "moment",
- "start": 537.43,
- "end": 537.81
- },
- {
- "text": "of",
- "start": 537.81,
- "end": 537.88
- },
- {
- "text": "silence",
- "start": 537.88,
- "end": 538.57
- },
- {
- "text": "in",
- "start": 538.57,
- "end": 538.81
- },
- {
- "text": "the",
- "start": 538.81,
- "end": 538.91
- },
- {
- "text": "room",
- "start": 538.91,
- "end": 539.54
- },
- {
- "text": "for",
- "start": 540.04,
- "end": 540.27
- },
- {
- "text": "this",
- "start": 540.27,
- "end": 540.5
- },
- {
- "text": "far",
- "start": 540.5,
- "end": 540.81
- },
- {
- "text": "and",
- "start": 540.81,
- "end": 541.07
- },
- {
- "text": "but",
- "start": 541.13,
- "end": 541.6
- },
- {
- "text": "so",
- "start": 543.21,
- "end": 543.59
- },
- {
- "text": "that",
- "start": 543.65,
- "end": 543.88
- },
- {
- "text": "was",
- "start": 543.88,
- "end": 544.04
- },
- {
- "text": "a",
- "start": 544.04,
- "end": 544.19
- },
- {
- "text": "really",
- "start": 544.19,
- "end": 544.54
- },
- {
- "text": "interesting",
- "start": 544.57,
- "end": 545.37
- },
- {
- "text": "experience.",
- "start": 545.37,
- "end": 546.54
- }
- ],
- "start": 536.03
- },
- "entityRanges": [
- {
- "start": 536.03,
- "end": 536.66,
- "text": "Half",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 536.69,
- "end": 537.43,
- "text": "serious",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 537.43,
- "end": 537.81,
- "text": "moment",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 537.81,
- "end": 537.88,
- "text": "of",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 537.88,
- "end": 538.57,
- "text": "silence",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 538.57,
- "end": 538.81,
- "text": "in",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 538.81,
- "end": 538.91,
- "text": "the",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 538.91,
- "end": 539.54,
- "text": "room",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.04,
- "end": 540.27,
- "text": "for",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.27,
- "end": 540.5,
- "text": "this",
- "offset": 47,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.5,
- "end": 540.81,
- "text": "far",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.81,
- "end": 541.07,
- "text": "and",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 541.13,
- "end": 541.6,
- "text": "but",
- "offset": 60,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 543.21,
- "end": 543.59,
- "text": "so",
- "offset": 64,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 543.65,
- "end": 543.88,
- "text": "that",
- "offset": 67,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 543.88,
- "end": 544.04,
- "text": "was",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 544.04,
- "end": 544.19,
- "text": "a",
- "offset": 76,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 544.19,
- "end": 544.54,
- "text": "really",
- "offset": 78,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 544.57,
- "end": 545.37,
- "text": "interesting",
- "offset": 85,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 545.37,
- "end": 546.54,
- "text": "experience.",
- "offset": 97,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "No, it wasn't a controlled study up your sleeve, but it did lead to some to research that I did an i.t.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 101",
- "words": [
- {
- "text": "No,",
- "start": 546.86,
- "end": 547.04
- },
- {
- "text": "it",
- "start": 547.08,
- "end": 547.27
- },
- {
- "text": "wasn't",
- "start": 547.27,
- "end": 547.54
- },
- {
- "text": "a",
- "start": 547.54,
- "end": 547.59
- },
- {
- "text": "controlled",
- "start": 547.59,
- "end": 548.26
- },
- {
- "text": "study",
- "start": 548.26,
- "end": 548.73
- },
- {
- "text": "up",
- "start": 548.73,
- "end": 548.93
- },
- {
- "text": "your",
- "start": 548.93,
- "end": 549.08
- },
- {
- "text": "sleeve,",
- "start": 549.08,
- "end": 549.41
- },
- {
- "text": "but",
- "start": 549.4,
- "end": 549.57
- },
- {
- "text": "it",
- "start": 549.57,
- "end": 549.7
- },
- {
- "text": "did",
- "start": 549.7,
- "end": 549.94
- },
- {
- "text": "lead",
- "start": 549.94,
- "end": 550.13
- },
- {
- "text": "to",
- "start": 550.13,
- "end": 550.23
- },
- {
- "text": "some",
- "start": 550.22,
- "end": 550.47
- },
- {
- "text": "to",
- "start": 550.5,
- "end": 550.7
- },
- {
- "text": "research",
- "start": 550.72,
- "end": 551.21
- },
- {
- "text": "that",
- "start": 551.21,
- "end": 551.34
- },
- {
- "text": "I",
- "start": 551.34,
- "end": 551.43
- },
- {
- "text": "did",
- "start": 551.43,
- "end": 551.79
- },
- {
- "text": "an",
- "start": 551.79,
- "end": 551.89
- },
- {
- "text": "i.t.",
- "start": 551.89,
- "end": 552.26
- }
- ],
- "start": 546.86
- },
- "entityRanges": [
- {
- "start": 546.86,
- "end": 547.04,
- "text": "No,",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.08,
- "end": 547.27,
- "text": "it",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.27,
- "end": 547.54,
- "text": "wasn't",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.54,
- "end": 547.59,
- "text": "a",
- "offset": 14,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.59,
- "end": 548.26,
- "text": "controlled",
- "offset": 16,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 548.26,
- "end": 548.73,
- "text": "study",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 548.73,
- "end": 548.93,
- "text": "up",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 548.93,
- "end": 549.08,
- "text": "your",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.08,
- "end": 549.41,
- "text": "sleeve,",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.4,
- "end": 549.57,
- "text": "but",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.57,
- "end": 549.7,
- "text": "it",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.7,
- "end": 549.94,
- "text": "did",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.94,
- "end": 550.13,
- "text": "lead",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.13,
- "end": 550.23,
- "text": "to",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.22,
- "end": 550.47,
- "text": "some",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.5,
- "end": 550.7,
- "text": "to",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.72,
- "end": 551.21,
- "text": "research",
- "offset": 76,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.21,
- "end": 551.34,
- "text": "that",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.34,
- "end": 551.43,
- "text": "I",
- "offset": 90,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.43,
- "end": 551.79,
- "text": "did",
- "offset": 92,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.79,
- "end": 551.89,
- "text": "an",
- "offset": 96,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.89,
- "end": 552.26,
- "text": "i.t.",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "With plush and and Cynthia busy or where we had people come into the lab and smash these Hex bugs that move around in a really lifelike way, like insects.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 102",
- "words": [
- {
- "text": "With",
- "start": 552.27,
- "end": 552.46
- },
- {
- "text": "plush",
- "start": 552.46,
- "end": 552.85
- },
- {
- "text": "and",
- "start": 552.85,
- "end": 553.04
- },
- {
- "text": "and",
- "start": 553.14,
- "end": 553.27
- },
- {
- "text": "Cynthia",
- "start": 553.27,
- "end": 553.64
- },
- {
- "text": "busy",
- "start": 553.64,
- "end": 553.98
- },
- {
- "text": "or",
- "start": 553.98,
- "end": 554.23
- },
- {
- "text": "where",
- "start": 554.52,
- "end": 554.82
- },
- {
- "text": "we",
- "start": 554.82,
- "end": 554.97
- },
- {
- "text": "had",
- "start": 554.97,
- "end": 555.11
- },
- {
- "text": "people",
- "start": 555.11,
- "end": 555.33
- },
- {
- "text": "come",
- "start": 555.33,
- "end": 555.53
- },
- {
- "text": "into",
- "start": 555.53,
- "end": 555.71
- },
- {
- "text": "the",
- "start": 555.71,
- "end": 555.81
- },
- {
- "text": "lab",
- "start": 555.81,
- "end": 556.3
- },
- {
- "text": "and",
- "start": 556.66,
- "end": 556.9
- },
- {
- "text": "smash",
- "start": 556.9,
- "end": 557.25
- },
- {
- "text": "these",
- "start": 557.25,
- "end": 557.44
- },
- {
- "text": "Hex",
- "start": 557.44,
- "end": 557.85
- },
- {
- "text": "bugs",
- "start": 557.85,
- "end": 558.21
- },
- {
- "text": "that",
- "start": 558.21,
- "end": 558.31
- },
- {
- "text": "move",
- "start": 558.31,
- "end": 558.6
- },
- {
- "text": "around",
- "start": 558.6,
- "end": 559.1
- },
- {
- "text": "in",
- "start": 559.1,
- "end": 559.24
- },
- {
- "text": "a",
- "start": 559.24,
- "end": 559.29
- },
- {
- "text": "really",
- "start": 559.29,
- "end": 559.5
- },
- {
- "text": "lifelike",
- "start": 559.5,
- "end": 559.91
- },
- {
- "text": "way,",
- "start": 559.91,
- "end": 560.07
- },
- {
- "text": "like",
- "start": 560.07,
- "end": 560.28
- },
- {
- "text": "insects.",
- "start": 560.31,
- "end": 561.17
- }
- ],
- "start": 552.27
- },
- "entityRanges": [
- {
- "start": 552.27,
- "end": 552.46,
- "text": "With",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 552.46,
- "end": 552.85,
- "text": "plush",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 552.85,
- "end": 553.04,
- "text": "and",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 553.14,
- "end": 553.27,
- "text": "and",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 553.27,
- "end": 553.64,
- "text": "Cynthia",
- "offset": 19,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 553.64,
- "end": 553.98,
- "text": "busy",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 553.98,
- "end": 554.23,
- "text": "or",
- "offset": 32,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 554.52,
- "end": 554.82,
- "text": "where",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 554.82,
- "end": 554.97,
- "text": "we",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 554.97,
- "end": 555.11,
- "text": "had",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.11,
- "end": 555.33,
- "text": "people",
- "offset": 48,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.33,
- "end": 555.53,
- "text": "come",
- "offset": 55,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.53,
- "end": 555.71,
- "text": "into",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.71,
- "end": 555.81,
- "text": "the",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.81,
- "end": 556.3,
- "text": "lab",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 556.66,
- "end": 556.9,
- "text": "and",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 556.9,
- "end": 557.25,
- "text": "smash",
- "offset": 77,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 557.25,
- "end": 557.44,
- "text": "these",
- "offset": 83,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 557.44,
- "end": 557.85,
- "text": "Hex",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 557.85,
- "end": 558.21,
- "text": "bugs",
- "offset": 93,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 558.21,
- "end": 558.31,
- "text": "that",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 558.31,
- "end": 558.6,
- "text": "move",
- "offset": 103,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 558.6,
- "end": 559.1,
- "text": "around",
- "offset": 108,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.1,
- "end": 559.24,
- "text": "in",
- "offset": 115,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.24,
- "end": 559.29,
- "text": "a",
- "offset": 118,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.29,
- "end": 559.5,
- "text": "really",
- "offset": 120,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.5,
- "end": 559.91,
- "text": "lifelike",
- "offset": 127,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.91,
- "end": 560.07,
- "text": "way,",
- "offset": 136,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 560.07,
- "end": 560.28,
- "text": "like",
- "offset": 141,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 560.31,
- "end": 561.17,
- "text": "insects.",
- "offset": 146,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "So instead of choosing something.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 103",
- "words": [
- {
- "text": "So",
- "start": 561.3,
- "end": 561.49
- },
- {
- "text": "instead",
- "start": 561.49,
- "end": 561.71
- },
- {
- "text": "of",
- "start": 561.71,
- "end": 561.8
- },
- {
- "text": "choosing",
- "start": 561.8,
- "end": 562.1
- },
- {
- "text": "something.",
- "start": 562.1,
- "end": 562.35
- }
- ],
- "start": 561.3
- },
- "entityRanges": [
- {
- "start": 561.3,
- "end": 561.49,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 561.49,
- "end": 561.71,
- "text": "instead",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 561.71,
- "end": 561.8,
- "text": "of",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 561.8,
- "end": 562.1,
- "text": "choosing",
- "offset": 14,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 562.1,
- "end": 562.35,
- "text": "something.",
- "offset": 23,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Hugh there.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 104",
- "words": [
- {
- "text": "Hugh",
- "start": 562.37,
- "end": 562.62
- },
- {
- "text": "there.",
- "start": 562.63,
- "end": 562.82
- }
- ],
- "start": 562.37
- },
- "entityRanges": [
- {
- "start": 562.37,
- "end": 562.62,
- "text": "Hugh",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 562.63,
- "end": 562.82,
- "text": "there.",
- "offset": 5,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "People are trying to reach something more basic.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 105",
- "words": [
- {
- "text": "People",
- "start": 562.82,
- "end": 563.33
- },
- {
- "text": "are",
- "start": 563.71,
- "end": 563.84
- },
- {
- "text": "trying",
- "start": 563.87,
- "end": 564.23
- },
- {
- "text": "to",
- "start": 564.23,
- "end": 564.5
- },
- {
- "text": "reach",
- "start": 564.5,
- "end": 564.74
- },
- {
- "text": "something",
- "start": 564.77,
- "end": 565.05
- },
- {
- "text": "more",
- "start": 565.05,
- "end": 565.23
- },
- {
- "text": "basic.",
- "start": 565.23,
- "end": 566.05
- }
- ],
- "start": 562.82
- },
- "entityRanges": [
- {
- "start": 562.82,
- "end": 563.33,
- "text": "People",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 563.71,
- "end": 563.84,
- "text": "are",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 563.87,
- "end": 564.23,
- "text": "trying",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.23,
- "end": 564.5,
- "text": "to",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.5,
- "end": 564.74,
- "text": "reach",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.77,
- "end": 565.05,
- "text": "something",
- "offset": 27,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 565.05,
- "end": 565.23,
- "text": "more",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 565.23,
- "end": 566.05,
- "text": "basic.",
- "offset": 42,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And what we found was that high embassy people would hesitate, more hit the hex works.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 106",
- "words": [
- {
- "text": "And",
- "start": 566.57,
- "end": 567.06
- },
- {
- "text": "what",
- "start": 567.21,
- "end": 567.41
- },
- {
- "text": "we",
- "start": 567.41,
- "end": 567.53
- },
- {
- "text": "found",
- "start": 567.53,
- "end": 568.19
- },
- {
- "text": "was",
- "start": 568.19,
- "end": 568.55
- },
- {
- "text": "that",
- "start": 568.55,
- "end": 568.77
- },
- {
- "text": "high",
- "start": 568.8,
- "end": 569.19
- },
- {
- "text": "embassy",
- "start": 569.19,
- "end": 569.66
- },
- {
- "text": "people",
- "start": 569.66,
- "end": 570.1
- },
- {
- "text": "would",
- "start": 570.1,
- "end": 570.24
- },
- {
- "text": "hesitate,",
- "start": 570.24,
- "end": 570.8
- },
- {
- "text": "more",
- "start": 570.8,
- "end": 571.03
- },
- {
- "text": "hit",
- "start": 571.06,
- "end": 571.26
- },
- {
- "text": "the",
- "start": 571.28,
- "end": 571.36
- },
- {
- "text": "hex",
- "start": 571.36,
- "end": 571.7
- },
- {
- "text": "works.",
- "start": 571.71,
- "end": 572.19
- }
- ],
- "start": 566.57
- },
- "entityRanges": [
- {
- "start": 566.57,
- "end": 567.06,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 567.21,
- "end": 567.41,
- "text": "what",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 567.41,
- "end": 567.53,
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 567.53,
- "end": 568.19,
- "text": "found",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 568.19,
- "end": 568.55,
- "text": "was",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 568.55,
- "end": 568.77,
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 568.8,
- "end": 569.19,
- "text": "high",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 569.19,
- "end": 569.66,
- "text": "embassy",
- "offset": 32,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 569.66,
- "end": 570.1,
- "text": "people",
- "offset": 40,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.1,
- "end": 570.24,
- "text": "would",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.24,
- "end": 570.8,
- "text": "hesitate,",
- "offset": 53,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.8,
- "end": 571.03,
- "text": "more",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.06,
- "end": 571.26,
- "text": "hit",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.28,
- "end": 571.36,
- "text": "the",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.36,
- "end": 571.7,
- "text": "hex",
- "offset": 76,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.71,
- "end": 572.19,
- "text": "works.",
- "offset": 80,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This is just a little study, but it's part of a large body of research that is starting to indicate that there may be a connection between people's tendencies for empathy and their behaviour around, Rover.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 107",
- "words": [
- {
- "text": "This",
- "start": 573.46,
- "end": 573.63
- },
- {
- "text": "is",
- "start": 573.77,
- "end": 573.92
- },
- {
- "text": "just",
- "start": 573.92,
- "end": 574.11
- },
- {
- "text": "a",
- "start": 574.11,
- "end": 574.2
- },
- {
- "text": "little",
- "start": 574.2,
- "end": 574.4
- },
- {
- "text": "study,",
- "start": 574.4,
- "end": 574.91
- },
- {
- "text": "but",
- "start": 574.91,
- "end": 575.24
- },
- {
- "text": "it's",
- "start": 575.49,
- "end": 575.74
- },
- {
- "text": "part",
- "start": 575.74,
- "end": 575.97
- },
- {
- "text": "of",
- "start": 575.97,
- "end": 576.07
- },
- {
- "text": "a",
- "start": 576.07,
- "end": 576.11
- },
- {
- "text": "large",
- "start": 576.11,
- "end": 576.49
- },
- {
- "text": "body",
- "start": 576.49,
- "end": 576.77
- },
- {
- "text": "of",
- "start": 576.77,
- "end": 576.88
- },
- {
- "text": "research",
- "start": 576.88,
- "end": 577.56
- },
- {
- "text": "that",
- "start": 577.56,
- "end": 577.91
- },
- {
- "text": "is",
- "start": 578.02,
- "end": 578.24
- },
- {
- "text": "starting",
- "start": 578.24,
- "end": 578.61
- },
- {
- "text": "to",
- "start": 578.61,
- "end": 578.73
- },
- {
- "text": "indicate",
- "start": 578.76,
- "end": 579.2
- },
- {
- "text": "that",
- "start": 579.2,
- "end": 579.31
- },
- {
- "text": "there",
- "start": 579.31,
- "end": 579.4
- },
- {
- "text": "may",
- "start": 579.4,
- "end": 579.63
- },
- {
- "text": "be",
- "start": 579.63,
- "end": 579.89
- },
- {
- "text": "a",
- "start": 579.89,
- "end": 579.93
- },
- {
- "text": "connection",
- "start": 579.93,
- "end": 580.54
- },
- {
- "text": "between",
- "start": 580.54,
- "end": 580.87
- },
- {
- "text": "people's",
- "start": 580.87,
- "end": 581.28
- },
- {
- "text": "tendencies",
- "start": 581.28,
- "end": 581.81
- },
- {
- "text": "for",
- "start": 581.81,
- "end": 581.92
- },
- {
- "text": "empathy",
- "start": 581.92,
- "end": 582.61
- },
- {
- "text": "and",
- "start": 582.88,
- "end": 583.04
- },
- {
- "text": "their",
- "start": 583.04,
- "end": 583.15
- },
- {
- "text": "behaviour",
- "start": 583.15,
- "end": 583.8
- },
- {
- "text": "around,",
- "start": 583.8,
- "end": 584.19
- },
- {
- "text": "Rover.",
- "start": 584.19,
- "end": 584.62
- }
- ],
- "start": 573.46
- },
- "entityRanges": [
- {
- "start": 573.46,
- "end": 573.63,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 573.77,
- "end": 573.92,
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 573.92,
- "end": 574.11,
- "text": "just",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.11,
- "end": 574.2,
- "text": "a",
- "offset": 13,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.2,
- "end": 574.4,
- "text": "little",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.4,
- "end": 574.91,
- "text": "study,",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.91,
- "end": 575.24,
- "text": "but",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 575.49,
- "end": 575.74,
- "text": "it's",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 575.74,
- "end": 575.97,
- "text": "part",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 575.97,
- "end": 576.07,
- "text": "of",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.07,
- "end": 576.11,
- "text": "a",
- "offset": 46,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.11,
- "end": 576.49,
- "text": "large",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.49,
- "end": 576.77,
- "text": "body",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.77,
- "end": 576.88,
- "text": "of",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.88,
- "end": 577.56,
- "text": "research",
- "offset": 62,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 577.56,
- "end": 577.91,
- "text": "that",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.02,
- "end": 578.24,
- "text": "is",
- "offset": 76,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.24,
- "end": 578.61,
- "text": "starting",
- "offset": 79,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.61,
- "end": 578.73,
- "text": "to",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.76,
- "end": 579.2,
- "text": "indicate",
- "offset": 91,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.2,
- "end": 579.31,
- "text": "that",
- "offset": 100,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.31,
- "end": 579.4,
- "text": "there",
- "offset": 105,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.4,
- "end": 579.63,
- "text": "may",
- "offset": 111,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.63,
- "end": 579.89,
- "text": "be",
- "offset": 115,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.89,
- "end": 579.93,
- "text": "a",
- "offset": 118,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.93,
- "end": 580.54,
- "text": "connection",
- "offset": 120,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 580.54,
- "end": 580.87,
- "text": "between",
- "offset": 131,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 580.87,
- "end": 581.28,
- "text": "people's",
- "offset": 139,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 581.28,
- "end": 581.81,
- "text": "tendencies",
- "offset": 148,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 581.81,
- "end": 581.92,
- "text": "for",
- "offset": 159,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 581.92,
- "end": 582.61,
- "text": "empathy",
- "offset": 163,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 582.88,
- "end": 583.04,
- "text": "and",
- "offset": 171,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 583.04,
- "end": 583.15,
- "text": "their",
- "offset": 175,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 583.15,
- "end": 583.8,
- "text": "behaviour",
- "offset": 181,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 583.8,
- "end": 584.19,
- "text": "around,",
- "offset": 191,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 584.19,
- "end": 584.62,
- "text": "Rover.",
- "offset": 199,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But my question for the coming era of human robot interaction is Nat, do we empathise with robots.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 108",
- "words": [
- {
- "text": "But",
- "start": 585.69,
- "end": 585.87
- },
- {
- "text": "my",
- "start": 585.87,
- "end": 586.1
- },
- {
- "text": "question",
- "start": 586.1,
- "end": 586.84
- },
- {
- "text": "for",
- "start": 586.87,
- "end": 587.01
- },
- {
- "text": "the",
- "start": 587.01,
- "end": 587.1
- },
- {
- "text": "coming",
- "start": 587.1,
- "end": 587.61
- },
- {
- "text": "era",
- "start": 587.61,
- "end": 587.95
- },
- {
- "text": "of",
- "start": 587.97,
- "end": 588.09
- },
- {
- "text": "human",
- "start": 588.09,
- "end": 588.39
- },
- {
- "text": "robot",
- "start": 588.39,
- "end": 588.68
- },
- {
- "text": "interaction",
- "start": 588.69,
- "end": 589.33
- },
- {
- "text": "is",
- "start": 589.36,
- "end": 589.55
- },
- {
- "text": "Nat,",
- "start": 589.65,
- "end": 590.08
- },
- {
- "text": "do",
- "start": 590.45,
- "end": 590.6
- },
- {
- "text": "we",
- "start": 590.6,
- "end": 590.76
- },
- {
- "text": "empathise",
- "start": 590.76,
- "end": 591.42
- },
- {
- "text": "with",
- "start": 591.42,
- "end": 591.61
- },
- {
- "text": "robots.",
- "start": 591.61,
- "end": 592.41
- }
- ],
- "start": 585.69
- },
- "entityRanges": [
- {
- "start": 585.69,
- "end": 585.87,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 585.87,
- "end": 586.1,
- "text": "my",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 586.1,
- "end": 586.84,
- "text": "question",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 586.87,
- "end": 587.01,
- "text": "for",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.01,
- "end": 587.1,
- "text": "the",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.1,
- "end": 587.61,
- "text": "coming",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.61,
- "end": 587.95,
- "text": "era",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.97,
- "end": 588.09,
- "text": "of",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 588.09,
- "end": 588.39,
- "text": "human",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 588.39,
- "end": 588.68,
- "text": "robot",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 588.69,
- "end": 589.33,
- "text": "interaction",
- "offset": 50,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 589.36,
- "end": 589.55,
- "text": "is",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 589.65,
- "end": 590.08,
- "text": "Nat,",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 590.45,
- "end": 590.6,
- "text": "do",
- "offset": 70,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 590.6,
- "end": 590.76,
- "text": "we",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 590.76,
- "end": 591.42,
- "text": "empathise",
- "offset": 76,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 591.42,
- "end": 591.61,
- "text": "with",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 591.61,
- "end": 592.41,
- "text": "robots.",
- "offset": 91,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's camera.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 109",
- "words": [
- {
- "text": "It's",
- "start": 593.18,
- "end": 593.42
- },
- {
- "text": "camera.",
- "start": 593.43,
- "end": 593.93
- }
- ],
- "start": 593.18
- },
- "entityRanges": [
- {
- "start": 593.18,
- "end": 593.42,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 593.43,
- "end": 593.93,
- "text": "camera.",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But change people and that is the reason to.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 110",
- "words": [
- {
- "text": "But",
- "start": 593.92,
- "end": 594.33
- },
- {
- "text": "change",
- "start": 594.35,
- "end": 595
- },
- {
- "text": "people",
- "start": 595,
- "end": 595.25
- },
- {
- "text": "and",
- "start": 595.27,
- "end": 595.5
- },
- {
- "text": "that",
- "start": 595.61,
- "end": 595.97
- },
- {
- "text": "is",
- "start": 597.48,
- "end": 597.7
- },
- {
- "text": "the",
- "start": 597.7,
- "end": 597.85
- },
- {
- "text": "reason",
- "start": 597.86,
- "end": 598.27
- },
- {
- "text": "to.",
- "start": 598.27,
- "end": 598.49
- }
- ],
- "start": 593.92
- },
- "entityRanges": [
- {
- "start": 593.92,
- "end": 594.33,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 594.35,
- "end": 595,
- "text": "change",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 595,
- "end": 595.25,
- "text": "people",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 595.27,
- "end": 595.5,
- "text": "and",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 595.61,
- "end": 595.97,
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 597.48,
- "end": 597.7,
- "text": "is",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 597.7,
- "end": 597.85,
- "text": "the",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 597.86,
- "end": 598.27,
- "text": "reason",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 598.27,
- "end": 598.49,
- "text": "to.",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example, or prevent the child from kicking about a duck.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 111",
- "words": [
- {
- "text": "For",
- "start": 598.49,
- "end": 598.65
- },
- {
- "text": "example,",
- "start": 598.65,
- "end": 599.2
- },
- {
- "text": "or",
- "start": 599.2,
- "end": 599.47
- },
- {
- "text": "prevent",
- "start": 599.79,
- "end": 600.15
- },
- {
- "text": "the",
- "start": 600.15,
- "end": 600.25
- },
- {
- "text": "child",
- "start": 600.24,
- "end": 600.69
- },
- {
- "text": "from",
- "start": 600.69,
- "end": 600.85
- },
- {
- "text": "kicking",
- "start": 600.85,
- "end": 601.25
- },
- {
- "text": "about",
- "start": 601.25,
- "end": 601.6
- },
- {
- "text": "a",
- "start": 601.6,
- "end": 601.68
- },
- {
- "text": "duck.",
- "start": 601.7,
- "end": 602.11
- }
- ],
- "start": 598.49
- },
- "entityRanges": [
- {
- "start": 598.49,
- "end": 598.65,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 598.65,
- "end": 599.2,
- "text": "example,",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 599.2,
- "end": 599.47,
- "text": "or",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 599.79,
- "end": 600.15,
- "text": "prevent",
- "offset": 16,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.15,
- "end": 600.25,
- "text": "the",
- "offset": 24,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.24,
- "end": 600.69,
- "text": "child",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.69,
- "end": 600.85,
- "text": "from",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.85,
- "end": 601.25,
- "text": "kicking",
- "offset": 39,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 601.25,
- "end": 601.6,
- "text": "about",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 601.6,
- "end": 601.68,
- "text": "a",
- "offset": 53,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 601.7,
- "end": 602.11,
- "text": "duck.",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "That's just out of respect for property because the child may be more likely to kick a real dark and again.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 112",
- "words": [
- {
- "text": "That's",
- "start": 603.2,
- "end": 603.51
- },
- {
- "text": "just",
- "start": 603.54,
- "end": 603.93
- },
- {
- "text": "out",
- "start": 603.96,
- "end": 604.06
- },
- {
- "text": "of",
- "start": 604.06,
- "end": 604.15
- },
- {
- "text": "respect",
- "start": 604.15,
- "end": 604.66
- },
- {
- "text": "for",
- "start": 604.66,
- "end": 604.79
- },
- {
- "text": "property",
- "start": 604.79,
- "end": 605.56
- },
- {
- "text": "because",
- "start": 606.27,
- "end": 606.83
- },
- {
- "text": "the",
- "start": 606.83,
- "end": 606.93
- },
- {
- "text": "child",
- "start": 606.93,
- "end": 607.25
- },
- {
- "text": "may",
- "start": 607.25,
- "end": 607.34
- },
- {
- "text": "be",
- "start": 607.34,
- "end": 607.47
- },
- {
- "text": "more",
- "start": 607.47,
- "end": 607.59
- },
- {
- "text": "likely",
- "start": 607.59,
- "end": 607.97
- },
- {
- "text": "to",
- "start": 607.97,
- "end": 608.06
- },
- {
- "text": "kick",
- "start": 608.06,
- "end": 608.28
- },
- {
- "text": "a",
- "start": 608.28,
- "end": 608.35
- },
- {
- "text": "real",
- "start": 608.35,
- "end": 608.54
- },
- {
- "text": "dark",
- "start": 608.54,
- "end": 609.03
- },
- {
- "text": "and",
- "start": 610.35,
- "end": 610.51
- },
- {
- "text": "again.",
- "start": 610.64,
- "end": 610.96
- }
- ],
- "start": 603.2
- },
- "entityRanges": [
- {
- "start": 603.2,
- "end": 603.51,
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 603.54,
- "end": 603.93,
- "text": "just",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 603.96,
- "end": 604.06,
- "text": "out",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.06,
- "end": 604.15,
- "text": "of",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.15,
- "end": 604.66,
- "text": "respect",
- "offset": 19,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.66,
- "end": 604.79,
- "text": "for",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.79,
- "end": 605.56,
- "text": "property",
- "offset": 31,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 606.27,
- "end": 606.83,
- "text": "because",
- "offset": 40,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 606.83,
- "end": 606.93,
- "text": "the",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 606.93,
- "end": 607.25,
- "text": "child",
- "offset": 52,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.25,
- "end": 607.34,
- "text": "may",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.34,
- "end": 607.47,
- "text": "be",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.47,
- "end": 607.59,
- "text": "more",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.59,
- "end": 607.97,
- "text": "likely",
- "offset": 70,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.97,
- "end": 608.06,
- "text": "to",
- "offset": 77,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.06,
- "end": 608.28,
- "text": "kick",
- "offset": 80,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.28,
- "end": 608.35,
- "text": "a",
- "offset": 85,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.35,
- "end": 608.54,
- "text": "real",
- "offset": 87,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.54,
- "end": 609.03,
- "text": "dark",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 610.35,
- "end": 610.51,
- "text": "and",
- "offset": 97,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 610.64,
- "end": 610.96,
- "text": "again.",
- "offset": 101,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's not just kids.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 113",
- "words": [
- {
- "text": "It's",
- "start": 610.96,
- "end": 611.18
- },
- {
- "text": "not",
- "start": 611.18,
- "end": 611.46
- },
- {
- "text": "just",
- "start": 611.46,
- "end": 611.73
- },
- {
- "text": "kids.",
- "start": 611.73,
- "end": 612.4
- }
- ],
- "start": 610.96
- },
- "entityRanges": [
- {
- "start": 610.96,
- "end": 611.18,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 611.18,
- "end": 611.46,
- "text": "not",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 611.46,
- "end": 611.73,
- "text": "just",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 611.73,
- "end": 612.4,
- "text": "kids.",
- "offset": 14,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This is the violent video games question, but it's a completely new level because of this visceral physicality that we respond more intensely to take images on a screen when we behave violently towards Robarts specifically robots that are designed to mimic life is that a healthy outlet from minor behaviour or is that training a courting muscles.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 114",
- "words": [
- {
- "text": "This",
- "start": 613.53,
- "end": 613.77
- },
- {
- "text": "is",
- "start": 613.77,
- "end": 613.96
- },
- {
- "text": "the",
- "start": 613.96,
- "end": 614.37
- },
- {
- "text": "violent",
- "start": 614.41,
- "end": 615.04
- },
- {
- "text": "video",
- "start": 615.04,
- "end": 615.38
- },
- {
- "text": "games",
- "start": 615.38,
- "end": 615.69
- },
- {
- "text": "question,",
- "start": 615.69,
- "end": 616.15
- },
- {
- "text": "but",
- "start": 616.15,
- "end": 616.28
- },
- {
- "text": "it's",
- "start": 616.28,
- "end": 616.4
- },
- {
- "text": "a",
- "start": 616.42,
- "end": 616.52
- },
- {
- "text": "completely",
- "start": 616.52,
- "end": 617.15
- },
- {
- "text": "new",
- "start": 617.15,
- "end": 617.41
- },
- {
- "text": "level",
- "start": 617.41,
- "end": 617.6
- },
- {
- "text": "because",
- "start": 617.6,
- "end": 617.85
- },
- {
- "text": "of",
- "start": 617.85,
- "end": 617.94
- },
- {
- "text": "this",
- "start": 617.94,
- "end": 618.16
- },
- {
- "text": "visceral",
- "start": 618.16,
- "end": 618.82
- },
- {
- "text": "physicality",
- "start": 618.82,
- "end": 619.75
- },
- {
- "text": "that",
- "start": 619.75,
- "end": 619.93
- },
- {
- "text": "we",
- "start": 619.93,
- "end": 620.07
- },
- {
- "text": "respond",
- "start": 620.07,
- "end": 620.7
- },
- {
- "text": "more",
- "start": 620.7,
- "end": 621.03
- },
- {
- "text": "intensely",
- "start": 621.03,
- "end": 621.75
- },
- {
- "text": "to",
- "start": 621.75,
- "end": 622.19
- },
- {
- "text": "take",
- "start": 622.46,
- "end": 622.65
- },
- {
- "text": "images",
- "start": 622.73,
- "end": 623.14
- },
- {
- "text": "on",
- "start": 623.14,
- "end": 623.24
- },
- {
- "text": "a",
- "start": 623.24,
- "end": 623.32
- },
- {
- "text": "screen",
- "start": 623.32,
- "end": 623.95
- },
- {
- "text": "when",
- "start": 625.64,
- "end": 625.86
- },
- {
- "text": "we",
- "start": 625.86,
- "end": 625.96
- },
- {
- "text": "behave",
- "start": 625.96,
- "end": 626.3
- },
- {
- "text": "violently",
- "start": 626.31,
- "end": 626.9
- },
- {
- "text": "towards",
- "start": 626.9,
- "end": 627.43
- },
- {
- "text": "Robarts",
- "start": 627.43,
- "end": 628.09
- },
- {
- "text": "specifically",
- "start": 628.12,
- "end": 628.84
- },
- {
- "text": "robots",
- "start": 628.84,
- "end": 629.22
- },
- {
- "text": "that",
- "start": 629.22,
- "end": 629.37
- },
- {
- "text": "are",
- "start": 629.37,
- "end": 629.47
- },
- {
- "text": "designed",
- "start": 629.47,
- "end": 629.95
- },
- {
- "text": "to",
- "start": 629.95,
- "end": 630.08
- },
- {
- "text": "mimic",
- "start": 630.08,
- "end": 630.41
- },
- {
- "text": "life",
- "start": 630.41,
- "end": 630.97
- },
- {
- "text": "is",
- "start": 631.37,
- "end": 631.55
- },
- {
- "text": "that",
- "start": 631.55,
- "end": 631.99
- },
- {
- "text": "a",
- "start": 632.49,
- "end": 632.59
- },
- {
- "text": "healthy",
- "start": 632.63,
- "end": 633.04
- },
- {
- "text": "outlet",
- "start": 633.04,
- "end": 633.48
- },
- {
- "text": "from",
- "start": 633.48,
- "end": 633.67
- },
- {
- "text": "minor",
- "start": 633.67,
- "end": 633.92
- },
- {
- "text": "behaviour",
- "start": 633.95,
- "end": 634.57
- },
- {
- "text": "or",
- "start": 635.33,
- "end": 635.46
- },
- {
- "text": "is",
- "start": 635.46,
- "end": 635.6
- },
- {
- "text": "that",
- "start": 635.6,
- "end": 635.89
- },
- {
- "text": "training",
- "start": 635.92,
- "end": 636.42
- },
- {
- "text": "a",
- "start": 636.42,
- "end": 636.51
- },
- {
- "text": "courting",
- "start": 636.51,
- "end": 637.03
- },
- {
- "text": "muscles.",
- "start": 637.04,
- "end": 637.76
- }
- ],
- "start": 613.53
- },
- "entityRanges": [
- {
- "start": 613.53,
- "end": 613.77,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 613.77,
- "end": 613.96,
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 613.96,
- "end": 614.37,
- "text": "the",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 614.41,
- "end": 615.04,
- "text": "violent",
- "offset": 12,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 615.04,
- "end": 615.38,
- "text": "video",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 615.38,
- "end": 615.69,
- "text": "games",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 615.69,
- "end": 616.15,
- "text": "question,",
- "offset": 32,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.15,
- "end": 616.28,
- "text": "but",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.28,
- "end": 616.4,
- "text": "it's",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.42,
- "end": 616.52,
- "text": "a",
- "offset": 51,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.52,
- "end": 617.15,
- "text": "completely",
- "offset": 53,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.15,
- "end": 617.41,
- "text": "new",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.41,
- "end": 617.6,
- "text": "level",
- "offset": 68,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.6,
- "end": 617.85,
- "text": "because",
- "offset": 74,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.85,
- "end": 617.94,
- "text": "of",
- "offset": 82,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.94,
- "end": 618.16,
- "text": "this",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 618.16,
- "end": 618.82,
- "text": "visceral",
- "offset": 90,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 618.82,
- "end": 619.75,
- "text": "physicality",
- "offset": 99,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 619.75,
- "end": 619.93,
- "text": "that",
- "offset": 111,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 619.93,
- "end": 620.07,
- "text": "we",
- "offset": 116,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 620.07,
- "end": 620.7,
- "text": "respond",
- "offset": 119,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 620.7,
- "end": 621.03,
- "text": "more",
- "offset": 127,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 621.03,
- "end": 621.75,
- "text": "intensely",
- "offset": 132,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 621.75,
- "end": 622.19,
- "text": "to",
- "offset": 142,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 622.46,
- "end": 622.65,
- "text": "take",
- "offset": 145,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 622.73,
- "end": 623.14,
- "text": "images",
- "offset": 150,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 623.14,
- "end": 623.24,
- "text": "on",
- "offset": 157,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 623.24,
- "end": 623.32,
- "text": "a",
- "offset": 160,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 623.32,
- "end": 623.95,
- "text": "screen",
- "offset": 162,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 625.64,
- "end": 625.86,
- "text": "when",
- "offset": 169,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 625.86,
- "end": 625.96,
- "text": "we",
- "offset": 174,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 625.96,
- "end": 626.3,
- "text": "behave",
- "offset": 177,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 626.31,
- "end": 626.9,
- "text": "violently",
- "offset": 184,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 626.9,
- "end": 627.43,
- "text": "towards",
- "offset": 194,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 627.43,
- "end": 628.09,
- "text": "Robarts",
- "offset": 202,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 628.12,
- "end": 628.84,
- "text": "specifically",
- "offset": 210,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 628.84,
- "end": 629.22,
- "text": "robots",
- "offset": 223,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.22,
- "end": 629.37,
- "text": "that",
- "offset": 230,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.37,
- "end": 629.47,
- "text": "are",
- "offset": 235,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.47,
- "end": 629.95,
- "text": "designed",
- "offset": 239,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.95,
- "end": 630.08,
- "text": "to",
- "offset": 248,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 630.08,
- "end": 630.41,
- "text": "mimic",
- "offset": 251,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 630.41,
- "end": 630.97,
- "text": "life",
- "offset": 257,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 631.37,
- "end": 631.55,
- "text": "is",
- "offset": 262,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 631.55,
- "end": 631.99,
- "text": "that",
- "offset": 265,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 632.49,
- "end": 632.59,
- "text": "a",
- "offset": 270,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 632.63,
- "end": 633.04,
- "text": "healthy",
- "offset": 272,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.04,
- "end": 633.48,
- "text": "outlet",
- "offset": 280,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.48,
- "end": 633.67,
- "text": "from",
- "offset": 287,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.67,
- "end": 633.92,
- "text": "minor",
- "offset": 292,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.95,
- "end": 634.57,
- "text": "behaviour",
- "offset": 298,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.33,
- "end": 635.46,
- "text": "or",
- "offset": 308,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.46,
- "end": 635.6,
- "text": "is",
- "offset": 311,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.6,
- "end": 635.89,
- "text": "that",
- "offset": 314,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.92,
- "end": 636.42,
- "text": "training",
- "offset": 319,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 636.42,
- "end": 636.51,
- "text": "a",
- "offset": 328,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 636.51,
- "end": 637.03,
- "text": "courting",
- "offset": 330,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 637.04,
- "end": 637.76,
- "text": "muscles.",
- "offset": 339,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But the answer this question has the potential impact human behaviour has the potential impact social norms.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 115",
- "words": [
- {
- "text": "But",
- "start": 642.59,
- "end": 642.73
- },
- {
- "text": "the",
- "start": 642.74,
- "end": 642.88
- },
- {
- "text": "answer",
- "start": 642.9,
- "end": 643.15
- },
- {
- "text": "this",
- "start": 643.16,
- "end": 643.46
- },
- {
- "text": "question",
- "start": 643.48,
- "end": 644.1
- },
- {
- "text": "has",
- "start": 644.1,
- "end": 644.34
- },
- {
- "text": "the",
- "start": 644.34,
- "end": 644.42
- },
- {
- "text": "potential",
- "start": 644.42,
- "end": 644.99
- },
- {
- "text": "impact",
- "start": 644.99,
- "end": 645.45
- },
- {
- "text": "human",
- "start": 645.45,
- "end": 645.73
- },
- {
- "text": "behaviour",
- "start": 645.73,
- "end": 646.43
- },
- {
- "text": "has",
- "start": 646.62,
- "end": 646.9
- },
- {
- "text": "the",
- "start": 646.9,
- "end": 646.98
- },
- {
- "text": "potential",
- "start": 646.98,
- "end": 647.49
- },
- {
- "text": "impact",
- "start": 647.49,
- "end": 647.95
- },
- {
- "text": "social",
- "start": 647.95,
- "end": 648.33
- },
- {
- "text": "norms.",
- "start": 648.33,
- "end": 648.94
- }
- ],
- "start": 642.59
- },
- "entityRanges": [
- {
- "start": 642.59,
- "end": 642.73,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 642.74,
- "end": 642.88,
- "text": "the",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 642.9,
- "end": 643.15,
- "text": "answer",
- "offset": 8,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 643.16,
- "end": 643.46,
- "text": "this",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 643.48,
- "end": 644.1,
- "text": "question",
- "offset": 20,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.1,
- "end": 644.34,
- "text": "has",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.34,
- "end": 644.42,
- "text": "the",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.42,
- "end": 644.99,
- "text": "potential",
- "offset": 37,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.99,
- "end": 645.45,
- "text": "impact",
- "offset": 47,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 645.45,
- "end": 645.73,
- "text": "human",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 645.73,
- "end": 646.43,
- "text": "behaviour",
- "offset": 60,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 646.62,
- "end": 646.9,
- "text": "has",
- "offset": 70,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 646.9,
- "end": 646.98,
- "text": "the",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 646.98,
- "end": 647.49,
- "text": "potential",
- "offset": 78,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 647.49,
- "end": 647.95,
- "text": "impact",
- "offset": 88,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 647.95,
- "end": 648.33,
- "text": "social",
- "offset": 95,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 648.33,
- "end": 648.94,
- "text": "norms.",
- "offset": 102,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It has the potential to inspire rules around.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 116",
- "words": [
- {
- "text": "It",
- "start": 649.34,
- "end": 649.48
- },
- {
- "text": "has",
- "start": 649.48,
- "end": 649.69
- },
- {
- "text": "the",
- "start": 649.69,
- "end": 649.77
- },
- {
- "text": "potential",
- "start": 649.77,
- "end": 650.22
- },
- {
- "text": "to",
- "start": 650.22,
- "end": 650.37
- },
- {
- "text": "inspire",
- "start": 650.37,
- "end": 650.89
- },
- {
- "text": "rules",
- "start": 650.89,
- "end": 651.43
- },
- {
- "text": "around.",
- "start": 651.46,
- "end": 651.8
- }
- ],
- "start": 649.34
- },
- "entityRanges": [
- {
- "start": 649.34,
- "end": 649.48,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 649.48,
- "end": 649.69,
- "text": "has",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 649.69,
- "end": 649.77,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 649.77,
- "end": 650.22,
- "text": "potential",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 650.22,
- "end": 650.37,
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 650.37,
- "end": 650.89,
- "text": "inspire",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 650.89,
- "end": 651.43,
- "text": "rules",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 651.46,
- "end": 651.8,
- "text": "around.",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "What we can and can't do with certain Robarts murder, animal cruelty was because even if robots can't fior a behaviour towards them might matter for us and regardless of whether we end up changing of ze robots might be able to help us come to a new understanding of ourselves.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 117",
- "words": [
- {
- "text": "What",
- "start": 651.8,
- "end": 651.93
- },
- {
- "text": "we",
- "start": 651.93,
- "end": 652.28
- },
- {
- "text": "can",
- "start": 652.31,
- "end": 652.65
- },
- {
- "text": "and",
- "start": 652.65,
- "end": 652.73
- },
- {
- "text": "can't",
- "start": 652.73,
- "end": 653.04
- },
- {
- "text": "do",
- "start": 653.04,
- "end": 653.23
- },
- {
- "text": "with",
- "start": 653.23,
- "end": 653.34
- },
- {
- "text": "certain",
- "start": 653.34,
- "end": 653.62
- },
- {
- "text": "Robarts",
- "start": 653.62,
- "end": 654.41
- },
- {
- "text": "murder,",
- "start": 654.44,
- "end": 654.93
- },
- {
- "text": "animal",
- "start": 654.99,
- "end": 655.32
- },
- {
- "text": "cruelty",
- "start": 655.32,
- "end": 655.74
- },
- {
- "text": "was",
- "start": 655.75,
- "end": 656.29
- },
- {
- "text": "because",
- "start": 657.21,
- "end": 657.56
- },
- {
- "text": "even",
- "start": 657.56,
- "end": 657.86
- },
- {
- "text": "if",
- "start": 657.86,
- "end": 658.02
- },
- {
- "text": "robots",
- "start": 658.02,
- "end": 658.44
- },
- {
- "text": "can't",
- "start": 658.44,
- "end": 658.72
- },
- {
- "text": "fior",
- "start": 658.79,
- "end": 659.36
- },
- {
- "text": "a",
- "start": 660.06,
- "end": 660.21
- },
- {
- "text": "behaviour",
- "start": 660.26,
- "end": 660.89
- },
- {
- "text": "towards",
- "start": 660.89,
- "end": 661.23
- },
- {
- "text": "them",
- "start": 661.23,
- "end": 661.35
- },
- {
- "text": "might",
- "start": 661.35,
- "end": 661.65
- },
- {
- "text": "matter",
- "start": 661.65,
- "end": 662.24
- },
- {
- "text": "for",
- "start": 662.39,
- "end": 662.66
- },
- {
- "text": "us",
- "start": 662.66,
- "end": 663.17
- },
- {
- "text": "and",
- "start": 664.89,
- "end": 665.06
- },
- {
- "text": "regardless",
- "start": 665.06,
- "end": 665.6
- },
- {
- "text": "of",
- "start": 665.6,
- "end": 665.69
- },
- {
- "text": "whether",
- "start": 665.69,
- "end": 665.93
- },
- {
- "text": "we",
- "start": 665.93,
- "end": 666.06
- },
- {
- "text": "end",
- "start": 666.06,
- "end": 666.21
- },
- {
- "text": "up",
- "start": 666.21,
- "end": 666.29
- },
- {
- "text": "changing",
- "start": 666.29,
- "end": 666.88
- },
- {
- "text": "of",
- "start": 666.88,
- "end": 667.11
- },
- {
- "text": "ze",
- "start": 667.19,
- "end": 667.66
- },
- {
- "text": "robots",
- "start": 668.9,
- "end": 669.34
- },
- {
- "text": "might",
- "start": 669.34,
- "end": 669.56
- },
- {
- "text": "be",
- "start": 669.56,
- "end": 669.73
- },
- {
- "text": "able",
- "start": 669.73,
- "end": 669.94
- },
- {
- "text": "to",
- "start": 669.94,
- "end": 670.03
- },
- {
- "text": "help",
- "start": 670.03,
- "end": 670.25
- },
- {
- "text": "us",
- "start": 670.25,
- "end": 670.38
- },
- {
- "text": "come",
- "start": 670.38,
- "end": 670.59
- },
- {
- "text": "to",
- "start": 670.59,
- "end": 670.72
- },
- {
- "text": "a",
- "start": 670.72,
- "end": 670.79
- },
- {
- "text": "new",
- "start": 670.79,
- "end": 671.02
- },
- {
- "text": "understanding",
- "start": 671.02,
- "end": 671.59
- },
- {
- "text": "of",
- "start": 671.59,
- "end": 671.7
- },
- {
- "text": "ourselves.",
- "start": 671.7,
- "end": 672.51
- }
- ],
- "start": 651.8
- },
- "entityRanges": [
- {
- "start": 651.8,
- "end": 651.93,
- "text": "What",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 651.93,
- "end": 652.28,
- "text": "we",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 652.31,
- "end": 652.65,
- "text": "can",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 652.65,
- "end": 652.73,
- "text": "and",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 652.73,
- "end": 653.04,
- "text": "can't",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.04,
- "end": 653.23,
- "text": "do",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.23,
- "end": 653.34,
- "text": "with",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.34,
- "end": 653.62,
- "text": "certain",
- "offset": 30,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.62,
- "end": 654.41,
- "text": "Robarts",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 654.44,
- "end": 654.93,
- "text": "murder,",
- "offset": 46,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 654.99,
- "end": 655.32,
- "text": "animal",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 655.32,
- "end": 655.74,
- "text": "cruelty",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 655.75,
- "end": 656.29,
- "text": "was",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 657.21,
- "end": 657.56,
- "text": "because",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 657.56,
- "end": 657.86,
- "text": "even",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 657.86,
- "end": 658.02,
- "text": "if",
- "offset": 86,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 658.02,
- "end": 658.44,
- "text": "robots",
- "offset": 89,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 658.44,
- "end": 658.72,
- "text": "can't",
- "offset": 96,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 658.79,
- "end": 659.36,
- "text": "fior",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 660.06,
- "end": 660.21,
- "text": "a",
- "offset": 107,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 660.26,
- "end": 660.89,
- "text": "behaviour",
- "offset": 109,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 660.89,
- "end": 661.23,
- "text": "towards",
- "offset": 119,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 661.23,
- "end": 661.35,
- "text": "them",
- "offset": 127,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 661.35,
- "end": 661.65,
- "text": "might",
- "offset": 132,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 661.65,
- "end": 662.24,
- "text": "matter",
- "offset": 138,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 662.39,
- "end": 662.66,
- "text": "for",
- "offset": 145,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 662.66,
- "end": 663.17,
- "text": "us",
- "offset": 149,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 664.89,
- "end": 665.06,
- "text": "and",
- "offset": 152,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.06,
- "end": 665.6,
- "text": "regardless",
- "offset": 156,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.6,
- "end": 665.69,
- "text": "of",
- "offset": 167,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.69,
- "end": 665.93,
- "text": "whether",
- "offset": 170,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.93,
- "end": 666.06,
- "text": "we",
- "offset": 178,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.06,
- "end": 666.21,
- "text": "end",
- "offset": 181,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.21,
- "end": 666.29,
- "text": "up",
- "offset": 185,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.29,
- "end": 666.88,
- "text": "changing",
- "offset": 188,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.88,
- "end": 667.11,
- "text": "of",
- "offset": 197,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 667.19,
- "end": 667.66,
- "text": "ze",
- "offset": 200,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 668.9,
- "end": 669.34,
- "text": "robots",
- "offset": 203,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.34,
- "end": 669.56,
- "text": "might",
- "offset": 210,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.56,
- "end": 669.73,
- "text": "be",
- "offset": 216,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.73,
- "end": 669.94,
- "text": "able",
- "offset": 219,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.94,
- "end": 670.03,
- "text": "to",
- "offset": 224,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.03,
- "end": 670.25,
- "text": "help",
- "offset": 227,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.25,
- "end": 670.38,
- "text": "us",
- "offset": 232,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.38,
- "end": 670.59,
- "text": "come",
- "offset": 235,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.59,
- "end": 670.72,
- "text": "to",
- "offset": 240,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.72,
- "end": 670.79,
- "text": "a",
- "offset": 243,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.79,
- "end": 671.02,
- "text": "new",
- "offset": 245,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 671.02,
- "end": 671.59,
- "text": "understanding",
- "offset": 249,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 671.59,
- "end": 671.7,
- "text": "of",
- "offset": 263,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 671.7,
- "end": 672.51,
- "text": "ourselves.",
- "offset": 266,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Most of what I've learned over the past ten years have not been about technology at all.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 118",
- "words": [
- {
- "text": "Most",
- "start": 674.24,
- "end": 674.49
- },
- {
- "text": "of",
- "start": 674.49,
- "end": 674.55
- },
- {
- "text": "what",
- "start": 674.55,
- "end": 674.67
- },
- {
- "text": "I've",
- "start": 674.67,
- "end": 674.8
- },
- {
- "text": "learned",
- "start": 674.8,
- "end": 675.06
- },
- {
- "text": "over",
- "start": 675.06,
- "end": 675.17
- },
- {
- "text": "the",
- "start": 675.17,
- "end": 675.24
- },
- {
- "text": "past",
- "start": 675.24,
- "end": 675.53
- },
- {
- "text": "ten",
- "start": 675.53,
- "end": 675.72
- },
- {
- "text": "years",
- "start": 675.72,
- "end": 676.36
- },
- {
- "text": "have",
- "start": 676.45,
- "end": 676.63
- },
- {
- "text": "not",
- "start": 676.63,
- "end": 676.87
- },
- {
- "text": "been",
- "start": 676.87,
- "end": 676.98
- },
- {
- "text": "about",
- "start": 676.98,
- "end": 677.21
- },
- {
- "text": "technology",
- "start": 677.21,
- "end": 677.76
- },
- {
- "text": "at",
- "start": 677.76,
- "end": 677.93
- },
- {
- "text": "all.",
- "start": 677.93,
- "end": 678.13
- }
- ],
- "start": 674.24
- },
- "entityRanges": [
- {
- "start": 674.24,
- "end": 674.49,
- "text": "Most",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.49,
- "end": 674.55,
- "text": "of",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.55,
- "end": 674.67,
- "text": "what",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.67,
- "end": 674.8,
- "text": "I've",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.8,
- "end": 675.06,
- "text": "learned",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.06,
- "end": 675.17,
- "text": "over",
- "offset": 26,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.17,
- "end": 675.24,
- "text": "the",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.24,
- "end": 675.53,
- "text": "past",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.53,
- "end": 675.72,
- "text": "ten",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.72,
- "end": 676.36,
- "text": "years",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.45,
- "end": 676.63,
- "text": "have",
- "offset": 50,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.63,
- "end": 676.87,
- "text": "not",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.87,
- "end": 676.98,
- "text": "been",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.98,
- "end": 677.21,
- "text": "about",
- "offset": 64,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 677.21,
- "end": 677.76,
- "text": "technology",
- "offset": 70,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 677.76,
- "end": 677.93,
- "text": "at",
- "offset": 81,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 677.93,
- "end": 678.13,
- "text": "all.",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's been about human psychology and empathy and how we relate to others because when a child is kind to remember when a soldier has to save a robot on the battlefield.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 119",
- "words": [
- {
- "text": "It's",
- "start": 678.83,
- "end": 679.07
- },
- {
- "text": "been",
- "start": 679.07,
- "end": 679.21
- },
- {
- "text": "about",
- "start": 679.21,
- "end": 679.45
- },
- {
- "text": "human",
- "start": 679.45,
- "end": 679.76
- },
- {
- "text": "psychology",
- "start": 679.76,
- "end": 680.7
- },
- {
- "text": "and",
- "start": 681.35,
- "end": 681.51
- },
- {
- "text": "empathy",
- "start": 681.59,
- "end": 682.29
- },
- {
- "text": "and",
- "start": 682.31,
- "end": 682.42
- },
- {
- "text": "how",
- "start": 682.43,
- "end": 682.66
- },
- {
- "text": "we",
- "start": 682.66,
- "end": 682.79
- },
- {
- "text": "relate",
- "start": 682.79,
- "end": 683.13
- },
- {
- "text": "to",
- "start": 683.13,
- "end": 683.23
- },
- {
- "text": "others",
- "start": 683.26,
- "end": 683.91
- },
- {
- "text": "because",
- "start": 685.5,
- "end": 685.84
- },
- {
- "text": "when",
- "start": 685.84,
- "end": 685.98
- },
- {
- "text": "a",
- "start": 685.98,
- "end": 686.05
- },
- {
- "text": "child",
- "start": 686.05,
- "end": 686.47
- },
- {
- "text": "is",
- "start": 686.47,
- "end": 686.6
- },
- {
- "text": "kind",
- "start": 686.6,
- "end": 686.99
- },
- {
- "text": "to",
- "start": 686.99,
- "end": 687.22
- },
- {
- "text": "remember",
- "start": 687.22,
- "end": 687.85
- },
- {
- "text": "when",
- "start": 689.25,
- "end": 689.41
- },
- {
- "text": "a",
- "start": 689.41,
- "end": 689.5
- },
- {
- "text": "soldier",
- "start": 689.5,
- "end": 690.01
- },
- {
- "text": "has",
- "start": 690.03,
- "end": 690.33
- },
- {
- "text": "to",
- "start": 690.34,
- "end": 690.46
- },
- {
- "text": "save",
- "start": 690.46,
- "end": 690.77
- },
- {
- "text": "a",
- "start": 690.77,
- "end": 690.86
- },
- {
- "text": "robot",
- "start": 690.86,
- "end": 691.23
- },
- {
- "text": "on",
- "start": 691.23,
- "end": 691.36
- },
- {
- "text": "the",
- "start": 691.36,
- "end": 691.43
- },
- {
- "text": "battlefield.",
- "start": 691.43,
- "end": 692.3
- }
- ],
- "start": 678.83
- },
- "entityRanges": [
- {
- "start": 678.83,
- "end": 679.07,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.07,
- "end": 679.21,
- "text": "been",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.21,
- "end": 679.45,
- "text": "about",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.45,
- "end": 679.76,
- "text": "human",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.76,
- "end": 680.7,
- "text": "psychology",
- "offset": 22,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 681.35,
- "end": 681.51,
- "text": "and",
- "offset": 33,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 681.59,
- "end": 682.29,
- "text": "empathy",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.31,
- "end": 682.42,
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.43,
- "end": 682.66,
- "text": "how",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.66,
- "end": 682.79,
- "text": "we",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.79,
- "end": 683.13,
- "text": "relate",
- "offset": 56,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 683.13,
- "end": 683.23,
- "text": "to",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 683.26,
- "end": 683.91,
- "text": "others",
- "offset": 66,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 685.5,
- "end": 685.84,
- "text": "because",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 685.84,
- "end": 685.98,
- "text": "when",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 685.98,
- "end": 686.05,
- "text": "a",
- "offset": 86,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.05,
- "end": 686.47,
- "text": "child",
- "offset": 88,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.47,
- "end": 686.6,
- "text": "is",
- "offset": 94,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.6,
- "end": 686.99,
- "text": "kind",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.99,
- "end": 687.22,
- "text": "to",
- "offset": 102,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 687.22,
- "end": 687.85,
- "text": "remember",
- "offset": 105,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 689.25,
- "end": 689.41,
- "text": "when",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 689.41,
- "end": 689.5,
- "text": "a",
- "offset": 119,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 689.5,
- "end": 690.01,
- "text": "soldier",
- "offset": 121,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.03,
- "end": 690.33,
- "text": "has",
- "offset": 129,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.34,
- "end": 690.46,
- "text": "to",
- "offset": 133,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.46,
- "end": 690.77,
- "text": "save",
- "offset": 136,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.77,
- "end": 690.86,
- "text": "a",
- "offset": 141,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.86,
- "end": 691.23,
- "text": "robot",
- "offset": 143,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 691.23,
- "end": 691.36,
- "text": "on",
- "offset": 149,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 691.36,
- "end": 691.43,
- "text": "the",
- "offset": 152,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 691.43,
- "end": 692.3,
- "text": "battlefield.",
- "offset": 156,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "When a group of people refuses to harm her about a baby dinosaur.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 120",
- "words": [
- {
- "text": "When",
- "start": 693.36,
- "end": 693.55
- },
- {
- "text": "a",
- "start": 693.56,
- "end": 693.63
- },
- {
- "text": "group",
- "start": 693.63,
- "end": 693.83
- },
- {
- "text": "of",
- "start": 693.83,
- "end": 693.97
- },
- {
- "text": "people",
- "start": 693.97,
- "end": 694.34
- },
- {
- "text": "refuses",
- "start": 694.34,
- "end": 694.9
- },
- {
- "text": "to",
- "start": 694.9,
- "end": 695
- },
- {
- "text": "harm",
- "start": 695,
- "end": 695.44
- },
- {
- "text": "her",
- "start": 695.44,
- "end": 695.57
- },
- {
- "text": "about",
- "start": 695.57,
- "end": 695.82
- },
- {
- "text": "a",
- "start": 695.82,
- "end": 695.89
- },
- {
- "text": "baby",
- "start": 695.92,
- "end": 696.13
- },
- {
- "text": "dinosaur.",
- "start": 696.13,
- "end": 696.89
- }
- ],
- "start": 693.36
- },
- "entityRanges": [
- {
- "start": 693.36,
- "end": 693.55,
- "text": "When",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.56,
- "end": 693.63,
- "text": "a",
- "offset": 5,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.63,
- "end": 693.83,
- "text": "group",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.83,
- "end": 693.97,
- "text": "of",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.97,
- "end": 694.34,
- "text": "people",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 694.34,
- "end": 694.9,
- "text": "refuses",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 694.9,
- "end": 695,
- "text": "to",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695,
- "end": 695.44,
- "text": "harm",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.44,
- "end": 695.57,
- "text": "her",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.57,
- "end": 695.82,
- "text": "about",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.82,
- "end": 695.89,
- "text": "a",
- "offset": 49,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.92,
- "end": 696.13,
- "text": "baby",
- "offset": 51,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 696.13,
- "end": 696.89,
- "text": "dinosaur.",
- "offset": 56,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Those robots aren't just motors in years and algorithms reflections of our own humanity.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 121",
- "words": [
- {
- "text": "Those",
- "start": 698.22,
- "end": 698.46
- },
- {
- "text": "robots",
- "start": 698.46,
- "end": 698.86
- },
- {
- "text": "aren't",
- "start": 698.88,
- "end": 699.06
- },
- {
- "text": "just",
- "start": 699.07,
- "end": 699.41
- },
- {
- "text": "motors",
- "start": 699.44,
- "end": 699.9
- },
- {
- "text": "in",
- "start": 699.9,
- "end": 700.01
- },
- {
- "text": "years",
- "start": 700.01,
- "end": 700.29
- },
- {
- "text": "and",
- "start": 700.3,
- "end": 700.43
- },
- {
- "text": "algorithms",
- "start": 700.44,
- "end": 701.45
- },
- {
- "text": "reflections",
- "start": 702.6,
- "end": 703.26
- },
- {
- "text": "of",
- "start": 703.26,
- "end": 703.36
- },
- {
- "text": "our",
- "start": 703.36,
- "end": 703.47
- },
- {
- "text": "own",
- "start": 703.47,
- "end": 703.64
- },
- {
- "text": "humanity.",
- "start": 703.64,
- "end": 704.33
- }
- ],
- "start": 698.22
- },
- "entityRanges": [
- {
- "start": 698.22,
- "end": 698.46,
- "text": "Those",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 698.46,
- "end": 698.86,
- "text": "robots",
- "offset": 6,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 698.88,
- "end": 699.06,
- "text": "aren't",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 699.07,
- "end": 699.41,
- "text": "just",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 699.44,
- "end": 699.9,
- "text": "motors",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 699.9,
- "end": 700.01,
- "text": "in",
- "offset": 32,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.01,
- "end": 700.29,
- "text": "years",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.3,
- "end": 700.43,
- "text": "and",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.44,
- "end": 701.45,
- "text": "algorithms",
- "offset": 45,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 702.6,
- "end": 703.26,
- "text": "reflections",
- "offset": 56,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.26,
- "end": 703.36,
- "text": "of",
- "offset": 68,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.36,
- "end": 703.47,
- "text": "our",
- "offset": 71,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.47,
- "end": 703.64,
- "text": "own",
- "offset": 75,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.64,
- "end": 704.33,
- "text": "humanity.",
- "offset": 79,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- }
-]
-export default draftTranscriptExample;
diff --git a/src/lib/Util/adapters/bbc-kaldi/index.test.js b/src/lib/Util/adapters/bbc-kaldi/index.test.js
deleted file mode 100644
index 39b3225e..00000000
--- a/src/lib/Util/adapters/bbc-kaldi/index.test.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import bbcKaldiToDraft from './index';
-
-import draftTranscriptExample from './sample/bbcKaldiToDraft.sample.js';
-import kaldiTedTalkTranscript from './sample/kaldiTedTalkTranscript.sample.json';
-
-// TODO: figure out why the second of these two tests hang
-// might need to review the draftJS data structure output
-describe('bbcKaldiToDraft', () => {
- const result = bbcKaldiToDraft(kaldiTedTalkTranscript);
- it('Should be defined', ( ) => {
- expect(result).toBeDefined();
- });
-
- it('Should be equal to expected value', ( ) => {
- expect(result).toEqual(draftTranscriptExample);
- });
-});
diff --git a/src/lib/Util/adapters/bbc-kaldi/sample/bbcKaldiToDraft.sample.js b/src/lib/Util/adapters/bbc-kaldi/sample/bbcKaldiToDraft.sample.js
deleted file mode 100644
index dd860313..00000000
--- a/src/lib/Util/adapters/bbc-kaldi/sample/bbcKaldiToDraft.sample.js
+++ /dev/null
@@ -1,30691 +0,0 @@
-const draftTranscriptExample = [
- {
- "text": "There is a day.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 0",
- "words": [
- {
- "start": 13.02,
- "confidence": 0.68,
- "end": 13.17,
- "word": "there",
- "punct": "There",
- "index": 0
- },
- {
- "start": 13.17,
- "confidence": 0.61,
- "end": 13.38,
- "word": "is",
- "punct": "is",
- "index": 1
- },
- {
- "start": 13.38,
- "confidence": 0.99,
- "end": 13.44,
- "word": "a",
- "punct": "a",
- "index": 2
- },
- {
- "start": 13.44,
- "confidence": 1,
- "end": 13.86,
- "word": "day",
- "punct": "day.",
- "index": 3
- }
- ],
- "start": 13.02
- },
- "entityRanges": [
- {
- "start": 13.02,
- "end": 13.17,
- "confidence": 0.68,
- "text": "There",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 13.17,
- "end": 13.38,
- "confidence": 0.61,
- "text": "is",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 13.38,
- "end": 13.44,
- "confidence": 0.99,
- "text": "a",
- "offset": 9,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 13.44,
- "end": 13.86,
- "confidence": 1,
- "text": "day.",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "About ten years ago when I asked a friend to hold a baby dinosaur robot upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 1",
- "words": [
- {
- "start": 13.86,
- "confidence": 1,
- "end": 14.13,
- "word": "about",
- "punct": "About",
- "index": 4
- },
- {
- "start": 14.13,
- "confidence": 1,
- "end": 14.38,
- "word": "ten",
- "punct": "ten",
- "index": 5
- },
- {
- "start": 14.38,
- "confidence": 1,
- "end": 14.61,
- "word": "years",
- "punct": "years",
- "index": 6
- },
- {
- "start": 14.61,
- "confidence": 1,
- "end": 15.15,
- "word": "ago",
- "punct": "ago",
- "index": 7
- },
- {
- "start": 15.47,
- "confidence": 0.78,
- "end": 15.59,
- "word": "when",
- "punct": "when",
- "index": 8
- },
- {
- "start": 15.68,
- "confidence": 0.98,
- "end": 15.84,
- "word": "i",
- "punct": "I",
- "index": 9
- },
- {
- "start": 15.86,
- "confidence": 1,
- "end": 16.19,
- "word": "asked",
- "punct": "asked",
- "index": 10
- },
- {
- "start": 16.19,
- "confidence": 0.95,
- "end": 16.28,
- "word": "a",
- "punct": "a",
- "index": 11
- },
- {
- "start": 16.28,
- "confidence": 1,
- "end": 16.65,
- "word": "friend",
- "punct": "friend",
- "index": 12
- },
- {
- "start": 16.65,
- "confidence": 1,
- "end": 16.74,
- "word": "to",
- "punct": "to",
- "index": 13
- },
- {
- "start": 16.74,
- "confidence": 1,
- "end": 17.2,
- "word": "hold",
- "punct": "hold",
- "index": 14
- },
- {
- "start": 17.23,
- "confidence": 0.88,
- "end": 17.33,
- "word": "a",
- "punct": "a",
- "index": 15
- },
- {
- "start": 17.33,
- "confidence": 1,
- "end": 17.63,
- "word": "baby",
- "punct": "baby",
- "index": 16
- },
- {
- "start": 17.63,
- "confidence": 1,
- "end": 18.14,
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 17
- },
- {
- "start": 18.14,
- "confidence": 0.98,
- "end": 18.59,
- "word": "robot",
- "punct": "robot",
- "index": 18
- },
- {
- "start": 18.72,
- "confidence": 1,
- "end": 19.17,
- "word": "upside",
- "punct": "upside",
- "index": 19
- },
- {
- "start": 19.17,
- "confidence": 1,
- "end": 19.58,
- "word": "down",
- "punct": "down.",
- "index": 20
- }
- ],
- "start": 13.86
- },
- "entityRanges": [
- {
- "start": 13.86,
- "end": 14.13,
- "confidence": 1,
- "text": "About",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 14.13,
- "end": 14.38,
- "confidence": 1,
- "text": "ten",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 14.38,
- "end": 14.61,
- "confidence": 1,
- "text": "years",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 14.61,
- "end": 15.15,
- "confidence": 1,
- "text": "ago",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 15.47,
- "end": 15.59,
- "confidence": 0.78,
- "text": "when",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 15.68,
- "end": 15.84,
- "confidence": 0.98,
- "text": "I",
- "offset": 25,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 15.86,
- "end": 16.19,
- "confidence": 1,
- "text": "asked",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.19,
- "end": 16.28,
- "confidence": 0.95,
- "text": "a",
- "offset": 33,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.28,
- "end": 16.65,
- "confidence": 1,
- "text": "friend",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.65,
- "end": 16.74,
- "confidence": 1,
- "text": "to",
- "offset": 42,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 16.74,
- "end": 17.2,
- "confidence": 1,
- "text": "hold",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 17.23,
- "end": 17.33,
- "confidence": 0.88,
- "text": "a",
- "offset": 50,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 17.33,
- "end": 17.63,
- "confidence": 1,
- "text": "baby",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 17.63,
- "end": 18.14,
- "confidence": 1,
- "text": "dinosaur",
- "offset": 57,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 18.14,
- "end": 18.59,
- "confidence": 0.98,
- "text": "robot",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 18.72,
- "end": 19.17,
- "confidence": 1,
- "text": "upside",
- "offset": 72,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 19.17,
- "end": 19.58,
- "confidence": 1,
- "text": "down.",
- "offset": 79,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It was a toy called plea.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 2",
- "words": [
- {
- "start": 21.83,
- "confidence": 0.61,
- "end": 21.9,
- "word": "it",
- "punct": "It",
- "index": 21
- },
- {
- "start": 21.95,
- "confidence": 0.95,
- "end": 22.09,
- "word": "was",
- "punct": "was",
- "index": 22
- },
- {
- "start": 22.1,
- "confidence": 0.38,
- "end": 22.22,
- "word": "a",
- "punct": "a",
- "index": 23
- },
- {
- "start": 22.23,
- "confidence": 1,
- "end": 22.68,
- "word": "toy",
- "punct": "toy",
- "index": 24
- },
- {
- "start": 22.72,
- "confidence": 0.48,
- "end": 22.99,
- "word": "called",
- "punct": "called",
- "index": 25
- },
- {
- "start": 23.03,
- "confidence": 0.51,
- "end": 23.39,
- "word": "plea",
- "punct": "plea.",
- "index": 26
- }
- ],
- "start": 21.83
- },
- "entityRanges": [
- {
- "start": 21.83,
- "end": 21.9,
- "confidence": 0.61,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 21.95,
- "end": 22.09,
- "confidence": 0.95,
- "text": "was",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 22.1,
- "end": 22.22,
- "confidence": 0.38,
- "text": "a",
- "offset": 7,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 22.23,
- "end": 22.68,
- "confidence": 1,
- "text": "toy",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 22.72,
- "end": 22.99,
- "confidence": 0.48,
- "text": "called",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 23.03,
- "end": 23.39,
- "confidence": 0.51,
- "text": "plea.",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "All that he'd ordered and I was really excited about it because I've always loved about this one has really caught technical features.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 3",
- "words": [
- {
- "start": 23.45,
- "confidence": 0.42,
- "end": 23.82,
- "word": "all",
- "punct": "All",
- "index": 27
- },
- {
- "start": 24.2,
- "confidence": 1,
- "end": 24.6,
- "word": "that",
- "punct": "that",
- "index": 28
- },
- {
- "start": 24.65,
- "confidence": 0.59,
- "end": 24.84,
- "word": "he'd",
- "punct": "he'd",
- "index": 29
- },
- {
- "start": 24.86,
- "confidence": 0.94,
- "end": 25.3,
- "word": "ordered",
- "punct": "ordered",
- "index": 30
- },
- {
- "start": 25.3,
- "confidence": 0.84,
- "end": 25.42,
- "word": "and",
- "punct": "and",
- "index": 31
- },
- {
- "start": 25.42,
- "confidence": 0.96,
- "end": 25.49,
- "word": "i",
- "punct": "I",
- "index": 32
- },
- {
- "start": 25.49,
- "confidence": 1,
- "end": 25.66,
- "word": "was",
- "punct": "was",
- "index": 33
- },
- {
- "start": 25.66,
- "confidence": 1,
- "end": 25.88,
- "word": "really",
- "punct": "really",
- "index": 34
- },
- {
- "start": 25.88,
- "confidence": 1,
- "end": 26.49,
- "word": "excited",
- "punct": "excited",
- "index": 35
- },
- {
- "start": 26.49,
- "confidence": 1,
- "end": 26.82,
- "word": "about",
- "punct": "about",
- "index": 36
- },
- {
- "start": 26.82,
- "confidence": 1,
- "end": 27.04,
- "word": "it",
- "punct": "it",
- "index": 37
- },
- {
- "start": 27.04,
- "confidence": 1,
- "end": 27.77,
- "word": "because",
- "punct": "because",
- "index": 38
- },
- {
- "start": 28.35,
- "confidence": 0.79,
- "end": 28.47,
- "word": "i've",
- "punct": "I've",
- "index": 39
- },
- {
- "start": 28.59,
- "confidence": 1,
- "end": 28.79,
- "word": "always",
- "punct": "always",
- "index": 40
- },
- {
- "start": 28.79,
- "confidence": 1,
- "end": 29.03,
- "word": "loved",
- "punct": "loved",
- "index": 41
- },
- {
- "start": 29.09,
- "confidence": 0.52,
- "end": 29.6,
- "word": "about",
- "punct": "about",
- "index": 42
- },
- {
- "start": 29.8,
- "confidence": 1,
- "end": 30.04,
- "word": "this",
- "punct": "this",
- "index": 43
- },
- {
- "start": 30.04,
- "confidence": 0.99,
- "end": 30.2,
- "word": "one",
- "punct": "one",
- "index": 44
- },
- {
- "start": 30.2,
- "confidence": 1,
- "end": 30.46,
- "word": "has",
- "punct": "has",
- "index": 45
- },
- {
- "start": 30.46,
- "confidence": 1,
- "end": 30.76,
- "word": "really",
- "punct": "really",
- "index": 46
- },
- {
- "start": 30.76,
- "confidence": 0.78,
- "end": 30.96,
- "word": "caught",
- "punct": "caught",
- "index": 47
- },
- {
- "start": 30.96,
- "confidence": 1,
- "end": 31.34,
- "word": "technical",
- "punct": "technical",
- "index": 48
- },
- {
- "start": 31.34,
- "confidence": 0.99,
- "end": 31.8,
- "word": "features",
- "punct": "features.",
- "index": 49
- }
- ],
- "start": 23.45
- },
- "entityRanges": [
- {
- "start": 23.45,
- "end": 23.82,
- "confidence": 0.42,
- "text": "All",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 24.2,
- "end": 24.6,
- "confidence": 1,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 24.65,
- "end": 24.84,
- "confidence": 0.59,
- "text": "he'd",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 24.86,
- "end": 25.3,
- "confidence": 0.94,
- "text": "ordered",
- "offset": 14,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.3,
- "end": 25.42,
- "confidence": 0.84,
- "text": "and",
- "offset": 22,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.42,
- "end": 25.49,
- "confidence": 0.96,
- "text": "I",
- "offset": 26,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.49,
- "end": 25.66,
- "confidence": 1,
- "text": "was",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.66,
- "end": 25.88,
- "confidence": 1,
- "text": "really",
- "offset": 32,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 25.88,
- "end": 26.49,
- "confidence": 1,
- "text": "excited",
- "offset": 39,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 26.49,
- "end": 26.82,
- "confidence": 1,
- "text": "about",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 26.82,
- "end": 27.04,
- "confidence": 1,
- "text": "it",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 27.04,
- "end": 27.77,
- "confidence": 1,
- "text": "because",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 28.35,
- "end": 28.47,
- "confidence": 0.79,
- "text": "I've",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 28.59,
- "end": 28.79,
- "confidence": 1,
- "text": "always",
- "offset": 69,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 28.79,
- "end": 29.03,
- "confidence": 1,
- "text": "loved",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 29.09,
- "end": 29.6,
- "confidence": 0.52,
- "text": "about",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 29.8,
- "end": 30.04,
- "confidence": 1,
- "text": "this",
- "offset": 88,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.04,
- "end": 30.2,
- "confidence": 0.99,
- "text": "one",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.2,
- "end": 30.46,
- "confidence": 1,
- "text": "has",
- "offset": 97,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.46,
- "end": 30.76,
- "confidence": 1,
- "text": "really",
- "offset": 101,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.76,
- "end": 30.96,
- "confidence": 0.78,
- "text": "caught",
- "offset": 108,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 30.96,
- "end": 31.34,
- "confidence": 1,
- "text": "technical",
- "offset": 115,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 31.34,
- "end": 31.8,
- "confidence": 0.99,
- "text": "features.",
- "offset": 125,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It had more orders and touch sensors.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 4",
- "words": [
- {
- "start": 31.8,
- "confidence": 0.99,
- "end": 31.93,
- "word": "it",
- "punct": "It",
- "index": 50
- },
- {
- "start": 31.93,
- "confidence": 0.99,
- "end": 32.12,
- "word": "had",
- "punct": "had",
- "index": 51
- },
- {
- "start": 32.12,
- "confidence": 0.5,
- "end": 32.45,
- "word": "more",
- "punct": "more",
- "index": 52
- },
- {
- "start": 32.45,
- "confidence": 0.5,
- "end": 32.76,
- "word": "orders",
- "punct": "orders",
- "index": 53
- },
- {
- "start": 32.76,
- "confidence": 0.89,
- "end": 32.92,
- "word": "and",
- "punct": "and",
- "index": 54
- },
- {
- "start": 32.92,
- "confidence": 1,
- "end": 33.18,
- "word": "touch",
- "punct": "touch",
- "index": 55
- },
- {
- "start": 33.18,
- "confidence": 0.98,
- "end": 33.88,
- "word": "sensors",
- "punct": "sensors.",
- "index": 56
- }
- ],
- "start": 31.8
- },
- "entityRanges": [
- {
- "start": 31.8,
- "end": 31.93,
- "confidence": 0.99,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 31.93,
- "end": 32.12,
- "confidence": 0.99,
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.12,
- "end": 32.45,
- "confidence": 0.5,
- "text": "more",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.45,
- "end": 32.76,
- "confidence": 0.5,
- "text": "orders",
- "offset": 12,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.76,
- "end": 32.92,
- "confidence": 0.89,
- "text": "and",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 32.92,
- "end": 33.18,
- "confidence": 1,
- "text": "touch",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 33.18,
- "end": 33.88,
- "confidence": 0.98,
- "text": "sensors.",
- "offset": 29,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It had an infra red camera and one of the things that had was a tilt sensor so it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 5",
- "words": [
- {
- "start": 34.27,
- "confidence": 0.68,
- "end": 34.51,
- "word": "it",
- "punct": "It",
- "index": 57
- },
- {
- "start": 34.51,
- "confidence": 0.93,
- "end": 34.7,
- "word": "had",
- "punct": "had",
- "index": 58
- },
- {
- "start": 34.7,
- "confidence": 1,
- "end": 34.81,
- "word": "an",
- "punct": "an",
- "index": 59
- },
- {
- "start": 34.81,
- "confidence": 0.53,
- "end": 34.97,
- "word": "infra",
- "punct": "infra",
- "index": 60
- },
- {
- "start": 34.97,
- "confidence": 0.53,
- "end": 35.32,
- "word": "red",
- "punct": "red",
- "index": 61
- },
- {
- "start": 35.31,
- "confidence": 0.99,
- "end": 35.97,
- "word": "camera",
- "punct": "camera",
- "index": 62
- },
- {
- "start": 36.45,
- "confidence": 0.93,
- "end": 36.61,
- "word": "and",
- "punct": "and",
- "index": 63
- },
- {
- "start": 36.64,
- "confidence": 1,
- "end": 36.79,
- "word": "one",
- "punct": "one",
- "index": 64
- },
- {
- "start": 36.79,
- "confidence": 1,
- "end": 36.87,
- "word": "of",
- "punct": "of",
- "index": 65
- },
- {
- "start": 36.87,
- "confidence": 1,
- "end": 36.98,
- "word": "the",
- "punct": "the",
- "index": 66
- },
- {
- "start": 36.98,
- "confidence": 1,
- "end": 37.22,
- "word": "things",
- "punct": "things",
- "index": 67
- },
- {
- "start": 37.22,
- "confidence": 0.94,
- "end": 37.33,
- "word": "that",
- "punct": "that",
- "index": 68
- },
- {
- "start": 37.33,
- "confidence": 0.98,
- "end": 37.53,
- "word": "had",
- "punct": "had",
- "index": 69
- },
- {
- "start": 37.53,
- "confidence": 1,
- "end": 37.69,
- "word": "was",
- "punct": "was",
- "index": 70
- },
- {
- "start": 37.69,
- "confidence": 0.98,
- "end": 37.83,
- "word": "a",
- "punct": "a",
- "index": 71
- },
- {
- "start": 37.95,
- "confidence": 0.98,
- "end": 38.39,
- "word": "tilt",
- "punct": "tilt",
- "index": 72
- },
- {
- "start": 38.39,
- "confidence": 0.99,
- "end": 39.01,
- "word": "sensor",
- "punct": "sensor",
- "index": 73
- },
- {
- "start": 39.24,
- "confidence": 1,
- "end": 39.51,
- "word": "so",
- "punct": "so",
- "index": 74
- },
- {
- "start": 39.51,
- "confidence": 0.88,
- "end": 39.61,
- "word": "it",
- "punct": "it.",
- "index": 75
- }
- ],
- "start": 34.27
- },
- "entityRanges": [
- {
- "start": 34.27,
- "end": 34.51,
- "confidence": 0.68,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.51,
- "end": 34.7,
- "confidence": 0.93,
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.7,
- "end": 34.81,
- "confidence": 1,
- "text": "an",
- "offset": 7,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.81,
- "end": 34.97,
- "confidence": 0.53,
- "text": "infra",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 34.97,
- "end": 35.32,
- "confidence": 0.53,
- "text": "red",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 35.31,
- "end": 35.97,
- "confidence": 0.99,
- "text": "camera",
- "offset": 20,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.45,
- "end": 36.61,
- "confidence": 0.93,
- "text": "and",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.64,
- "end": 36.79,
- "confidence": 1,
- "text": "one",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.79,
- "end": 36.87,
- "confidence": 1,
- "text": "of",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.87,
- "end": 36.98,
- "confidence": 1,
- "text": "the",
- "offset": 38,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 36.98,
- "end": 37.22,
- "confidence": 1,
- "text": "things",
- "offset": 42,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.22,
- "end": 37.33,
- "confidence": 0.94,
- "text": "that",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.33,
- "end": 37.53,
- "confidence": 0.98,
- "text": "had",
- "offset": 54,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.53,
- "end": 37.69,
- "confidence": 1,
- "text": "was",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.69,
- "end": 37.83,
- "confidence": 0.98,
- "text": "a",
- "offset": 62,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 37.95,
- "end": 38.39,
- "confidence": 0.98,
- "text": "tilt",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 38.39,
- "end": 39.01,
- "confidence": 0.99,
- "text": "sensor",
- "offset": 69,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.24,
- "end": 39.51,
- "confidence": 1,
- "text": "so",
- "offset": 76,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.51,
- "end": 39.61,
- "confidence": 0.88,
- "text": "it.",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Knew what direction.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 6",
- "words": [
- {
- "start": 39.62,
- "confidence": 0.99,
- "end": 39.82,
- "word": "knew",
- "punct": "Knew",
- "index": 76
- },
- {
- "start": 39.82,
- "confidence": 1,
- "end": 39.96,
- "word": "what",
- "punct": "what",
- "index": 77
- },
- {
- "start": 39.96,
- "confidence": 1,
- "end": 40.54,
- "word": "direction",
- "punct": "direction.",
- "index": 78
- }
- ],
- "start": 39.62
- },
- "entityRanges": [
- {
- "start": 39.62,
- "end": 39.82,
- "confidence": 0.99,
- "text": "Knew",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.82,
- "end": 39.96,
- "confidence": 1,
- "text": "what",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 39.96,
- "end": 40.54,
- "confidence": 1,
- "text": "direction.",
- "offset": 10,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It was facing.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 7",
- "words": [
- {
- "start": 40.54,
- "confidence": 1,
- "end": 40.65,
- "word": "it",
- "punct": "It",
- "index": 79
- },
- {
- "start": 40.65,
- "confidence": 1,
- "end": 40.94,
- "word": "was",
- "punct": "was",
- "index": 80
- },
- {
- "start": 40.97,
- "confidence": 0.97,
- "end": 41.55,
- "word": "facing",
- "punct": "facing.",
- "index": 81
- }
- ],
- "start": 40.54
- },
- "entityRanges": [
- {
- "start": 40.54,
- "end": 40.65,
- "confidence": 1,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 40.65,
- "end": 40.94,
- "confidence": 1,
- "text": "was",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 40.97,
- "end": 41.55,
- "confidence": 0.97,
- "text": "facing.",
- "offset": 7,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If and when you held it upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 8",
- "words": [
- {
- "start": 41.68,
- "confidence": 0.95,
- "end": 42,
- "word": "if",
- "punct": "If",
- "index": 82
- },
- {
- "start": 42.04,
- "confidence": 0.64,
- "end": 42.14,
- "word": "and",
- "punct": "and",
- "index": 83
- },
- {
- "start": 42.14,
- "confidence": 0.66,
- "end": 42.22,
- "word": "when",
- "punct": "when",
- "index": 84
- },
- {
- "start": 42.27,
- "confidence": 0.9,
- "end": 42.42,
- "word": "you",
- "punct": "you",
- "index": 85
- },
- {
- "start": 42.42,
- "confidence": 0.77,
- "end": 42.62,
- "word": "held",
- "punct": "held",
- "index": 86
- },
- {
- "start": 42.63,
- "confidence": 0.89,
- "end": 42.73,
- "word": "it",
- "punct": "it",
- "index": 87
- },
- {
- "start": 42.73,
- "confidence": 1,
- "end": 43.05,
- "word": "upside",
- "punct": "upside",
- "index": 88
- },
- {
- "start": 43.05,
- "confidence": 1,
- "end": 43.61,
- "word": "down",
- "punct": "down.",
- "index": 89
- }
- ],
- "start": 41.68
- },
- "entityRanges": [
- {
- "start": 41.68,
- "end": 42,
- "confidence": 0.95,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.04,
- "end": 42.14,
- "confidence": 0.64,
- "text": "and",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.14,
- "end": 42.22,
- "confidence": 0.66,
- "text": "when",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.27,
- "end": 42.42,
- "confidence": 0.9,
- "text": "you",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.42,
- "end": 42.62,
- "confidence": 0.77,
- "text": "held",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.63,
- "end": 42.73,
- "confidence": 0.89,
- "text": "it",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 42.73,
- "end": 43.05,
- "confidence": 1,
- "text": "upside",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 43.05,
- "end": 43.61,
- "confidence": 1,
- "text": "down.",
- "offset": 31,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I thought.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 9",
- "words": [
- {
- "start": 46.53,
- "confidence": 0.95,
- "end": 46.68,
- "word": "i",
- "punct": "I",
- "index": 90
- },
- {
- "start": 46.69,
- "confidence": 0.94,
- "end": 46.89,
- "word": "thought",
- "punct": "thought.",
- "index": 91
- }
- ],
- "start": 46.53
- },
- "entityRanges": [
- {
- "start": 46.53,
- "end": 46.68,
- "confidence": 0.95,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 46.69,
- "end": 46.89,
- "confidence": 0.94,
- "text": "thought.",
- "offset": 2,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's a super courts are showing off to my friend and I said to hold it, but he'll see what debts.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 10",
- "words": [
- {
- "start": 46.9,
- "confidence": 0.35,
- "end": 47.1,
- "word": "it's",
- "punct": "It's",
- "index": 92
- },
- {
- "start": 47.12,
- "confidence": 0.41,
- "end": 47.21,
- "word": "a",
- "punct": "a",
- "index": 93
- },
- {
- "start": 47.21,
- "confidence": 0.99,
- "end": 47.65,
- "word": "super",
- "punct": "super",
- "index": 94
- },
- {
- "start": 47.65,
- "confidence": 0.72,
- "end": 48.09,
- "word": "courts",
- "punct": "courts",
- "index": 95
- },
- {
- "start": 48.11,
- "confidence": 0.51,
- "end": 48.26,
- "word": "are",
- "punct": "are",
- "index": 96
- },
- {
- "start": 48.28,
- "confidence": 0.95,
- "end": 48.67,
- "word": "showing",
- "punct": "showing",
- "index": 97
- },
- {
- "start": 48.66,
- "confidence": 0.79,
- "end": 48.79,
- "word": "off",
- "punct": "off",
- "index": 98
- },
- {
- "start": 48.79,
- "confidence": 0.81,
- "end": 48.94,
- "word": "to",
- "punct": "to",
- "index": 99
- },
- {
- "start": 48.94,
- "confidence": 1,
- "end": 49.04,
- "word": "my",
- "punct": "my",
- "index": 100
- },
- {
- "start": 49.04,
- "confidence": 1,
- "end": 49.56,
- "word": "friend",
- "punct": "friend",
- "index": 101
- },
- {
- "start": 50,
- "confidence": 0.98,
- "end": 50.14,
- "word": "and",
- "punct": "and",
- "index": 102
- },
- {
- "start": 50.15,
- "confidence": 0.75,
- "end": 50.21,
- "word": "i",
- "punct": "I",
- "index": 103
- },
- {
- "start": 50.21,
- "confidence": 1,
- "end": 50.42,
- "word": "said",
- "punct": "said",
- "index": 104
- },
- {
- "start": 50.42,
- "confidence": 0.8,
- "end": 50.58,
- "word": "to",
- "punct": "to",
- "index": 105
- },
- {
- "start": 50.58,
- "confidence": 0.95,
- "end": 50.83,
- "word": "hold",
- "punct": "hold",
- "index": 106
- },
- {
- "start": 50.83,
- "confidence": 0.37,
- "end": 50.97,
- "word": "it",
- "punct": "it,",
- "index": 107
- },
- {
- "start": 50.97,
- "confidence": 0.29,
- "end": 51.16,
- "word": "but",
- "punct": "but",
- "index": 108
- },
- {
- "start": 51.22,
- "confidence": 0.94,
- "end": 51.49,
- "word": "he'll",
- "punct": "he'll",
- "index": 109
- },
- {
- "start": 51.48,
- "confidence": 0.97,
- "end": 51.65,
- "word": "see",
- "punct": "see",
- "index": 110
- },
- {
- "start": 51.66,
- "confidence": 0.6,
- "end": 51.79,
- "word": "what",
- "punct": "what",
- "index": 111
- },
- {
- "start": 51.82,
- "confidence": 0.54,
- "end": 52.31,
- "word": "debts",
- "punct": "debts.",
- "index": 112
- }
- ],
- "start": 46.9
- },
- "entityRanges": [
- {
- "start": 46.9,
- "end": 47.1,
- "confidence": 0.35,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 47.12,
- "end": 47.21,
- "confidence": 0.41,
- "text": "a",
- "offset": 5,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 47.21,
- "end": 47.65,
- "confidence": 0.99,
- "text": "super",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 47.65,
- "end": 48.09,
- "confidence": 0.72,
- "text": "courts",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.11,
- "end": 48.26,
- "confidence": 0.51,
- "text": "are",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.28,
- "end": 48.67,
- "confidence": 0.95,
- "text": "showing",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.66,
- "end": 48.79,
- "confidence": 0.79,
- "text": "off",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.79,
- "end": 48.94,
- "confidence": 0.81,
- "text": "to",
- "offset": 36,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 48.94,
- "end": 49.04,
- "confidence": 1,
- "text": "my",
- "offset": 39,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 49.04,
- "end": 49.56,
- "confidence": 1,
- "text": "friend",
- "offset": 42,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50,
- "end": 50.14,
- "confidence": 0.98,
- "text": "and",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.15,
- "end": 50.21,
- "confidence": 0.75,
- "text": "I",
- "offset": 53,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.21,
- "end": 50.42,
- "confidence": 1,
- "text": "said",
- "offset": 55,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.42,
- "end": 50.58,
- "confidence": 0.8,
- "text": "to",
- "offset": 60,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.58,
- "end": 50.83,
- "confidence": 0.95,
- "text": "hold",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.83,
- "end": 50.97,
- "confidence": 0.37,
- "text": "it,",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 50.97,
- "end": 51.16,
- "confidence": 0.29,
- "text": "but",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.22,
- "end": 51.49,
- "confidence": 0.94,
- "text": "he'll",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.48,
- "end": 51.65,
- "confidence": 0.97,
- "text": "see",
- "offset": 82,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.66,
- "end": 51.79,
- "confidence": 0.6,
- "text": "what",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 51.82,
- "end": 52.31,
- "confidence": 0.54,
- "text": "debts.",
- "offset": 91,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We were watching the theatrics of this robe that struggle and cry out and and after a few seconds.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 11",
- "words": [
- {
- "start": 55.22,
- "confidence": 0.63,
- "end": 55.29,
- "word": "we",
- "punct": "We",
- "index": 113
- },
- {
- "start": 55.36,
- "confidence": 0.78,
- "end": 55.51,
- "word": "were",
- "punct": "were",
- "index": 114
- },
- {
- "start": 55.51,
- "confidence": 1,
- "end": 55.93,
- "word": "watching",
- "punct": "watching",
- "index": 115
- },
- {
- "start": 55.93,
- "confidence": 0.98,
- "end": 56.01,
- "word": "the",
- "punct": "the",
- "index": 116
- },
- {
- "start": 56.01,
- "confidence": 1,
- "end": 56.92,
- "word": "theatrics",
- "punct": "theatrics",
- "index": 117
- },
- {
- "start": 56.92,
- "confidence": 0.93,
- "end": 57.01,
- "word": "of",
- "punct": "of",
- "index": 118
- },
- {
- "start": 57.01,
- "confidence": 1,
- "end": 57.25,
- "word": "this",
- "punct": "this",
- "index": 119
- },
- {
- "start": 57.25,
- "confidence": 0.54,
- "end": 57.52,
- "word": "robe",
- "punct": "robe",
- "index": 120
- },
- {
- "start": 57.53,
- "confidence": 0.66,
- "end": 58.02,
- "word": "that",
- "punct": "that",
- "index": 121
- },
- {
- "start": 58.88,
- "confidence": 1,
- "end": 59.84,
- "word": "struggle",
- "punct": "struggle",
- "index": 122
- },
- {
- "start": 59.89,
- "confidence": 0.94,
- "end": 60.08,
- "word": "and",
- "punct": "and",
- "index": 123
- },
- {
- "start": 60.08,
- "confidence": 1,
- "end": 60.71,
- "word": "cry",
- "punct": "cry",
- "index": 124
- },
- {
- "start": 60.71,
- "confidence": 1,
- "end": 61.07,
- "word": "out",
- "punct": "out",
- "index": 125
- },
- {
- "start": 61.86,
- "confidence": 0.63,
- "end": 61.9,
- "word": "and",
- "punct": "and",
- "index": 126
- },
- {
- "start": 62.77,
- "confidence": 0.85,
- "end": 63.06,
- "word": "and",
- "punct": "and",
- "index": 127
- },
- {
- "start": 63.25,
- "confidence": 1,
- "end": 63.53,
- "word": "after",
- "punct": "after",
- "index": 128
- },
- {
- "start": 63.53,
- "confidence": 0.99,
- "end": 63.57,
- "word": "a",
- "punct": "a",
- "index": 129
- },
- {
- "start": 63.57,
- "confidence": 0.99,
- "end": 63.73,
- "word": "few",
- "punct": "few",
- "index": 130
- },
- {
- "start": 63.73,
- "confidence": 0.99,
- "end": 64.47,
- "word": "seconds",
- "punct": "seconds.",
- "index": 131
- }
- ],
- "start": 55.22
- },
- "entityRanges": [
- {
- "start": 55.22,
- "end": 55.29,
- "confidence": 0.63,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.36,
- "end": 55.51,
- "confidence": 0.78,
- "text": "were",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.51,
- "end": 55.93,
- "confidence": 1,
- "text": "watching",
- "offset": 8,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 55.93,
- "end": 56.01,
- "confidence": 0.98,
- "text": "the",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 56.01,
- "end": 56.92,
- "confidence": 1,
- "text": "theatrics",
- "offset": 21,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 56.92,
- "end": 57.01,
- "confidence": 0.93,
- "text": "of",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 57.01,
- "end": 57.25,
- "confidence": 1,
- "text": "this",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 57.25,
- "end": 57.52,
- "confidence": 0.54,
- "text": "robe",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 57.53,
- "end": 58.02,
- "confidence": 0.66,
- "text": "that",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 58.88,
- "end": 59.84,
- "confidence": 1,
- "text": "struggle",
- "offset": 49,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 59.89,
- "end": 60.08,
- "confidence": 0.94,
- "text": "and",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 60.08,
- "end": 60.71,
- "confidence": 1,
- "text": "cry",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 60.71,
- "end": 61.07,
- "confidence": 1,
- "text": "out",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 61.86,
- "end": 61.9,
- "confidence": 0.63,
- "text": "and",
- "offset": 70,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 62.77,
- "end": 63.06,
- "confidence": 0.85,
- "text": "and",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.25,
- "end": 63.53,
- "confidence": 1,
- "text": "after",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.53,
- "end": 63.57,
- "confidence": 0.99,
- "text": "a",
- "offset": 84,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.57,
- "end": 63.73,
- "confidence": 0.99,
- "text": "few",
- "offset": 86,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 63.73,
- "end": 64.47,
- "confidence": 0.99,
- "text": "seconds.",
- "offset": 90,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The first.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 12",
- "words": [
- {
- "start": 64.73,
- "confidence": 0.58,
- "end": 64.92,
- "word": "the",
- "punct": "The",
- "index": 132
- },
- {
- "start": 64.94,
- "confidence": 0.73,
- "end": 65.33,
- "word": "first",
- "punct": "first.",
- "index": 133
- }
- ],
- "start": 64.73
- },
- "entityRanges": [
- {
- "start": 64.73,
- "end": 64.92,
- "confidence": 0.58,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 64.94,
- "end": 65.33,
- "confidence": 0.73,
- "text": "first.",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "After my little and I said o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 13",
- "words": [
- {
- "start": 65.42,
- "confidence": 0.37,
- "end": 65.78,
- "word": "after",
- "punct": "After",
- "index": 134
- },
- {
- "start": 65.79,
- "confidence": 0.53,
- "end": 66,
- "word": "my",
- "punct": "my",
- "index": 135
- },
- {
- "start": 66.01,
- "confidence": 0.83,
- "end": 66.47,
- "word": "little",
- "punct": "little",
- "index": 136
- },
- {
- "start": 67.66,
- "confidence": 0.93,
- "end": 67.79,
- "word": "and",
- "punct": "and",
- "index": 137
- },
- {
- "start": 67.87,
- "confidence": 1,
- "end": 67.96,
- "word": "i",
- "punct": "I",
- "index": 138
- },
- {
- "start": 67.96,
- "confidence": 1,
- "end": 68.22,
- "word": "said",
- "punct": "said",
- "index": 139
- },
- {
- "start": 68.22,
- "confidence": 0.96,
- "end": 68.9,
- "word": "o.k.",
- "punct": "o.k.",
- "index": 140
- }
- ],
- "start": 65.42
- },
- "entityRanges": [
- {
- "start": 65.42,
- "end": 65.78,
- "confidence": 0.37,
- "text": "After",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 65.79,
- "end": 66,
- "confidence": 0.53,
- "text": "my",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 66.01,
- "end": 66.47,
- "confidence": 0.83,
- "text": "little",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 67.66,
- "end": 67.79,
- "confidence": 0.93,
- "text": "and",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 67.87,
- "end": 67.96,
- "confidence": 1,
- "text": "I",
- "offset": 20,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 67.96,
- "end": 68.22,
- "confidence": 1,
- "text": "said",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 68.22,
- "end": 68.9,
- "confidence": 0.96,
- "text": "o.k.",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "That's enough.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 14",
- "words": [
- {
- "start": 69.99,
- "confidence": 0.99,
- "end": 70.22,
- "word": "that's",
- "punct": "That's",
- "index": 141
- },
- {
- "start": 70.22,
- "confidence": 1,
- "end": 70.58,
- "word": "enough",
- "punct": "enough.",
- "index": 142
- }
- ],
- "start": 69.99
- },
- "entityRanges": [
- {
- "start": 69.99,
- "end": 70.22,
- "confidence": 0.99,
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 70.22,
- "end": 70.58,
- "confidence": 1,
- "text": "enough.",
- "offset": 7,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Now, let's put him back down and pepper, about to make it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 15",
- "words": [
- {
- "start": 70.58,
- "confidence": 1,
- "end": 71.11,
- "word": "now",
- "punct": "Now,",
- "index": 143
- },
- {
- "start": 71.81,
- "confidence": 0.8,
- "end": 71.98,
- "word": "let's",
- "punct": "let's",
- "index": 144
- },
- {
- "start": 72.12,
- "confidence": 0.95,
- "end": 72.25,
- "word": "put",
- "punct": "put",
- "index": 145
- },
- {
- "start": 72.25,
- "confidence": 0.71,
- "end": 72.33,
- "word": "him",
- "punct": "him",
- "index": 146
- },
- {
- "start": 72.33,
- "confidence": 1,
- "end": 72.55,
- "word": "back",
- "punct": "back",
- "index": 147
- },
- {
- "start": 72.55,
- "confidence": 1,
- "end": 73.12,
- "word": "down",
- "punct": "down",
- "index": 148
- },
- {
- "start": 74.27,
- "confidence": 0.87,
- "end": 74.59,
- "word": "and",
- "punct": "and",
- "index": 149
- },
- {
- "start": 74.64,
- "confidence": 0.97,
- "end": 75.03,
- "word": "pepper",
- "punct": "pepper,",
- "index": 150
- },
- {
- "start": 75.04,
- "confidence": 0.77,
- "end": 75.31,
- "word": "about",
- "punct": "about",
- "index": 151
- },
- {
- "start": 75.34,
- "confidence": 0.87,
- "end": 75.43,
- "word": "to",
- "punct": "to",
- "index": 152
- },
- {
- "start": 75.44,
- "confidence": 1,
- "end": 75.57,
- "word": "make",
- "punct": "make",
- "index": 153
- },
- {
- "start": 75.57,
- "confidence": 0.84,
- "end": 75.66,
- "word": "it",
- "punct": "it.",
- "index": 154
- }
- ],
- "start": 70.58
- },
- "entityRanges": [
- {
- "start": 70.58,
- "end": 71.11,
- "confidence": 1,
- "text": "Now,",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 71.81,
- "end": 71.98,
- "confidence": 0.8,
- "text": "let's",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.12,
- "end": 72.25,
- "confidence": 0.95,
- "text": "put",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.25,
- "end": 72.33,
- "confidence": 0.71,
- "text": "him",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.33,
- "end": 72.55,
- "confidence": 1,
- "text": "back",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 72.55,
- "end": 73.12,
- "confidence": 1,
- "text": "down",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 74.27,
- "end": 74.59,
- "confidence": 0.87,
- "text": "and",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 74.64,
- "end": 75.03,
- "confidence": 0.97,
- "text": "pepper,",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.04,
- "end": 75.31,
- "confidence": 0.77,
- "text": "about",
- "offset": 41,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.34,
- "end": 75.43,
- "confidence": 0.87,
- "text": "to",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.44,
- "end": 75.57,
- "confidence": 1,
- "text": "make",
- "offset": 50,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.57,
- "end": 75.66,
- "confidence": 0.84,
- "text": "it.",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Stop crying and I was kind of a weird experience for me one thing, wasn't the most maternal person at the time.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 16",
- "words": [
- {
- "start": 75.67,
- "confidence": 0.94,
- "end": 75.92,
- "word": "stop",
- "punct": "Stop",
- "index": 155
- },
- {
- "start": 75.92,
- "confidence": 1,
- "end": 76.47,
- "word": "crying",
- "punct": "crying",
- "index": 156
- },
- {
- "start": 76.75,
- "confidence": 0.88,
- "end": 76.8,
- "word": "and",
- "punct": "and",
- "index": 157
- },
- {
- "start": 77.75,
- "confidence": 0.54,
- "end": 77.79,
- "word": "i",
- "punct": "I",
- "index": 158
- },
- {
- "start": 79.1,
- "confidence": 0.94,
- "end": 79.29,
- "word": "was",
- "punct": "was",
- "index": 159
- },
- {
- "start": 79.29,
- "confidence": 1,
- "end": 79.44,
- "word": "kind",
- "punct": "kind",
- "index": 160
- },
- {
- "start": 79.44,
- "confidence": 1,
- "end": 79.51,
- "word": "of",
- "punct": "of",
- "index": 161
- },
- {
- "start": 79.51,
- "confidence": 1,
- "end": 79.65,
- "word": "a",
- "punct": "a",
- "index": 162
- },
- {
- "start": 79.65,
- "confidence": 1,
- "end": 79.93,
- "word": "weird",
- "punct": "weird",
- "index": 163
- },
- {
- "start": 79.93,
- "confidence": 1,
- "end": 80.65,
- "word": "experience",
- "punct": "experience",
- "index": 164
- },
- {
- "start": 80.65,
- "confidence": 1,
- "end": 80.78,
- "word": "for",
- "punct": "for",
- "index": 165
- },
- {
- "start": 80.78,
- "confidence": 1,
- "end": 81.18,
- "word": "me",
- "punct": "me",
- "index": 166
- },
- {
- "start": 82.09,
- "confidence": 0.97,
- "end": 82.33,
- "word": "one",
- "punct": "one",
- "index": 167
- },
- {
- "start": 82.35,
- "confidence": 1,
- "end": 82.7,
- "word": "thing",
- "punct": "thing,",
- "index": 168
- },
- {
- "start": 83.02,
- "confidence": 0.78,
- "end": 83.28,
- "word": "wasn't",
- "punct": "wasn't",
- "index": 169
- },
- {
- "start": 83.31,
- "confidence": 1,
- "end": 83.38,
- "word": "the",
- "punct": "the",
- "index": 170
- },
- {
- "start": 83.38,
- "confidence": 1,
- "end": 83.75,
- "word": "most",
- "punct": "most",
- "index": 171
- },
- {
- "start": 83.78,
- "confidence": 1,
- "end": 84.39,
- "word": "maternal",
- "punct": "maternal",
- "index": 172
- },
- {
- "start": 84.39,
- "confidence": 1,
- "end": 84.94,
- "word": "person",
- "punct": "person",
- "index": 173
- },
- {
- "start": 84.94,
- "confidence": 0.99,
- "end": 85.08,
- "word": "at",
- "punct": "at",
- "index": 174
- },
- {
- "start": 85.08,
- "confidence": 0.56,
- "end": 85.15,
- "word": "the",
- "punct": "the",
- "index": 175
- },
- {
- "start": 85.15,
- "confidence": 1,
- "end": 85.81,
- "word": "time",
- "punct": "time.",
- "index": 176
- }
- ],
- "start": 75.67
- },
- "entityRanges": [
- {
- "start": 75.67,
- "end": 75.92,
- "confidence": 0.94,
- "text": "Stop",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 75.92,
- "end": 76.47,
- "confidence": 1,
- "text": "crying",
- "offset": 5,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 76.75,
- "end": 76.8,
- "confidence": 0.88,
- "text": "and",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 77.75,
- "end": 77.79,
- "confidence": 0.54,
- "text": "I",
- "offset": 16,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.1,
- "end": 79.29,
- "confidence": 0.94,
- "text": "was",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.29,
- "end": 79.44,
- "confidence": 1,
- "text": "kind",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.44,
- "end": 79.51,
- "confidence": 1,
- "text": "of",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.51,
- "end": 79.65,
- "confidence": 1,
- "text": "a",
- "offset": 30,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.65,
- "end": 79.93,
- "confidence": 1,
- "text": "weird",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 79.93,
- "end": 80.65,
- "confidence": 1,
- "text": "experience",
- "offset": 38,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 80.65,
- "end": 80.78,
- "confidence": 1,
- "text": "for",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 80.78,
- "end": 81.18,
- "confidence": 1,
- "text": "me",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 82.09,
- "end": 82.33,
- "confidence": 0.97,
- "text": "one",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 82.35,
- "end": 82.7,
- "confidence": 1,
- "text": "thing,",
- "offset": 60,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.02,
- "end": 83.28,
- "confidence": 0.78,
- "text": "wasn't",
- "offset": 67,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.31,
- "end": 83.38,
- "confidence": 1,
- "text": "the",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.38,
- "end": 83.75,
- "confidence": 1,
- "text": "most",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 83.78,
- "end": 84.39,
- "confidence": 1,
- "text": "maternal",
- "offset": 83,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 84.39,
- "end": 84.94,
- "confidence": 1,
- "text": "person",
- "offset": 92,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 84.94,
- "end": 85.08,
- "confidence": 0.99,
- "text": "at",
- "offset": 99,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 85.08,
- "end": 85.15,
- "confidence": 0.56,
- "text": "the",
- "offset": 102,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 85.15,
- "end": 85.81,
- "confidence": 1,
- "text": "time.",
- "offset": 106,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Although, since then I've become a mother and nine months ago.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 17",
- "words": [
- {
- "start": 86.66,
- "confidence": 0.64,
- "end": 86.9,
- "word": "although",
- "punct": "Although,",
- "index": 177
- },
- {
- "start": 86.94,
- "confidence": 0.98,
- "end": 87.16,
- "word": "since",
- "punct": "since",
- "index": 178
- },
- {
- "start": 87.16,
- "confidence": 0.9,
- "end": 87.27,
- "word": "then",
- "punct": "then",
- "index": 179
- },
- {
- "start": 87.27,
- "confidence": 0.97,
- "end": 87.38,
- "word": "i've",
- "punct": "I've",
- "index": 180
- },
- {
- "start": 87.38,
- "confidence": 1,
- "end": 87.62,
- "word": "become",
- "punct": "become",
- "index": 181
- },
- {
- "start": 87.61,
- "confidence": 0.96,
- "end": 87.67,
- "word": "a",
- "punct": "a",
- "index": 182
- },
- {
- "start": 87.67,
- "confidence": 0.96,
- "end": 87.95,
- "word": "mother",
- "punct": "mother",
- "index": 183
- },
- {
- "start": 87.96,
- "confidence": 0.39,
- "end": 88.04,
- "word": "and",
- "punct": "and",
- "index": 184
- },
- {
- "start": 88.05,
- "confidence": 1,
- "end": 88.26,
- "word": "nine",
- "punct": "nine",
- "index": 185
- },
- {
- "start": 88.26,
- "confidence": 1,
- "end": 88.49,
- "word": "months",
- "punct": "months",
- "index": 186
- },
- {
- "start": 88.49,
- "confidence": 1,
- "end": 88.91,
- "word": "ago",
- "punct": "ago.",
- "index": 187
- }
- ],
- "start": 86.66
- },
- "entityRanges": [
- {
- "start": 86.66,
- "end": 86.9,
- "confidence": 0.64,
- "text": "Although,",
- "offset": 0,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 86.94,
- "end": 87.16,
- "confidence": 0.98,
- "text": "since",
- "offset": 10,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.16,
- "end": 87.27,
- "confidence": 0.9,
- "text": "then",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.27,
- "end": 87.38,
- "confidence": 0.97,
- "text": "I've",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.38,
- "end": 87.62,
- "confidence": 1,
- "text": "become",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.61,
- "end": 87.67,
- "confidence": 0.96,
- "text": "a",
- "offset": 33,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.67,
- "end": 87.95,
- "confidence": 0.96,
- "text": "mother",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 87.96,
- "end": 88.04,
- "confidence": 0.39,
- "text": "and",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 88.05,
- "end": 88.26,
- "confidence": 1,
- "text": "nine",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 88.26,
- "end": 88.49,
- "confidence": 1,
- "text": "months",
- "offset": 51,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 88.49,
- "end": 88.91,
- "confidence": 1,
- "text": "ago.",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And that is a score when hold them up to now, but my response to this robot was also interesting because I knew exactly how this machine work it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 18",
- "words": [
- {
- "start": 89.46,
- "confidence": 0.9,
- "end": 89.64,
- "word": "and",
- "punct": "And",
- "index": 188
- },
- {
- "start": 89.86,
- "confidence": 0.45,
- "end": 90.1,
- "word": "that",
- "punct": "that",
- "index": 189
- },
- {
- "start": 90.14,
- "confidence": 0.59,
- "end": 90.45,
- "word": "is",
- "punct": "is",
- "index": 190
- },
- {
- "start": 90.49,
- "confidence": 0.46,
- "end": 90.71,
- "word": "a",
- "punct": "a",
- "index": 191
- },
- {
- "start": 90.71,
- "confidence": 0.45,
- "end": 91,
- "word": "score",
- "punct": "score",
- "index": 192
- },
- {
- "start": 91.05,
- "confidence": 0.4,
- "end": 91.21,
- "word": "when",
- "punct": "when",
- "index": 193
- },
- {
- "start": 91.24,
- "confidence": 0.58,
- "end": 91.41,
- "word": "hold",
- "punct": "hold",
- "index": 194
- },
- {
- "start": 91.41,
- "confidence": 0.83,
- "end": 91.53,
- "word": "them",
- "punct": "them",
- "index": 195
- },
- {
- "start": 91.53,
- "confidence": 0.79,
- "end": 91.65,
- "word": "up",
- "punct": "up",
- "index": 196
- },
- {
- "start": 91.65,
- "confidence": 0.43,
- "end": 91.79,
- "word": "to",
- "punct": "to",
- "index": 197
- },
- {
- "start": 91.8,
- "confidence": 0.93,
- "end": 92.1,
- "word": "now",
- "punct": "now,",
- "index": 198
- },
- {
- "start": 95.03,
- "confidence": 1,
- "end": 95.27,
- "word": "but",
- "punct": "but",
- "index": 199
- },
- {
- "start": 95.27,
- "confidence": 1,
- "end": 95.49,
- "word": "my",
- "punct": "my",
- "index": 200
- },
- {
- "start": 95.49,
- "confidence": 1,
- "end": 95.88,
- "word": "response",
- "punct": "response",
- "index": 201
- },
- {
- "start": 95.88,
- "confidence": 0.52,
- "end": 95.91,
- "word": "to",
- "punct": "to",
- "index": 202
- },
- {
- "start": 95.92,
- "confidence": 1,
- "end": 96.12,
- "word": "this",
- "punct": "this",
- "index": 203
- },
- {
- "start": 96.12,
- "confidence": 0.87,
- "end": 96.43,
- "word": "robot",
- "punct": "robot",
- "index": 204
- },
- {
- "start": 96.43,
- "confidence": 1,
- "end": 96.57,
- "word": "was",
- "punct": "was",
- "index": 205
- },
- {
- "start": 96.57,
- "confidence": 1,
- "end": 96.85,
- "word": "also",
- "punct": "also",
- "index": 206
- },
- {
- "start": 96.85,
- "confidence": 1,
- "end": 97.26,
- "word": "interesting",
- "punct": "interesting",
- "index": 207
- },
- {
- "start": 97.26,
- "confidence": 1,
- "end": 97.7,
- "word": "because",
- "punct": "because",
- "index": 208
- },
- {
- "start": 97.87,
- "confidence": 0.8,
- "end": 97.98,
- "word": "i",
- "punct": "I",
- "index": 209
- },
- {
- "start": 98.01,
- "confidence": 0.8,
- "end": 98.17,
- "word": "knew",
- "punct": "knew",
- "index": 210
- },
- {
- "start": 98.17,
- "confidence": 1,
- "end": 98.91,
- "word": "exactly",
- "punct": "exactly",
- "index": 211
- },
- {
- "start": 98.91,
- "confidence": 1,
- "end": 99.18,
- "word": "how",
- "punct": "how",
- "index": 212
- },
- {
- "start": 99.18,
- "confidence": 1,
- "end": 99.4,
- "word": "this",
- "punct": "this",
- "index": 213
- },
- {
- "start": 99.4,
- "confidence": 1,
- "end": 100.03,
- "word": "machine",
- "punct": "machine",
- "index": 214
- },
- {
- "start": 100.07,
- "confidence": 0.91,
- "end": 100.54,
- "word": "work",
- "punct": "work",
- "index": 215
- },
- {
- "start": 100.57,
- "confidence": 0.97,
- "end": 100.87,
- "word": "it",
- "punct": "it.",
- "index": 216
- }
- ],
- "start": 89.46
- },
- "entityRanges": [
- {
- "start": 89.46,
- "end": 89.64,
- "confidence": 0.9,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 89.86,
- "end": 90.1,
- "confidence": 0.45,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.14,
- "end": 90.45,
- "confidence": 0.59,
- "text": "is",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.49,
- "end": 90.71,
- "confidence": 0.46,
- "text": "a",
- "offset": 12,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 90.71,
- "end": 91,
- "confidence": 0.45,
- "text": "score",
- "offset": 14,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.05,
- "end": 91.21,
- "confidence": 0.4,
- "text": "when",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.24,
- "end": 91.41,
- "confidence": 0.58,
- "text": "hold",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.41,
- "end": 91.53,
- "confidence": 0.83,
- "text": "them",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.53,
- "end": 91.65,
- "confidence": 0.79,
- "text": "up",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.65,
- "end": 91.79,
- "confidence": 0.43,
- "text": "to",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 91.8,
- "end": 92.1,
- "confidence": 0.93,
- "text": "now,",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.03,
- "end": 95.27,
- "confidence": 1,
- "text": "but",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.27,
- "end": 95.49,
- "confidence": 1,
- "text": "my",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.49,
- "end": 95.88,
- "confidence": 1,
- "text": "response",
- "offset": 53,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.88,
- "end": 95.91,
- "confidence": 0.52,
- "text": "to",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 95.92,
- "end": 96.12,
- "confidence": 1,
- "text": "this",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.12,
- "end": 96.43,
- "confidence": 0.87,
- "text": "robot",
- "offset": 70,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.43,
- "end": 96.57,
- "confidence": 1,
- "text": "was",
- "offset": 76,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.57,
- "end": 96.85,
- "confidence": 1,
- "text": "also",
- "offset": 80,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 96.85,
- "end": 97.26,
- "confidence": 1,
- "text": "interesting",
- "offset": 85,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 97.26,
- "end": 97.7,
- "confidence": 1,
- "text": "because",
- "offset": 97,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 97.87,
- "end": 97.98,
- "confidence": 0.8,
- "text": "I",
- "offset": 105,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 98.01,
- "end": 98.17,
- "confidence": 0.8,
- "text": "knew",
- "offset": 107,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 98.17,
- "end": 98.91,
- "confidence": 1,
- "text": "exactly",
- "offset": 112,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 98.91,
- "end": 99.18,
- "confidence": 1,
- "text": "how",
- "offset": 120,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 99.18,
- "end": 99.4,
- "confidence": 1,
- "text": "this",
- "offset": 124,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 99.4,
- "end": 100.03,
- "confidence": 1,
- "text": "machine",
- "offset": 129,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 100.07,
- "end": 100.54,
- "confidence": 0.91,
- "text": "work",
- "offset": 137,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 100.57,
- "end": 100.87,
- "confidence": 0.97,
- "text": "it.",
- "offset": 142,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And yet.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 19",
- "words": [
- {
- "start": 101.49,
- "confidence": 0.73,
- "end": 101.64,
- "word": "and",
- "punct": "And",
- "index": 217
- },
- {
- "start": 101.67,
- "confidence": 0.99,
- "end": 101.84,
- "word": "yet",
- "punct": "yet.",
- "index": 218
- }
- ],
- "start": 101.49
- },
- "entityRanges": [
- {
- "start": 101.49,
- "end": 101.64,
- "confidence": 0.73,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 101.67,
- "end": 101.84,
- "confidence": 0.99,
- "text": "yet.",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I still felt compelled to be kind to it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 20",
- "words": [
- {
- "start": 101.87,
- "confidence": 1,
- "end": 101.97,
- "word": "i",
- "punct": "I",
- "index": 219
- },
- {
- "start": 101.97,
- "confidence": 1,
- "end": 102.37,
- "word": "still",
- "punct": "still",
- "index": 220
- },
- {
- "start": 102.37,
- "confidence": 1,
- "end": 102.65,
- "word": "felt",
- "punct": "felt",
- "index": 221
- },
- {
- "start": 102.65,
- "confidence": 1,
- "end": 103.39,
- "word": "compelled",
- "punct": "compelled",
- "index": 222
- },
- {
- "start": 103.39,
- "confidence": 1,
- "end": 103.51,
- "word": "to",
- "punct": "to",
- "index": 223
- },
- {
- "start": 103.51,
- "confidence": 1,
- "end": 103.67,
- "word": "be",
- "punct": "be",
- "index": 224
- },
- {
- "start": 103.67,
- "confidence": 1,
- "end": 104.38,
- "word": "kind",
- "punct": "kind",
- "index": 225
- },
- {
- "start": 104.41,
- "confidence": 1,
- "end": 104.59,
- "word": "to",
- "punct": "to",
- "index": 226
- },
- {
- "start": 104.59,
- "confidence": 1,
- "end": 104.79,
- "word": "it",
- "punct": "it.",
- "index": 227
- }
- ],
- "start": 101.87
- },
- "entityRanges": [
- {
- "start": 101.87,
- "end": 101.97,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 101.97,
- "end": 102.37,
- "confidence": 1,
- "text": "still",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 102.37,
- "end": 102.65,
- "confidence": 1,
- "text": "felt",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 102.65,
- "end": 103.39,
- "confidence": 1,
- "text": "compelled",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 103.39,
- "end": 103.51,
- "confidence": 1,
- "text": "to",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 103.51,
- "end": 103.67,
- "confidence": 1,
- "text": "be",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 103.67,
- "end": 104.38,
- "confidence": 1,
- "text": "kind",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 104.41,
- "end": 104.59,
- "confidence": 1,
- "text": "to",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 104.59,
- "end": 104.79,
- "confidence": 1,
- "text": "it.",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And that observation sparked that curiosity that I spent the fat, the past decade pursuing it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 21",
- "words": [
- {
- "start": 106.41,
- "confidence": 0.94,
- "end": 106.61,
- "word": "and",
- "punct": "And",
- "index": 228
- },
- {
- "start": 106.62,
- "confidence": 0.99,
- "end": 106.9,
- "word": "that",
- "punct": "that",
- "index": 229
- },
- {
- "start": 106.93,
- "confidence": 0.93,
- "end": 107.71,
- "word": "observation",
- "punct": "observation",
- "index": 230
- },
- {
- "start": 107.71,
- "confidence": 0.98,
- "end": 108.1,
- "word": "sparked",
- "punct": "sparked",
- "index": 231
- },
- {
- "start": 108.1,
- "confidence": 0.5,
- "end": 108.17,
- "word": "that",
- "punct": "that",
- "index": 232
- },
- {
- "start": 108.18,
- "confidence": 1,
- "end": 109.13,
- "word": "curiosity",
- "punct": "curiosity",
- "index": 233
- },
- {
- "start": 109.13,
- "confidence": 1,
- "end": 109.32,
- "word": "that",
- "punct": "that",
- "index": 234
- },
- {
- "start": 109.32,
- "confidence": 0.96,
- "end": 109.41,
- "word": "i",
- "punct": "I",
- "index": 235
- },
- {
- "start": 109.41,
- "confidence": 0.78,
- "end": 109.74,
- "word": "spent",
- "punct": "spent",
- "index": 236
- },
- {
- "start": 109.74,
- "confidence": 0.97,
- "end": 109.81,
- "word": "the",
- "punct": "the",
- "index": 237
- },
- {
- "start": 109.81,
- "confidence": 0.88,
- "end": 110.27,
- "word": "fat",
- "punct": "fat,",
- "index": 238
- },
- {
- "start": 110.27,
- "confidence": 0.98,
- "end": 110.36,
- "word": "the",
- "punct": "the",
- "index": 239
- },
- {
- "start": 110.36,
- "confidence": 1,
- "end": 110.7,
- "word": "past",
- "punct": "past",
- "index": 240
- },
- {
- "start": 110.75,
- "confidence": 1,
- "end": 111.28,
- "word": "decade",
- "punct": "decade",
- "index": 241
- },
- {
- "start": 111.28,
- "confidence": 1,
- "end": 112.01,
- "word": "pursuing",
- "punct": "pursuing",
- "index": 242
- },
- {
- "start": 112.48,
- "confidence": 0.25,
- "end": 112.52,
- "word": "it",
- "punct": "it.",
- "index": 243
- }
- ],
- "start": 106.41
- },
- "entityRanges": [
- {
- "start": 106.41,
- "end": 106.61,
- "confidence": 0.94,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 106.62,
- "end": 106.9,
- "confidence": 0.99,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 106.93,
- "end": 107.71,
- "confidence": 0.93,
- "text": "observation",
- "offset": 9,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 107.71,
- "end": 108.1,
- "confidence": 0.98,
- "text": "sparked",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 108.1,
- "end": 108.17,
- "confidence": 0.5,
- "text": "that",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 108.18,
- "end": 109.13,
- "confidence": 1,
- "text": "curiosity",
- "offset": 34,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.13,
- "end": 109.32,
- "confidence": 1,
- "text": "that",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.32,
- "end": 109.41,
- "confidence": 0.96,
- "text": "I",
- "offset": 49,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.41,
- "end": 109.74,
- "confidence": 0.78,
- "text": "spent",
- "offset": 51,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.74,
- "end": 109.81,
- "confidence": 0.97,
- "text": "the",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 109.81,
- "end": 110.27,
- "confidence": 0.88,
- "text": "fat,",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 110.27,
- "end": 110.36,
- "confidence": 0.98,
- "text": "the",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 110.36,
- "end": 110.7,
- "confidence": 1,
- "text": "past",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 110.75,
- "end": 111.28,
- "confidence": 1,
- "text": "decade",
- "offset": 75,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 111.28,
- "end": 112.01,
- "confidence": 1,
- "text": "pursuing",
- "offset": 82,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 112.48,
- "end": 112.52,
- "confidence": 0.25,
- "text": "it.",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Why did they comfort this robe.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 22",
- "words": [
- {
- "start": 112.93,
- "confidence": 1,
- "end": 113.18,
- "word": "why",
- "punct": "Why",
- "index": 244
- },
- {
- "start": 113.18,
- "confidence": 0.69,
- "end": 113.33,
- "word": "did",
- "punct": "did",
- "index": 245
- },
- {
- "start": 113.33,
- "confidence": 0.88,
- "end": 113.44,
- "word": "they",
- "punct": "they",
- "index": 246
- },
- {
- "start": 113.45,
- "confidence": 0.5,
- "end": 113.84,
- "word": "comfort",
- "punct": "comfort",
- "index": 247
- },
- {
- "start": 113.92,
- "confidence": 0.99,
- "end": 114.17,
- "word": "this",
- "punct": "this",
- "index": 248
- },
- {
- "start": 114.17,
- "confidence": 0.67,
- "end": 114.6,
- "word": "robe",
- "punct": "robe.",
- "index": 249
- }
- ],
- "start": 112.93
- },
- "entityRanges": [
- {
- "start": 112.93,
- "end": 113.18,
- "confidence": 1,
- "text": "Why",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.18,
- "end": 113.33,
- "confidence": 0.69,
- "text": "did",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.33,
- "end": 113.44,
- "confidence": 0.88,
- "text": "they",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.45,
- "end": 113.84,
- "confidence": 0.5,
- "text": "comfort",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 113.92,
- "end": 114.17,
- "confidence": 0.99,
- "text": "this",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 114.17,
- "end": 114.6,
- "confidence": 0.67,
- "text": "robe.",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "One of the things I discovered was that my treatment of this machine was more than just an awkward moment in my living room that in a world were increasingly integrating robots into our lives and things like that might actually have consequences because the first thing that I discovered is that.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 23",
- "words": [
- {
- "start": 116.26,
- "confidence": 1,
- "end": 116.48,
- "word": "one",
- "punct": "One",
- "index": 250
- },
- {
- "start": 116.48,
- "confidence": 1,
- "end": 116.57,
- "word": "of",
- "punct": "of",
- "index": 251
- },
- {
- "start": 116.57,
- "confidence": 1,
- "end": 116.65,
- "word": "the",
- "punct": "the",
- "index": 252
- },
- {
- "start": 116.65,
- "confidence": 1,
- "end": 116.87,
- "word": "things",
- "punct": "things",
- "index": 253
- },
- {
- "start": 116.87,
- "confidence": 0.77,
- "end": 116.93,
- "word": "i",
- "punct": "I",
- "index": 254
- },
- {
- "start": 116.93,
- "confidence": 1,
- "end": 117.57,
- "word": "discovered",
- "punct": "discovered",
- "index": 255
- },
- {
- "start": 117.57,
- "confidence": 1,
- "end": 117.77,
- "word": "was",
- "punct": "was",
- "index": 256
- },
- {
- "start": 117.77,
- "confidence": 1,
- "end": 118.22,
- "word": "that",
- "punct": "that",
- "index": 257
- },
- {
- "start": 118.45,
- "confidence": 1,
- "end": 118.61,
- "word": "my",
- "punct": "my",
- "index": 258
- },
- {
- "start": 118.61,
- "confidence": 1,
- "end": 119.2,
- "word": "treatment",
- "punct": "treatment",
- "index": 259
- },
- {
- "start": 119.2,
- "confidence": 0.73,
- "end": 119.26,
- "word": "of",
- "punct": "of",
- "index": 260
- },
- {
- "start": 119.26,
- "confidence": 1,
- "end": 119.45,
- "word": "this",
- "punct": "this",
- "index": 261
- },
- {
- "start": 119.45,
- "confidence": 1,
- "end": 119.8,
- "word": "machine",
- "punct": "machine",
- "index": 262
- },
- {
- "start": 119.8,
- "confidence": 1,
- "end": 119.95,
- "word": "was",
- "punct": "was",
- "index": 263
- },
- {
- "start": 119.95,
- "confidence": 1,
- "end": 120.21,
- "word": "more",
- "punct": "more",
- "index": 264
- },
- {
- "start": 120.21,
- "confidence": 1,
- "end": 120.36,
- "word": "than",
- "punct": "than",
- "index": 265
- },
- {
- "start": 120.36,
- "confidence": 1,
- "end": 120.86,
- "word": "just",
- "punct": "just",
- "index": 266
- },
- {
- "start": 120.98,
- "confidence": 1,
- "end": 121.16,
- "word": "an",
- "punct": "an",
- "index": 267
- },
- {
- "start": 121.19,
- "confidence": 1,
- "end": 121.6,
- "word": "awkward",
- "punct": "awkward",
- "index": 268
- },
- {
- "start": 121.6,
- "confidence": 1,
- "end": 122.08,
- "word": "moment",
- "punct": "moment",
- "index": 269
- },
- {
- "start": 122.08,
- "confidence": 0.99,
- "end": 122.16,
- "word": "in",
- "punct": "in",
- "index": 270
- },
- {
- "start": 122.16,
- "confidence": 1,
- "end": 122.3,
- "word": "my",
- "punct": "my",
- "index": 271
- },
- {
- "start": 122.3,
- "confidence": 1,
- "end": 122.62,
- "word": "living",
- "punct": "living",
- "index": 272
- },
- {
- "start": 122.62,
- "confidence": 1,
- "end": 123,
- "word": "room",
- "punct": "room",
- "index": 273
- },
- {
- "start": 123.45,
- "confidence": 0.84,
- "end": 123.63,
- "word": "that",
- "punct": "that",
- "index": 274
- },
- {
- "start": 123.74,
- "confidence": 0.64,
- "end": 123.81,
- "word": "in",
- "punct": "in",
- "index": 275
- },
- {
- "start": 123.81,
- "confidence": 0.51,
- "end": 123.95,
- "word": "a",
- "punct": "a",
- "index": 276
- },
- {
- "start": 123.95,
- "confidence": 0.98,
- "end": 124.42,
- "word": "world",
- "punct": "world",
- "index": 277
- },
- {
- "start": 124.45,
- "confidence": 0.82,
- "end": 124.63,
- "word": "were",
- "punct": "were",
- "index": 278
- },
- {
- "start": 124.64,
- "confidence": 1,
- "end": 125.43,
- "word": "increasingly",
- "punct": "increasingly",
- "index": 279
- },
- {
- "start": 125.46,
- "confidence": 0.62,
- "end": 126.07,
- "word": "integrating",
- "punct": "integrating",
- "index": 280
- },
- {
- "start": 126.21,
- "confidence": 0.83,
- "end": 127.02,
- "word": "robots",
- "punct": "robots",
- "index": 281
- },
- {
- "start": 127.22,
- "confidence": 1,
- "end": 127.57,
- "word": "into",
- "punct": "into",
- "index": 282
- },
- {
- "start": 127.57,
- "confidence": 1,
- "end": 127.66,
- "word": "our",
- "punct": "our",
- "index": 283
- },
- {
- "start": 127.66,
- "confidence": 1,
- "end": 128.54,
- "word": "lives",
- "punct": "lives",
- "index": 284
- },
- {
- "start": 128.85,
- "confidence": 0.51,
- "end": 128.96,
- "word": "and",
- "punct": "and",
- "index": 285
- },
- {
- "start": 129.1,
- "confidence": 0.39,
- "end": 129.36,
- "word": "things",
- "punct": "things",
- "index": 286
- },
- {
- "start": 129.39,
- "confidence": 0.63,
- "end": 129.75,
- "word": "like",
- "punct": "like",
- "index": 287
- },
- {
- "start": 129.75,
- "confidence": 1,
- "end": 130.04,
- "word": "that",
- "punct": "that",
- "index": 288
- },
- {
- "start": 130.04,
- "confidence": 0.98,
- "end": 130.29,
- "word": "might",
- "punct": "might",
- "index": 289
- },
- {
- "start": 130.39,
- "confidence": 1,
- "end": 130.75,
- "word": "actually",
- "punct": "actually",
- "index": 290
- },
- {
- "start": 130.75,
- "confidence": 1,
- "end": 130.89,
- "word": "have",
- "punct": "have",
- "index": 291
- },
- {
- "start": 130.89,
- "confidence": 1,
- "end": 132.15,
- "word": "consequences",
- "punct": "consequences",
- "index": 292
- },
- {
- "start": 133.44,
- "confidence": 1,
- "end": 133.68,
- "word": "because",
- "punct": "because",
- "index": 293
- },
- {
- "start": 133.68,
- "confidence": 1,
- "end": 133.76,
- "word": "the",
- "punct": "the",
- "index": 294
- },
- {
- "start": 133.76,
- "confidence": 1,
- "end": 134.02,
- "word": "first",
- "punct": "first",
- "index": 295
- },
- {
- "start": 134.02,
- "confidence": 1,
- "end": 134.17,
- "word": "thing",
- "punct": "thing",
- "index": 296
- },
- {
- "start": 134.17,
- "confidence": 0.51,
- "end": 134.23,
- "word": "that",
- "punct": "that",
- "index": 297
- },
- {
- "start": 134.23,
- "confidence": 0.62,
- "end": 134.33,
- "word": "i",
- "punct": "I",
- "index": 298
- },
- {
- "start": 134.33,
- "confidence": 1,
- "end": 135.12,
- "word": "discovered",
- "punct": "discovered",
- "index": 299
- },
- {
- "start": 135.16,
- "confidence": 0.96,
- "end": 135.35,
- "word": "is",
- "punct": "is",
- "index": 300
- },
- {
- "start": 135.35,
- "confidence": 0.97,
- "end": 135.53,
- "word": "that",
- "punct": "that.",
- "index": 301
- }
- ],
- "start": 116.26
- },
- "entityRanges": [
- {
- "start": 116.26,
- "end": 116.48,
- "confidence": 1,
- "text": "One",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.48,
- "end": 116.57,
- "confidence": 1,
- "text": "of",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.57,
- "end": 116.65,
- "confidence": 1,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.65,
- "end": 116.87,
- "confidence": 1,
- "text": "things",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.87,
- "end": 116.93,
- "confidence": 0.77,
- "text": "I",
- "offset": 18,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 116.93,
- "end": 117.57,
- "confidence": 1,
- "text": "discovered",
- "offset": 20,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 117.57,
- "end": 117.77,
- "confidence": 1,
- "text": "was",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 117.77,
- "end": 118.22,
- "confidence": 1,
- "text": "that",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 118.45,
- "end": 118.61,
- "confidence": 1,
- "text": "my",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 118.61,
- "end": 119.2,
- "confidence": 1,
- "text": "treatment",
- "offset": 43,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.2,
- "end": 119.26,
- "confidence": 0.73,
- "text": "of",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.26,
- "end": 119.45,
- "confidence": 1,
- "text": "this",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.45,
- "end": 119.8,
- "confidence": 1,
- "text": "machine",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.8,
- "end": 119.95,
- "confidence": 1,
- "text": "was",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 119.95,
- "end": 120.21,
- "confidence": 1,
- "text": "more",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 120.21,
- "end": 120.36,
- "confidence": 1,
- "text": "than",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 120.36,
- "end": 120.86,
- "confidence": 1,
- "text": "just",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 120.98,
- "end": 121.16,
- "confidence": 1,
- "text": "an",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 121.19,
- "end": 121.6,
- "confidence": 1,
- "text": "awkward",
- "offset": 91,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 121.6,
- "end": 122.08,
- "confidence": 1,
- "text": "moment",
- "offset": 99,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.08,
- "end": 122.16,
- "confidence": 0.99,
- "text": "in",
- "offset": 106,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.16,
- "end": 122.3,
- "confidence": 1,
- "text": "my",
- "offset": 109,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.3,
- "end": 122.62,
- "confidence": 1,
- "text": "living",
- "offset": 112,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 122.62,
- "end": 123,
- "confidence": 1,
- "text": "room",
- "offset": 119,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.45,
- "end": 123.63,
- "confidence": 0.84,
- "text": "that",
- "offset": 124,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.74,
- "end": 123.81,
- "confidence": 0.64,
- "text": "in",
- "offset": 129,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.81,
- "end": 123.95,
- "confidence": 0.51,
- "text": "a",
- "offset": 132,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 123.95,
- "end": 124.42,
- "confidence": 0.98,
- "text": "world",
- "offset": 134,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 124.45,
- "end": 124.63,
- "confidence": 0.82,
- "text": "were",
- "offset": 140,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 124.64,
- "end": 125.43,
- "confidence": 1,
- "text": "increasingly",
- "offset": 145,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 125.46,
- "end": 126.07,
- "confidence": 0.62,
- "text": "integrating",
- "offset": 158,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 126.21,
- "end": 127.02,
- "confidence": 0.83,
- "text": "robots",
- "offset": 170,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 127.22,
- "end": 127.57,
- "confidence": 1,
- "text": "into",
- "offset": 177,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 127.57,
- "end": 127.66,
- "confidence": 1,
- "text": "our",
- "offset": 182,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 127.66,
- "end": 128.54,
- "confidence": 1,
- "text": "lives",
- "offset": 186,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 128.85,
- "end": 128.96,
- "confidence": 0.51,
- "text": "and",
- "offset": 192,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 129.1,
- "end": 129.36,
- "confidence": 0.39,
- "text": "things",
- "offset": 196,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 129.39,
- "end": 129.75,
- "confidence": 0.63,
- "text": "like",
- "offset": 203,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 129.75,
- "end": 130.04,
- "confidence": 1,
- "text": "that",
- "offset": 208,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.04,
- "end": 130.29,
- "confidence": 0.98,
- "text": "might",
- "offset": 213,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.39,
- "end": 130.75,
- "confidence": 1,
- "text": "actually",
- "offset": 219,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.75,
- "end": 130.89,
- "confidence": 1,
- "text": "have",
- "offset": 228,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 130.89,
- "end": 132.15,
- "confidence": 1,
- "text": "consequences",
- "offset": 233,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 133.44,
- "end": 133.68,
- "confidence": 1,
- "text": "because",
- "offset": 246,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 133.68,
- "end": 133.76,
- "confidence": 1,
- "text": "the",
- "offset": 254,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 133.76,
- "end": 134.02,
- "confidence": 1,
- "text": "first",
- "offset": 258,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.02,
- "end": 134.17,
- "confidence": 1,
- "text": "thing",
- "offset": 264,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.17,
- "end": 134.23,
- "confidence": 0.51,
- "text": "that",
- "offset": 270,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.23,
- "end": 134.33,
- "confidence": 0.62,
- "text": "I",
- "offset": 275,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 134.33,
- "end": 135.12,
- "confidence": 1,
- "text": "discovered",
- "offset": 277,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 135.16,
- "end": 135.35,
- "confidence": 0.96,
- "text": "is",
- "offset": 288,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 135.35,
- "end": 135.53,
- "confidence": 0.97,
- "text": "that.",
- "offset": 291,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's not just me in two thousand seven.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 24",
- "words": [
- {
- "start": 135.56,
- "confidence": 1,
- "end": 135.8,
- "word": "it's",
- "punct": "It's",
- "index": 302
- },
- {
- "start": 135.8,
- "confidence": 1,
- "end": 136.05,
- "word": "not",
- "punct": "not",
- "index": 303
- },
- {
- "start": 136.05,
- "confidence": 1,
- "end": 136.39,
- "word": "just",
- "punct": "just",
- "index": 304
- },
- {
- "start": 136.39,
- "confidence": 1,
- "end": 136.9,
- "word": "me",
- "punct": "me",
- "index": 305
- },
- {
- "start": 139.25,
- "confidence": 1,
- "end": 139.42,
- "word": "in",
- "punct": "in",
- "index": 306
- },
- {
- "start": 139.42,
- "confidence": 1,
- "end": 139.58,
- "word": "two",
- "punct": "two",
- "index": 307
- },
- {
- "start": 139.58,
- "confidence": 1,
- "end": 140.08,
- "word": "thousand",
- "punct": "thousand",
- "index": 308
- },
- {
- "start": 140.08,
- "confidence": 1,
- "end": 140.69,
- "word": "seven",
- "punct": "seven.",
- "index": 309
- }
- ],
- "start": 135.56
- },
- "entityRanges": [
- {
- "start": 135.56,
- "end": 135.8,
- "confidence": 1,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 135.8,
- "end": 136.05,
- "confidence": 1,
- "text": "not",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 136.05,
- "end": 136.39,
- "confidence": 1,
- "text": "just",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 136.39,
- "end": 136.9,
- "confidence": 1,
- "text": "me",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 139.25,
- "end": 139.42,
- "confidence": 1,
- "text": "in",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 139.42,
- "end": 139.58,
- "confidence": 1,
- "text": "two",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 139.58,
- "end": 140.08,
- "confidence": 1,
- "text": "thousand",
- "offset": 24,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 140.08,
- "end": 140.69,
- "confidence": 1,
- "text": "seven.",
- "offset": 33,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The Washington Post reported that the United States military was testing this robot diffused landmines.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 25",
- "words": [
- {
- "start": 140.75,
- "confidence": 1,
- "end": 140.88,
- "word": "the",
- "punct": "The",
- "index": 310
- },
- {
- "start": 140.88,
- "confidence": 1,
- "end": 141.4,
- "word": "washington",
- "punct": "Washington",
- "index": 311
- },
- {
- "start": 141.4,
- "confidence": 1,
- "end": 141.74,
- "word": "post",
- "punct": "Post",
- "index": 312
- },
- {
- "start": 141.74,
- "confidence": 1,
- "end": 142.27,
- "word": "reported",
- "punct": "reported",
- "index": 313
- },
- {
- "start": 142.27,
- "confidence": 1,
- "end": 142.42,
- "word": "that",
- "punct": "that",
- "index": 314
- },
- {
- "start": 142.42,
- "confidence": 1,
- "end": 142.51,
- "word": "the",
- "punct": "the",
- "index": 315
- },
- {
- "start": 142.51,
- "confidence": 1,
- "end": 142.94,
- "word": "united",
- "punct": "United",
- "index": 316
- },
- {
- "start": 142.94,
- "confidence": 0.98,
- "end": 143.21,
- "word": "states",
- "punct": "States",
- "index": 317
- },
- {
- "start": 143.21,
- "confidence": 1,
- "end": 144.05,
- "word": "military",
- "punct": "military",
- "index": 318
- },
- {
- "start": 144.08,
- "confidence": 0.92,
- "end": 144.28,
- "word": "was",
- "punct": "was",
- "index": 319
- },
- {
- "start": 144.28,
- "confidence": 1,
- "end": 144.82,
- "word": "testing",
- "punct": "testing",
- "index": 320
- },
- {
- "start": 144.82,
- "confidence": 1,
- "end": 145.12,
- "word": "this",
- "punct": "this",
- "index": 321
- },
- {
- "start": 145.33,
- "confidence": 0.99,
- "end": 145.86,
- "word": "robot",
- "punct": "robot",
- "index": 322
- },
- {
- "start": 145.91,
- "confidence": 0.58,
- "end": 146.46,
- "word": "diffused",
- "punct": "diffused",
- "index": 323
- },
- {
- "start": 146.6,
- "confidence": 0.95,
- "end": 147.31,
- "word": "landmines",
- "punct": "landmines.",
- "index": 324
- }
- ],
- "start": 140.75
- },
- "entityRanges": [
- {
- "start": 140.75,
- "end": 140.88,
- "confidence": 1,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 140.88,
- "end": 141.4,
- "confidence": 1,
- "text": "Washington",
- "offset": 4,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 141.4,
- "end": 141.74,
- "confidence": 1,
- "text": "Post",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 141.74,
- "end": 142.27,
- "confidence": 1,
- "text": "reported",
- "offset": 20,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.27,
- "end": 142.42,
- "confidence": 1,
- "text": "that",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.42,
- "end": 142.51,
- "confidence": 1,
- "text": "the",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.51,
- "end": 142.94,
- "confidence": 1,
- "text": "United",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 142.94,
- "end": 143.21,
- "confidence": 0.98,
- "text": "States",
- "offset": 45,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 143.21,
- "end": 144.05,
- "confidence": 1,
- "text": "military",
- "offset": 52,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 144.08,
- "end": 144.28,
- "confidence": 0.92,
- "text": "was",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 144.28,
- "end": 144.82,
- "confidence": 1,
- "text": "testing",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 144.82,
- "end": 145.12,
- "confidence": 1,
- "text": "this",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 145.33,
- "end": 145.86,
- "confidence": 0.99,
- "text": "robot",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 145.91,
- "end": 146.46,
- "confidence": 0.58,
- "text": "diffused",
- "offset": 84,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 146.6,
- "end": 147.31,
- "confidence": 0.95,
- "text": "landmines.",
- "offset": 93,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We workers were shaped like a stick insect would walk around a minefield on its legs and every time he stepped on a mine.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 26",
- "words": [
- {
- "start": 147.42,
- "confidence": 0.9,
- "end": 147.67,
- "word": "we",
- "punct": "We",
- "index": 325
- },
- {
- "start": 147.74,
- "confidence": 0.67,
- "end": 148.11,
- "word": "workers",
- "punct": "workers",
- "index": 326
- },
- {
- "start": 148.35,
- "confidence": 0.34,
- "end": 148.52,
- "word": "were",
- "punct": "were",
- "index": 327
- },
- {
- "start": 148.57,
- "confidence": 0.98,
- "end": 148.95,
- "word": "shaped",
- "punct": "shaped",
- "index": 328
- },
- {
- "start": 148.95,
- "confidence": 1,
- "end": 149.09,
- "word": "like",
- "punct": "like",
- "index": 329
- },
- {
- "start": 149.09,
- "confidence": 1,
- "end": 149.16,
- "word": "a",
- "punct": "a",
- "index": 330
- },
- {
- "start": 149.16,
- "confidence": 1,
- "end": 149.56,
- "word": "stick",
- "punct": "stick",
- "index": 331
- },
- {
- "start": 149.56,
- "confidence": 1,
- "end": 150.1,
- "word": "insect",
- "punct": "insect",
- "index": 332
- },
- {
- "start": 150.16,
- "confidence": 0.93,
- "end": 150.68,
- "word": "would",
- "punct": "would",
- "index": 333
- },
- {
- "start": 150.7,
- "confidence": 0.99,
- "end": 150.94,
- "word": "walk",
- "punct": "walk",
- "index": 334
- },
- {
- "start": 150.94,
- "confidence": 0.99,
- "end": 151.16,
- "word": "around",
- "punct": "around",
- "index": 335
- },
- {
- "start": 151.16,
- "confidence": 0.91,
- "end": 151.2,
- "word": "a",
- "punct": "a",
- "index": 336
- },
- {
- "start": 151.2,
- "confidence": 1,
- "end": 151.8,
- "word": "minefield",
- "punct": "minefield",
- "index": 337
- },
- {
- "start": 151.8,
- "confidence": 0.53,
- "end": 151.9,
- "word": "on",
- "punct": "on",
- "index": 338
- },
- {
- "start": 151.9,
- "confidence": 0.9,
- "end": 152.06,
- "word": "its",
- "punct": "its",
- "index": 339
- },
- {
- "start": 152.06,
- "confidence": 1,
- "end": 152.57,
- "word": "legs",
- "punct": "legs",
- "index": 340
- },
- {
- "start": 152.82,
- "confidence": 0.73,
- "end": 152.93,
- "word": "and",
- "punct": "and",
- "index": 341
- },
- {
- "start": 153.07,
- "confidence": 1,
- "end": 153.29,
- "word": "every",
- "punct": "every",
- "index": 342
- },
- {
- "start": 153.29,
- "confidence": 1,
- "end": 153.47,
- "word": "time",
- "punct": "time",
- "index": 343
- },
- {
- "start": 153.47,
- "confidence": 0.97,
- "end": 153.55,
- "word": "he",
- "punct": "he",
- "index": 344
- },
- {
- "start": 153.55,
- "confidence": 1,
- "end": 153.9,
- "word": "stepped",
- "punct": "stepped",
- "index": 345
- },
- {
- "start": 153.9,
- "confidence": 1,
- "end": 153.98,
- "word": "on",
- "punct": "on",
- "index": 346
- },
- {
- "start": 153.98,
- "confidence": 1,
- "end": 154.04,
- "word": "a",
- "punct": "a",
- "index": 347
- },
- {
- "start": 154.04,
- "confidence": 1,
- "end": 154.45,
- "word": "mine",
- "punct": "mine.",
- "index": 348
- }
- ],
- "start": 147.42
- },
- "entityRanges": [
- {
- "start": 147.42,
- "end": 147.67,
- "confidence": 0.9,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 147.74,
- "end": 148.11,
- "confidence": 0.67,
- "text": "workers",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 148.35,
- "end": 148.52,
- "confidence": 0.34,
- "text": "were",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 148.57,
- "end": 148.95,
- "confidence": 0.98,
- "text": "shaped",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 148.95,
- "end": 149.09,
- "confidence": 1,
- "text": "like",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 149.09,
- "end": 149.16,
- "confidence": 1,
- "text": "a",
- "offset": 28,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 149.16,
- "end": 149.56,
- "confidence": 1,
- "text": "stick",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 149.56,
- "end": 150.1,
- "confidence": 1,
- "text": "insect",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.16,
- "end": 150.68,
- "confidence": 0.93,
- "text": "would",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.7,
- "end": 150.94,
- "confidence": 0.99,
- "text": "walk",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 150.94,
- "end": 151.16,
- "confidence": 0.99,
- "text": "around",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.16,
- "end": 151.2,
- "confidence": 0.91,
- "text": "a",
- "offset": 61,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.2,
- "end": 151.8,
- "confidence": 1,
- "text": "minefield",
- "offset": 63,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.8,
- "end": 151.9,
- "confidence": 0.53,
- "text": "on",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 151.9,
- "end": 152.06,
- "confidence": 0.9,
- "text": "its",
- "offset": 76,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 152.06,
- "end": 152.57,
- "confidence": 1,
- "text": "legs",
- "offset": 80,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 152.82,
- "end": 152.93,
- "confidence": 0.73,
- "text": "and",
- "offset": 85,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.07,
- "end": 153.29,
- "confidence": 1,
- "text": "every",
- "offset": 89,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.29,
- "end": 153.47,
- "confidence": 1,
- "text": "time",
- "offset": 95,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.47,
- "end": 153.55,
- "confidence": 0.97,
- "text": "he",
- "offset": 100,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.55,
- "end": 153.9,
- "confidence": 1,
- "text": "stepped",
- "offset": 103,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.9,
- "end": 153.98,
- "confidence": 1,
- "text": "on",
- "offset": 111,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 153.98,
- "end": 154.04,
- "confidence": 1,
- "text": "a",
- "offset": 114,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.04,
- "end": 154.45,
- "confidence": 1,
- "text": "mine.",
- "offset": 116,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "One of the legs would blow up would continue on the other legs to block your minds in the colonel was in charge of this testing exercise for calling it off because he says it's too inhumane to watch this damage robot drag itself along the minefield.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 27",
- "words": [
- {
- "start": 154.48,
- "confidence": 1,
- "end": 154.64,
- "word": "one",
- "punct": "One",
- "index": 349
- },
- {
- "start": 154.64,
- "confidence": 1,
- "end": 154.73,
- "word": "of",
- "punct": "of",
- "index": 350
- },
- {
- "start": 154.73,
- "confidence": 0.84,
- "end": 154.83,
- "word": "the",
- "punct": "the",
- "index": 351
- },
- {
- "start": 154.83,
- "confidence": 1,
- "end": 155.09,
- "word": "legs",
- "punct": "legs",
- "index": 352
- },
- {
- "start": 155.09,
- "confidence": 0.78,
- "end": 155.21,
- "word": "would",
- "punct": "would",
- "index": 353
- },
- {
- "start": 155.21,
- "confidence": 1,
- "end": 155.47,
- "word": "blow",
- "punct": "blow",
- "index": 354
- },
- {
- "start": 155.47,
- "confidence": 1,
- "end": 155.76,
- "word": "up",
- "punct": "up",
- "index": 355
- },
- {
- "start": 155.82,
- "confidence": 0.45,
- "end": 155.99,
- "word": "would",
- "punct": "would",
- "index": 356
- },
- {
- "start": 156.01,
- "confidence": 0.98,
- "end": 156.53,
- "word": "continue",
- "punct": "continue",
- "index": 357
- },
- {
- "start": 156.53,
- "confidence": 0.92,
- "end": 156.63,
- "word": "on",
- "punct": "on",
- "index": 358
- },
- {
- "start": 156.63,
- "confidence": 1,
- "end": 156.72,
- "word": "the",
- "punct": "the",
- "index": 359
- },
- {
- "start": 156.72,
- "confidence": 1,
- "end": 156.93,
- "word": "other",
- "punct": "other",
- "index": 360
- },
- {
- "start": 156.93,
- "confidence": 0.64,
- "end": 157.28,
- "word": "legs",
- "punct": "legs",
- "index": 361
- },
- {
- "start": 157.28,
- "confidence": 1,
- "end": 157.39,
- "word": "to",
- "punct": "to",
- "index": 362
- },
- {
- "start": 157.39,
- "confidence": 0.95,
- "end": 157.71,
- "word": "block",
- "punct": "block",
- "index": 363
- },
- {
- "start": 157.71,
- "confidence": 0.44,
- "end": 157.9,
- "word": "your",
- "punct": "your",
- "index": 364
- },
- {
- "start": 157.9,
- "confidence": 0.3,
- "end": 158.45,
- "word": "minds",
- "punct": "minds",
- "index": 365
- },
- {
- "start": 159.23,
- "confidence": 0.77,
- "end": 159.5,
- "word": "in",
- "punct": "in",
- "index": 366
- },
- {
- "start": 159.53,
- "confidence": 0.98,
- "end": 159.68,
- "word": "the",
- "punct": "the",
- "index": 367
- },
- {
- "start": 159.68,
- "confidence": 0.99,
- "end": 160.16,
- "word": "colonel",
- "punct": "colonel",
- "index": 368
- },
- {
- "start": 160.16,
- "confidence": 0.68,
- "end": 160.34,
- "word": "was",
- "punct": "was",
- "index": 369
- },
- {
- "start": 160.36,
- "confidence": 1,
- "end": 160.45,
- "word": "in",
- "punct": "in",
- "index": 370
- },
- {
- "start": 160.45,
- "confidence": 1,
- "end": 160.94,
- "word": "charge",
- "punct": "charge",
- "index": 371
- },
- {
- "start": 160.94,
- "confidence": 1,
- "end": 161.03,
- "word": "of",
- "punct": "of",
- "index": 372
- },
- {
- "start": 161.03,
- "confidence": 0.71,
- "end": 161.19,
- "word": "this",
- "punct": "this",
- "index": 373
- },
- {
- "start": 161.2,
- "confidence": 1,
- "end": 161.72,
- "word": "testing",
- "punct": "testing",
- "index": 374
- },
- {
- "start": 161.72,
- "confidence": 0.89,
- "end": 162.68,
- "word": "exercise",
- "punct": "exercise",
- "index": 375
- },
- {
- "start": 163.09,
- "confidence": 0.47,
- "end": 163.23,
- "word": "for",
- "punct": "for",
- "index": 376
- },
- {
- "start": 163.32,
- "confidence": 0.99,
- "end": 163.8,
- "word": "calling",
- "punct": "calling",
- "index": 377
- },
- {
- "start": 163.8,
- "confidence": 1,
- "end": 163.9,
- "word": "it",
- "punct": "it",
- "index": 378
- },
- {
- "start": 163.9,
- "confidence": 1,
- "end": 164.42,
- "word": "off",
- "punct": "off",
- "index": 379
- },
- {
- "start": 165.19,
- "confidence": 1,
- "end": 165.61,
- "word": "because",
- "punct": "because",
- "index": 380
- },
- {
- "start": 165.61,
- "confidence": 0.97,
- "end": 165.74,
- "word": "he",
- "punct": "he",
- "index": 381
- },
- {
- "start": 165.74,
- "confidence": 1,
- "end": 166.16,
- "word": "says",
- "punct": "says",
- "index": 382
- },
- {
- "start": 166.19,
- "confidence": 0.95,
- "end": 166.49,
- "word": "it's",
- "punct": "it's",
- "index": 383
- },
- {
- "start": 166.49,
- "confidence": 0.87,
- "end": 166.78,
- "word": "too",
- "punct": "too",
- "index": 384
- },
- {
- "start": 166.78,
- "confidence": 1,
- "end": 167.63,
- "word": "inhumane",
- "punct": "inhumane",
- "index": 385
- },
- {
- "start": 167.63,
- "confidence": 1,
- "end": 167.82,
- "word": "to",
- "punct": "to",
- "index": 386
- },
- {
- "start": 167.82,
- "confidence": 1,
- "end": 168.37,
- "word": "watch",
- "punct": "watch",
- "index": 387
- },
- {
- "start": 168.37,
- "confidence": 1,
- "end": 168.6,
- "word": "this",
- "punct": "this",
- "index": 388
- },
- {
- "start": 168.6,
- "confidence": 0.54,
- "end": 169.13,
- "word": "damage",
- "punct": "damage",
- "index": 389
- },
- {
- "start": 169.14,
- "confidence": 0.77,
- "end": 169.55,
- "word": "robot",
- "punct": "robot",
- "index": 390
- },
- {
- "start": 169.6,
- "confidence": 0.63,
- "end": 170.06,
- "word": "drag",
- "punct": "drag",
- "index": 391
- },
- {
- "start": 170.09,
- "confidence": 0.62,
- "end": 170.46,
- "word": "itself",
- "punct": "itself",
- "index": 392
- },
- {
- "start": 170.46,
- "confidence": 1,
- "end": 170.98,
- "word": "along",
- "punct": "along",
- "index": 393
- },
- {
- "start": 171.34,
- "confidence": 0.92,
- "end": 171.43,
- "word": "the",
- "punct": "the",
- "index": 394
- },
- {
- "start": 171.44,
- "confidence": 0.95,
- "end": 172.15,
- "word": "minefield",
- "punct": "minefield.",
- "index": 395
- }
- ],
- "start": 154.48
- },
- "entityRanges": [
- {
- "start": 154.48,
- "end": 154.64,
- "confidence": 1,
- "text": "One",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.64,
- "end": 154.73,
- "confidence": 1,
- "text": "of",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.73,
- "end": 154.83,
- "confidence": 0.84,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 154.83,
- "end": 155.09,
- "confidence": 1,
- "text": "legs",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.09,
- "end": 155.21,
- "confidence": 0.78,
- "text": "would",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.21,
- "end": 155.47,
- "confidence": 1,
- "text": "blow",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.47,
- "end": 155.76,
- "confidence": 1,
- "text": "up",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 155.82,
- "end": 155.99,
- "confidence": 0.45,
- "text": "would",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.01,
- "end": 156.53,
- "confidence": 0.98,
- "text": "continue",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.53,
- "end": 156.63,
- "confidence": 0.92,
- "text": "on",
- "offset": 45,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.63,
- "end": 156.72,
- "confidence": 1,
- "text": "the",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.72,
- "end": 156.93,
- "confidence": 1,
- "text": "other",
- "offset": 52,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 156.93,
- "end": 157.28,
- "confidence": 0.64,
- "text": "legs",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.28,
- "end": 157.39,
- "confidence": 1,
- "text": "to",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.39,
- "end": 157.71,
- "confidence": 0.95,
- "text": "block",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.71,
- "end": 157.9,
- "confidence": 0.44,
- "text": "your",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 157.9,
- "end": 158.45,
- "confidence": 0.3,
- "text": "minds",
- "offset": 77,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 159.23,
- "end": 159.5,
- "confidence": 0.77,
- "text": "in",
- "offset": 83,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 159.53,
- "end": 159.68,
- "confidence": 0.98,
- "text": "the",
- "offset": 86,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 159.68,
- "end": 160.16,
- "confidence": 0.99,
- "text": "colonel",
- "offset": 90,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.16,
- "end": 160.34,
- "confidence": 0.68,
- "text": "was",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.36,
- "end": 160.45,
- "confidence": 1,
- "text": "in",
- "offset": 102,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.45,
- "end": 160.94,
- "confidence": 1,
- "text": "charge",
- "offset": 105,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 160.94,
- "end": 161.03,
- "confidence": 1,
- "text": "of",
- "offset": 112,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 161.03,
- "end": 161.19,
- "confidence": 0.71,
- "text": "this",
- "offset": 115,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 161.2,
- "end": 161.72,
- "confidence": 1,
- "text": "testing",
- "offset": 120,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 161.72,
- "end": 162.68,
- "confidence": 0.89,
- "text": "exercise",
- "offset": 128,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.09,
- "end": 163.23,
- "confidence": 0.47,
- "text": "for",
- "offset": 137,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.32,
- "end": 163.8,
- "confidence": 0.99,
- "text": "calling",
- "offset": 141,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.8,
- "end": 163.9,
- "confidence": 1,
- "text": "it",
- "offset": 149,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 163.9,
- "end": 164.42,
- "confidence": 1,
- "text": "off",
- "offset": 152,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 165.19,
- "end": 165.61,
- "confidence": 1,
- "text": "because",
- "offset": 156,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 165.61,
- "end": 165.74,
- "confidence": 0.97,
- "text": "he",
- "offset": 164,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 165.74,
- "end": 166.16,
- "confidence": 1,
- "text": "says",
- "offset": 167,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 166.19,
- "end": 166.49,
- "confidence": 0.95,
- "text": "it's",
- "offset": 172,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 166.49,
- "end": 166.78,
- "confidence": 0.87,
- "text": "too",
- "offset": 177,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 166.78,
- "end": 167.63,
- "confidence": 1,
- "text": "inhumane",
- "offset": 181,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 167.63,
- "end": 167.82,
- "confidence": 1,
- "text": "to",
- "offset": 190,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 167.82,
- "end": 168.37,
- "confidence": 1,
- "text": "watch",
- "offset": 193,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 168.37,
- "end": 168.6,
- "confidence": 1,
- "text": "this",
- "offset": 199,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 168.6,
- "end": 169.13,
- "confidence": 0.54,
- "text": "damage",
- "offset": 204,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 169.14,
- "end": 169.55,
- "confidence": 0.77,
- "text": "robot",
- "offset": 211,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 169.6,
- "end": 170.06,
- "confidence": 0.63,
- "text": "drag",
- "offset": 217,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 170.09,
- "end": 170.46,
- "confidence": 0.62,
- "text": "itself",
- "offset": 222,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 170.46,
- "end": 170.98,
- "confidence": 1,
- "text": "along",
- "offset": 229,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 171.34,
- "end": 171.43,
- "confidence": 0.92,
- "text": "the",
- "offset": 235,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 171.44,
- "end": 172.15,
- "confidence": 0.95,
- "text": "minefield.",
- "offset": 239,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "What would cause a hardened military officer and someone like myself to have this response to row.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 28",
- "words": [
- {
- "start": 175.1,
- "confidence": 1,
- "end": 175.41,
- "word": "what",
- "punct": "What",
- "index": 396
- },
- {
- "start": 175.41,
- "confidence": 0.96,
- "end": 175.54,
- "word": "would",
- "punct": "would",
- "index": 397
- },
- {
- "start": 175.54,
- "confidence": 0.99,
- "end": 176.17,
- "word": "cause",
- "punct": "cause",
- "index": 398
- },
- {
- "start": 176.23,
- "confidence": 0.87,
- "end": 176.4,
- "word": "a",
- "punct": "a",
- "index": 399
- },
- {
- "start": 176.42,
- "confidence": 0.93,
- "end": 176.96,
- "word": "hardened",
- "punct": "hardened",
- "index": 400
- },
- {
- "start": 176.96,
- "confidence": 0.98,
- "end": 177.67,
- "word": "military",
- "punct": "military",
- "index": 401
- },
- {
- "start": 177.67,
- "confidence": 0.99,
- "end": 178.51,
- "word": "officer",
- "punct": "officer",
- "index": 402
- },
- {
- "start": 178.75,
- "confidence": 0.38,
- "end": 178.85,
- "word": "and",
- "punct": "and",
- "index": 403
- },
- {
- "start": 179.04,
- "confidence": 1,
- "end": 179.44,
- "word": "someone",
- "punct": "someone",
- "index": 404
- },
- {
- "start": 179.44,
- "confidence": 1,
- "end": 179.6,
- "word": "like",
- "punct": "like",
- "index": 405
- },
- {
- "start": 179.6,
- "confidence": 1,
- "end": 180.33,
- "word": "myself",
- "punct": "myself",
- "index": 406
- },
- {
- "start": 180.95,
- "confidence": 1,
- "end": 181.1,
- "word": "to",
- "punct": "to",
- "index": 407
- },
- {
- "start": 181.1,
- "confidence": 1,
- "end": 181.29,
- "word": "have",
- "punct": "have",
- "index": 408
- },
- {
- "start": 181.29,
- "confidence": 1,
- "end": 181.44,
- "word": "this",
- "punct": "this",
- "index": 409
- },
- {
- "start": 181.44,
- "confidence": 1,
- "end": 181.94,
- "word": "response",
- "punct": "response",
- "index": 410
- },
- {
- "start": 181.94,
- "confidence": 0.98,
- "end": 182.07,
- "word": "to",
- "punct": "to",
- "index": 411
- },
- {
- "start": 182.07,
- "confidence": 0.83,
- "end": 182.25,
- "word": "row",
- "punct": "row.",
- "index": 412
- }
- ],
- "start": 175.1
- },
- "entityRanges": [
- {
- "start": 175.1,
- "end": 175.41,
- "confidence": 1,
- "text": "What",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 175.41,
- "end": 175.54,
- "confidence": 0.96,
- "text": "would",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 175.54,
- "end": 176.17,
- "confidence": 0.99,
- "text": "cause",
- "offset": 11,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 176.23,
- "end": 176.4,
- "confidence": 0.87,
- "text": "a",
- "offset": 17,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 176.42,
- "end": 176.96,
- "confidence": 0.93,
- "text": "hardened",
- "offset": 19,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 176.96,
- "end": 177.67,
- "confidence": 0.98,
- "text": "military",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 177.67,
- "end": 178.51,
- "confidence": 0.99,
- "text": "officer",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 178.75,
- "end": 178.85,
- "confidence": 0.38,
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 179.04,
- "end": 179.44,
- "confidence": 1,
- "text": "someone",
- "offset": 49,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 179.44,
- "end": 179.6,
- "confidence": 1,
- "text": "like",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 179.6,
- "end": 180.33,
- "confidence": 1,
- "text": "myself",
- "offset": 62,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 180.95,
- "end": 181.1,
- "confidence": 1,
- "text": "to",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.1,
- "end": 181.29,
- "confidence": 1,
- "text": "have",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.29,
- "end": 181.44,
- "confidence": 1,
- "text": "this",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.44,
- "end": 181.94,
- "confidence": 1,
- "text": "response",
- "offset": 82,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 181.94,
- "end": 182.07,
- "confidence": 0.98,
- "text": "to",
- "offset": 91,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 182.07,
- "end": 182.25,
- "confidence": 0.83,
- "text": "row.",
- "offset": 94,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But what.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 29",
- "words": [
- {
- "start": 182.25,
- "confidence": 1,
- "end": 182.77,
- "word": "but",
- "punct": "But",
- "index": 413
- },
- {
- "start": 183.53,
- "confidence": 1,
- "end": 183.99,
- "word": "what",
- "punct": "what.",
- "index": 414
- }
- ],
- "start": 182.25
- },
- "entityRanges": [
- {
- "start": 182.25,
- "end": 182.77,
- "confidence": 1,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 183.53,
- "end": 183.99,
- "confidence": 1,
- "text": "what.",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Of course for prime for science fiction, pop culture really want to personify these things, but it goes a little bit deeper than that it turns out that we are biologically hard wired to project intent and life onto any movement in a physical space.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 30",
- "words": [
- {
- "start": 184.07,
- "confidence": 1,
- "end": 184.22,
- "word": "of",
- "punct": "Of",
- "index": 415
- },
- {
- "start": 184.22,
- "confidence": 1,
- "end": 184.51,
- "word": "course",
- "punct": "course",
- "index": 416
- },
- {
- "start": 184.51,
- "confidence": 0.85,
- "end": 184.62,
- "word": "for",
- "punct": "for",
- "index": 417
- },
- {
- "start": 184.62,
- "confidence": 0.34,
- "end": 185.08,
- "word": "prime",
- "punct": "prime",
- "index": 418
- },
- {
- "start": 185.2,
- "confidence": 0.51,
- "end": 185.35,
- "word": "for",
- "punct": "for",
- "index": 419
- },
- {
- "start": 185.35,
- "confidence": 1,
- "end": 185.78,
- "word": "science",
- "punct": "science",
- "index": 420
- },
- {
- "start": 185.78,
- "confidence": 1,
- "end": 186.09,
- "word": "fiction",
- "punct": "fiction,",
- "index": 421
- },
- {
- "start": 186.09,
- "confidence": 1,
- "end": 186.44,
- "word": "pop",
- "punct": "pop",
- "index": 422
- },
- {
- "start": 186.44,
- "confidence": 0.98,
- "end": 186.87,
- "word": "culture",
- "punct": "culture",
- "index": 423
- },
- {
- "start": 186.91,
- "confidence": 0.95,
- "end": 187.17,
- "word": "really",
- "punct": "really",
- "index": 424
- },
- {
- "start": 187.17,
- "confidence": 0.57,
- "end": 187.27,
- "word": "want",
- "punct": "want",
- "index": 425
- },
- {
- "start": 187.27,
- "confidence": 0.59,
- "end": 187.38,
- "word": "to",
- "punct": "to",
- "index": 426
- },
- {
- "start": 187.38,
- "confidence": 0.77,
- "end": 188.05,
- "word": "personify",
- "punct": "personify",
- "index": 427
- },
- {
- "start": 188.05,
- "confidence": 0.68,
- "end": 188.28,
- "word": "these",
- "punct": "these",
- "index": 428
- },
- {
- "start": 188.29,
- "confidence": 1,
- "end": 188.94,
- "word": "things",
- "punct": "things,",
- "index": 429
- },
- {
- "start": 189.45,
- "confidence": 0.92,
- "end": 189.72,
- "word": "but",
- "punct": "but",
- "index": 430
- },
- {
- "start": 189.74,
- "confidence": 0.86,
- "end": 189.87,
- "word": "it",
- "punct": "it",
- "index": 431
- },
- {
- "start": 189.88,
- "confidence": 0.84,
- "end": 190.07,
- "word": "goes",
- "punct": "goes",
- "index": 432
- },
- {
- "start": 190.07,
- "confidence": 1,
- "end": 190.15,
- "word": "a",
- "punct": "a",
- "index": 433
- },
- {
- "start": 190.15,
- "confidence": 0.95,
- "end": 190.34,
- "word": "little",
- "punct": "little",
- "index": 434
- },
- {
- "start": 190.34,
- "confidence": 1,
- "end": 190.48,
- "word": "bit",
- "punct": "bit",
- "index": 435
- },
- {
- "start": 190.48,
- "confidence": 1,
- "end": 190.8,
- "word": "deeper",
- "punct": "deeper",
- "index": 436
- },
- {
- "start": 190.8,
- "confidence": 1,
- "end": 190.94,
- "word": "than",
- "punct": "than",
- "index": 437
- },
- {
- "start": 190.94,
- "confidence": 1,
- "end": 191.27,
- "word": "that",
- "punct": "that",
- "index": 438
- },
- {
- "start": 192.25,
- "confidence": 1,
- "end": 192.38,
- "word": "it",
- "punct": "it",
- "index": 439
- },
- {
- "start": 192.38,
- "confidence": 0.97,
- "end": 192.7,
- "word": "turns",
- "punct": "turns",
- "index": 440
- },
- {
- "start": 192.7,
- "confidence": 1,
- "end": 192.81,
- "word": "out",
- "punct": "out",
- "index": 441
- },
- {
- "start": 192.81,
- "confidence": 1,
- "end": 192.95,
- "word": "that",
- "punct": "that",
- "index": 442
- },
- {
- "start": 192.95,
- "confidence": 1,
- "end": 193.03,
- "word": "we",
- "punct": "we",
- "index": 443
- },
- {
- "start": 193.03,
- "confidence": 1,
- "end": 193.08,
- "word": "are",
- "punct": "are",
- "index": 444
- },
- {
- "start": 193.08,
- "confidence": 1,
- "end": 193.95,
- "word": "biologically",
- "punct": "biologically",
- "index": 445
- },
- {
- "start": 193.95,
- "confidence": 1,
- "end": 194.49,
- "word": "hard",
- "punct": "hard",
- "index": 446
- },
- {
- "start": 194.49,
- "confidence": 1,
- "end": 194.96,
- "word": "wired",
- "punct": "wired",
- "index": 447
- },
- {
- "start": 194.96,
- "confidence": 1,
- "end": 195.09,
- "word": "to",
- "punct": "to",
- "index": 448
- },
- {
- "start": 195.09,
- "confidence": 1,
- "end": 195.84,
- "word": "project",
- "punct": "project",
- "index": 449
- },
- {
- "start": 196.1,
- "confidence": 0.99,
- "end": 196.89,
- "word": "intent",
- "punct": "intent",
- "index": 450
- },
- {
- "start": 196.92,
- "confidence": 0.96,
- "end": 197.17,
- "word": "and",
- "punct": "and",
- "index": 451
- },
- {
- "start": 197.19,
- "confidence": 0.72,
- "end": 197.63,
- "word": "life",
- "punct": "life",
- "index": 452
- },
- {
- "start": 197.69,
- "confidence": 0.45,
- "end": 198.27,
- "word": "onto",
- "punct": "onto",
- "index": 453
- },
- {
- "start": 198.58,
- "confidence": 0.98,
- "end": 198.81,
- "word": "any",
- "punct": "any",
- "index": 454
- },
- {
- "start": 198.81,
- "confidence": 1,
- "end": 199.38,
- "word": "movement",
- "punct": "movement",
- "index": 455
- },
- {
- "start": 199.38,
- "confidence": 0.91,
- "end": 199.49,
- "word": "in",
- "punct": "in",
- "index": 456
- },
- {
- "start": 199.49,
- "confidence": 0.87,
- "end": 199.57,
- "word": "a",
- "punct": "a",
- "index": 457
- },
- {
- "start": 199.58,
- "confidence": 1,
- "end": 200.12,
- "word": "physical",
- "punct": "physical",
- "index": 458
- },
- {
- "start": 200.12,
- "confidence": 1,
- "end": 200.52,
- "word": "space",
- "punct": "space.",
- "index": 459
- }
- ],
- "start": 184.07
- },
- "entityRanges": [
- {
- "start": 184.07,
- "end": 184.22,
- "confidence": 1,
- "text": "Of",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 184.22,
- "end": 184.51,
- "confidence": 1,
- "text": "course",
- "offset": 3,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 184.51,
- "end": 184.62,
- "confidence": 0.85,
- "text": "for",
- "offset": 10,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 184.62,
- "end": 185.08,
- "confidence": 0.34,
- "text": "prime",
- "offset": 14,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 185.2,
- "end": 185.35,
- "confidence": 0.51,
- "text": "for",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 185.35,
- "end": 185.78,
- "confidence": 1,
- "text": "science",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 185.78,
- "end": 186.09,
- "confidence": 1,
- "text": "fiction,",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 186.09,
- "end": 186.44,
- "confidence": 1,
- "text": "pop",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 186.44,
- "end": 186.87,
- "confidence": 0.98,
- "text": "culture",
- "offset": 45,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 186.91,
- "end": 187.17,
- "confidence": 0.95,
- "text": "really",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 187.17,
- "end": 187.27,
- "confidence": 0.57,
- "text": "want",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 187.27,
- "end": 187.38,
- "confidence": 0.59,
- "text": "to",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 187.38,
- "end": 188.05,
- "confidence": 0.77,
- "text": "personify",
- "offset": 68,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 188.05,
- "end": 188.28,
- "confidence": 0.68,
- "text": "these",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 188.29,
- "end": 188.94,
- "confidence": 1,
- "text": "things,",
- "offset": 84,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 189.45,
- "end": 189.72,
- "confidence": 0.92,
- "text": "but",
- "offset": 92,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 189.74,
- "end": 189.87,
- "confidence": 0.86,
- "text": "it",
- "offset": 96,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 189.88,
- "end": 190.07,
- "confidence": 0.84,
- "text": "goes",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.07,
- "end": 190.15,
- "confidence": 1,
- "text": "a",
- "offset": 104,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.15,
- "end": 190.34,
- "confidence": 0.95,
- "text": "little",
- "offset": 106,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.34,
- "end": 190.48,
- "confidence": 1,
- "text": "bit",
- "offset": 113,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.48,
- "end": 190.8,
- "confidence": 1,
- "text": "deeper",
- "offset": 117,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.8,
- "end": 190.94,
- "confidence": 1,
- "text": "than",
- "offset": 124,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 190.94,
- "end": 191.27,
- "confidence": 1,
- "text": "that",
- "offset": 129,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.25,
- "end": 192.38,
- "confidence": 1,
- "text": "it",
- "offset": 134,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.38,
- "end": 192.7,
- "confidence": 0.97,
- "text": "turns",
- "offset": 137,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.7,
- "end": 192.81,
- "confidence": 1,
- "text": "out",
- "offset": 143,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.81,
- "end": 192.95,
- "confidence": 1,
- "text": "that",
- "offset": 147,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 192.95,
- "end": 193.03,
- "confidence": 1,
- "text": "we",
- "offset": 152,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 193.03,
- "end": 193.08,
- "confidence": 1,
- "text": "are",
- "offset": 155,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 193.08,
- "end": 193.95,
- "confidence": 1,
- "text": "biologically",
- "offset": 159,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 193.95,
- "end": 194.49,
- "confidence": 1,
- "text": "hard",
- "offset": 172,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 194.49,
- "end": 194.96,
- "confidence": 1,
- "text": "wired",
- "offset": 177,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 194.96,
- "end": 195.09,
- "confidence": 1,
- "text": "to",
- "offset": 183,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 195.09,
- "end": 195.84,
- "confidence": 1,
- "text": "project",
- "offset": 186,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 196.1,
- "end": 196.89,
- "confidence": 0.99,
- "text": "intent",
- "offset": 194,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 196.92,
- "end": 197.17,
- "confidence": 0.96,
- "text": "and",
- "offset": 201,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 197.19,
- "end": 197.63,
- "confidence": 0.72,
- "text": "life",
- "offset": 205,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 197.69,
- "end": 198.27,
- "confidence": 0.45,
- "text": "onto",
- "offset": 210,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 198.58,
- "end": 198.81,
- "confidence": 0.98,
- "text": "any",
- "offset": 215,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 198.81,
- "end": 199.38,
- "confidence": 1,
- "text": "movement",
- "offset": 219,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 199.38,
- "end": 199.49,
- "confidence": 0.91,
- "text": "in",
- "offset": 228,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 199.49,
- "end": 199.57,
- "confidence": 0.87,
- "text": "a",
- "offset": 231,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 199.58,
- "end": 200.12,
- "confidence": 1,
- "text": "physical",
- "offset": 233,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 200.12,
- "end": 200.52,
- "confidence": 1,
- "text": "space.",
- "offset": 242,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It seems I promised us some people treat all sort of robots like their life.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 31",
- "words": [
- {
- "start": 200.52,
- "confidence": 0.99,
- "end": 200.68,
- "word": "it",
- "punct": "It",
- "index": 460
- },
- {
- "start": 200.68,
- "confidence": 1,
- "end": 201.15,
- "word": "seems",
- "punct": "seems",
- "index": 461
- },
- {
- "start": 201.15,
- "confidence": 0.58,
- "end": 201.23,
- "word": "i",
- "punct": "I",
- "index": 462
- },
- {
- "start": 201.28,
- "confidence": 0.57,
- "end": 201.86,
- "word": "promised",
- "punct": "promised",
- "index": 463
- },
- {
- "start": 201.92,
- "confidence": 0.89,
- "end": 202.37,
- "word": "us",
- "punct": "us",
- "index": 464
- },
- {
- "start": 202.96,
- "confidence": 0.4,
- "end": 203.14,
- "word": "some",
- "punct": "some",
- "index": 465
- },
- {
- "start": 203.37,
- "confidence": 1,
- "end": 203.74,
- "word": "people",
- "punct": "people",
- "index": 466
- },
- {
- "start": 203.75,
- "confidence": 1,
- "end": 204,
- "word": "treat",
- "punct": "treat",
- "index": 467
- },
- {
- "start": 204.03,
- "confidence": 0.98,
- "end": 204.23,
- "word": "all",
- "punct": "all",
- "index": 468
- },
- {
- "start": 204.23,
- "confidence": 0.66,
- "end": 204.47,
- "word": "sort",
- "punct": "sort",
- "index": 469
- },
- {
- "start": 204.47,
- "confidence": 0.99,
- "end": 204.59,
- "word": "of",
- "punct": "of",
- "index": 470
- },
- {
- "start": 204.59,
- "confidence": 0.97,
- "end": 204.95,
- "word": "robots",
- "punct": "robots",
- "index": 471
- },
- {
- "start": 204.95,
- "confidence": 0.99,
- "end": 205.13,
- "word": "like",
- "punct": "like",
- "index": 472
- },
- {
- "start": 205.13,
- "confidence": 0.68,
- "end": 205.3,
- "word": "their",
- "punct": "their",
- "index": 473
- },
- {
- "start": 205.31,
- "confidence": 0.99,
- "end": 205.86,
- "word": "life",
- "punct": "life.",
- "index": 474
- }
- ],
- "start": 200.52
- },
- "entityRanges": [
- {
- "start": 200.52,
- "end": 200.68,
- "confidence": 0.99,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 200.68,
- "end": 201.15,
- "confidence": 1,
- "text": "seems",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.15,
- "end": 201.23,
- "confidence": 0.58,
- "text": "I",
- "offset": 9,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.28,
- "end": 201.86,
- "confidence": 0.57,
- "text": "promised",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 201.92,
- "end": 202.37,
- "confidence": 0.89,
- "text": "us",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 202.96,
- "end": 203.14,
- "confidence": 0.4,
- "text": "some",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 203.37,
- "end": 203.74,
- "confidence": 1,
- "text": "people",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 203.75,
- "end": 204,
- "confidence": 1,
- "text": "treat",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.03,
- "end": 204.23,
- "confidence": 0.98,
- "text": "all",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.23,
- "end": 204.47,
- "confidence": 0.66,
- "text": "sort",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.47,
- "end": 204.59,
- "confidence": 0.99,
- "text": "of",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.59,
- "end": 204.95,
- "confidence": 0.97,
- "text": "robots",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 204.95,
- "end": 205.13,
- "confidence": 0.99,
- "text": "like",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 205.13,
- "end": 205.3,
- "confidence": 0.68,
- "text": "their",
- "offset": 65,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 205.31,
- "end": 205.86,
- "confidence": 0.99,
- "text": "life.",
- "offset": 71,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "These bomb disposal units get names.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 32",
- "words": [
- {
- "start": 206.65,
- "confidence": 0.92,
- "end": 206.9,
- "word": "these",
- "punct": "These",
- "index": 475
- },
- {
- "start": 206.93,
- "confidence": 1,
- "end": 207.25,
- "word": "bomb",
- "punct": "bomb",
- "index": 476
- },
- {
- "start": 207.25,
- "confidence": 1,
- "end": 208.02,
- "word": "disposal",
- "punct": "disposal",
- "index": 477
- },
- {
- "start": 208.05,
- "confidence": 0.59,
- "end": 208.58,
- "word": "units",
- "punct": "units",
- "index": 478
- },
- {
- "start": 208.58,
- "confidence": 0.99,
- "end": 208.77,
- "word": "get",
- "punct": "get",
- "index": 479
- },
- {
- "start": 208.77,
- "confidence": 0.94,
- "end": 209.4,
- "word": "names",
- "punct": "names.",
- "index": 480
- }
- ],
- "start": 206.65
- },
- "entityRanges": [
- {
- "start": 206.65,
- "end": 206.9,
- "confidence": 0.92,
- "text": "These",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 206.93,
- "end": 207.25,
- "confidence": 1,
- "text": "bomb",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 207.25,
- "end": 208.02,
- "confidence": 1,
- "text": "disposal",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 208.05,
- "end": 208.58,
- "confidence": 0.59,
- "text": "units",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 208.58,
- "end": 208.77,
- "confidence": 0.99,
- "text": "get",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 208.77,
- "end": 209.4,
- "confidence": 0.94,
- "text": "names.",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They get medals of honour had funeral for them with gun salutes.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 33",
- "words": [
- {
- "start": 209.44,
- "confidence": 0.97,
- "end": 209.54,
- "word": "they",
- "punct": "They",
- "index": 481
- },
- {
- "start": 209.54,
- "confidence": 1,
- "end": 209.73,
- "word": "get",
- "punct": "get",
- "index": 482
- },
- {
- "start": 209.73,
- "confidence": 1,
- "end": 210.18,
- "word": "medals",
- "punct": "medals",
- "index": 483
- },
- {
- "start": 210.18,
- "confidence": 1,
- "end": 210.27,
- "word": "of",
- "punct": "of",
- "index": 484
- },
- {
- "start": 210.27,
- "confidence": 1,
- "end": 210.67,
- "word": "honour",
- "punct": "honour",
- "index": 485
- },
- {
- "start": 211.13,
- "confidence": 0.97,
- "end": 211.4,
- "word": "had",
- "punct": "had",
- "index": 486
- },
- {
- "start": 211.4,
- "confidence": 0.58,
- "end": 211.97,
- "word": "funeral",
- "punct": "funeral",
- "index": 487
- },
- {
- "start": 211.98,
- "confidence": 0.43,
- "end": 212.18,
- "word": "for",
- "punct": "for",
- "index": 488
- },
- {
- "start": 212.19,
- "confidence": 0.87,
- "end": 212.37,
- "word": "them",
- "punct": "them",
- "index": 489
- },
- {
- "start": 212.37,
- "confidence": 0.74,
- "end": 212.49,
- "word": "with",
- "punct": "with",
- "index": 490
- },
- {
- "start": 212.52,
- "confidence": 0.9,
- "end": 212.79,
- "word": "gun",
- "punct": "gun",
- "index": 491
- },
- {
- "start": 212.78,
- "confidence": 0.57,
- "end": 213.28,
- "word": "salutes",
- "punct": "salutes.",
- "index": 492
- }
- ],
- "start": 209.44
- },
- "entityRanges": [
- {
- "start": 209.44,
- "end": 209.54,
- "confidence": 0.97,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 209.54,
- "end": 209.73,
- "confidence": 1,
- "text": "get",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 209.73,
- "end": 210.18,
- "confidence": 1,
- "text": "medals",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 210.18,
- "end": 210.27,
- "confidence": 1,
- "text": "of",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 210.27,
- "end": 210.67,
- "confidence": 1,
- "text": "honour",
- "offset": 19,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 211.13,
- "end": 211.4,
- "confidence": 0.97,
- "text": "had",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 211.4,
- "end": 211.97,
- "confidence": 0.58,
- "text": "funeral",
- "offset": 30,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 211.98,
- "end": 212.18,
- "confidence": 0.43,
- "text": "for",
- "offset": 38,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.19,
- "end": 212.37,
- "confidence": 0.87,
- "text": "them",
- "offset": 42,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.37,
- "end": 212.49,
- "confidence": 0.74,
- "text": "with",
- "offset": 47,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.52,
- "end": 212.79,
- "confidence": 0.9,
- "text": "gun",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 212.78,
- "end": 213.28,
- "confidence": 0.57,
- "text": "salutes.",
- "offset": 56,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Research shows that we do this.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 34",
- "words": [
- {
- "start": 214.85,
- "confidence": 0.53,
- "end": 215.08,
- "word": "research",
- "punct": "Research",
- "index": 493
- },
- {
- "start": 215.16,
- "confidence": 0.52,
- "end": 215.53,
- "word": "shows",
- "punct": "shows",
- "index": 494
- },
- {
- "start": 215.55,
- "confidence": 0.67,
- "end": 215.67,
- "word": "that",
- "punct": "that",
- "index": 495
- },
- {
- "start": 215.67,
- "confidence": 0.98,
- "end": 215.76,
- "word": "we",
- "punct": "we",
- "index": 496
- },
- {
- "start": 215.76,
- "confidence": 0.95,
- "end": 215.88,
- "word": "do",
- "punct": "do",
- "index": 497
- },
- {
- "start": 215.88,
- "confidence": 1,
- "end": 216.06,
- "word": "this",
- "punct": "this.",
- "index": 498
- }
- ],
- "start": 214.85
- },
- "entityRanges": [
- {
- "start": 214.85,
- "end": 215.08,
- "confidence": 0.53,
- "text": "Research",
- "offset": 0,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.16,
- "end": 215.53,
- "confidence": 0.52,
- "text": "shows",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.55,
- "end": 215.67,
- "confidence": 0.67,
- "text": "that",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.67,
- "end": 215.76,
- "confidence": 0.98,
- "text": "we",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.76,
- "end": 215.88,
- "confidence": 0.95,
- "text": "do",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 215.88,
- "end": 216.06,
- "confidence": 1,
- "text": "this.",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Even with very simple household robots like the room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 35",
- "words": [
- {
- "start": 216.09,
- "confidence": 0.97,
- "end": 216.33,
- "word": "even",
- "punct": "Even",
- "index": 499
- },
- {
- "start": 216.33,
- "confidence": 1,
- "end": 216.49,
- "word": "with",
- "punct": "with",
- "index": 500
- },
- {
- "start": 216.5,
- "confidence": 1,
- "end": 216.8,
- "word": "very",
- "punct": "very",
- "index": 501
- },
- {
- "start": 216.8,
- "confidence": 1,
- "end": 217.22,
- "word": "simple",
- "punct": "simple",
- "index": 502
- },
- {
- "start": 217.22,
- "confidence": 1,
- "end": 217.77,
- "word": "household",
- "punct": "household",
- "index": 503
- },
- {
- "start": 217.77,
- "confidence": 0.98,
- "end": 218.27,
- "word": "robots",
- "punct": "robots",
- "index": 504
- },
- {
- "start": 218.27,
- "confidence": 1,
- "end": 218.57,
- "word": "like",
- "punct": "like",
- "index": 505
- },
- {
- "start": 218.84,
- "confidence": 0.97,
- "end": 219.02,
- "word": "the",
- "punct": "the",
- "index": 506
- },
- {
- "start": 219.02,
- "confidence": 0.95,
- "end": 219.3,
- "word": "room",
- "punct": "room.",
- "index": 507
- }
- ],
- "start": 216.09
- },
- "entityRanges": [
- {
- "start": 216.09,
- "end": 216.33,
- "confidence": 0.97,
- "text": "Even",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 216.33,
- "end": 216.49,
- "confidence": 1,
- "text": "with",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 216.5,
- "end": 216.8,
- "confidence": 1,
- "text": "very",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 216.8,
- "end": 217.22,
- "confidence": 1,
- "text": "simple",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 217.22,
- "end": 217.77,
- "confidence": 1,
- "text": "household",
- "offset": 22,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 217.77,
- "end": 218.27,
- "confidence": 0.98,
- "text": "robots",
- "offset": 32,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 218.27,
- "end": 218.57,
- "confidence": 1,
- "text": "like",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 218.84,
- "end": 219.02,
- "confidence": 0.97,
- "text": "the",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 219.02,
- "end": 219.3,
- "confidence": 0.95,
- "text": "room.",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "A vacuum cleaner.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 36",
- "words": [
- {
- "start": 219.3,
- "confidence": 0.68,
- "end": 219.4,
- "word": "a",
- "punct": "A",
- "index": 508
- },
- {
- "start": 219.4,
- "confidence": 1,
- "end": 219.85,
- "word": "vacuum",
- "punct": "vacuum",
- "index": 509
- },
- {
- "start": 219.85,
- "confidence": 1,
- "end": 220.31,
- "word": "cleaner",
- "punct": "cleaner.",
- "index": 510
- }
- ],
- "start": 219.3
- },
- "entityRanges": [
- {
- "start": 219.3,
- "end": 219.4,
- "confidence": 0.68,
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 219.4,
- "end": 219.85,
- "confidence": 1,
- "text": "vacuum",
- "offset": 2,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 219.85,
- "end": 220.31,
- "confidence": 1,
- "text": "cleaner.",
- "offset": 9,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Just a desk that runs around the floor and clean it just the fact that it's moving around on his own will cause people to name the marimba and feel bad for the room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 37",
- "words": [
- {
- "start": 221.68,
- "confidence": 1,
- "end": 221.94,
- "word": "just",
- "punct": "Just",
- "index": 511
- },
- {
- "start": 221.94,
- "confidence": 0.88,
- "end": 222,
- "word": "a",
- "punct": "a",
- "index": 512
- },
- {
- "start": 222,
- "confidence": 0.54,
- "end": 222.53,
- "word": "desk",
- "punct": "desk",
- "index": 513
- },
- {
- "start": 222.53,
- "confidence": 1,
- "end": 222.69,
- "word": "that",
- "punct": "that",
- "index": 514
- },
- {
- "start": 222.69,
- "confidence": 0.98,
- "end": 222.99,
- "word": "runs",
- "punct": "runs",
- "index": 515
- },
- {
- "start": 222.99,
- "confidence": 1,
- "end": 223.28,
- "word": "around",
- "punct": "around",
- "index": 516
- },
- {
- "start": 223.28,
- "confidence": 0.88,
- "end": 223.36,
- "word": "the",
- "punct": "the",
- "index": 517
- },
- {
- "start": 223.36,
- "confidence": 0.9,
- "end": 223.74,
- "word": "floor",
- "punct": "floor",
- "index": 518
- },
- {
- "start": 223.74,
- "confidence": 0.49,
- "end": 223.83,
- "word": "and",
- "punct": "and",
- "index": 519
- },
- {
- "start": 223.86,
- "confidence": 1,
- "end": 224.23,
- "word": "clean",
- "punct": "clean",
- "index": 520
- },
- {
- "start": 224.23,
- "confidence": 1,
- "end": 224.46,
- "word": "it",
- "punct": "it",
- "index": 521
- },
- {
- "start": 224.83,
- "confidence": 0.64,
- "end": 225,
- "word": "just",
- "punct": "just",
- "index": 522
- },
- {
- "start": 225.02,
- "confidence": 1,
- "end": 225.1,
- "word": "the",
- "punct": "the",
- "index": 523
- },
- {
- "start": 225.1,
- "confidence": 1,
- "end": 225.45,
- "word": "fact",
- "punct": "fact",
- "index": 524
- },
- {
- "start": 225.45,
- "confidence": 0.96,
- "end": 225.57,
- "word": "that",
- "punct": "that",
- "index": 525
- },
- {
- "start": 225.57,
- "confidence": 0.94,
- "end": 225.75,
- "word": "it's",
- "punct": "it's",
- "index": 526
- },
- {
- "start": 225.75,
- "confidence": 1,
- "end": 226.23,
- "word": "moving",
- "punct": "moving",
- "index": 527
- },
- {
- "start": 226.23,
- "confidence": 1,
- "end": 226.56,
- "word": "around",
- "punct": "around",
- "index": 528
- },
- {
- "start": 226.56,
- "confidence": 1,
- "end": 226.67,
- "word": "on",
- "punct": "on",
- "index": 529
- },
- {
- "start": 226.67,
- "confidence": 0.93,
- "end": 226.81,
- "word": "his",
- "punct": "his",
- "index": 530
- },
- {
- "start": 226.84,
- "confidence": 1,
- "end": 227.12,
- "word": "own",
- "punct": "own",
- "index": 531
- },
- {
- "start": 227.12,
- "confidence": 0.81,
- "end": 227.21,
- "word": "will",
- "punct": "will",
- "index": 532
- },
- {
- "start": 227.21,
- "confidence": 0.98,
- "end": 227.56,
- "word": "cause",
- "punct": "cause",
- "index": 533
- },
- {
- "start": 227.56,
- "confidence": 1,
- "end": 227.8,
- "word": "people",
- "punct": "people",
- "index": 534
- },
- {
- "start": 227.8,
- "confidence": 1,
- "end": 227.97,
- "word": "to",
- "punct": "to",
- "index": 535
- },
- {
- "start": 227.97,
- "confidence": 1,
- "end": 228.43,
- "word": "name",
- "punct": "name",
- "index": 536
- },
- {
- "start": 228.43,
- "confidence": 0.65,
- "end": 228.62,
- "word": "the",
- "punct": "the",
- "index": 537
- },
- {
- "start": 228.62,
- "confidence": 0.61,
- "end": 229.02,
- "word": "marimba",
- "punct": "marimba",
- "index": 538
- },
- {
- "start": 229.27,
- "confidence": 0.78,
- "end": 229.42,
- "word": "and",
- "punct": "and",
- "index": 539
- },
- {
- "start": 229.47,
- "confidence": 1,
- "end": 229.7,
- "word": "feel",
- "punct": "feel",
- "index": 540
- },
- {
- "start": 229.7,
- "confidence": 1,
- "end": 230.13,
- "word": "bad",
- "punct": "bad",
- "index": 541
- },
- {
- "start": 230.13,
- "confidence": 1,
- "end": 230.29,
- "word": "for",
- "punct": "for",
- "index": 542
- },
- {
- "start": 230.29,
- "confidence": 0.98,
- "end": 230.4,
- "word": "the",
- "punct": "the",
- "index": 543
- },
- {
- "start": 230.4,
- "confidence": 0.95,
- "end": 230.62,
- "word": "room",
- "punct": "room.",
- "index": 544
- }
- ],
- "start": 221.68
- },
- "entityRanges": [
- {
- "start": 221.68,
- "end": 221.94,
- "confidence": 1,
- "text": "Just",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 221.94,
- "end": 222,
- "confidence": 0.88,
- "text": "a",
- "offset": 5,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222,
- "end": 222.53,
- "confidence": 0.54,
- "text": "desk",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222.53,
- "end": 222.69,
- "confidence": 1,
- "text": "that",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222.69,
- "end": 222.99,
- "confidence": 0.98,
- "text": "runs",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 222.99,
- "end": 223.28,
- "confidence": 1,
- "text": "around",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.28,
- "end": 223.36,
- "confidence": 0.88,
- "text": "the",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.36,
- "end": 223.74,
- "confidence": 0.9,
- "text": "floor",
- "offset": 33,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.74,
- "end": 223.83,
- "confidence": 0.49,
- "text": "and",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 223.86,
- "end": 224.23,
- "confidence": 1,
- "text": "clean",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 224.23,
- "end": 224.46,
- "confidence": 1,
- "text": "it",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 224.83,
- "end": 225,
- "confidence": 0.64,
- "text": "just",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.02,
- "end": 225.1,
- "confidence": 1,
- "text": "the",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.1,
- "end": 225.45,
- "confidence": 1,
- "text": "fact",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.45,
- "end": 225.57,
- "confidence": 0.96,
- "text": "that",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.57,
- "end": 225.75,
- "confidence": 0.94,
- "text": "it's",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 225.75,
- "end": 226.23,
- "confidence": 1,
- "text": "moving",
- "offset": 76,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.23,
- "end": 226.56,
- "confidence": 1,
- "text": "around",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.56,
- "end": 226.67,
- "confidence": 1,
- "text": "on",
- "offset": 90,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.67,
- "end": 226.81,
- "confidence": 0.93,
- "text": "his",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 226.84,
- "end": 227.12,
- "confidence": 1,
- "text": "own",
- "offset": 97,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.12,
- "end": 227.21,
- "confidence": 0.81,
- "text": "will",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.21,
- "end": 227.56,
- "confidence": 0.98,
- "text": "cause",
- "offset": 106,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.56,
- "end": 227.8,
- "confidence": 1,
- "text": "people",
- "offset": 112,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.8,
- "end": 227.97,
- "confidence": 1,
- "text": "to",
- "offset": 119,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 227.97,
- "end": 228.43,
- "confidence": 1,
- "text": "name",
- "offset": 122,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 228.43,
- "end": 228.62,
- "confidence": 0.65,
- "text": "the",
- "offset": 127,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 228.62,
- "end": 229.02,
- "confidence": 0.61,
- "text": "marimba",
- "offset": 131,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 229.27,
- "end": 229.42,
- "confidence": 0.78,
- "text": "and",
- "offset": 139,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 229.47,
- "end": 229.7,
- "confidence": 1,
- "text": "feel",
- "offset": 143,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 229.7,
- "end": 230.13,
- "confidence": 1,
- "text": "bad",
- "offset": 148,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.13,
- "end": 230.29,
- "confidence": 1,
- "text": "for",
- "offset": 152,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.29,
- "end": 230.4,
- "confidence": 0.98,
- "text": "the",
- "offset": 156,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.4,
- "end": 230.62,
- "confidence": 0.95,
- "text": "room.",
- "offset": 160,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But when he gets stuck under the couch.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 38",
- "words": [
- {
- "start": 230.61,
- "confidence": 0.64,
- "end": 230.74,
- "word": "but",
- "punct": "But",
- "index": 545
- },
- {
- "start": 230.75,
- "confidence": 0.76,
- "end": 230.85,
- "word": "when",
- "punct": "when",
- "index": 546
- },
- {
- "start": 230.85,
- "confidence": 0.47,
- "end": 230.91,
- "word": "he",
- "punct": "he",
- "index": 547
- },
- {
- "start": 230.92,
- "confidence": 0.67,
- "end": 231.12,
- "word": "gets",
- "punct": "gets",
- "index": 548
- },
- {
- "start": 231.12,
- "confidence": 1,
- "end": 231.45,
- "word": "stuck",
- "punct": "stuck",
- "index": 549
- },
- {
- "start": 231.44,
- "confidence": 0.68,
- "end": 231.62,
- "word": "under",
- "punct": "under",
- "index": 550
- },
- {
- "start": 231.63,
- "confidence": 0.99,
- "end": 231.73,
- "word": "the",
- "punct": "the",
- "index": 551
- },
- {
- "start": 231.73,
- "confidence": 1,
- "end": 232.57,
- "word": "couch",
- "punct": "couch.",
- "index": 552
- }
- ],
- "start": 230.61
- },
- "entityRanges": [
- {
- "start": 230.61,
- "end": 230.74,
- "confidence": 0.64,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.75,
- "end": 230.85,
- "confidence": 0.76,
- "text": "when",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.85,
- "end": 230.91,
- "confidence": 0.47,
- "text": "he",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 230.92,
- "end": 231.12,
- "confidence": 0.67,
- "text": "gets",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.12,
- "end": 231.45,
- "confidence": 1,
- "text": "stuck",
- "offset": 17,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.44,
- "end": 231.62,
- "confidence": 0.68,
- "text": "under",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.63,
- "end": 231.73,
- "confidence": 0.99,
- "text": "the",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 231.73,
- "end": 232.57,
- "confidence": 1,
- "text": "couch.",
- "offset": 33,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We can design about specifically to invoke this response using eyes and faces were movement.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 39",
- "words": [
- {
- "start": 234.54,
- "confidence": 1,
- "end": 234.71,
- "word": "we",
- "punct": "We",
- "index": 553
- },
- {
- "start": 234.71,
- "confidence": 1,
- "end": 234.86,
- "word": "can",
- "punct": "can",
- "index": 554
- },
- {
- "start": 234.86,
- "confidence": 0.8,
- "end": 235.36,
- "word": "design",
- "punct": "design",
- "index": 555
- },
- {
- "start": 235.38,
- "confidence": 1,
- "end": 235.67,
- "word": "about",
- "punct": "about",
- "index": 556
- },
- {
- "start": 235.67,
- "confidence": 1,
- "end": 236.49,
- "word": "specifically",
- "punct": "specifically",
- "index": 557
- },
- {
- "start": 236.49,
- "confidence": 1,
- "end": 236.66,
- "word": "to",
- "punct": "to",
- "index": 558
- },
- {
- "start": 236.66,
- "confidence": 0.72,
- "end": 236.96,
- "word": "invoke",
- "punct": "invoke",
- "index": 559
- },
- {
- "start": 237,
- "confidence": 1,
- "end": 237.21,
- "word": "this",
- "punct": "this",
- "index": 560
- },
- {
- "start": 237.21,
- "confidence": 1,
- "end": 237.78,
- "word": "response",
- "punct": "response",
- "index": 561
- },
- {
- "start": 237.78,
- "confidence": 1,
- "end": 238.15,
- "word": "using",
- "punct": "using",
- "index": 562
- },
- {
- "start": 238.24,
- "confidence": 1,
- "end": 238.91,
- "word": "eyes",
- "punct": "eyes",
- "index": 563
- },
- {
- "start": 239.16,
- "confidence": 0.95,
- "end": 239.33,
- "word": "and",
- "punct": "and",
- "index": 564
- },
- {
- "start": 239.34,
- "confidence": 1,
- "end": 240.23,
- "word": "faces",
- "punct": "faces",
- "index": 565
- },
- {
- "start": 240.44,
- "confidence": 0.36,
- "end": 240.62,
- "word": "were",
- "punct": "were",
- "index": 566
- },
- {
- "start": 240.66,
- "confidence": 0.92,
- "end": 241.28,
- "word": "movement",
- "punct": "movement.",
- "index": 567
- }
- ],
- "start": 234.54
- },
- "entityRanges": [
- {
- "start": 234.54,
- "end": 234.71,
- "confidence": 1,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 234.71,
- "end": 234.86,
- "confidence": 1,
- "text": "can",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 234.86,
- "end": 235.36,
- "confidence": 0.8,
- "text": "design",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 235.38,
- "end": 235.67,
- "confidence": 1,
- "text": "about",
- "offset": 14,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 235.67,
- "end": 236.49,
- "confidence": 1,
- "text": "specifically",
- "offset": 20,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 236.49,
- "end": 236.66,
- "confidence": 1,
- "text": "to",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 236.66,
- "end": 236.96,
- "confidence": 0.72,
- "text": "invoke",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 237,
- "end": 237.21,
- "confidence": 1,
- "text": "this",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 237.21,
- "end": 237.78,
- "confidence": 1,
- "text": "response",
- "offset": 48,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 237.78,
- "end": 238.15,
- "confidence": 1,
- "text": "using",
- "offset": 57,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 238.24,
- "end": 238.91,
- "confidence": 1,
- "text": "eyes",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 239.16,
- "end": 239.33,
- "confidence": 0.95,
- "text": "and",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 239.34,
- "end": 240.23,
- "confidence": 1,
- "text": "faces",
- "offset": 72,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 240.44,
- "end": 240.62,
- "confidence": 0.36,
- "text": "were",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 240.66,
- "end": 241.28,
- "confidence": 0.92,
- "text": "movement.",
- "offset": 83,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "People are magically subconsciously associate with state of mind.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 40",
- "words": [
- {
- "start": 241.32,
- "confidence": 1,
- "end": 241.71,
- "word": "people",
- "punct": "People",
- "index": 568
- },
- {
- "start": 241.74,
- "confidence": 0.96,
- "end": 241.97,
- "word": "are",
- "punct": "are",
- "index": 569
- },
- {
- "start": 241.97,
- "confidence": 1,
- "end": 242.53,
- "word": "magically",
- "punct": "magically",
- "index": 570
- },
- {
- "start": 242.53,
- "confidence": 0.95,
- "end": 243.47,
- "word": "subconsciously",
- "punct": "subconsciously",
- "index": 571
- },
- {
- "start": 243.48,
- "confidence": 0.84,
- "end": 244.36,
- "word": "associate",
- "punct": "associate",
- "index": 572
- },
- {
- "start": 244.56,
- "confidence": 0.92,
- "end": 244.72,
- "word": "with",
- "punct": "with",
- "index": 573
- },
- {
- "start": 244.73,
- "confidence": 0.96,
- "end": 245.08,
- "word": "state",
- "punct": "state",
- "index": 574
- },
- {
- "start": 245.08,
- "confidence": 1,
- "end": 245.17,
- "word": "of",
- "punct": "of",
- "index": 575
- },
- {
- "start": 245.17,
- "confidence": 1,
- "end": 245.86,
- "word": "mind",
- "punct": "mind.",
- "index": 576
- }
- ],
- "start": 241.32
- },
- "entityRanges": [
- {
- "start": 241.32,
- "end": 241.71,
- "confidence": 1,
- "text": "People",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 241.74,
- "end": 241.97,
- "confidence": 0.96,
- "text": "are",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 241.97,
- "end": 242.53,
- "confidence": 1,
- "text": "magically",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 242.53,
- "end": 243.47,
- "confidence": 0.95,
- "text": "subconsciously",
- "offset": 21,
- "length": 14,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 243.48,
- "end": 244.36,
- "confidence": 0.84,
- "text": "associate",
- "offset": 36,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 244.56,
- "end": 244.72,
- "confidence": 0.92,
- "text": "with",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 244.73,
- "end": 245.08,
- "confidence": 0.96,
- "text": "state",
- "offset": 51,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 245.08,
- "end": 245.17,
- "confidence": 1,
- "text": "of",
- "offset": 57,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 245.17,
- "end": 245.86,
- "confidence": 1,
- "text": "mind.",
- "offset": 60,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "There's an entire body of research called Human robot interaction that really shows how all this works so.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 41",
- "words": [
- {
- "start": 246.58,
- "confidence": 0.45,
- "end": 246.77,
- "word": "there's",
- "punct": "There's",
- "index": 577
- },
- {
- "start": 246.83,
- "confidence": 0.77,
- "end": 246.94,
- "word": "an",
- "punct": "an",
- "index": 578
- },
- {
- "start": 246.94,
- "confidence": 1,
- "end": 247.36,
- "word": "entire",
- "punct": "entire",
- "index": 579
- },
- {
- "start": 247.36,
- "confidence": 1,
- "end": 247.58,
- "word": "body",
- "punct": "body",
- "index": 580
- },
- {
- "start": 247.58,
- "confidence": 0.96,
- "end": 247.69,
- "word": "of",
- "punct": "of",
- "index": 581
- },
- {
- "start": 247.69,
- "confidence": 1,
- "end": 248.1,
- "word": "research",
- "punct": "research",
- "index": 582
- },
- {
- "start": 248.11,
- "confidence": 0.3,
- "end": 248.35,
- "word": "called",
- "punct": "called",
- "index": 583
- },
- {
- "start": 248.34,
- "confidence": 0.91,
- "end": 248.58,
- "word": "human",
- "punct": "Human",
- "index": 584
- },
- {
- "start": 248.59,
- "confidence": 0.88,
- "end": 248.86,
- "word": "robot",
- "punct": "robot",
- "index": 585
- },
- {
- "start": 248.87,
- "confidence": 0.88,
- "end": 249.34,
- "word": "interaction",
- "punct": "interaction",
- "index": 586
- },
- {
- "start": 249.36,
- "confidence": 0.95,
- "end": 249.59,
- "word": "that",
- "punct": "that",
- "index": 587
- },
- {
- "start": 249.66,
- "confidence": 1,
- "end": 249.92,
- "word": "really",
- "punct": "really",
- "index": 588
- },
- {
- "start": 249.92,
- "confidence": 1,
- "end": 250.4,
- "word": "shows",
- "punct": "shows",
- "index": 589
- },
- {
- "start": 250.4,
- "confidence": 1,
- "end": 250.61,
- "word": "how",
- "punct": "how",
- "index": 590
- },
- {
- "start": 250.61,
- "confidence": 0.65,
- "end": 250.7,
- "word": "all",
- "punct": "all",
- "index": 591
- },
- {
- "start": 250.7,
- "confidence": 1,
- "end": 250.89,
- "word": "this",
- "punct": "this",
- "index": 592
- },
- {
- "start": 250.89,
- "confidence": 1,
- "end": 251.33,
- "word": "works",
- "punct": "works",
- "index": 593
- },
- {
- "start": 251.65,
- "confidence": 1,
- "end": 251.88,
- "word": "so",
- "punct": "so.",
- "index": 594
- }
- ],
- "start": 246.58
- },
- "entityRanges": [
- {
- "start": 246.58,
- "end": 246.77,
- "confidence": 0.45,
- "text": "There's",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 246.83,
- "end": 246.94,
- "confidence": 0.77,
- "text": "an",
- "offset": 8,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 246.94,
- "end": 247.36,
- "confidence": 1,
- "text": "entire",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 247.36,
- "end": 247.58,
- "confidence": 1,
- "text": "body",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 247.58,
- "end": 247.69,
- "confidence": 0.96,
- "text": "of",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 247.69,
- "end": 248.1,
- "confidence": 1,
- "text": "research",
- "offset": 26,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.11,
- "end": 248.35,
- "confidence": 0.3,
- "text": "called",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.34,
- "end": 248.58,
- "confidence": 0.91,
- "text": "Human",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.59,
- "end": 248.86,
- "confidence": 0.88,
- "text": "robot",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 248.87,
- "end": 249.34,
- "confidence": 0.88,
- "text": "interaction",
- "offset": 54,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 249.36,
- "end": 249.59,
- "confidence": 0.95,
- "text": "that",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 249.66,
- "end": 249.92,
- "confidence": 1,
- "text": "really",
- "offset": 71,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 249.92,
- "end": 250.4,
- "confidence": 1,
- "text": "shows",
- "offset": 78,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.4,
- "end": 250.61,
- "confidence": 1,
- "text": "how",
- "offset": 84,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.61,
- "end": 250.7,
- "confidence": 0.65,
- "text": "all",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.7,
- "end": 250.89,
- "confidence": 1,
- "text": "this",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 250.89,
- "end": 251.33,
- "confidence": 1,
- "text": "works",
- "offset": 97,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 251.65,
- "end": 251.88,
- "confidence": 1,
- "text": "so.",
- "offset": 103,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 42",
- "words": [
- {
- "start": 251.88,
- "confidence": 1,
- "end": 252.01,
- "word": "for",
- "punct": "For",
- "index": 595
- },
- {
- "start": 252.01,
- "confidence": 1,
- "end": 252.58,
- "word": "example",
- "punct": "example.",
- "index": 596
- }
- ],
- "start": 251.88
- },
- "entityRanges": [
- {
- "start": 251.88,
- "end": 252.01,
- "confidence": 1,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 252.01,
- "end": 252.58,
- "confidence": 1,
- "text": "example.",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Researchers at Stamford University found out that makes people really uncomfortable and asked them to touch her about his private parts from this from any other studies.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 43",
- "words": [
- {
- "start": 252.58,
- "confidence": 1,
- "end": 253.13,
- "word": "researchers",
- "punct": "Researchers",
- "index": 597
- },
- {
- "start": 253.13,
- "confidence": 1,
- "end": 253.38,
- "word": "at",
- "punct": "at",
- "index": 598
- },
- {
- "start": 253.44,
- "confidence": 0.57,
- "end": 253.98,
- "word": "stamford",
- "punct": "Stamford",
- "index": 599
- },
- {
- "start": 253.98,
- "confidence": 1,
- "end": 254.48,
- "word": "university",
- "punct": "University",
- "index": 600
- },
- {
- "start": 254.48,
- "confidence": 1,
- "end": 254.77,
- "word": "found",
- "punct": "found",
- "index": 601
- },
- {
- "start": 254.77,
- "confidence": 1,
- "end": 254.94,
- "word": "out",
- "punct": "out",
- "index": 602
- },
- {
- "start": 254.94,
- "confidence": 0.93,
- "end": 255.08,
- "word": "that",
- "punct": "that",
- "index": 603
- },
- {
- "start": 255.1,
- "confidence": 0.98,
- "end": 255.32,
- "word": "makes",
- "punct": "makes",
- "index": 604
- },
- {
- "start": 255.32,
- "confidence": 1,
- "end": 255.66,
- "word": "people",
- "punct": "people",
- "index": 605
- },
- {
- "start": 255.66,
- "confidence": 1,
- "end": 255.92,
- "word": "really",
- "punct": "really",
- "index": 606
- },
- {
- "start": 255.92,
- "confidence": 1,
- "end": 256.6,
- "word": "uncomfortable",
- "punct": "uncomfortable",
- "index": 607
- },
- {
- "start": 256.63,
- "confidence": 0.74,
- "end": 256.76,
- "word": "and",
- "punct": "and",
- "index": 608
- },
- {
- "start": 256.79,
- "confidence": 0.53,
- "end": 257.05,
- "word": "asked",
- "punct": "asked",
- "index": 609
- },
- {
- "start": 257.05,
- "confidence": 0.83,
- "end": 257.17,
- "word": "them",
- "punct": "them",
- "index": 610
- },
- {
- "start": 257.17,
- "confidence": 1,
- "end": 257.27,
- "word": "to",
- "punct": "to",
- "index": 611
- },
- {
- "start": 257.27,
- "confidence": 1,
- "end": 257.54,
- "word": "touch",
- "punct": "touch",
- "index": 612
- },
- {
- "start": 257.54,
- "confidence": 0.73,
- "end": 257.66,
- "word": "her",
- "punct": "her",
- "index": 613
- },
- {
- "start": 257.66,
- "confidence": 0.9,
- "end": 257.87,
- "word": "about",
- "punct": "about",
- "index": 614
- },
- {
- "start": 257.86,
- "confidence": 0.69,
- "end": 257.95,
- "word": "his",
- "punct": "his",
- "index": 615
- },
- {
- "start": 257.96,
- "confidence": 1,
- "end": 258.37,
- "word": "private",
- "punct": "private",
- "index": 616
- },
- {
- "start": 258.37,
- "confidence": 1,
- "end": 258.94,
- "word": "parts",
- "punct": "parts",
- "index": 617
- },
- {
- "start": 261.63,
- "confidence": 1,
- "end": 261.93,
- "word": "from",
- "punct": "from",
- "index": 618
- },
- {
- "start": 261.93,
- "confidence": 1,
- "end": 262.11,
- "word": "this",
- "punct": "this",
- "index": 619
- },
- {
- "start": 262.18,
- "confidence": 0.78,
- "end": 262.48,
- "word": "from",
- "punct": "from",
- "index": 620
- },
- {
- "start": 262.48,
- "confidence": 0.59,
- "end": 262.71,
- "word": "any",
- "punct": "any",
- "index": 621
- },
- {
- "start": 262.8,
- "confidence": 1,
- "end": 262.99,
- "word": "other",
- "punct": "other",
- "index": 622
- },
- {
- "start": 262.99,
- "confidence": 0.8,
- "end": 263.39,
- "word": "studies",
- "punct": "studies.",
- "index": 623
- }
- ],
- "start": 252.58
- },
- "entityRanges": [
- {
- "start": 252.58,
- "end": 253.13,
- "confidence": 1,
- "text": "Researchers",
- "offset": 0,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 253.13,
- "end": 253.38,
- "confidence": 1,
- "text": "at",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 253.44,
- "end": 253.98,
- "confidence": 0.57,
- "text": "Stamford",
- "offset": 15,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 253.98,
- "end": 254.48,
- "confidence": 1,
- "text": "University",
- "offset": 24,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 254.48,
- "end": 254.77,
- "confidence": 1,
- "text": "found",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 254.77,
- "end": 254.94,
- "confidence": 1,
- "text": "out",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 254.94,
- "end": 255.08,
- "confidence": 0.93,
- "text": "that",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.1,
- "end": 255.32,
- "confidence": 0.98,
- "text": "makes",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.32,
- "end": 255.66,
- "confidence": 1,
- "text": "people",
- "offset": 56,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.66,
- "end": 255.92,
- "confidence": 1,
- "text": "really",
- "offset": 63,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 255.92,
- "end": 256.6,
- "confidence": 1,
- "text": "uncomfortable",
- "offset": 70,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 256.63,
- "end": 256.76,
- "confidence": 0.74,
- "text": "and",
- "offset": 84,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 256.79,
- "end": 257.05,
- "confidence": 0.53,
- "text": "asked",
- "offset": 88,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.05,
- "end": 257.17,
- "confidence": 0.83,
- "text": "them",
- "offset": 94,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.17,
- "end": 257.27,
- "confidence": 1,
- "text": "to",
- "offset": 99,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.27,
- "end": 257.54,
- "confidence": 1,
- "text": "touch",
- "offset": 102,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.54,
- "end": 257.66,
- "confidence": 0.73,
- "text": "her",
- "offset": 108,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.66,
- "end": 257.87,
- "confidence": 0.9,
- "text": "about",
- "offset": 112,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.86,
- "end": 257.95,
- "confidence": 0.69,
- "text": "his",
- "offset": 118,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 257.96,
- "end": 258.37,
- "confidence": 1,
- "text": "private",
- "offset": 122,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 258.37,
- "end": 258.94,
- "confidence": 1,
- "text": "parts",
- "offset": 130,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 261.63,
- "end": 261.93,
- "confidence": 1,
- "text": "from",
- "offset": 136,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 261.93,
- "end": 262.11,
- "confidence": 1,
- "text": "this",
- "offset": 141,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.18,
- "end": 262.48,
- "confidence": 0.78,
- "text": "from",
- "offset": 146,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.48,
- "end": 262.71,
- "confidence": 0.59,
- "text": "any",
- "offset": 151,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.8,
- "end": 262.99,
- "confidence": 1,
- "text": "other",
- "offset": 155,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 262.99,
- "end": 263.39,
- "confidence": 0.8,
- "text": "studies.",
- "offset": 161,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We know.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 44",
- "words": [
- {
- "start": 263.39,
- "confidence": 1,
- "end": 263.55,
- "word": "we",
- "punct": "We",
- "index": 624
- },
- {
- "start": 263.55,
- "confidence": 0.66,
- "end": 264.09,
- "word": "know",
- "punct": "know.",
- "index": 625
- }
- ],
- "start": 263.39
- },
- "entityRanges": [
- {
- "start": 263.39,
- "end": 263.55,
- "confidence": 1,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 263.55,
- "end": 264.09,
- "confidence": 0.66,
- "text": "know.",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We know that people respond to the cues given to them by the lifelike machines.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 45",
- "words": [
- {
- "start": 264.48,
- "confidence": 1,
- "end": 264.67,
- "word": "we",
- "punct": "We",
- "index": 626
- },
- {
- "start": 264.67,
- "confidence": 1,
- "end": 265.1,
- "word": "know",
- "punct": "know",
- "index": 627
- },
- {
- "start": 265.1,
- "confidence": 0.79,
- "end": 265.25,
- "word": "that",
- "punct": "that",
- "index": 628
- },
- {
- "start": 265.25,
- "confidence": 1,
- "end": 265.79,
- "word": "people",
- "punct": "people",
- "index": 629
- },
- {
- "start": 265.79,
- "confidence": 1,
- "end": 266.42,
- "word": "respond",
- "punct": "respond",
- "index": 630
- },
- {
- "start": 266.42,
- "confidence": 1,
- "end": 266.52,
- "word": "to",
- "punct": "to",
- "index": 631
- },
- {
- "start": 266.52,
- "confidence": 1,
- "end": 266.65,
- "word": "the",
- "punct": "the",
- "index": 632
- },
- {
- "start": 266.65,
- "confidence": 0.61,
- "end": 267.28,
- "word": "cues",
- "punct": "cues",
- "index": 633
- },
- {
- "start": 267.28,
- "confidence": 1,
- "end": 267.56,
- "word": "given",
- "punct": "given",
- "index": 634
- },
- {
- "start": 267.56,
- "confidence": 1,
- "end": 267.67,
- "word": "to",
- "punct": "to",
- "index": 635
- },
- {
- "start": 267.67,
- "confidence": 1,
- "end": 267.88,
- "word": "them",
- "punct": "them",
- "index": 636
- },
- {
- "start": 267.88,
- "confidence": 1,
- "end": 268,
- "word": "by",
- "punct": "by",
- "index": 637
- },
- {
- "start": 268,
- "confidence": 0.86,
- "end": 268.17,
- "word": "the",
- "punct": "the",
- "index": 638
- },
- {
- "start": 268.19,
- "confidence": 0.91,
- "end": 268.67,
- "word": "lifelike",
- "punct": "lifelike",
- "index": 639
- },
- {
- "start": 268.69,
- "confidence": 0.99,
- "end": 269.46,
- "word": "machines",
- "punct": "machines.",
- "index": 640
- }
- ],
- "start": 264.48
- },
- "entityRanges": [
- {
- "start": 264.48,
- "end": 264.67,
- "confidence": 1,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 264.67,
- "end": 265.1,
- "confidence": 1,
- "text": "know",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 265.1,
- "end": 265.25,
- "confidence": 0.79,
- "text": "that",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 265.25,
- "end": 265.79,
- "confidence": 1,
- "text": "people",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 265.79,
- "end": 266.42,
- "confidence": 1,
- "text": "respond",
- "offset": 20,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 266.42,
- "end": 266.52,
- "confidence": 1,
- "text": "to",
- "offset": 28,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 266.52,
- "end": 266.65,
- "confidence": 1,
- "text": "the",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 266.65,
- "end": 267.28,
- "confidence": 0.61,
- "text": "cues",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.28,
- "end": 267.56,
- "confidence": 1,
- "text": "given",
- "offset": 40,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.56,
- "end": 267.67,
- "confidence": 1,
- "text": "to",
- "offset": 46,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.67,
- "end": 267.88,
- "confidence": 1,
- "text": "them",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 267.88,
- "end": 268,
- "confidence": 1,
- "text": "by",
- "offset": 54,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 268,
- "end": 268.17,
- "confidence": 0.86,
- "text": "the",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 268.19,
- "end": 268.67,
- "confidence": 0.91,
- "text": "lifelike",
- "offset": 61,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 268.69,
- "end": 269.46,
- "confidence": 0.99,
- "text": "machines.",
- "offset": 70,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Even if they know that they're not real.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 46",
- "words": [
- {
- "start": 269.9,
- "confidence": 1,
- "end": 270.19,
- "word": "even",
- "punct": "Even",
- "index": 641
- },
- {
- "start": 270.19,
- "confidence": 0.9,
- "end": 270.29,
- "word": "if",
- "punct": "if",
- "index": 642
- },
- {
- "start": 270.29,
- "confidence": 1,
- "end": 270.43,
- "word": "they",
- "punct": "they",
- "index": 643
- },
- {
- "start": 270.43,
- "confidence": 1,
- "end": 270.68,
- "word": "know",
- "punct": "know",
- "index": 644
- },
- {
- "start": 270.68,
- "confidence": 0.87,
- "end": 270.82,
- "word": "that",
- "punct": "that",
- "index": 645
- },
- {
- "start": 270.82,
- "confidence": 1,
- "end": 270.99,
- "word": "they're",
- "punct": "they're",
- "index": 646
- },
- {
- "start": 270.99,
- "confidence": 1,
- "end": 271.28,
- "word": "not",
- "punct": "not",
- "index": 647
- },
- {
- "start": 271.3,
- "confidence": 0.77,
- "end": 271.58,
- "word": "real",
- "punct": "real.",
- "index": 648
- }
- ],
- "start": 269.9
- },
- "entityRanges": [
- {
- "start": 269.9,
- "end": 270.19,
- "confidence": 1,
- "text": "Even",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.19,
- "end": 270.29,
- "confidence": 0.9,
- "text": "if",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.29,
- "end": 270.43,
- "confidence": 1,
- "text": "they",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.43,
- "end": 270.68,
- "confidence": 1,
- "text": "know",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.68,
- "end": 270.82,
- "confidence": 0.87,
- "text": "that",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.82,
- "end": 270.99,
- "confidence": 1,
- "text": "they're",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 270.99,
- "end": 271.28,
- "confidence": 1,
- "text": "not",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 271.3,
- "end": 271.58,
- "confidence": 0.77,
- "text": "real.",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We're heading towards a world where robots are everywhere about the technology is moving out from behind factory was entering workplaces households and as these machines.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 47",
- "words": [
- {
- "start": 274.49,
- "confidence": 0.97,
- "end": 274.69,
- "word": "we're",
- "punct": "We're",
- "index": 649
- },
- {
- "start": 274.69,
- "confidence": 0.7,
- "end": 274.96,
- "word": "heading",
- "punct": "heading",
- "index": 650
- },
- {
- "start": 274.96,
- "confidence": 0.97,
- "end": 275.21,
- "word": "towards",
- "punct": "towards",
- "index": 651
- },
- {
- "start": 275.21,
- "confidence": 0.92,
- "end": 275.28,
- "word": "a",
- "punct": "a",
- "index": 652
- },
- {
- "start": 275.28,
- "confidence": 1,
- "end": 275.71,
- "word": "world",
- "punct": "world",
- "index": 653
- },
- {
- "start": 275.71,
- "confidence": 1,
- "end": 275.9,
- "word": "where",
- "punct": "where",
- "index": 654
- },
- {
- "start": 275.9,
- "confidence": 0.91,
- "end": 276.33,
- "word": "robots",
- "punct": "robots",
- "index": 655
- },
- {
- "start": 276.34,
- "confidence": 0.82,
- "end": 276.52,
- "word": "are",
- "punct": "are",
- "index": 656
- },
- {
- "start": 276.55,
- "confidence": 1,
- "end": 277.18,
- "word": "everywhere",
- "punct": "everywhere",
- "index": 657
- },
- {
- "start": 277.71,
- "confidence": 0.87,
- "end": 277.96,
- "word": "about",
- "punct": "about",
- "index": 658
- },
- {
- "start": 277.96,
- "confidence": 0.75,
- "end": 278.02,
- "word": "the",
- "punct": "the",
- "index": 659
- },
- {
- "start": 278.02,
- "confidence": 0.98,
- "end": 278.61,
- "word": "technology",
- "punct": "technology",
- "index": 660
- },
- {
- "start": 278.61,
- "confidence": 0.99,
- "end": 278.81,
- "word": "is",
- "punct": "is",
- "index": 661
- },
- {
- "start": 278.84,
- "confidence": 1,
- "end": 279.24,
- "word": "moving",
- "punct": "moving",
- "index": 662
- },
- {
- "start": 279.24,
- "confidence": 1,
- "end": 279.41,
- "word": "out",
- "punct": "out",
- "index": 663
- },
- {
- "start": 279.41,
- "confidence": 1,
- "end": 279.57,
- "word": "from",
- "punct": "from",
- "index": 664
- },
- {
- "start": 279.57,
- "confidence": 1,
- "end": 279.84,
- "word": "behind",
- "punct": "behind",
- "index": 665
- },
- {
- "start": 279.84,
- "confidence": 1,
- "end": 280.26,
- "word": "factory",
- "punct": "factory",
- "index": 666
- },
- {
- "start": 280.26,
- "confidence": 0.97,
- "end": 280.81,
- "word": "was",
- "punct": "was",
- "index": 667
- },
- {
- "start": 280.88,
- "confidence": 0.81,
- "end": 281.36,
- "word": "entering",
- "punct": "entering",
- "index": 668
- },
- {
- "start": 281.4,
- "confidence": 0.52,
- "end": 282.33,
- "word": "workplaces",
- "punct": "workplaces",
- "index": 669
- },
- {
- "start": 282.34,
- "confidence": 0.91,
- "end": 283.29,
- "word": "households",
- "punct": "households",
- "index": 670
- },
- {
- "start": 283.61,
- "confidence": 0.61,
- "end": 283.81,
- "word": "and",
- "punct": "and",
- "index": 671
- },
- {
- "start": 284.11,
- "confidence": 1,
- "end": 284.34,
- "word": "as",
- "punct": "as",
- "index": 672
- },
- {
- "start": 284.34,
- "confidence": 0.99,
- "end": 284.55,
- "word": "these",
- "punct": "these",
- "index": 673
- },
- {
- "start": 284.55,
- "confidence": 1,
- "end": 285.22,
- "word": "machines",
- "punct": "machines.",
- "index": 674
- }
- ],
- "start": 274.49
- },
- "entityRanges": [
- {
- "start": 274.49,
- "end": 274.69,
- "confidence": 0.97,
- "text": "We're",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 274.69,
- "end": 274.96,
- "confidence": 0.7,
- "text": "heading",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 274.96,
- "end": 275.21,
- "confidence": 0.97,
- "text": "towards",
- "offset": 14,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.21,
- "end": 275.28,
- "confidence": 0.92,
- "text": "a",
- "offset": 22,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.28,
- "end": 275.71,
- "confidence": 1,
- "text": "world",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.71,
- "end": 275.9,
- "confidence": 1,
- "text": "where",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 275.9,
- "end": 276.33,
- "confidence": 0.91,
- "text": "robots",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 276.34,
- "end": 276.52,
- "confidence": 0.82,
- "text": "are",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 276.55,
- "end": 277.18,
- "confidence": 1,
- "text": "everywhere",
- "offset": 47,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 277.71,
- "end": 277.96,
- "confidence": 0.87,
- "text": "about",
- "offset": 58,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 277.96,
- "end": 278.02,
- "confidence": 0.75,
- "text": "the",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 278.02,
- "end": 278.61,
- "confidence": 0.98,
- "text": "technology",
- "offset": 68,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 278.61,
- "end": 278.81,
- "confidence": 0.99,
- "text": "is",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 278.84,
- "end": 279.24,
- "confidence": 1,
- "text": "moving",
- "offset": 82,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.24,
- "end": 279.41,
- "confidence": 1,
- "text": "out",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.41,
- "end": 279.57,
- "confidence": 1,
- "text": "from",
- "offset": 93,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.57,
- "end": 279.84,
- "confidence": 1,
- "text": "behind",
- "offset": 98,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 279.84,
- "end": 280.26,
- "confidence": 1,
- "text": "factory",
- "offset": 105,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 280.26,
- "end": 280.81,
- "confidence": 0.97,
- "text": "was",
- "offset": 113,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 280.88,
- "end": 281.36,
- "confidence": 0.81,
- "text": "entering",
- "offset": 117,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 281.4,
- "end": 282.33,
- "confidence": 0.52,
- "text": "workplaces",
- "offset": 126,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 282.34,
- "end": 283.29,
- "confidence": 0.91,
- "text": "households",
- "offset": 137,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 283.61,
- "end": 283.81,
- "confidence": 0.61,
- "text": "and",
- "offset": 148,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 284.11,
- "end": 284.34,
- "confidence": 1,
- "text": "as",
- "offset": 152,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 284.34,
- "end": 284.55,
- "confidence": 0.99,
- "text": "these",
- "offset": 155,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 284.55,
- "end": 285.22,
- "confidence": 1,
- "text": "machines.",
- "offset": 161,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They can sense and make a ton of my decisions and learn enter into the shared spaces.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 48",
- "words": [
- {
- "start": 285.22,
- "confidence": 0.69,
- "end": 285.32,
- "word": "they",
- "punct": "They",
- "index": 675
- },
- {
- "start": 285.33,
- "confidence": 0.96,
- "end": 285.89,
- "word": "can",
- "punct": "can",
- "index": 676
- },
- {
- "start": 285.92,
- "confidence": 1,
- "end": 286.63,
- "word": "sense",
- "punct": "sense",
- "index": 677
- },
- {
- "start": 286.63,
- "confidence": 1,
- "end": 286.99,
- "word": "and",
- "punct": "and",
- "index": 678
- },
- {
- "start": 287.21,
- "confidence": 0.93,
- "end": 287.45,
- "word": "make",
- "punct": "make",
- "index": 679
- },
- {
- "start": 287.45,
- "confidence": 0.92,
- "end": 287.48,
- "word": "a",
- "punct": "a",
- "index": 680
- },
- {
- "start": 287.49,
- "confidence": 0.62,
- "end": 287.78,
- "word": "ton",
- "punct": "ton",
- "index": 681
- },
- {
- "start": 287.77,
- "confidence": 0.66,
- "end": 287.89,
- "word": "of",
- "punct": "of",
- "index": 682
- },
- {
- "start": 287.89,
- "confidence": 0.44,
- "end": 288.02,
- "word": "my",
- "punct": "my",
- "index": 683
- },
- {
- "start": 288.04,
- "confidence": 1,
- "end": 288.69,
- "word": "decisions",
- "punct": "decisions",
- "index": 684
- },
- {
- "start": 288.69,
- "confidence": 1,
- "end": 288.92,
- "word": "and",
- "punct": "and",
- "index": 685
- },
- {
- "start": 288.99,
- "confidence": 0.82,
- "end": 289.54,
- "word": "learn",
- "punct": "learn",
- "index": 686
- },
- {
- "start": 290.05,
- "confidence": 0.91,
- "end": 290.37,
- "word": "enter",
- "punct": "enter",
- "index": 687
- },
- {
- "start": 290.37,
- "confidence": 0.99,
- "end": 290.58,
- "word": "into",
- "punct": "into",
- "index": 688
- },
- {
- "start": 290.58,
- "confidence": 0.97,
- "end": 290.72,
- "word": "the",
- "punct": "the",
- "index": 689
- },
- {
- "start": 290.72,
- "confidence": 0.96,
- "end": 291.09,
- "word": "shared",
- "punct": "shared",
- "index": 690
- },
- {
- "start": 291.09,
- "confidence": 1,
- "end": 292.16,
- "word": "spaces",
- "punct": "spaces.",
- "index": 691
- }
- ],
- "start": 285.22
- },
- "entityRanges": [
- {
- "start": 285.22,
- "end": 285.32,
- "confidence": 0.69,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 285.33,
- "end": 285.89,
- "confidence": 0.96,
- "text": "can",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 285.92,
- "end": 286.63,
- "confidence": 1,
- "text": "sense",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 286.63,
- "end": 286.99,
- "confidence": 1,
- "text": "and",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.21,
- "end": 287.45,
- "confidence": 0.93,
- "text": "make",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.45,
- "end": 287.48,
- "confidence": 0.92,
- "text": "a",
- "offset": 24,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.49,
- "end": 287.78,
- "confidence": 0.62,
- "text": "ton",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.77,
- "end": 287.89,
- "confidence": 0.66,
- "text": "of",
- "offset": 30,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 287.89,
- "end": 288.02,
- "confidence": 0.44,
- "text": "my",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 288.04,
- "end": 288.69,
- "confidence": 1,
- "text": "decisions",
- "offset": 36,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 288.69,
- "end": 288.92,
- "confidence": 1,
- "text": "and",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 288.99,
- "end": 289.54,
- "confidence": 0.82,
- "text": "learn",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.05,
- "end": 290.37,
- "confidence": 0.91,
- "text": "enter",
- "offset": 56,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.37,
- "end": 290.58,
- "confidence": 0.99,
- "text": "into",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.58,
- "end": 290.72,
- "confidence": 0.97,
- "text": "the",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 290.72,
- "end": 291.09,
- "confidence": 0.96,
- "text": "shared",
- "offset": 71,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 291.09,
- "end": 292.16,
- "confidence": 1,
- "text": "spaces.",
- "offset": 78,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I think that maybe the best analogy.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 49",
- "words": [
- {
- "start": 292.68,
- "confidence": 0.97,
- "end": 292.77,
- "word": "i",
- "punct": "I",
- "index": 692
- },
- {
- "start": 292.78,
- "confidence": 1,
- "end": 293.01,
- "word": "think",
- "punct": "think",
- "index": 693
- },
- {
- "start": 293.01,
- "confidence": 1,
- "end": 293.19,
- "word": "that",
- "punct": "that",
- "index": 694
- },
- {
- "start": 293.19,
- "confidence": 0.66,
- "end": 293.39,
- "word": "maybe",
- "punct": "maybe",
- "index": 695
- },
- {
- "start": 293.42,
- "confidence": 1,
- "end": 293.51,
- "word": "the",
- "punct": "the",
- "index": 696
- },
- {
- "start": 293.51,
- "confidence": 1,
- "end": 293.76,
- "word": "best",
- "punct": "best",
- "index": 697
- },
- {
- "start": 293.76,
- "confidence": 1,
- "end": 294.32,
- "word": "analogy",
- "punct": "analogy.",
- "index": 698
- }
- ],
- "start": 292.68
- },
- "entityRanges": [
- {
- "start": 292.68,
- "end": 292.77,
- "confidence": 0.97,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 292.78,
- "end": 293.01,
- "confidence": 1,
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.01,
- "end": 293.19,
- "confidence": 1,
- "text": "that",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.19,
- "end": 293.39,
- "confidence": 0.66,
- "text": "maybe",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.42,
- "end": 293.51,
- "confidence": 1,
- "text": "the",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.51,
- "end": 293.76,
- "confidence": 1,
- "text": "best",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 293.76,
- "end": 294.32,
- "confidence": 1,
- "text": "analogy.",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We have for this is our relationship with animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 50",
- "words": [
- {
- "start": 294.32,
- "confidence": 0.98,
- "end": 294.45,
- "word": "we",
- "punct": "We",
- "index": 699
- },
- {
- "start": 294.45,
- "confidence": 0.96,
- "end": 294.76,
- "word": "have",
- "punct": "have",
- "index": 700
- },
- {
- "start": 294.76,
- "confidence": 0.65,
- "end": 294.84,
- "word": "for",
- "punct": "for",
- "index": 701
- },
- {
- "start": 294.84,
- "confidence": 1,
- "end": 295.08,
- "word": "this",
- "punct": "this",
- "index": 702
- },
- {
- "start": 295.08,
- "confidence": 0.93,
- "end": 295.21,
- "word": "is",
- "punct": "is",
- "index": 703
- },
- {
- "start": 295.2,
- "confidence": 0.5,
- "end": 295.32,
- "word": "our",
- "punct": "our",
- "index": 704
- },
- {
- "start": 295.32,
- "confidence": 1,
- "end": 296.04,
- "word": "relationship",
- "punct": "relationship",
- "index": 705
- },
- {
- "start": 296.04,
- "confidence": 1,
- "end": 296.21,
- "word": "with",
- "punct": "with",
- "index": 706
- },
- {
- "start": 296.34,
- "confidence": 1,
- "end": 297.08,
- "word": "animals",
- "punct": "animals.",
- "index": 707
- }
- ],
- "start": 294.32
- },
- "entityRanges": [
- {
- "start": 294.32,
- "end": 294.45,
- "confidence": 0.98,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 294.45,
- "end": 294.76,
- "confidence": 0.96,
- "text": "have",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 294.76,
- "end": 294.84,
- "confidence": 0.65,
- "text": "for",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 294.84,
- "end": 295.08,
- "confidence": 1,
- "text": "this",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 295.08,
- "end": 295.21,
- "confidence": 0.93,
- "text": "is",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 295.2,
- "end": 295.32,
- "confidence": 0.5,
- "text": "our",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 295.32,
- "end": 296.04,
- "confidence": 1,
- "text": "relationship",
- "offset": 24,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 296.04,
- "end": 296.21,
- "confidence": 1,
- "text": "with",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 296.34,
- "end": 297.08,
- "confidence": 1,
- "text": "animals.",
- "offset": 42,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Thousands of years ago, we started to domesticate animals and we train them for work and weaponry and companionship.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 51",
- "words": [
- {
- "start": 297.49,
- "confidence": 1,
- "end": 297.99,
- "word": "thousands",
- "punct": "Thousands",
- "index": 708
- },
- {
- "start": 297.99,
- "confidence": 1,
- "end": 298.08,
- "word": "of",
- "punct": "of",
- "index": 709
- },
- {
- "start": 298.08,
- "confidence": 1,
- "end": 298.32,
- "word": "years",
- "punct": "years",
- "index": 710
- },
- {
- "start": 298.32,
- "confidence": 1,
- "end": 298.82,
- "word": "ago",
- "punct": "ago,",
- "index": 711
- },
- {
- "start": 299.29,
- "confidence": 1,
- "end": 299.44,
- "word": "we",
- "punct": "we",
- "index": 712
- },
- {
- "start": 299.44,
- "confidence": 1,
- "end": 299.76,
- "word": "started",
- "punct": "started",
- "index": 713
- },
- {
- "start": 299.76,
- "confidence": 1,
- "end": 299.86,
- "word": "to",
- "punct": "to",
- "index": 714
- },
- {
- "start": 299.86,
- "confidence": 1,
- "end": 300.54,
- "word": "domesticate",
- "punct": "domesticate",
- "index": 715
- },
- {
- "start": 300.54,
- "confidence": 1,
- "end": 301.15,
- "word": "animals",
- "punct": "animals",
- "index": 716
- },
- {
- "start": 301.3,
- "confidence": 0.55,
- "end": 301.37,
- "word": "and",
- "punct": "and",
- "index": 717
- },
- {
- "start": 301.51,
- "confidence": 1,
- "end": 301.64,
- "word": "we",
- "punct": "we",
- "index": 718
- },
- {
- "start": 301.64,
- "confidence": 0.74,
- "end": 301.99,
- "word": "train",
- "punct": "train",
- "index": 719
- },
- {
- "start": 301.99,
- "confidence": 1,
- "end": 302.15,
- "word": "them",
- "punct": "them",
- "index": 720
- },
- {
- "start": 302.15,
- "confidence": 1,
- "end": 302.34,
- "word": "for",
- "punct": "for",
- "index": 721
- },
- {
- "start": 302.34,
- "confidence": 1,
- "end": 302.89,
- "word": "work",
- "punct": "work",
- "index": 722
- },
- {
- "start": 302.92,
- "confidence": 0.72,
- "end": 303.14,
- "word": "and",
- "punct": "and",
- "index": 723
- },
- {
- "start": 303.14,
- "confidence": 1,
- "end": 303.83,
- "word": "weaponry",
- "punct": "weaponry",
- "index": 724
- },
- {
- "start": 303.86,
- "confidence": 0.92,
- "end": 303.95,
- "word": "and",
- "punct": "and",
- "index": 725
- },
- {
- "start": 303.94,
- "confidence": 1,
- "end": 305,
- "word": "companionship",
- "punct": "companionship.",
- "index": 726
- }
- ],
- "start": 297.49
- },
- "entityRanges": [
- {
- "start": 297.49,
- "end": 297.99,
- "confidence": 1,
- "text": "Thousands",
- "offset": 0,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 297.99,
- "end": 298.08,
- "confidence": 1,
- "text": "of",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 298.08,
- "end": 298.32,
- "confidence": 1,
- "text": "years",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 298.32,
- "end": 298.82,
- "confidence": 1,
- "text": "ago,",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.29,
- "end": 299.44,
- "confidence": 1,
- "text": "we",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.44,
- "end": 299.76,
- "confidence": 1,
- "text": "started",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.76,
- "end": 299.86,
- "confidence": 1,
- "text": "to",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 299.86,
- "end": 300.54,
- "confidence": 1,
- "text": "domesticate",
- "offset": 38,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 300.54,
- "end": 301.15,
- "confidence": 1,
- "text": "animals",
- "offset": 50,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 301.3,
- "end": 301.37,
- "confidence": 0.55,
- "text": "and",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 301.51,
- "end": 301.64,
- "confidence": 1,
- "text": "we",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 301.64,
- "end": 301.99,
- "confidence": 0.74,
- "text": "train",
- "offset": 65,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 301.99,
- "end": 302.15,
- "confidence": 1,
- "text": "them",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 302.15,
- "end": 302.34,
- "confidence": 1,
- "text": "for",
- "offset": 76,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 302.34,
- "end": 302.89,
- "confidence": 1,
- "text": "work",
- "offset": 80,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 302.92,
- "end": 303.14,
- "confidence": 0.72,
- "text": "and",
- "offset": 85,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 303.14,
- "end": 303.83,
- "confidence": 1,
- "text": "weaponry",
- "offset": 89,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 303.86,
- "end": 303.95,
- "confidence": 0.92,
- "text": "and",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 303.94,
- "end": 305,
- "confidence": 1,
- "text": "companionship.",
- "offset": 102,
- "length": 14,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Throughout history.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 52",
- "words": [
- {
- "start": 305.64,
- "confidence": 1,
- "end": 305.91,
- "word": "throughout",
- "punct": "Throughout",
- "index": 727
- },
- {
- "start": 305.91,
- "confidence": 1,
- "end": 306.43,
- "word": "history",
- "punct": "history.",
- "index": 728
- }
- ],
- "start": 305.64
- },
- "entityRanges": [
- {
- "start": 305.64,
- "end": 305.91,
- "confidence": 1,
- "text": "Throughout",
- "offset": 0,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 305.91,
- "end": 306.43,
- "confidence": 1,
- "text": "history.",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We've treated.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 53",
- "words": [
- {
- "start": 306.43,
- "confidence": 0.49,
- "end": 306.58,
- "word": "we've",
- "punct": "We've",
- "index": 729
- },
- {
- "start": 306.6,
- "confidence": 0.69,
- "end": 306.92,
- "word": "treated",
- "punct": "treated.",
- "index": 730
- }
- ],
- "start": 306.43
- },
- "entityRanges": [
- {
- "start": 306.43,
- "end": 306.58,
- "confidence": 0.49,
- "text": "We've",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 306.6,
- "end": 306.92,
- "confidence": 0.69,
- "text": "treated.",
- "offset": 6,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Some animals like tools are the products and other animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 54",
- "words": [
- {
- "start": 306.94,
- "confidence": 1,
- "end": 307.2,
- "word": "some",
- "punct": "Some",
- "index": 731
- },
- {
- "start": 307.24,
- "confidence": 1,
- "end": 307.75,
- "word": "animals",
- "punct": "animals",
- "index": 732
- },
- {
- "start": 307.75,
- "confidence": 1,
- "end": 307.93,
- "word": "like",
- "punct": "like",
- "index": 733
- },
- {
- "start": 307.96,
- "confidence": 0.86,
- "end": 308.67,
- "word": "tools",
- "punct": "tools",
- "index": 734
- },
- {
- "start": 308.82,
- "confidence": 0.4,
- "end": 309.03,
- "word": "are",
- "punct": "are",
- "index": 735
- },
- {
- "start": 309.05,
- "confidence": 0.39,
- "end": 309.16,
- "word": "the",
- "punct": "the",
- "index": 736
- },
- {
- "start": 309.17,
- "confidence": 0.99,
- "end": 310.11,
- "word": "products",
- "punct": "products",
- "index": 737
- },
- {
- "start": 310.52,
- "confidence": 0.94,
- "end": 310.74,
- "word": "and",
- "punct": "and",
- "index": 738
- },
- {
- "start": 310.77,
- "confidence": 0.95,
- "end": 310.99,
- "word": "other",
- "punct": "other",
- "index": 739
- },
- {
- "start": 310.99,
- "confidence": 1,
- "end": 311.33,
- "word": "animals",
- "punct": "animals.",
- "index": 740
- }
- ],
- "start": 306.94
- },
- "entityRanges": [
- {
- "start": 306.94,
- "end": 307.2,
- "confidence": 1,
- "text": "Some",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 307.24,
- "end": 307.75,
- "confidence": 1,
- "text": "animals",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 307.75,
- "end": 307.93,
- "confidence": 1,
- "text": "like",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 307.96,
- "end": 308.67,
- "confidence": 0.86,
- "text": "tools",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 308.82,
- "end": 309.03,
- "confidence": 0.4,
- "text": "are",
- "offset": 24,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 309.05,
- "end": 309.16,
- "confidence": 0.39,
- "text": "the",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 309.17,
- "end": 310.11,
- "confidence": 0.99,
- "text": "products",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 310.52,
- "end": 310.74,
- "confidence": 0.94,
- "text": "and",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 310.77,
- "end": 310.99,
- "confidence": 0.95,
- "text": "other",
- "offset": 45,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 310.99,
- "end": 311.33,
- "confidence": 1,
- "text": "animals.",
- "offset": 51,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We treated with kindness and given a place in society as our companions.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 55",
- "words": [
- {
- "start": 311.33,
- "confidence": 0.89,
- "end": 311.45,
- "word": "we",
- "punct": "We",
- "index": 741
- },
- {
- "start": 311.45,
- "confidence": 1,
- "end": 311.73,
- "word": "treated",
- "punct": "treated",
- "index": 742
- },
- {
- "start": 311.73,
- "confidence": 1,
- "end": 311.87,
- "word": "with",
- "punct": "with",
- "index": 743
- },
- {
- "start": 311.87,
- "confidence": 1,
- "end": 312.58,
- "word": "kindness",
- "punct": "kindness",
- "index": 744
- },
- {
- "start": 312.61,
- "confidence": 0.97,
- "end": 312.79,
- "word": "and",
- "punct": "and",
- "index": 745
- },
- {
- "start": 312.87,
- "confidence": 0.99,
- "end": 313.09,
- "word": "given",
- "punct": "given",
- "index": 746
- },
- {
- "start": 313.09,
- "confidence": 0.86,
- "end": 313.16,
- "word": "a",
- "punct": "a",
- "index": 747
- },
- {
- "start": 313.16,
- "confidence": 1,
- "end": 313.56,
- "word": "place",
- "punct": "place",
- "index": 748
- },
- {
- "start": 313.56,
- "confidence": 1,
- "end": 313.64,
- "word": "in",
- "punct": "in",
- "index": 749
- },
- {
- "start": 313.64,
- "confidence": 1,
- "end": 314.12,
- "word": "society",
- "punct": "society",
- "index": 750
- },
- {
- "start": 314.12,
- "confidence": 0.82,
- "end": 314.24,
- "word": "as",
- "punct": "as",
- "index": 751
- },
- {
- "start": 314.24,
- "confidence": 0.58,
- "end": 314.3,
- "word": "our",
- "punct": "our",
- "index": 752
- },
- {
- "start": 314.31,
- "confidence": 1,
- "end": 315.18,
- "word": "companions",
- "punct": "companions.",
- "index": 753
- }
- ],
- "start": 311.33
- },
- "entityRanges": [
- {
- "start": 311.33,
- "end": 311.45,
- "confidence": 0.89,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 311.45,
- "end": 311.73,
- "confidence": 1,
- "text": "treated",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 311.73,
- "end": 311.87,
- "confidence": 1,
- "text": "with",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 311.87,
- "end": 312.58,
- "confidence": 1,
- "text": "kindness",
- "offset": 16,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 312.61,
- "end": 312.79,
- "confidence": 0.97,
- "text": "and",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 312.87,
- "end": 313.09,
- "confidence": 0.99,
- "text": "given",
- "offset": 29,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.09,
- "end": 313.16,
- "confidence": 0.86,
- "text": "a",
- "offset": 35,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.16,
- "end": 313.56,
- "confidence": 1,
- "text": "place",
- "offset": 37,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.56,
- "end": 313.64,
- "confidence": 1,
- "text": "in",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 313.64,
- "end": 314.12,
- "confidence": 1,
- "text": "society",
- "offset": 46,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 314.12,
- "end": 314.24,
- "confidence": 0.82,
- "text": "as",
- "offset": 54,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 314.24,
- "end": 314.3,
- "confidence": 0.58,
- "text": "our",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 314.31,
- "end": 315.18,
- "confidence": 1,
- "text": "companions.",
- "offset": 61,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I think it's possible.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 56",
- "words": [
- {
- "start": 315.81,
- "confidence": 1,
- "end": 315.94,
- "word": "i",
- "punct": "I",
- "index": 754
- },
- {
- "start": 315.94,
- "confidence": 1,
- "end": 316.1,
- "word": "think",
- "punct": "think",
- "index": 755
- },
- {
- "start": 316.1,
- "confidence": 0.97,
- "end": 316.23,
- "word": "it's",
- "punct": "it's",
- "index": 756
- },
- {
- "start": 316.23,
- "confidence": 0.96,
- "end": 316.7,
- "word": "possible",
- "punct": "possible.",
- "index": 757
- }
- ],
- "start": 315.81
- },
- "entityRanges": [
- {
- "start": 315.81,
- "end": 315.94,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 315.94,
- "end": 316.1,
- "confidence": 1,
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.1,
- "end": 316.23,
- "confidence": 0.97,
- "text": "it's",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.23,
- "end": 316.7,
- "confidence": 0.96,
- "text": "possible.",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We might start to integrate Robartes, but similar weights animals are alive.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 57",
- "words": [
- {
- "start": 316.7,
- "confidence": 0.98,
- "end": 316.82,
- "word": "we",
- "punct": "We",
- "index": 758
- },
- {
- "start": 316.82,
- "confidence": 1,
- "end": 317.04,
- "word": "might",
- "punct": "might",
- "index": 759
- },
- {
- "start": 317.04,
- "confidence": 0.99,
- "end": 317.26,
- "word": "start",
- "punct": "start",
- "index": 760
- },
- {
- "start": 317.26,
- "confidence": 0.97,
- "end": 317.33,
- "word": "to",
- "punct": "to",
- "index": 761
- },
- {
- "start": 317.36,
- "confidence": 0.98,
- "end": 317.78,
- "word": "integrate",
- "punct": "integrate",
- "index": 762
- },
- {
- "start": 317.78,
- "confidence": 0.32,
- "end": 318.16,
- "word": "robartes",
- "punct": "Robartes,",
- "index": 763
- },
- {
- "start": 318.16,
- "confidence": 0.37,
- "end": 318.45,
- "word": "but",
- "punct": "but",
- "index": 764
- },
- {
- "start": 318.47,
- "confidence": 0.78,
- "end": 318.91,
- "word": "similar",
- "punct": "similar",
- "index": 765
- },
- {
- "start": 318.91,
- "confidence": 0.72,
- "end": 319.62,
- "word": "weights",
- "punct": "weights",
- "index": 766
- },
- {
- "start": 323.05,
- "confidence": 1,
- "end": 323.52,
- "word": "animals",
- "punct": "animals",
- "index": 767
- },
- {
- "start": 323.52,
- "confidence": 0.96,
- "end": 323.71,
- "word": "are",
- "punct": "are",
- "index": 768
- },
- {
- "start": 323.71,
- "confidence": 0.72,
- "end": 324.18,
- "word": "alive",
- "punct": "alive.",
- "index": 769
- }
- ],
- "start": 316.7
- },
- "entityRanges": [
- {
- "start": 316.7,
- "end": 316.82,
- "confidence": 0.98,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 316.82,
- "end": 317.04,
- "confidence": 1,
- "text": "might",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.04,
- "end": 317.26,
- "confidence": 0.99,
- "text": "start",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.26,
- "end": 317.33,
- "confidence": 0.97,
- "text": "to",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.36,
- "end": 317.78,
- "confidence": 0.98,
- "text": "integrate",
- "offset": 18,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 317.78,
- "end": 318.16,
- "confidence": 0.32,
- "text": "Robartes,",
- "offset": 28,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 318.16,
- "end": 318.45,
- "confidence": 0.37,
- "text": "but",
- "offset": 38,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 318.47,
- "end": 318.91,
- "confidence": 0.78,
- "text": "similar",
- "offset": 42,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 318.91,
- "end": 319.62,
- "confidence": 0.72,
- "text": "weights",
- "offset": 50,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.05,
- "end": 323.52,
- "confidence": 1,
- "text": "animals",
- "offset": 58,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.52,
- "end": 323.71,
- "confidence": 0.96,
- "text": "are",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 323.71,
- "end": 324.18,
- "confidence": 0.72,
- "text": "alive.",
- "offset": 70,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Robert and that.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 58",
- "words": [
- {
- "start": 324.57,
- "confidence": 0.83,
- "end": 325.02,
- "word": "robert",
- "punct": "Robert",
- "index": 770
- },
- {
- "start": 325.03,
- "confidence": 0.64,
- "end": 325.17,
- "word": "and",
- "punct": "and",
- "index": 771
- },
- {
- "start": 325.16,
- "confidence": 0.9,
- "end": 325.43,
- "word": "that",
- "punct": "that.",
- "index": 772
- }
- ],
- "start": 324.57
- },
- "entityRanges": [
- {
- "start": 324.57,
- "end": 325.02,
- "confidence": 0.83,
- "text": "Robert",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 325.03,
- "end": 325.17,
- "confidence": 0.64,
- "text": "and",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 325.16,
- "end": 325.43,
- "confidence": 0.9,
- "text": "that.",
- "offset": 11,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And I can tell you from working.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 59",
- "words": [
- {
- "start": 327.58,
- "confidence": 0.85,
- "end": 327.73,
- "word": "and",
- "punct": "And",
- "index": 773
- },
- {
- "start": 327.81,
- "confidence": 1,
- "end": 327.89,
- "word": "i",
- "punct": "I",
- "index": 774
- },
- {
- "start": 327.89,
- "confidence": 1,
- "end": 328.03,
- "word": "can",
- "punct": "can",
- "index": 775
- },
- {
- "start": 328.03,
- "confidence": 1,
- "end": 328.25,
- "word": "tell",
- "punct": "tell",
- "index": 776
- },
- {
- "start": 328.25,
- "confidence": 1,
- "end": 328.35,
- "word": "you",
- "punct": "you",
- "index": 777
- },
- {
- "start": 328.35,
- "confidence": 1,
- "end": 328.62,
- "word": "from",
- "punct": "from",
- "index": 778
- },
- {
- "start": 328.62,
- "confidence": 1,
- "end": 328.94,
- "word": "working",
- "punct": "working.",
- "index": 779
- }
- ],
- "start": 327.58
- },
- "entityRanges": [
- {
- "start": 327.58,
- "end": 327.73,
- "confidence": 0.85,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 327.81,
- "end": 327.89,
- "confidence": 1,
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 327.89,
- "end": 328.03,
- "confidence": 1,
- "text": "can",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.03,
- "end": 328.25,
- "confidence": 1,
- "text": "tell",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.25,
- "end": 328.35,
- "confidence": 1,
- "text": "you",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.35,
- "end": 328.62,
- "confidence": 1,
- "text": "from",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 328.62,
- "end": 328.94,
- "confidence": 1,
- "text": "working.",
- "offset": 24,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "What about the sister were pretty far away from developing robots.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 60",
- "words": [
- {
- "start": 328.94,
- "confidence": 0.88,
- "end": 329.07,
- "word": "what",
- "punct": "What",
- "index": 780
- },
- {
- "start": 329.07,
- "confidence": 1,
- "end": 329.32,
- "word": "about",
- "punct": "about",
- "index": 781
- },
- {
- "start": 329.33,
- "confidence": 0.39,
- "end": 329.44,
- "word": "the",
- "punct": "the",
- "index": 782
- },
- {
- "start": 329.44,
- "confidence": 0.5,
- "end": 329.8,
- "word": "sister",
- "punct": "sister",
- "index": 783
- },
- {
- "start": 329.82,
- "confidence": 0.52,
- "end": 330.03,
- "word": "were",
- "punct": "were",
- "index": 784
- },
- {
- "start": 330.22,
- "confidence": 0.95,
- "end": 330.52,
- "word": "pretty",
- "punct": "pretty",
- "index": 785
- },
- {
- "start": 330.52,
- "confidence": 0.99,
- "end": 330.73,
- "word": "far",
- "punct": "far",
- "index": 786
- },
- {
- "start": 330.73,
- "confidence": 1,
- "end": 331.02,
- "word": "away",
- "punct": "away",
- "index": 787
- },
- {
- "start": 331.02,
- "confidence": 1,
- "end": 331.24,
- "word": "from",
- "punct": "from",
- "index": 788
- },
- {
- "start": 331.24,
- "confidence": 1,
- "end": 331.72,
- "word": "developing",
- "punct": "developing",
- "index": 789
- },
- {
- "start": 331.72,
- "confidence": 0.8,
- "end": 332.04,
- "word": "robots",
- "punct": "robots.",
- "index": 790
- }
- ],
- "start": 328.94
- },
- "entityRanges": [
- {
- "start": 328.94,
- "end": 329.07,
- "confidence": 0.88,
- "text": "What",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.07,
- "end": 329.32,
- "confidence": 1,
- "text": "about",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.33,
- "end": 329.44,
- "confidence": 0.39,
- "text": "the",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.44,
- "end": 329.8,
- "confidence": 0.5,
- "text": "sister",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 329.82,
- "end": 330.03,
- "confidence": 0.52,
- "text": "were",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 330.22,
- "end": 330.52,
- "confidence": 0.95,
- "text": "pretty",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 330.52,
- "end": 330.73,
- "confidence": 0.99,
- "text": "far",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 330.73,
- "end": 331.02,
- "confidence": 1,
- "text": "away",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 331.02,
- "end": 331.24,
- "confidence": 1,
- "text": "from",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 331.24,
- "end": 331.72,
- "confidence": 1,
- "text": "developing",
- "offset": 48,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 331.72,
- "end": 332.04,
- "confidence": 0.8,
- "text": "robots.",
- "offset": 59,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They can feel anything there, but we feel for that.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 61",
- "words": [
- {
- "start": 332.04,
- "confidence": 0.49,
- "end": 332.11,
- "word": "they",
- "punct": "They",
- "index": 791
- },
- {
- "start": 332.11,
- "confidence": 1,
- "end": 332.28,
- "word": "can",
- "punct": "can",
- "index": 792
- },
- {
- "start": 332.28,
- "confidence": 1,
- "end": 332.69,
- "word": "feel",
- "punct": "feel",
- "index": 793
- },
- {
- "start": 332.69,
- "confidence": 1,
- "end": 333.21,
- "word": "anything",
- "punct": "anything",
- "index": 794
- },
- {
- "start": 334.13,
- "confidence": 0.35,
- "end": 334.17,
- "word": "there",
- "punct": "there,",
- "index": 795
- },
- {
- "start": 334.9,
- "confidence": 0.74,
- "end": 335.1,
- "word": "but",
- "punct": "but",
- "index": 796
- },
- {
- "start": 335.24,
- "confidence": 1,
- "end": 335.53,
- "word": "we",
- "punct": "we",
- "index": 797
- },
- {
- "start": 335.53,
- "confidence": 1,
- "end": 335.78,
- "word": "feel",
- "punct": "feel",
- "index": 798
- },
- {
- "start": 335.78,
- "confidence": 1,
- "end": 335.97,
- "word": "for",
- "punct": "for",
- "index": 799
- },
- {
- "start": 335.97,
- "confidence": 0.96,
- "end": 336.22,
- "word": "that",
- "punct": "that.",
- "index": 800
- }
- ],
- "start": 332.04
- },
- "entityRanges": [
- {
- "start": 332.04,
- "end": 332.11,
- "confidence": 0.49,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.11,
- "end": 332.28,
- "confidence": 1,
- "text": "can",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.28,
- "end": 332.69,
- "confidence": 1,
- "text": "feel",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 332.69,
- "end": 333.21,
- "confidence": 1,
- "text": "anything",
- "offset": 14,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 334.13,
- "end": 334.17,
- "confidence": 0.35,
- "text": "there,",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 334.9,
- "end": 335.1,
- "confidence": 0.74,
- "text": "but",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.24,
- "end": 335.53,
- "confidence": 1,
- "text": "we",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.53,
- "end": 335.78,
- "confidence": 1,
- "text": "feel",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.78,
- "end": 335.97,
- "confidence": 1,
- "text": "for",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 335.97,
- "end": 336.22,
- "confidence": 0.96,
- "text": "that.",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And that matters because if we're trying to integrate robots into the shared spaces need to understand that people treat them differently than other devices that in some cases.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 62",
- "words": [
- {
- "start": 337.77,
- "confidence": 0.78,
- "end": 337.9,
- "word": "and",
- "punct": "And",
- "index": 801
- },
- {
- "start": 337.97,
- "confidence": 1,
- "end": 338.22,
- "word": "that",
- "punct": "that",
- "index": 802
- },
- {
- "start": 338.22,
- "confidence": 1,
- "end": 339,
- "word": "matters",
- "punct": "matters",
- "index": 803
- },
- {
- "start": 339.03,
- "confidence": 1,
- "end": 339.55,
- "word": "because",
- "punct": "because",
- "index": 804
- },
- {
- "start": 339.58,
- "confidence": 1,
- "end": 339.78,
- "word": "if",
- "punct": "if",
- "index": 805
- },
- {
- "start": 339.78,
- "confidence": 0.62,
- "end": 339.86,
- "word": "we're",
- "punct": "we're",
- "index": 806
- },
- {
- "start": 339.86,
- "confidence": 0.81,
- "end": 340.17,
- "word": "trying",
- "punct": "trying",
- "index": 807
- },
- {
- "start": 340.17,
- "confidence": 0.81,
- "end": 340.29,
- "word": "to",
- "punct": "to",
- "index": 808
- },
- {
- "start": 340.32,
- "confidence": 1,
- "end": 340.94,
- "word": "integrate",
- "punct": "integrate",
- "index": 809
- },
- {
- "start": 340.94,
- "confidence": 0.48,
- "end": 341.41,
- "word": "robots",
- "punct": "robots",
- "index": 810
- },
- {
- "start": 341.41,
- "confidence": 0.48,
- "end": 341.54,
- "word": "into",
- "punct": "into",
- "index": 811
- },
- {
- "start": 341.55,
- "confidence": 0.54,
- "end": 341.7,
- "word": "the",
- "punct": "the",
- "index": 812
- },
- {
- "start": 341.7,
- "confidence": 0.98,
- "end": 342.05,
- "word": "shared",
- "punct": "shared",
- "index": 813
- },
- {
- "start": 342.05,
- "confidence": 0.99,
- "end": 342.68,
- "word": "spaces",
- "punct": "spaces",
- "index": 814
- },
- {
- "start": 342.73,
- "confidence": 1,
- "end": 342.96,
- "word": "need",
- "punct": "need",
- "index": 815
- },
- {
- "start": 342.96,
- "confidence": 1,
- "end": 343.05,
- "word": "to",
- "punct": "to",
- "index": 816
- },
- {
- "start": 343.08,
- "confidence": 1,
- "end": 343.81,
- "word": "understand",
- "punct": "understand",
- "index": 817
- },
- {
- "start": 343.81,
- "confidence": 0.94,
- "end": 343.93,
- "word": "that",
- "punct": "that",
- "index": 818
- },
- {
- "start": 343.93,
- "confidence": 1,
- "end": 344.35,
- "word": "people",
- "punct": "people",
- "index": 819
- },
- {
- "start": 344.37,
- "confidence": 1,
- "end": 344.63,
- "word": "treat",
- "punct": "treat",
- "index": 820
- },
- {
- "start": 344.63,
- "confidence": 1,
- "end": 344.78,
- "word": "them",
- "punct": "them",
- "index": 821
- },
- {
- "start": 344.78,
- "confidence": 1,
- "end": 345.38,
- "word": "differently",
- "punct": "differently",
- "index": 822
- },
- {
- "start": 345.38,
- "confidence": 1,
- "end": 345.53,
- "word": "than",
- "punct": "than",
- "index": 823
- },
- {
- "start": 345.53,
- "confidence": 0.93,
- "end": 345.73,
- "word": "other",
- "punct": "other",
- "index": 824
- },
- {
- "start": 345.74,
- "confidence": 1,
- "end": 346.6,
- "word": "devices",
- "punct": "devices",
- "index": 825
- },
- {
- "start": 347.39,
- "confidence": 0.8,
- "end": 347.64,
- "word": "that",
- "punct": "that",
- "index": 826
- },
- {
- "start": 347.65,
- "confidence": 1,
- "end": 347.77,
- "word": "in",
- "punct": "in",
- "index": 827
- },
- {
- "start": 347.77,
- "confidence": 1,
- "end": 348.08,
- "word": "some",
- "punct": "some",
- "index": 828
- },
- {
- "start": 348.08,
- "confidence": 1,
- "end": 348.94,
- "word": "cases",
- "punct": "cases.",
- "index": 829
- }
- ],
- "start": 337.77
- },
- "entityRanges": [
- {
- "start": 337.77,
- "end": 337.9,
- "confidence": 0.78,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 337.97,
- "end": 338.22,
- "confidence": 1,
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 338.22,
- "end": 339,
- "confidence": 1,
- "text": "matters",
- "offset": 9,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.03,
- "end": 339.55,
- "confidence": 1,
- "text": "because",
- "offset": 17,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.58,
- "end": 339.78,
- "confidence": 1,
- "text": "if",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.78,
- "end": 339.86,
- "confidence": 0.62,
- "text": "we're",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 339.86,
- "end": 340.17,
- "confidence": 0.81,
- "text": "trying",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 340.17,
- "end": 340.29,
- "confidence": 0.81,
- "text": "to",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 340.32,
- "end": 340.94,
- "confidence": 1,
- "text": "integrate",
- "offset": 44,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 340.94,
- "end": 341.41,
- "confidence": 0.48,
- "text": "robots",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 341.41,
- "end": 341.54,
- "confidence": 0.48,
- "text": "into",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 341.55,
- "end": 341.7,
- "confidence": 0.54,
- "text": "the",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 341.7,
- "end": 342.05,
- "confidence": 0.98,
- "text": "shared",
- "offset": 70,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 342.05,
- "end": 342.68,
- "confidence": 0.99,
- "text": "spaces",
- "offset": 77,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 342.73,
- "end": 342.96,
- "confidence": 1,
- "text": "need",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 342.96,
- "end": 343.05,
- "confidence": 1,
- "text": "to",
- "offset": 89,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 343.08,
- "end": 343.81,
- "confidence": 1,
- "text": "understand",
- "offset": 92,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 343.81,
- "end": 343.93,
- "confidence": 0.94,
- "text": "that",
- "offset": 103,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 343.93,
- "end": 344.35,
- "confidence": 1,
- "text": "people",
- "offset": 108,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 344.37,
- "end": 344.63,
- "confidence": 1,
- "text": "treat",
- "offset": 115,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 344.63,
- "end": 344.78,
- "confidence": 1,
- "text": "them",
- "offset": 121,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 344.78,
- "end": 345.38,
- "confidence": 1,
- "text": "differently",
- "offset": 126,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 345.38,
- "end": 345.53,
- "confidence": 1,
- "text": "than",
- "offset": 138,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 345.53,
- "end": 345.73,
- "confidence": 0.93,
- "text": "other",
- "offset": 143,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 345.74,
- "end": 346.6,
- "confidence": 1,
- "text": "devices",
- "offset": 149,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 347.39,
- "end": 347.64,
- "confidence": 0.8,
- "text": "that",
- "offset": 157,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 347.65,
- "end": 347.77,
- "confidence": 1,
- "text": "in",
- "offset": 162,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 347.77,
- "end": 348.08,
- "confidence": 1,
- "text": "some",
- "offset": 165,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 348.08,
- "end": 348.94,
- "confidence": 1,
- "text": "cases.",
- "offset": 170,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example, the case of a soldier who becomes emotionally attached to the robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 63",
- "words": [
- {
- "start": 349.19,
- "confidence": 1,
- "end": 349.36,
- "word": "for",
- "punct": "For",
- "index": 830
- },
- {
- "start": 349.36,
- "confidence": 1,
- "end": 349.98,
- "word": "example",
- "punct": "example,",
- "index": 831
- },
- {
- "start": 349.98,
- "confidence": 0.99,
- "end": 350.1,
- "word": "the",
- "punct": "the",
- "index": 832
- },
- {
- "start": 350.1,
- "confidence": 0.96,
- "end": 350.39,
- "word": "case",
- "punct": "case",
- "index": 833
- },
- {
- "start": 350.39,
- "confidence": 0.99,
- "end": 350.47,
- "word": "of",
- "punct": "of",
- "index": 834
- },
- {
- "start": 350.47,
- "confidence": 0.97,
- "end": 350.53,
- "word": "a",
- "punct": "a",
- "index": 835
- },
- {
- "start": 350.53,
- "confidence": 0.99,
- "end": 351.02,
- "word": "soldier",
- "punct": "soldier",
- "index": 836
- },
- {
- "start": 351.02,
- "confidence": 0.59,
- "end": 351.08,
- "word": "who",
- "punct": "who",
- "index": 837
- },
- {
- "start": 351.09,
- "confidence": 1,
- "end": 351.42,
- "word": "becomes",
- "punct": "becomes",
- "index": 838
- },
- {
- "start": 351.42,
- "confidence": 1,
- "end": 351.99,
- "word": "emotionally",
- "punct": "emotionally",
- "index": 839
- },
- {
- "start": 351.99,
- "confidence": 1,
- "end": 352.52,
- "word": "attached",
- "punct": "attached",
- "index": 840
- },
- {
- "start": 352.52,
- "confidence": 1,
- "end": 352.62,
- "word": "to",
- "punct": "to",
- "index": 841
- },
- {
- "start": 352.62,
- "confidence": 0.96,
- "end": 352.75,
- "word": "the",
- "punct": "the",
- "index": 842
- },
- {
- "start": 352.75,
- "confidence": 0.9,
- "end": 353.1,
- "word": "robot",
- "punct": "robot.",
- "index": 843
- }
- ],
- "start": 349.19
- },
- "entityRanges": [
- {
- "start": 349.19,
- "end": 349.36,
- "confidence": 1,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 349.36,
- "end": 349.98,
- "confidence": 1,
- "text": "example,",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 349.98,
- "end": 350.1,
- "confidence": 0.99,
- "text": "the",
- "offset": 13,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.1,
- "end": 350.39,
- "confidence": 0.96,
- "text": "case",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.39,
- "end": 350.47,
- "confidence": 0.99,
- "text": "of",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.47,
- "end": 350.53,
- "confidence": 0.97,
- "text": "a",
- "offset": 25,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 350.53,
- "end": 351.02,
- "confidence": 0.99,
- "text": "soldier",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.02,
- "end": 351.08,
- "confidence": 0.59,
- "text": "who",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.09,
- "end": 351.42,
- "confidence": 1,
- "text": "becomes",
- "offset": 39,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.42,
- "end": 351.99,
- "confidence": 1,
- "text": "emotionally",
- "offset": 47,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 351.99,
- "end": 352.52,
- "confidence": 1,
- "text": "attached",
- "offset": 59,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.52,
- "end": 352.62,
- "confidence": 1,
- "text": "to",
- "offset": 68,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.62,
- "end": 352.75,
- "confidence": 0.96,
- "text": "the",
- "offset": 71,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 352.75,
- "end": 353.1,
- "confidence": 0.9,
- "text": "robot.",
- "offset": 75,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They work.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 64",
- "words": [
- {
- "start": 353.14,
- "confidence": 1,
- "end": 353.34,
- "word": "they",
- "punct": "They",
- "index": 844
- },
- {
- "start": 353.34,
- "confidence": 0.83,
- "end": 353.59,
- "word": "work",
- "punct": "work.",
- "index": 845
- }
- ],
- "start": 353.14
- },
- "entityRanges": [
- {
- "start": 353.14,
- "end": 353.34,
- "confidence": 1,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 353.34,
- "end": 353.59,
- "confidence": 0.83,
- "text": "work.",
- "offset": 5,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Well, if that can be anything from inefficient to dangerous.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 65",
- "words": [
- {
- "start": 353.61,
- "confidence": 0.52,
- "end": 353.81,
- "word": "well",
- "punct": "Well,",
- "index": 846
- },
- {
- "start": 353.84,
- "confidence": 0.87,
- "end": 354.41,
- "word": "if",
- "punct": "if",
- "index": 847
- },
- {
- "start": 354.45,
- "confidence": 0.88,
- "end": 354.64,
- "word": "that",
- "punct": "that",
- "index": 848
- },
- {
- "start": 354.65,
- "confidence": 0.98,
- "end": 354.8,
- "word": "can",
- "punct": "can",
- "index": 849
- },
- {
- "start": 354.8,
- "confidence": 1,
- "end": 354.92,
- "word": "be",
- "punct": "be",
- "index": 850
- },
- {
- "start": 354.95,
- "confidence": 1,
- "end": 355.31,
- "word": "anything",
- "punct": "anything",
- "index": 851
- },
- {
- "start": 355.31,
- "confidence": 0.99,
- "end": 355.46,
- "word": "from",
- "punct": "from",
- "index": 852
- },
- {
- "start": 355.49,
- "confidence": 0.74,
- "end": 355.93,
- "word": "inefficient",
- "punct": "inefficient",
- "index": 853
- },
- {
- "start": 355.96,
- "confidence": 0.39,
- "end": 356.12,
- "word": "to",
- "punct": "to",
- "index": 854
- },
- {
- "start": 356.14,
- "confidence": 1,
- "end": 356.98,
- "word": "dangerous",
- "punct": "dangerous.",
- "index": 855
- }
- ],
- "start": 353.61
- },
- "entityRanges": [
- {
- "start": 353.61,
- "end": 353.81,
- "confidence": 0.52,
- "text": "Well,",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 353.84,
- "end": 354.41,
- "confidence": 0.87,
- "text": "if",
- "offset": 6,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.45,
- "end": 354.64,
- "confidence": 0.88,
- "text": "that",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.65,
- "end": 354.8,
- "confidence": 0.98,
- "text": "can",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.8,
- "end": 354.92,
- "confidence": 1,
- "text": "be",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 354.95,
- "end": 355.31,
- "confidence": 1,
- "text": "anything",
- "offset": 21,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 355.31,
- "end": 355.46,
- "confidence": 0.99,
- "text": "from",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 355.49,
- "end": 355.93,
- "confidence": 0.74,
- "text": "inefficient",
- "offset": 35,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 355.96,
- "end": 356.12,
- "confidence": 0.39,
- "text": "to",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 356.14,
- "end": 356.98,
- "confidence": 1,
- "text": "dangerous.",
- "offset": 50,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But in other cases.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 66",
- "words": [
- {
- "start": 358.5,
- "confidence": 0.86,
- "end": 358.63,
- "word": "but",
- "punct": "But",
- "index": 856
- },
- {
- "start": 358.67,
- "confidence": 1,
- "end": 358.8,
- "word": "in",
- "punct": "in",
- "index": 857
- },
- {
- "start": 358.8,
- "confidence": 1,
- "end": 359.02,
- "word": "other",
- "punct": "other",
- "index": 858
- },
- {
- "start": 359.02,
- "confidence": 1,
- "end": 359.43,
- "word": "cases",
- "punct": "cases.",
- "index": 859
- }
- ],
- "start": 358.5
- },
- "entityRanges": [
- {
- "start": 358.5,
- "end": 358.63,
- "confidence": 0.86,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 358.67,
- "end": 358.8,
- "confidence": 1,
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 358.8,
- "end": 359.02,
- "confidence": 1,
- "text": "other",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.02,
- "end": 359.43,
- "confidence": 1,
- "text": "cases.",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It can actually be used for the faster this emotional connection to, but we're really seeing some great use cases.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 67",
- "words": [
- {
- "start": 359.43,
- "confidence": 0.86,
- "end": 359.49,
- "word": "it",
- "punct": "It",
- "index": 860
- },
- {
- "start": 359.49,
- "confidence": 1,
- "end": 359.63,
- "word": "can",
- "punct": "can",
- "index": 861
- },
- {
- "start": 359.63,
- "confidence": 1,
- "end": 359.94,
- "word": "actually",
- "punct": "actually",
- "index": 862
- },
- {
- "start": 359.94,
- "confidence": 1,
- "end": 360.16,
- "word": "be",
- "punct": "be",
- "index": 863
- },
- {
- "start": 360.16,
- "confidence": 0.85,
- "end": 360.49,
- "word": "used",
- "punct": "used",
- "index": 864
- },
- {
- "start": 360.49,
- "confidence": 0.85,
- "end": 360.67,
- "word": "for",
- "punct": "for",
- "index": 865
- },
- {
- "start": 360.68,
- "confidence": 0.95,
- "end": 360.77,
- "word": "the",
- "punct": "the",
- "index": 866
- },
- {
- "start": 360.77,
- "confidence": 0.98,
- "end": 361.34,
- "word": "faster",
- "punct": "faster",
- "index": 867
- },
- {
- "start": 361.35,
- "confidence": 0.62,
- "end": 361.51,
- "word": "this",
- "punct": "this",
- "index": 868
- },
- {
- "start": 361.51,
- "confidence": 1,
- "end": 361.92,
- "word": "emotional",
- "punct": "emotional",
- "index": 869
- },
- {
- "start": 361.92,
- "confidence": 1,
- "end": 362.45,
- "word": "connection",
- "punct": "connection",
- "index": 870
- },
- {
- "start": 362.45,
- "confidence": 1,
- "end": 362.56,
- "word": "to",
- "punct": "to,",
- "index": 871
- },
- {
- "start": 362.61,
- "confidence": 0.89,
- "end": 363.28,
- "word": "but",
- "punct": "but",
- "index": 872
- },
- {
- "start": 364.16,
- "confidence": 0.87,
- "end": 364.38,
- "word": "we're",
- "punct": "we're",
- "index": 873
- },
- {
- "start": 364.38,
- "confidence": 0.9,
- "end": 364.63,
- "word": "really",
- "punct": "really",
- "index": 874
- },
- {
- "start": 364.63,
- "confidence": 0.87,
- "end": 364.96,
- "word": "seeing",
- "punct": "seeing",
- "index": 875
- },
- {
- "start": 364.96,
- "confidence": 1,
- "end": 365.15,
- "word": "some",
- "punct": "some",
- "index": 876
- },
- {
- "start": 365.15,
- "confidence": 1,
- "end": 365.5,
- "word": "great",
- "punct": "great",
- "index": 877
- },
- {
- "start": 365.5,
- "confidence": 0.89,
- "end": 365.75,
- "word": "use",
- "punct": "use",
- "index": 878
- },
- {
- "start": 365.75,
- "confidence": 0.82,
- "end": 366.26,
- "word": "cases",
- "punct": "cases.",
- "index": 879
- }
- ],
- "start": 359.43
- },
- "entityRanges": [
- {
- "start": 359.43,
- "end": 359.49,
- "confidence": 0.86,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.49,
- "end": 359.63,
- "confidence": 1,
- "text": "can",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.63,
- "end": 359.94,
- "confidence": 1,
- "text": "actually",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 359.94,
- "end": 360.16,
- "confidence": 1,
- "text": "be",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.16,
- "end": 360.49,
- "confidence": 0.85,
- "text": "used",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.49,
- "end": 360.67,
- "confidence": 0.85,
- "text": "for",
- "offset": 24,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.68,
- "end": 360.77,
- "confidence": 0.95,
- "text": "the",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 360.77,
- "end": 361.34,
- "confidence": 0.98,
- "text": "faster",
- "offset": 32,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 361.35,
- "end": 361.51,
- "confidence": 0.62,
- "text": "this",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 361.51,
- "end": 361.92,
- "confidence": 1,
- "text": "emotional",
- "offset": 44,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 361.92,
- "end": 362.45,
- "confidence": 1,
- "text": "connection",
- "offset": 54,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 362.45,
- "end": 362.56,
- "confidence": 1,
- "text": "to,",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 362.61,
- "end": 363.28,
- "confidence": 0.89,
- "text": "but",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.16,
- "end": 364.38,
- "confidence": 0.87,
- "text": "we're",
- "offset": 73,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.38,
- "end": 364.63,
- "confidence": 0.9,
- "text": "really",
- "offset": 79,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.63,
- "end": 364.96,
- "confidence": 0.87,
- "text": "seeing",
- "offset": 86,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 364.96,
- "end": 365.15,
- "confidence": 1,
- "text": "some",
- "offset": 93,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 365.15,
- "end": 365.5,
- "confidence": 1,
- "text": "great",
- "offset": 98,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 365.5,
- "end": 365.75,
- "confidence": 0.89,
- "text": "use",
- "offset": 104,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 365.75,
- "end": 366.26,
- "confidence": 0.82,
- "text": "cases.",
- "offset": 108,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example, robots working with autistic children to engage them in ways that we haven't seen previously robot's working with teachers to engage kids and learning with new results and it's not just for kids early studies show that we can help doctors and patients and health care settings and this is the pirate b.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 68",
- "words": [
- {
- "start": 366.26,
- "confidence": 1,
- "end": 366.38,
- "word": "for",
- "punct": "For",
- "index": 880
- },
- {
- "start": 366.38,
- "confidence": 1,
- "end": 366.87,
- "word": "example",
- "punct": "example,",
- "index": 881
- },
- {
- "start": 366.87,
- "confidence": 0.53,
- "end": 367.29,
- "word": "robots",
- "punct": "robots",
- "index": 882
- },
- {
- "start": 367.29,
- "confidence": 1,
- "end": 367.59,
- "word": "working",
- "punct": "working",
- "index": 883
- },
- {
- "start": 367.59,
- "confidence": 1,
- "end": 367.78,
- "word": "with",
- "punct": "with",
- "index": 884
- },
- {
- "start": 367.81,
- "confidence": 0.62,
- "end": 368.41,
- "word": "autistic",
- "punct": "autistic",
- "index": 885
- },
- {
- "start": 368.41,
- "confidence": 1,
- "end": 368.95,
- "word": "children",
- "punct": "children",
- "index": 886
- },
- {
- "start": 368.95,
- "confidence": 1,
- "end": 369.1,
- "word": "to",
- "punct": "to",
- "index": 887
- },
- {
- "start": 369.13,
- "confidence": 1,
- "end": 369.67,
- "word": "engage",
- "punct": "engage",
- "index": 888
- },
- {
- "start": 369.67,
- "confidence": 1,
- "end": 369.93,
- "word": "them",
- "punct": "them",
- "index": 889
- },
- {
- "start": 369.93,
- "confidence": 1,
- "end": 370.1,
- "word": "in",
- "punct": "in",
- "index": 890
- },
- {
- "start": 370.1,
- "confidence": 0.99,
- "end": 370.39,
- "word": "ways",
- "punct": "ways",
- "index": 891
- },
- {
- "start": 370.39,
- "confidence": 0.97,
- "end": 370.48,
- "word": "that",
- "punct": "that",
- "index": 892
- },
- {
- "start": 370.48,
- "confidence": 1,
- "end": 370.58,
- "word": "we",
- "punct": "we",
- "index": 893
- },
- {
- "start": 370.58,
- "confidence": 1,
- "end": 370.96,
- "word": "haven't",
- "punct": "haven't",
- "index": 894
- },
- {
- "start": 370.96,
- "confidence": 1,
- "end": 371.18,
- "word": "seen",
- "punct": "seen",
- "index": 895
- },
- {
- "start": 371.18,
- "confidence": 1,
- "end": 372.03,
- "word": "previously",
- "punct": "previously",
- "index": 896
- },
- {
- "start": 372.7,
- "confidence": 0.36,
- "end": 373.1,
- "word": "robot's",
- "punct": "robot's",
- "index": 897
- },
- {
- "start": 373.17,
- "confidence": 1,
- "end": 373.51,
- "word": "working",
- "punct": "working",
- "index": 898
- },
- {
- "start": 373.51,
- "confidence": 0.62,
- "end": 373.64,
- "word": "with",
- "punct": "with",
- "index": 899
- },
- {
- "start": 373.64,
- "confidence": 0.97,
- "end": 374.23,
- "word": "teachers",
- "punct": "teachers",
- "index": 900
- },
- {
- "start": 374.23,
- "confidence": 1,
- "end": 374.35,
- "word": "to",
- "punct": "to",
- "index": 901
- },
- {
- "start": 374.35,
- "confidence": 1,
- "end": 374.75,
- "word": "engage",
- "punct": "engage",
- "index": 902
- },
- {
- "start": 374.75,
- "confidence": 0.99,
- "end": 375.03,
- "word": "kids",
- "punct": "kids",
- "index": 903
- },
- {
- "start": 375.03,
- "confidence": 0.53,
- "end": 375.21,
- "word": "and",
- "punct": "and",
- "index": 904
- },
- {
- "start": 375.2,
- "confidence": 0.26,
- "end": 375.55,
- "word": "learning",
- "punct": "learning",
- "index": 905
- },
- {
- "start": 375.61,
- "confidence": 0.91,
- "end": 375.76,
- "word": "with",
- "punct": "with",
- "index": 906
- },
- {
- "start": 375.76,
- "confidence": 0.41,
- "end": 375.89,
- "word": "new",
- "punct": "new",
- "index": 907
- },
- {
- "start": 375.89,
- "confidence": 1,
- "end": 376.65,
- "word": "results",
- "punct": "results",
- "index": 908
- },
- {
- "start": 377.34,
- "confidence": 0.82,
- "end": 377.45,
- "word": "and",
- "punct": "and",
- "index": 909
- },
- {
- "start": 377.52,
- "confidence": 0.99,
- "end": 377.7,
- "word": "it's",
- "punct": "it's",
- "index": 910
- },
- {
- "start": 377.7,
- "confidence": 1,
- "end": 377.88,
- "word": "not",
- "punct": "not",
- "index": 911
- },
- {
- "start": 377.88,
- "confidence": 1,
- "end": 378.07,
- "word": "just",
- "punct": "just",
- "index": 912
- },
- {
- "start": 378.07,
- "confidence": 1,
- "end": 378.18,
- "word": "for",
- "punct": "for",
- "index": 913
- },
- {
- "start": 378.18,
- "confidence": 0.99,
- "end": 378.87,
- "word": "kids",
- "punct": "kids",
- "index": 914
- },
- {
- "start": 379.75,
- "confidence": 0.78,
- "end": 380.04,
- "word": "early",
- "punct": "early",
- "index": 915
- },
- {
- "start": 380.04,
- "confidence": 0.99,
- "end": 380.42,
- "word": "studies",
- "punct": "studies",
- "index": 916
- },
- {
- "start": 380.42,
- "confidence": 1,
- "end": 380.74,
- "word": "show",
- "punct": "show",
- "index": 917
- },
- {
- "start": 380.74,
- "confidence": 1,
- "end": 381.05,
- "word": "that",
- "punct": "that",
- "index": 918
- },
- {
- "start": 381.07,
- "confidence": 0.39,
- "end": 381.26,
- "word": "we",
- "punct": "we",
- "index": 919
- },
- {
- "start": 381.38,
- "confidence": 1,
- "end": 381.54,
- "word": "can",
- "punct": "can",
- "index": 920
- },
- {
- "start": 381.54,
- "confidence": 1,
- "end": 381.75,
- "word": "help",
- "punct": "help",
- "index": 921
- },
- {
- "start": 381.75,
- "confidence": 1,
- "end": 382.27,
- "word": "doctors",
- "punct": "doctors",
- "index": 922
- },
- {
- "start": 382.27,
- "confidence": 0.91,
- "end": 382.41,
- "word": "and",
- "punct": "and",
- "index": 923
- },
- {
- "start": 382.41,
- "confidence": 0.92,
- "end": 383.01,
- "word": "patients",
- "punct": "patients",
- "index": 924
- },
- {
- "start": 383.01,
- "confidence": 0.7,
- "end": 383.07,
- "word": "and",
- "punct": "and",
- "index": 925
- },
- {
- "start": 383.07,
- "confidence": 0.83,
- "end": 383.37,
- "word": "health",
- "punct": "health",
- "index": 926
- },
- {
- "start": 383.38,
- "confidence": 0.83,
- "end": 383.66,
- "word": "care",
- "punct": "care",
- "index": 927
- },
- {
- "start": 383.66,
- "confidence": 1,
- "end": 384.4,
- "word": "settings",
- "punct": "settings",
- "index": 928
- },
- {
- "start": 384.94,
- "confidence": 0.65,
- "end": 385,
- "word": "and",
- "punct": "and",
- "index": 929
- },
- {
- "start": 385.54,
- "confidence": 1,
- "end": 385.74,
- "word": "this",
- "punct": "this",
- "index": 930
- },
- {
- "start": 385.74,
- "confidence": 1,
- "end": 385.9,
- "word": "is",
- "punct": "is",
- "index": 931
- },
- {
- "start": 385.9,
- "confidence": 0.98,
- "end": 385.98,
- "word": "the",
- "punct": "the",
- "index": 932
- },
- {
- "start": 385.98,
- "confidence": 0.68,
- "end": 386.41,
- "word": "pirate",
- "punct": "pirate",
- "index": 933
- },
- {
- "start": 386.41,
- "confidence": 0.62,
- "end": 386.59,
- "word": "b.",
- "punct": "b.",
- "index": 934
- }
- ],
- "start": 366.26
- },
- "entityRanges": [
- {
- "start": 366.26,
- "end": 366.38,
- "confidence": 1,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 366.38,
- "end": 366.87,
- "confidence": 1,
- "text": "example,",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 366.87,
- "end": 367.29,
- "confidence": 0.53,
- "text": "robots",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 367.29,
- "end": 367.59,
- "confidence": 1,
- "text": "working",
- "offset": 20,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 367.59,
- "end": 367.78,
- "confidence": 1,
- "text": "with",
- "offset": 28,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 367.81,
- "end": 368.41,
- "confidence": 0.62,
- "text": "autistic",
- "offset": 33,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 368.41,
- "end": 368.95,
- "confidence": 1,
- "text": "children",
- "offset": 42,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 368.95,
- "end": 369.1,
- "confidence": 1,
- "text": "to",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 369.13,
- "end": 369.67,
- "confidence": 1,
- "text": "engage",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 369.67,
- "end": 369.93,
- "confidence": 1,
- "text": "them",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 369.93,
- "end": 370.1,
- "confidence": 1,
- "text": "in",
- "offset": 66,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.1,
- "end": 370.39,
- "confidence": 0.99,
- "text": "ways",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.39,
- "end": 370.48,
- "confidence": 0.97,
- "text": "that",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.48,
- "end": 370.58,
- "confidence": 1,
- "text": "we",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.58,
- "end": 370.96,
- "confidence": 1,
- "text": "haven't",
- "offset": 82,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 370.96,
- "end": 371.18,
- "confidence": 1,
- "text": "seen",
- "offset": 90,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 371.18,
- "end": 372.03,
- "confidence": 1,
- "text": "previously",
- "offset": 95,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 372.7,
- "end": 373.1,
- "confidence": 0.36,
- "text": "robot's",
- "offset": 106,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 373.17,
- "end": 373.51,
- "confidence": 1,
- "text": "working",
- "offset": 114,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 373.51,
- "end": 373.64,
- "confidence": 0.62,
- "text": "with",
- "offset": 122,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 373.64,
- "end": 374.23,
- "confidence": 0.97,
- "text": "teachers",
- "offset": 127,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 374.23,
- "end": 374.35,
- "confidence": 1,
- "text": "to",
- "offset": 136,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 374.35,
- "end": 374.75,
- "confidence": 1,
- "text": "engage",
- "offset": 139,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 374.75,
- "end": 375.03,
- "confidence": 0.99,
- "text": "kids",
- "offset": 146,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.03,
- "end": 375.21,
- "confidence": 0.53,
- "text": "and",
- "offset": 151,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.2,
- "end": 375.55,
- "confidence": 0.26,
- "text": "learning",
- "offset": 155,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.61,
- "end": 375.76,
- "confidence": 0.91,
- "text": "with",
- "offset": 164,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.76,
- "end": 375.89,
- "confidence": 0.41,
- "text": "new",
- "offset": 169,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 375.89,
- "end": 376.65,
- "confidence": 1,
- "text": "results",
- "offset": 173,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.34,
- "end": 377.45,
- "confidence": 0.82,
- "text": "and",
- "offset": 181,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.52,
- "end": 377.7,
- "confidence": 0.99,
- "text": "it's",
- "offset": 185,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.7,
- "end": 377.88,
- "confidence": 1,
- "text": "not",
- "offset": 190,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 377.88,
- "end": 378.07,
- "confidence": 1,
- "text": "just",
- "offset": 194,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 378.07,
- "end": 378.18,
- "confidence": 1,
- "text": "for",
- "offset": 199,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 378.18,
- "end": 378.87,
- "confidence": 0.99,
- "text": "kids",
- "offset": 203,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 379.75,
- "end": 380.04,
- "confidence": 0.78,
- "text": "early",
- "offset": 208,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 380.04,
- "end": 380.42,
- "confidence": 0.99,
- "text": "studies",
- "offset": 214,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 380.42,
- "end": 380.74,
- "confidence": 1,
- "text": "show",
- "offset": 222,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 380.74,
- "end": 381.05,
- "confidence": 1,
- "text": "that",
- "offset": 227,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.07,
- "end": 381.26,
- "confidence": 0.39,
- "text": "we",
- "offset": 232,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.38,
- "end": 381.54,
- "confidence": 1,
- "text": "can",
- "offset": 235,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.54,
- "end": 381.75,
- "confidence": 1,
- "text": "help",
- "offset": 239,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 381.75,
- "end": 382.27,
- "confidence": 1,
- "text": "doctors",
- "offset": 244,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 382.27,
- "end": 382.41,
- "confidence": 0.91,
- "text": "and",
- "offset": 252,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 382.41,
- "end": 383.01,
- "confidence": 0.92,
- "text": "patients",
- "offset": 256,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.01,
- "end": 383.07,
- "confidence": 0.7,
- "text": "and",
- "offset": 265,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.07,
- "end": 383.37,
- "confidence": 0.83,
- "text": "health",
- "offset": 269,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.38,
- "end": 383.66,
- "confidence": 0.83,
- "text": "care",
- "offset": 276,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 383.66,
- "end": 384.4,
- "confidence": 1,
- "text": "settings",
- "offset": 281,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 384.94,
- "end": 385,
- "confidence": 0.65,
- "text": "and",
- "offset": 290,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.54,
- "end": 385.74,
- "confidence": 1,
- "text": "this",
- "offset": 294,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.74,
- "end": 385.9,
- "confidence": 1,
- "text": "is",
- "offset": 299,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.9,
- "end": 385.98,
- "confidence": 0.98,
- "text": "the",
- "offset": 302,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 385.98,
- "end": 386.41,
- "confidence": 0.68,
- "text": "pirate",
- "offset": 306,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 386.41,
- "end": 386.59,
- "confidence": 0.62,
- "text": "b.",
- "offset": 313,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "b.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 69",
- "words": [
- {
- "start": 386.59,
- "confidence": 0.62,
- "end": 386.76,
- "word": "b.",
- "punct": "b.",
- "index": 935
- }
- ],
- "start": 386.59
- },
- "entityRanges": [
- {
- "start": 386.59,
- "end": 386.76,
- "confidence": 0.62,
- "text": "b.",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "c.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 70",
- "words": [
- {
- "start": 386.76,
- "confidence": 0.62,
- "end": 386.91,
- "word": "c.",
- "punct": "c.",
- "index": 936
- }
- ],
- "start": 386.76
- },
- "entityRanges": [
- {
- "start": 386.76,
- "end": 386.91,
- "confidence": 0.62,
- "text": "c.",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But it's used in nursing homes with dementia patients has been around for a while I remember years ago.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 71",
- "words": [
- {
- "start": 387.01,
- "confidence": 0.54,
- "end": 387.33,
- "word": "but",
- "punct": "But",
- "index": 937
- },
- {
- "start": 387.36,
- "confidence": 0.64,
- "end": 387.56,
- "word": "it's",
- "punct": "it's",
- "index": 938
- },
- {
- "start": 387.56,
- "confidence": 1,
- "end": 387.9,
- "word": "used",
- "punct": "used",
- "index": 939
- },
- {
- "start": 387.93,
- "confidence": 1,
- "end": 388.05,
- "word": "in",
- "punct": "in",
- "index": 940
- },
- {
- "start": 388.05,
- "confidence": 1,
- "end": 388.47,
- "word": "nursing",
- "punct": "nursing",
- "index": 941
- },
- {
- "start": 388.47,
- "confidence": 0.88,
- "end": 388.94,
- "word": "homes",
- "punct": "homes",
- "index": 942
- },
- {
- "start": 388.97,
- "confidence": 1,
- "end": 389.16,
- "word": "with",
- "punct": "with",
- "index": 943
- },
- {
- "start": 389.16,
- "confidence": 1,
- "end": 389.63,
- "word": "dementia",
- "punct": "dementia",
- "index": 944
- },
- {
- "start": 389.63,
- "confidence": 0.72,
- "end": 390.37,
- "word": "patients",
- "punct": "patients",
- "index": 945
- },
- {
- "start": 390.53,
- "confidence": 0.59,
- "end": 390.66,
- "word": "has",
- "punct": "has",
- "index": 946
- },
- {
- "start": 390.65,
- "confidence": 0.99,
- "end": 390.78,
- "word": "been",
- "punct": "been",
- "index": 947
- },
- {
- "start": 390.78,
- "confidence": 1,
- "end": 391.08,
- "word": "around",
- "punct": "around",
- "index": 948
- },
- {
- "start": 391.08,
- "confidence": 1,
- "end": 391.22,
- "word": "for",
- "punct": "for",
- "index": 949
- },
- {
- "start": 391.22,
- "confidence": 1,
- "end": 391.31,
- "word": "a",
- "punct": "a",
- "index": 950
- },
- {
- "start": 391.31,
- "confidence": 1,
- "end": 391.83,
- "word": "while",
- "punct": "while",
- "index": 951
- },
- {
- "start": 392.3,
- "confidence": 0.97,
- "end": 392.47,
- "word": "i",
- "punct": "I",
- "index": 952
- },
- {
- "start": 392.48,
- "confidence": 1,
- "end": 393.08,
- "word": "remember",
- "punct": "remember",
- "index": 953
- },
- {
- "start": 393.37,
- "confidence": 1,
- "end": 393.81,
- "word": "years",
- "punct": "years",
- "index": 954
- },
- {
- "start": 393.81,
- "confidence": 1,
- "end": 394.06,
- "word": "ago",
- "punct": "ago.",
- "index": 955
- }
- ],
- "start": 387.01
- },
- "entityRanges": [
- {
- "start": 387.01,
- "end": 387.33,
- "confidence": 0.54,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.36,
- "end": 387.56,
- "confidence": 0.64,
- "text": "it's",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.56,
- "end": 387.9,
- "confidence": 1,
- "text": "used",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 387.93,
- "end": 388.05,
- "confidence": 1,
- "text": "in",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.05,
- "end": 388.47,
- "confidence": 1,
- "text": "nursing",
- "offset": 17,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.47,
- "end": 388.94,
- "confidence": 0.88,
- "text": "homes",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 388.97,
- "end": 389.16,
- "confidence": 1,
- "text": "with",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 389.16,
- "end": 389.63,
- "confidence": 1,
- "text": "dementia",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 389.63,
- "end": 390.37,
- "confidence": 0.72,
- "text": "patients",
- "offset": 45,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 390.53,
- "end": 390.66,
- "confidence": 0.59,
- "text": "has",
- "offset": 54,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 390.65,
- "end": 390.78,
- "confidence": 0.99,
- "text": "been",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 390.78,
- "end": 391.08,
- "confidence": 1,
- "text": "around",
- "offset": 63,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 391.08,
- "end": 391.22,
- "confidence": 1,
- "text": "for",
- "offset": 70,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 391.22,
- "end": 391.31,
- "confidence": 1,
- "text": "a",
- "offset": 74,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 391.31,
- "end": 391.83,
- "confidence": 1,
- "text": "while",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 392.3,
- "end": 392.47,
- "confidence": 0.97,
- "text": "I",
- "offset": 82,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 392.48,
- "end": 393.08,
- "confidence": 1,
- "text": "remember",
- "offset": 84,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 393.37,
- "end": 393.81,
- "confidence": 1,
- "text": "years",
- "offset": 93,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 393.81,
- "end": 394.06,
- "confidence": 1,
- "text": "ago.",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Being a party and telling someone about this throwback and her response was on my cart.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 72",
- "words": [
- {
- "start": 394.06,
- "confidence": 0.98,
- "end": 394.25,
- "word": "being",
- "punct": "Being",
- "index": 956
- },
- {
- "start": 394.28,
- "confidence": 0.99,
- "end": 394.37,
- "word": "a",
- "punct": "a",
- "index": 957
- },
- {
- "start": 394.37,
- "confidence": 1,
- "end": 395.1,
- "word": "party",
- "punct": "party",
- "index": 958
- },
- {
- "start": 395.59,
- "confidence": 0.88,
- "end": 395.73,
- "word": "and",
- "punct": "and",
- "index": 959
- },
- {
- "start": 395.75,
- "confidence": 1,
- "end": 396.19,
- "word": "telling",
- "punct": "telling",
- "index": 960
- },
- {
- "start": 396.19,
- "confidence": 1,
- "end": 396.44,
- "word": "someone",
- "punct": "someone",
- "index": 961
- },
- {
- "start": 396.44,
- "confidence": 1,
- "end": 396.7,
- "word": "about",
- "punct": "about",
- "index": 962
- },
- {
- "start": 396.7,
- "confidence": 0.39,
- "end": 396.81,
- "word": "this",
- "punct": "this",
- "index": 963
- },
- {
- "start": 396.84,
- "confidence": 0.56,
- "end": 397.34,
- "word": "throwback",
- "punct": "throwback",
- "index": 964
- },
- {
- "start": 397.78,
- "confidence": 0.42,
- "end": 397.97,
- "word": "and",
- "punct": "and",
- "index": 965
- },
- {
- "start": 398.32,
- "confidence": 1,
- "end": 398.54,
- "word": "her",
- "punct": "her",
- "index": 966
- },
- {
- "start": 398.54,
- "confidence": 1,
- "end": 399.06,
- "word": "response",
- "punct": "response",
- "index": 967
- },
- {
- "start": 399.06,
- "confidence": 1,
- "end": 399.65,
- "word": "was",
- "punct": "was",
- "index": 968
- },
- {
- "start": 400.28,
- "confidence": 0.83,
- "end": 400.5,
- "word": "on",
- "punct": "on",
- "index": 969
- },
- {
- "start": 400.5,
- "confidence": 0.71,
- "end": 400.63,
- "word": "my",
- "punct": "my",
- "index": 970
- },
- {
- "start": 400.64,
- "confidence": 0.85,
- "end": 401.24,
- "word": "cart",
- "punct": "cart.",
- "index": 971
- }
- ],
- "start": 394.06
- },
- "entityRanges": [
- {
- "start": 394.06,
- "end": 394.25,
- "confidence": 0.98,
- "text": "Being",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 394.28,
- "end": 394.37,
- "confidence": 0.99,
- "text": "a",
- "offset": 6,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 394.37,
- "end": 395.1,
- "confidence": 1,
- "text": "party",
- "offset": 8,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 395.59,
- "end": 395.73,
- "confidence": 0.88,
- "text": "and",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 395.75,
- "end": 396.19,
- "confidence": 1,
- "text": "telling",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.19,
- "end": 396.44,
- "confidence": 1,
- "text": "someone",
- "offset": 26,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.44,
- "end": 396.7,
- "confidence": 1,
- "text": "about",
- "offset": 34,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.7,
- "end": 396.81,
- "confidence": 0.39,
- "text": "this",
- "offset": 40,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 396.84,
- "end": 397.34,
- "confidence": 0.56,
- "text": "throwback",
- "offset": 45,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 397.78,
- "end": 397.97,
- "confidence": 0.42,
- "text": "and",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 398.32,
- "end": 398.54,
- "confidence": 1,
- "text": "her",
- "offset": 59,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 398.54,
- "end": 399.06,
- "confidence": 1,
- "text": "response",
- "offset": 63,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 399.06,
- "end": 399.65,
- "confidence": 1,
- "text": "was",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 400.28,
- "end": 400.5,
- "confidence": 0.83,
- "text": "on",
- "offset": 76,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 400.5,
- "end": 400.63,
- "confidence": 0.71,
- "text": "my",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 400.64,
- "end": 401.24,
- "confidence": 0.85,
- "text": "cart.",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I can't believe we're giving people robots instead of human care.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 73",
- "words": [
- {
- "start": 405.04,
- "confidence": 0.93,
- "end": 405.11,
- "word": "i",
- "punct": "I",
- "index": 972
- },
- {
- "start": 405.13,
- "confidence": 1,
- "end": 405.45,
- "word": "can't",
- "punct": "can't",
- "index": 973
- },
- {
- "start": 405.45,
- "confidence": 1,
- "end": 405.78,
- "word": "believe",
- "punct": "believe",
- "index": 974
- },
- {
- "start": 405.78,
- "confidence": 0.44,
- "end": 405.89,
- "word": "we're",
- "punct": "we're",
- "index": 975
- },
- {
- "start": 405.89,
- "confidence": 1,
- "end": 406.17,
- "word": "giving",
- "punct": "giving",
- "index": 976
- },
- {
- "start": 406.17,
- "confidence": 1,
- "end": 406.5,
- "word": "people",
- "punct": "people",
- "index": 977
- },
- {
- "start": 406.51,
- "confidence": 0.93,
- "end": 407.09,
- "word": "robots",
- "punct": "robots",
- "index": 978
- },
- {
- "start": 407.11,
- "confidence": 1,
- "end": 407.45,
- "word": "instead",
- "punct": "instead",
- "index": 979
- },
- {
- "start": 407.45,
- "confidence": 1,
- "end": 407.54,
- "word": "of",
- "punct": "of",
- "index": 980
- },
- {
- "start": 407.54,
- "confidence": 1,
- "end": 407.89,
- "word": "human",
- "punct": "human",
- "index": 981
- },
- {
- "start": 407.89,
- "confidence": 1,
- "end": 408.49,
- "word": "care",
- "punct": "care.",
- "index": 982
- }
- ],
- "start": 405.04
- },
- "entityRanges": [
- {
- "start": 405.04,
- "end": 405.11,
- "confidence": 0.93,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.13,
- "end": 405.45,
- "confidence": 1,
- "text": "can't",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.45,
- "end": 405.78,
- "confidence": 1,
- "text": "believe",
- "offset": 8,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.78,
- "end": 405.89,
- "confidence": 0.44,
- "text": "we're",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 405.89,
- "end": 406.17,
- "confidence": 1,
- "text": "giving",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 406.17,
- "end": 406.5,
- "confidence": 1,
- "text": "people",
- "offset": 29,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 406.51,
- "end": 407.09,
- "confidence": 0.93,
- "text": "robots",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.11,
- "end": 407.45,
- "confidence": 1,
- "text": "instead",
- "offset": 43,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.45,
- "end": 407.54,
- "confidence": 1,
- "text": "of",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.54,
- "end": 407.89,
- "confidence": 1,
- "text": "human",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 407.89,
- "end": 408.49,
- "confidence": 1,
- "text": "care.",
- "offset": 60,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And this is a really common response and I think it's absolutely correct because that would be terrible.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 74",
- "words": [
- {
- "start": 410.45,
- "confidence": 0.54,
- "end": 410.53,
- "word": "and",
- "punct": "And",
- "index": 983
- },
- {
- "start": 410.64,
- "confidence": 1,
- "end": 410.83,
- "word": "this",
- "punct": "this",
- "index": 984
- },
- {
- "start": 410.83,
- "confidence": 1,
- "end": 410.94,
- "word": "is",
- "punct": "is",
- "index": 985
- },
- {
- "start": 410.94,
- "confidence": 1,
- "end": 411.03,
- "word": "a",
- "punct": "a",
- "index": 986
- },
- {
- "start": 411.03,
- "confidence": 1,
- "end": 411.35,
- "word": "really",
- "punct": "really",
- "index": 987
- },
- {
- "start": 411.35,
- "confidence": 1,
- "end": 411.68,
- "word": "common",
- "punct": "common",
- "index": 988
- },
- {
- "start": 411.68,
- "confidence": 0.99,
- "end": 412.39,
- "word": "response",
- "punct": "response",
- "index": 989
- },
- {
- "start": 412.42,
- "confidence": 0.99,
- "end": 412.68,
- "word": "and",
- "punct": "and",
- "index": 990
- },
- {
- "start": 412.71,
- "confidence": 0.99,
- "end": 412.81,
- "word": "i",
- "punct": "I",
- "index": 991
- },
- {
- "start": 412.81,
- "confidence": 1,
- "end": 413.01,
- "word": "think",
- "punct": "think",
- "index": 992
- },
- {
- "start": 413.01,
- "confidence": 0.87,
- "end": 413.17,
- "word": "it's",
- "punct": "it's",
- "index": 993
- },
- {
- "start": 413.26,
- "confidence": 1,
- "end": 414.05,
- "word": "absolutely",
- "punct": "absolutely",
- "index": 994
- },
- {
- "start": 414.05,
- "confidence": 0.97,
- "end": 414.72,
- "word": "correct",
- "punct": "correct",
- "index": 995
- },
- {
- "start": 414.93,
- "confidence": 1,
- "end": 415.3,
- "word": "because",
- "punct": "because",
- "index": 996
- },
- {
- "start": 415.3,
- "confidence": 1,
- "end": 415.61,
- "word": "that",
- "punct": "that",
- "index": 997
- },
- {
- "start": 415.61,
- "confidence": 1,
- "end": 415.91,
- "word": "would",
- "punct": "would",
- "index": 998
- },
- {
- "start": 415.91,
- "confidence": 1,
- "end": 416.15,
- "word": "be",
- "punct": "be",
- "index": 999
- },
- {
- "start": 416.18,
- "confidence": 1,
- "end": 417.01,
- "word": "terrible",
- "punct": "terrible.",
- "index": 1000
- }
- ],
- "start": 410.45
- },
- "entityRanges": [
- {
- "start": 410.45,
- "end": 410.53,
- "confidence": 0.54,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 410.64,
- "end": 410.83,
- "confidence": 1,
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 410.83,
- "end": 410.94,
- "confidence": 1,
- "text": "is",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 410.94,
- "end": 411.03,
- "confidence": 1,
- "text": "a",
- "offset": 12,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 411.03,
- "end": 411.35,
- "confidence": 1,
- "text": "really",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 411.35,
- "end": 411.68,
- "confidence": 1,
- "text": "common",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 411.68,
- "end": 412.39,
- "confidence": 0.99,
- "text": "response",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 412.42,
- "end": 412.68,
- "confidence": 0.99,
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 412.71,
- "end": 412.81,
- "confidence": 0.99,
- "text": "I",
- "offset": 41,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 412.81,
- "end": 413.01,
- "confidence": 1,
- "text": "think",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 413.01,
- "end": 413.17,
- "confidence": 0.87,
- "text": "it's",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 413.26,
- "end": 414.05,
- "confidence": 1,
- "text": "absolutely",
- "offset": 54,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 414.05,
- "end": 414.72,
- "confidence": 0.97,
- "text": "correct",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 414.93,
- "end": 415.3,
- "confidence": 1,
- "text": "because",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 415.3,
- "end": 415.61,
- "confidence": 1,
- "text": "that",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 415.61,
- "end": 415.91,
- "confidence": 1,
- "text": "would",
- "offset": 86,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 415.91,
- "end": 416.15,
- "confidence": 1,
- "text": "be",
- "offset": 92,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 416.18,
- "end": 417.01,
- "confidence": 1,
- "text": "terrible.",
- "offset": 95,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And in this case.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 75",
- "words": [
- {
- "start": 417.44,
- "confidence": 0.43,
- "end": 417.49,
- "word": "and",
- "punct": "And",
- "index": 1001
- },
- {
- "start": 417.89,
- "confidence": 1,
- "end": 418.05,
- "word": "in",
- "punct": "in",
- "index": 1002
- },
- {
- "start": 418.05,
- "confidence": 1,
- "end": 418.24,
- "word": "this",
- "punct": "this",
- "index": 1003
- },
- {
- "start": 418.24,
- "confidence": 1,
- "end": 418.46,
- "word": "case",
- "punct": "case.",
- "index": 1004
- }
- ],
- "start": 417.44
- },
- "entityRanges": [
- {
- "start": 417.44,
- "end": 417.49,
- "confidence": 0.43,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 417.89,
- "end": 418.05,
- "confidence": 1,
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.05,
- "end": 418.24,
- "confidence": 1,
- "text": "this",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.24,
- "end": 418.46,
- "confidence": 1,
- "text": "case.",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's not with this robot replace it with this robot replaces his animal therapy in context which he was real animals.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 76",
- "words": [
- {
- "start": 418.46,
- "confidence": 0.91,
- "end": 418.6,
- "word": "it's",
- "punct": "It's",
- "index": 1005
- },
- {
- "start": 418.6,
- "confidence": 1,
- "end": 418.81,
- "word": "not",
- "punct": "not",
- "index": 1006
- },
- {
- "start": 418.81,
- "confidence": 0.68,
- "end": 418.9,
- "word": "with",
- "punct": "with",
- "index": 1007
- },
- {
- "start": 418.9,
- "confidence": 0.99,
- "end": 419.08,
- "word": "this",
- "punct": "this",
- "index": 1008
- },
- {
- "start": 419.08,
- "confidence": 1,
- "end": 419.41,
- "word": "robot",
- "punct": "robot",
- "index": 1009
- },
- {
- "start": 419.41,
- "confidence": 0.95,
- "end": 419.93,
- "word": "replace",
- "punct": "replace",
- "index": 1010
- },
- {
- "start": 419.97,
- "confidence": 0.89,
- "end": 420.27,
- "word": "it",
- "punct": "it",
- "index": 1011
- },
- {
- "start": 420.83,
- "confidence": 0.99,
- "end": 420.99,
- "word": "with",
- "punct": "with",
- "index": 1012
- },
- {
- "start": 420.99,
- "confidence": 0.99,
- "end": 421.18,
- "word": "this",
- "punct": "this",
- "index": 1013
- },
- {
- "start": 421.18,
- "confidence": 1,
- "end": 421.54,
- "word": "robot",
- "punct": "robot",
- "index": 1014
- },
- {
- "start": 421.54,
- "confidence": 0.99,
- "end": 422.25,
- "word": "replaces",
- "punct": "replaces",
- "index": 1015
- },
- {
- "start": 422.28,
- "confidence": 0.65,
- "end": 422.49,
- "word": "his",
- "punct": "his",
- "index": 1016
- },
- {
- "start": 422.55,
- "confidence": 0.99,
- "end": 422.9,
- "word": "animal",
- "punct": "animal",
- "index": 1017
- },
- {
- "start": 422.9,
- "confidence": 1,
- "end": 423.62,
- "word": "therapy",
- "punct": "therapy",
- "index": 1018
- },
- {
- "start": 423.98,
- "confidence": 1,
- "end": 424.14,
- "word": "in",
- "punct": "in",
- "index": 1019
- },
- {
- "start": 424.14,
- "confidence": 1,
- "end": 424.84,
- "word": "context",
- "punct": "context",
- "index": 1020
- },
- {
- "start": 424.86,
- "confidence": 0.71,
- "end": 425.16,
- "word": "which",
- "punct": "which",
- "index": 1021
- },
- {
- "start": 425.19,
- "confidence": 0.83,
- "end": 425.61,
- "word": "he",
- "punct": "he",
- "index": 1022
- },
- {
- "start": 425.61,
- "confidence": 0.81,
- "end": 425.82,
- "word": "was",
- "punct": "was",
- "index": 1023
- },
- {
- "start": 425.83,
- "confidence": 0.72,
- "end": 426.14,
- "word": "real",
- "punct": "real",
- "index": 1024
- },
- {
- "start": 426.14,
- "confidence": 1,
- "end": 426.87,
- "word": "animals",
- "punct": "animals.",
- "index": 1025
- }
- ],
- "start": 418.46
- },
- "entityRanges": [
- {
- "start": 418.46,
- "end": 418.6,
- "confidence": 0.91,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.6,
- "end": 418.81,
- "confidence": 1,
- "text": "not",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.81,
- "end": 418.9,
- "confidence": 0.68,
- "text": "with",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 418.9,
- "end": 419.08,
- "confidence": 0.99,
- "text": "this",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 419.08,
- "end": 419.41,
- "confidence": 1,
- "text": "robot",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 419.41,
- "end": 419.93,
- "confidence": 0.95,
- "text": "replace",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 419.97,
- "end": 420.27,
- "confidence": 0.89,
- "text": "it",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 420.83,
- "end": 420.99,
- "confidence": 0.99,
- "text": "with",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 420.99,
- "end": 421.18,
- "confidence": 0.99,
- "text": "this",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 421.18,
- "end": 421.54,
- "confidence": 1,
- "text": "robot",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 421.54,
- "end": 422.25,
- "confidence": 0.99,
- "text": "replaces",
- "offset": 52,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 422.28,
- "end": 422.49,
- "confidence": 0.65,
- "text": "his",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 422.55,
- "end": 422.9,
- "confidence": 0.99,
- "text": "animal",
- "offset": 65,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 422.9,
- "end": 423.62,
- "confidence": 1,
- "text": "therapy",
- "offset": 72,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 423.98,
- "end": 424.14,
- "confidence": 1,
- "text": "in",
- "offset": 80,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 424.14,
- "end": 424.84,
- "confidence": 1,
- "text": "context",
- "offset": 83,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 424.86,
- "end": 425.16,
- "confidence": 0.71,
- "text": "which",
- "offset": 91,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 425.19,
- "end": 425.61,
- "confidence": 0.83,
- "text": "he",
- "offset": 97,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 425.61,
- "end": 425.82,
- "confidence": 0.81,
- "text": "was",
- "offset": 100,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 425.83,
- "end": 426.14,
- "confidence": 0.72,
- "text": "real",
- "offset": 104,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 426.14,
- "end": 426.87,
- "confidence": 1,
- "text": "animals.",
- "offset": 109,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We can use robots because people consistently treat them like more.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 77",
- "words": [
- {
- "start": 427.23,
- "confidence": 1,
- "end": 427.44,
- "word": "we",
- "punct": "We",
- "index": 1026
- },
- {
- "start": 427.44,
- "confidence": 1,
- "end": 427.78,
- "word": "can",
- "punct": "can",
- "index": 1027
- },
- {
- "start": 427.78,
- "confidence": 1,
- "end": 427.95,
- "word": "use",
- "punct": "use",
- "index": 1028
- },
- {
- "start": 427.98,
- "confidence": 0.64,
- "end": 428.38,
- "word": "robots",
- "punct": "robots",
- "index": 1029
- },
- {
- "start": 428.38,
- "confidence": 1,
- "end": 428.66,
- "word": "because",
- "punct": "because",
- "index": 1030
- },
- {
- "start": 428.66,
- "confidence": 1,
- "end": 428.98,
- "word": "people",
- "punct": "people",
- "index": 1031
- },
- {
- "start": 429.04,
- "confidence": 1,
- "end": 429.96,
- "word": "consistently",
- "punct": "consistently",
- "index": 1032
- },
- {
- "start": 429.96,
- "confidence": 0.99,
- "end": 430.32,
- "word": "treat",
- "punct": "treat",
- "index": 1033
- },
- {
- "start": 430.32,
- "confidence": 0.99,
- "end": 430.63,
- "word": "them",
- "punct": "them",
- "index": 1034
- },
- {
- "start": 430.66,
- "confidence": 1,
- "end": 430.87,
- "word": "like",
- "punct": "like",
- "index": 1035
- },
- {
- "start": 430.87,
- "confidence": 1,
- "end": 431.33,
- "word": "more",
- "punct": "more.",
- "index": 1036
- }
- ],
- "start": 427.23
- },
- "entityRanges": [
- {
- "start": 427.23,
- "end": 427.44,
- "confidence": 1,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 427.44,
- "end": 427.78,
- "confidence": 1,
- "text": "can",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 427.78,
- "end": 427.95,
- "confidence": 1,
- "text": "use",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 427.98,
- "end": 428.38,
- "confidence": 0.64,
- "text": "robots",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 428.38,
- "end": 428.66,
- "confidence": 1,
- "text": "because",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 428.66,
- "end": 428.98,
- "confidence": 1,
- "text": "people",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 429.04,
- "end": 429.96,
- "confidence": 1,
- "text": "consistently",
- "offset": 33,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 429.96,
- "end": 430.32,
- "confidence": 0.99,
- "text": "treat",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 430.32,
- "end": 430.63,
- "confidence": 0.99,
- "text": "them",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 430.66,
- "end": 430.87,
- "confidence": 1,
- "text": "like",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 430.87,
- "end": 431.33,
- "confidence": 1,
- "text": "more.",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "More like an animal and have it acknowledging this emotional connection.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 78",
- "words": [
- {
- "start": 431.72,
- "confidence": 1,
- "end": 431.99,
- "word": "more",
- "punct": "More",
- "index": 1037
- },
- {
- "start": 431.99,
- "confidence": 1,
- "end": 432.23,
- "word": "like",
- "punct": "like",
- "index": 1038
- },
- {
- "start": 432.23,
- "confidence": 0.96,
- "end": 432.3,
- "word": "an",
- "punct": "an",
- "index": 1039
- },
- {
- "start": 432.34,
- "confidence": 1,
- "end": 432.88,
- "word": "animal",
- "punct": "animal",
- "index": 1040
- },
- {
- "start": 432.91,
- "confidence": 0.92,
- "end": 433.12,
- "word": "and",
- "punct": "and",
- "index": 1041
- },
- {
- "start": 433.14,
- "confidence": 0.68,
- "end": 433.32,
- "word": "have",
- "punct": "have",
- "index": 1042
- },
- {
- "start": 433.41,
- "confidence": 0.82,
- "end": 433.67,
- "word": "it",
- "punct": "it",
- "index": 1043
- },
- {
- "start": 435.5,
- "confidence": 1,
- "end": 436.19,
- "word": "acknowledging",
- "punct": "acknowledging",
- "index": 1044
- },
- {
- "start": 436.19,
- "confidence": 0.79,
- "end": 436.35,
- "word": "this",
- "punct": "this",
- "index": 1045
- },
- {
- "start": 436.36,
- "confidence": 1,
- "end": 436.74,
- "word": "emotional",
- "punct": "emotional",
- "index": 1046
- },
- {
- "start": 436.74,
- "confidence": 1,
- "end": 437.21,
- "word": "connection",
- "punct": "connection.",
- "index": 1047
- }
- ],
- "start": 431.72
- },
- "entityRanges": [
- {
- "start": 431.72,
- "end": 431.99,
- "confidence": 1,
- "text": "More",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 431.99,
- "end": 432.23,
- "confidence": 1,
- "text": "like",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 432.23,
- "end": 432.3,
- "confidence": 0.96,
- "text": "an",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 432.34,
- "end": 432.88,
- "confidence": 1,
- "text": "animal",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 432.91,
- "end": 433.12,
- "confidence": 0.92,
- "text": "and",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 433.14,
- "end": 433.32,
- "confidence": 0.68,
- "text": "have",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 433.41,
- "end": 433.67,
- "confidence": 0.82,
- "text": "it",
- "offset": 29,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 435.5,
- "end": 436.19,
- "confidence": 1,
- "text": "acknowledging",
- "offset": 32,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 436.19,
- "end": 436.35,
- "confidence": 0.79,
- "text": "this",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 436.36,
- "end": 436.74,
- "confidence": 1,
- "text": "emotional",
- "offset": 51,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 436.74,
- "end": 437.21,
- "confidence": 1,
- "text": "connection.",
- "offset": 61,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Robert, can also help us anticipate challenges as these devices.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 79",
- "words": [
- {
- "start": 437.23,
- "confidence": 0.51,
- "end": 437.52,
- "word": "robert",
- "punct": "Robert,",
- "index": 1048
- },
- {
- "start": 437.58,
- "confidence": 1,
- "end": 437.73,
- "word": "can",
- "punct": "can",
- "index": 1049
- },
- {
- "start": 437.73,
- "confidence": 1,
- "end": 438.02,
- "word": "also",
- "punct": "also",
- "index": 1050
- },
- {
- "start": 438.02,
- "confidence": 1,
- "end": 438.24,
- "word": "help",
- "punct": "help",
- "index": 1051
- },
- {
- "start": 438.24,
- "confidence": 0.99,
- "end": 438.41,
- "word": "us",
- "punct": "us",
- "index": 1052
- },
- {
- "start": 438.41,
- "confidence": 0.92,
- "end": 438.93,
- "word": "anticipate",
- "punct": "anticipate",
- "index": 1053
- },
- {
- "start": 438.93,
- "confidence": 0.99,
- "end": 439.85,
- "word": "challenges",
- "punct": "challenges",
- "index": 1054
- },
- {
- "start": 439.88,
- "confidence": 1,
- "end": 440.13,
- "word": "as",
- "punct": "as",
- "index": 1055
- },
- {
- "start": 440.13,
- "confidence": 0.98,
- "end": 440.28,
- "word": "these",
- "punct": "these",
- "index": 1056
- },
- {
- "start": 440.28,
- "confidence": 0.99,
- "end": 440.87,
- "word": "devices",
- "punct": "devices.",
- "index": 1057
- }
- ],
- "start": 437.23
- },
- "entityRanges": [
- {
- "start": 437.23,
- "end": 437.52,
- "confidence": 0.51,
- "text": "Robert,",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 437.58,
- "end": 437.73,
- "confidence": 1,
- "text": "can",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 437.73,
- "end": 438.02,
- "confidence": 1,
- "text": "also",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.02,
- "end": 438.24,
- "confidence": 1,
- "text": "help",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.24,
- "end": 438.41,
- "confidence": 0.99,
- "text": "us",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.41,
- "end": 438.93,
- "confidence": 0.92,
- "text": "anticipate",
- "offset": 25,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 438.93,
- "end": 439.85,
- "confidence": 0.99,
- "text": "challenges",
- "offset": 36,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 439.88,
- "end": 440.13,
- "confidence": 1,
- "text": "as",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 440.13,
- "end": 440.28,
- "confidence": 0.98,
- "text": "these",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 440.28,
- "end": 440.87,
- "confidence": 0.99,
- "text": "devices.",
- "offset": 56,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Move into more intimate areas of people's lives and for example is it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 80",
- "words": [
- {
- "start": 440.87,
- "confidence": 0.83,
- "end": 441.23,
- "word": "move",
- "punct": "Move",
- "index": 1058
- },
- {
- "start": 441.23,
- "confidence": 0.82,
- "end": 441.42,
- "word": "into",
- "punct": "into",
- "index": 1059
- },
- {
- "start": 441.43,
- "confidence": 0.99,
- "end": 441.57,
- "word": "more",
- "punct": "more",
- "index": 1060
- },
- {
- "start": 441.6,
- "confidence": 1,
- "end": 442,
- "word": "intimate",
- "punct": "intimate",
- "index": 1061
- },
- {
- "start": 442,
- "confidence": 1,
- "end": 442.34,
- "word": "areas",
- "punct": "areas",
- "index": 1062
- },
- {
- "start": 442.34,
- "confidence": 1,
- "end": 442.43,
- "word": "of",
- "punct": "of",
- "index": 1063
- },
- {
- "start": 442.43,
- "confidence": 0.99,
- "end": 442.78,
- "word": "people's",
- "punct": "people's",
- "index": 1064
- },
- {
- "start": 442.78,
- "confidence": 1,
- "end": 443.4,
- "word": "lives",
- "punct": "lives",
- "index": 1065
- },
- {
- "start": 443.74,
- "confidence": 0.42,
- "end": 443.79,
- "word": "and",
- "punct": "and",
- "index": 1066
- },
- {
- "start": 444.1,
- "confidence": 1,
- "end": 444.23,
- "word": "for",
- "punct": "for",
- "index": 1067
- },
- {
- "start": 444.23,
- "confidence": 1,
- "end": 444.8,
- "word": "example",
- "punct": "example",
- "index": 1068
- },
- {
- "start": 444.83,
- "confidence": 1,
- "end": 444.98,
- "word": "is",
- "punct": "is",
- "index": 1069
- },
- {
- "start": 444.98,
- "confidence": 0.94,
- "end": 445.07,
- "word": "it",
- "punct": "it.",
- "index": 1070
- }
- ],
- "start": 440.87
- },
- "entityRanges": [
- {
- "start": 440.87,
- "end": 441.23,
- "confidence": 0.83,
- "text": "Move",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 441.23,
- "end": 441.42,
- "confidence": 0.82,
- "text": "into",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 441.43,
- "end": 441.57,
- "confidence": 0.99,
- "text": "more",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 441.6,
- "end": 442,
- "confidence": 1,
- "text": "intimate",
- "offset": 15,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442,
- "end": 442.34,
- "confidence": 1,
- "text": "areas",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.34,
- "end": 442.43,
- "confidence": 1,
- "text": "of",
- "offset": 30,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.43,
- "end": 442.78,
- "confidence": 0.99,
- "text": "people's",
- "offset": 33,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 442.78,
- "end": 443.4,
- "confidence": 1,
- "text": "lives",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 443.74,
- "end": 443.79,
- "confidence": 0.42,
- "text": "and",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.1,
- "end": 444.23,
- "confidence": 1,
- "text": "for",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.23,
- "end": 444.8,
- "confidence": 1,
- "text": "example",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.83,
- "end": 444.98,
- "confidence": 1,
- "text": "is",
- "offset": 64,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 444.98,
- "end": 445.07,
- "confidence": 0.94,
- "text": "it.",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 81",
- "words": [
- {
- "start": 445.07,
- "confidence": 0.98,
- "end": 445.49,
- "word": "o.k.",
- "punct": "o.k.",
- "index": 1071
- }
- ],
- "start": 445.07
- },
- "entityRanges": [
- {
- "start": 445.07,
- "end": 445.49,
- "confidence": 0.98,
- "text": "o.k.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If your child's teddy bear robot records private conversations.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 82",
- "words": [
- {
- "start": 445.5,
- "confidence": 0.97,
- "end": 445.63,
- "word": "if",
- "punct": "If",
- "index": 1072
- },
- {
- "start": 445.63,
- "confidence": 0.99,
- "end": 445.74,
- "word": "your",
- "punct": "your",
- "index": 1073
- },
- {
- "start": 445.74,
- "confidence": 1,
- "end": 446.43,
- "word": "child's",
- "punct": "child's",
- "index": 1074
- },
- {
- "start": 446.68,
- "confidence": 0.98,
- "end": 447,
- "word": "teddy",
- "punct": "teddy",
- "index": 1075
- },
- {
- "start": 446.99,
- "confidence": 0.98,
- "end": 447.2,
- "word": "bear",
- "punct": "bear",
- "index": 1076
- },
- {
- "start": 447.21,
- "confidence": 0.95,
- "end": 447.54,
- "word": "robot",
- "punct": "robot",
- "index": 1077
- },
- {
- "start": 447.54,
- "confidence": 0.89,
- "end": 447.87,
- "word": "records",
- "punct": "records",
- "index": 1078
- },
- {
- "start": 447.87,
- "confidence": 1,
- "end": 448.19,
- "word": "private",
- "punct": "private",
- "index": 1079
- },
- {
- "start": 448.19,
- "confidence": 1,
- "end": 449.18,
- "word": "conversations",
- "punct": "conversations.",
- "index": 1080
- }
- ],
- "start": 445.5
- },
- "entityRanges": [
- {
- "start": 445.5,
- "end": 445.63,
- "confidence": 0.97,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 445.63,
- "end": 445.74,
- "confidence": 0.99,
- "text": "your",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 445.74,
- "end": 446.43,
- "confidence": 1,
- "text": "child's",
- "offset": 8,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 446.68,
- "end": 447,
- "confidence": 0.98,
- "text": "teddy",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 446.99,
- "end": 447.2,
- "confidence": 0.98,
- "text": "bear",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 447.21,
- "end": 447.54,
- "confidence": 0.95,
- "text": "robot",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 447.54,
- "end": 447.87,
- "confidence": 0.89,
- "text": "records",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 447.87,
- "end": 448.19,
- "confidence": 1,
- "text": "private",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 448.19,
- "end": 449.18,
- "confidence": 1,
- "text": "conversations.",
- "offset": 49,
- "length": 14,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Is it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 83",
- "words": [
- {
- "start": 449.76,
- "confidence": 1,
- "end": 449.89,
- "word": "is",
- "punct": "Is",
- "index": 1081
- },
- {
- "start": 449.89,
- "confidence": 1,
- "end": 449.98,
- "word": "it",
- "punct": "it.",
- "index": 1082
- }
- ],
- "start": 449.76
- },
- "entityRanges": [
- {
- "start": 449.76,
- "end": 449.89,
- "confidence": 1,
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 449.89,
- "end": 449.98,
- "confidence": 1,
- "text": "it.",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 84",
- "words": [
- {
- "start": 449.98,
- "confidence": 0.98,
- "end": 450.29,
- "word": "o.k.",
- "punct": "o.k.",
- "index": 1083
- }
- ],
- "start": 449.98
- },
- "entityRanges": [
- {
- "start": 449.98,
- "end": 450.29,
- "confidence": 0.98,
- "text": "o.k.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If your sex robot has compelling in our purchasers because rope.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 85",
- "words": [
- {
- "start": 450.29,
- "confidence": 0.92,
- "end": 450.41,
- "word": "if",
- "punct": "If",
- "index": 1084
- },
- {
- "start": 450.41,
- "confidence": 0.79,
- "end": 450.58,
- "word": "your",
- "punct": "your",
- "index": 1085
- },
- {
- "start": 450.59,
- "confidence": 1,
- "end": 451.04,
- "word": "sex",
- "punct": "sex",
- "index": 1086
- },
- {
- "start": 451.04,
- "confidence": 0.99,
- "end": 451.47,
- "word": "robot",
- "punct": "robot",
- "index": 1087
- },
- {
- "start": 451.47,
- "confidence": 0.64,
- "end": 451.65,
- "word": "has",
- "punct": "has",
- "index": 1088
- },
- {
- "start": 451.65,
- "confidence": 1,
- "end": 452.31,
- "word": "compelling",
- "punct": "compelling",
- "index": 1089
- },
- {
- "start": 452.34,
- "confidence": 1,
- "end": 452.54,
- "word": "in",
- "punct": "in",
- "index": 1090
- },
- {
- "start": 452.58,
- "confidence": 0.57,
- "end": 452.86,
- "word": "our",
- "punct": "our",
- "index": 1091
- },
- {
- "start": 452.88,
- "confidence": 0.8,
- "end": 453.79,
- "word": "purchasers",
- "punct": "purchasers",
- "index": 1092
- },
- {
- "start": 455.26,
- "confidence": 1,
- "end": 455.67,
- "word": "because",
- "punct": "because",
- "index": 1093
- },
- {
- "start": 455.73,
- "confidence": 0.96,
- "end": 456.02,
- "word": "rope",
- "punct": "rope.",
- "index": 1094
- }
- ],
- "start": 450.29
- },
- "entityRanges": [
- {
- "start": 450.29,
- "end": 450.41,
- "confidence": 0.92,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 450.41,
- "end": 450.58,
- "confidence": 0.79,
- "text": "your",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 450.59,
- "end": 451.04,
- "confidence": 1,
- "text": "sex",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 451.04,
- "end": 451.47,
- "confidence": 0.99,
- "text": "robot",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 451.47,
- "end": 451.65,
- "confidence": 0.64,
- "text": "has",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 451.65,
- "end": 452.31,
- "confidence": 1,
- "text": "compelling",
- "offset": 22,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 452.34,
- "end": 452.54,
- "confidence": 1,
- "text": "in",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 452.58,
- "end": 452.86,
- "confidence": 0.57,
- "text": "our",
- "offset": 36,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 452.88,
- "end": 453.79,
- "confidence": 0.8,
- "text": "purchasers",
- "offset": 40,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 455.26,
- "end": 455.67,
- "confidence": 1,
- "text": "because",
- "offset": 51,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 455.73,
- "end": 456.02,
- "confidence": 0.96,
- "text": "rope.",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "That's plus capitalism equals questions around consumer protection and privacy and those aren't the only reason, said her behaviour around these machines could, madam.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 86",
- "words": [
- {
- "start": 456.02,
- "confidence": 0.89,
- "end": 456.32,
- "word": "that's",
- "punct": "That's",
- "index": 1095
- },
- {
- "start": 456.32,
- "confidence": 0.93,
- "end": 456.65,
- "word": "plus",
- "punct": "plus",
- "index": 1096
- },
- {
- "start": 456.66,
- "confidence": 0.98,
- "end": 457.78,
- "word": "capitalism",
- "punct": "capitalism",
- "index": 1097
- },
- {
- "start": 457.81,
- "confidence": 1,
- "end": 458.17,
- "word": "equals",
- "punct": "equals",
- "index": 1098
- },
- {
- "start": 458.17,
- "confidence": 0.98,
- "end": 458.91,
- "word": "questions",
- "punct": "questions",
- "index": 1099
- },
- {
- "start": 458.94,
- "confidence": 1,
- "end": 459.52,
- "word": "around",
- "punct": "around",
- "index": 1100
- },
- {
- "start": 459.72,
- "confidence": 1,
- "end": 460.18,
- "word": "consumer",
- "punct": "consumer",
- "index": 1101
- },
- {
- "start": 460.18,
- "confidence": 1,
- "end": 460.79,
- "word": "protection",
- "punct": "protection",
- "index": 1102
- },
- {
- "start": 460.79,
- "confidence": 1,
- "end": 460.89,
- "word": "and",
- "punct": "and",
- "index": 1103
- },
- {
- "start": 460.89,
- "confidence": 1,
- "end": 461.58,
- "word": "privacy",
- "punct": "privacy",
- "index": 1104
- },
- {
- "start": 462.47,
- "confidence": 0.85,
- "end": 462.59,
- "word": "and",
- "punct": "and",
- "index": 1105
- },
- {
- "start": 462.68,
- "confidence": 1,
- "end": 462.9,
- "word": "those",
- "punct": "those",
- "index": 1106
- },
- {
- "start": 462.9,
- "confidence": 1,
- "end": 463.14,
- "word": "aren't",
- "punct": "aren't",
- "index": 1107
- },
- {
- "start": 463.14,
- "confidence": 1,
- "end": 463.27,
- "word": "the",
- "punct": "the",
- "index": 1108
- },
- {
- "start": 463.27,
- "confidence": 1,
- "end": 463.54,
- "word": "only",
- "punct": "only",
- "index": 1109
- },
- {
- "start": 463.54,
- "confidence": 1,
- "end": 463.9,
- "word": "reason",
- "punct": "reason,",
- "index": 1110
- },
- {
- "start": 463.9,
- "confidence": 0.58,
- "end": 464.08,
- "word": "said",
- "punct": "said",
- "index": 1111
- },
- {
- "start": 464.08,
- "confidence": 0.82,
- "end": 464.17,
- "word": "her",
- "punct": "her",
- "index": 1112
- },
- {
- "start": 464.16,
- "confidence": 1,
- "end": 464.76,
- "word": "behaviour",
- "punct": "behaviour",
- "index": 1113
- },
- {
- "start": 464.76,
- "confidence": 0.99,
- "end": 465.04,
- "word": "around",
- "punct": "around",
- "index": 1114
- },
- {
- "start": 465.04,
- "confidence": 1,
- "end": 465.21,
- "word": "these",
- "punct": "these",
- "index": 1115
- },
- {
- "start": 465.21,
- "confidence": 1,
- "end": 465.65,
- "word": "machines",
- "punct": "machines",
- "index": 1116
- },
- {
- "start": 465.65,
- "confidence": 1,
- "end": 465.82,
- "word": "could",
- "punct": "could,",
- "index": 1117
- },
- {
- "start": 465.82,
- "confidence": 0.41,
- "end": 466.25,
- "word": "madam",
- "punct": "madam.",
- "index": 1118
- }
- ],
- "start": 456.02
- },
- "entityRanges": [
- {
- "start": 456.02,
- "end": 456.32,
- "confidence": 0.89,
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 456.32,
- "end": 456.65,
- "confidence": 0.93,
- "text": "plus",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 456.66,
- "end": 457.78,
- "confidence": 0.98,
- "text": "capitalism",
- "offset": 12,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 457.81,
- "end": 458.17,
- "confidence": 1,
- "text": "equals",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 458.17,
- "end": 458.91,
- "confidence": 0.98,
- "text": "questions",
- "offset": 30,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 458.94,
- "end": 459.52,
- "confidence": 1,
- "text": "around",
- "offset": 40,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 459.72,
- "end": 460.18,
- "confidence": 1,
- "text": "consumer",
- "offset": 47,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 460.18,
- "end": 460.79,
- "confidence": 1,
- "text": "protection",
- "offset": 56,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 460.79,
- "end": 460.89,
- "confidence": 1,
- "text": "and",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 460.89,
- "end": 461.58,
- "confidence": 1,
- "text": "privacy",
- "offset": 71,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 462.47,
- "end": 462.59,
- "confidence": 0.85,
- "text": "and",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 462.68,
- "end": 462.9,
- "confidence": 1,
- "text": "those",
- "offset": 83,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 462.9,
- "end": 463.14,
- "confidence": 1,
- "text": "aren't",
- "offset": 89,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.14,
- "end": 463.27,
- "confidence": 1,
- "text": "the",
- "offset": 96,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.27,
- "end": 463.54,
- "confidence": 1,
- "text": "only",
- "offset": 100,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.54,
- "end": 463.9,
- "confidence": 1,
- "text": "reason,",
- "offset": 105,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 463.9,
- "end": 464.08,
- "confidence": 0.58,
- "text": "said",
- "offset": 113,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 464.08,
- "end": 464.17,
- "confidence": 0.82,
- "text": "her",
- "offset": 118,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 464.16,
- "end": 464.76,
- "confidence": 1,
- "text": "behaviour",
- "offset": 122,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 464.76,
- "end": 465.04,
- "confidence": 0.99,
- "text": "around",
- "offset": 132,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.04,
- "end": 465.21,
- "confidence": 1,
- "text": "these",
- "offset": 139,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.21,
- "end": 465.65,
- "confidence": 1,
- "text": "machines",
- "offset": 145,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.65,
- "end": 465.82,
- "confidence": 1,
- "text": "could,",
- "offset": 154,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 465.82,
- "end": 466.25,
- "confidence": 0.41,
- "text": "madam.",
- "offset": 161,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "A few years after that first initial experience.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 87",
- "words": [
- {
- "start": 468.75,
- "confidence": 1,
- "end": 468.83,
- "word": "a",
- "punct": "A",
- "index": 1119
- },
- {
- "start": 468.83,
- "confidence": 1,
- "end": 469.09,
- "word": "few",
- "punct": "few",
- "index": 1120
- },
- {
- "start": 469.09,
- "confidence": 1,
- "end": 469.36,
- "word": "years",
- "punct": "years",
- "index": 1121
- },
- {
- "start": 469.36,
- "confidence": 1,
- "end": 470.12,
- "word": "after",
- "punct": "after",
- "index": 1122
- },
- {
- "start": 470.15,
- "confidence": 1,
- "end": 470.36,
- "word": "that",
- "punct": "that",
- "index": 1123
- },
- {
- "start": 470.36,
- "confidence": 1,
- "end": 470.7,
- "word": "first",
- "punct": "first",
- "index": 1124
- },
- {
- "start": 470.7,
- "confidence": 1,
- "end": 471.09,
- "word": "initial",
- "punct": "initial",
- "index": 1125
- },
- {
- "start": 471.09,
- "confidence": 1,
- "end": 471.71,
- "word": "experience",
- "punct": "experience.",
- "index": 1126
- }
- ],
- "start": 468.75
- },
- "entityRanges": [
- {
- "start": 468.75,
- "end": 468.83,
- "confidence": 1,
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 468.83,
- "end": 469.09,
- "confidence": 1,
- "text": "few",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 469.09,
- "end": 469.36,
- "confidence": 1,
- "text": "years",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 469.36,
- "end": 470.12,
- "confidence": 1,
- "text": "after",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 470.15,
- "end": 470.36,
- "confidence": 1,
- "text": "that",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 470.36,
- "end": 470.7,
- "confidence": 1,
- "text": "first",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 470.7,
- "end": 471.09,
- "confidence": 1,
- "text": "initial",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 471.09,
- "end": 471.71,
- "confidence": 1,
- "text": "experience.",
- "offset": 37,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I had with this baby dinosaur robot do workshop with her friend Hannah Scott.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 88",
- "words": [
- {
- "start": 471.71,
- "confidence": 1,
- "end": 471.8,
- "word": "i",
- "punct": "I",
- "index": 1127
- },
- {
- "start": 471.8,
- "confidence": 1,
- "end": 472.07,
- "word": "had",
- "punct": "had",
- "index": 1128
- },
- {
- "start": 472.07,
- "confidence": 1,
- "end": 472.21,
- "word": "with",
- "punct": "with",
- "index": 1129
- },
- {
- "start": 472.21,
- "confidence": 0.86,
- "end": 472.42,
- "word": "this",
- "punct": "this",
- "index": 1130
- },
- {
- "start": 472.42,
- "confidence": 0.99,
- "end": 472.67,
- "word": "baby",
- "punct": "baby",
- "index": 1131
- },
- {
- "start": 472.67,
- "confidence": 1,
- "end": 473.13,
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 1132
- },
- {
- "start": 473.13,
- "confidence": 0.98,
- "end": 473.58,
- "word": "robot",
- "punct": "robot",
- "index": 1133
- },
- {
- "start": 474.43,
- "confidence": 0.65,
- "end": 474.69,
- "word": "do",
- "punct": "do",
- "index": 1134
- },
- {
- "start": 474.7,
- "confidence": 0.7,
- "end": 475.16,
- "word": "workshop",
- "punct": "workshop",
- "index": 1135
- },
- {
- "start": 475.16,
- "confidence": 1,
- "end": 475.29,
- "word": "with",
- "punct": "with",
- "index": 1136
- },
- {
- "start": 475.29,
- "confidence": 0.72,
- "end": 475.4,
- "word": "her",
- "punct": "her",
- "index": 1137
- },
- {
- "start": 475.39,
- "confidence": 1,
- "end": 475.7,
- "word": "friend",
- "punct": "friend",
- "index": 1138
- },
- {
- "start": 475.7,
- "confidence": 0.71,
- "end": 475.93,
- "word": "hannah",
- "punct": "Hannah",
- "index": 1139
- },
- {
- "start": 475.93,
- "confidence": 0.39,
- "end": 476.19,
- "word": "scott",
- "punct": "Scott.",
- "index": 1140
- }
- ],
- "start": 471.71
- },
- "entityRanges": [
- {
- "start": 471.71,
- "end": 471.8,
- "confidence": 1,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 471.8,
- "end": 472.07,
- "confidence": 1,
- "text": "had",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.07,
- "end": 472.21,
- "confidence": 1,
- "text": "with",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.21,
- "end": 472.42,
- "confidence": 0.86,
- "text": "this",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.42,
- "end": 472.67,
- "confidence": 0.99,
- "text": "baby",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 472.67,
- "end": 473.13,
- "confidence": 1,
- "text": "dinosaur",
- "offset": 21,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 473.13,
- "end": 473.58,
- "confidence": 0.98,
- "text": "robot",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 474.43,
- "end": 474.69,
- "confidence": 0.65,
- "text": "do",
- "offset": 36,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 474.7,
- "end": 475.16,
- "confidence": 0.7,
- "text": "workshop",
- "offset": 39,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.16,
- "end": 475.29,
- "confidence": 1,
- "text": "with",
- "offset": 48,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.29,
- "end": 475.4,
- "confidence": 0.72,
- "text": "her",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.39,
- "end": 475.7,
- "confidence": 1,
- "text": "friend",
- "offset": 57,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.7,
- "end": 475.93,
- "confidence": 0.71,
- "text": "Hannah",
- "offset": 64,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 475.93,
- "end": 476.19,
- "confidence": 0.39,
- "text": "Scott.",
- "offset": 71,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Scott, then we took five of these baby dinosaur about we give them.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 89",
- "words": [
- {
- "start": 476.2,
- "confidence": 0.27,
- "end": 476.62,
- "word": "scott",
- "punct": "Scott,",
- "index": 1141
- },
- {
- "start": 476.9,
- "confidence": 0.79,
- "end": 477.27,
- "word": "then",
- "punct": "then",
- "index": 1142
- },
- {
- "start": 477.55,
- "confidence": 0.99,
- "end": 477.68,
- "word": "we",
- "punct": "we",
- "index": 1143
- },
- {
- "start": 477.68,
- "confidence": 1,
- "end": 477.89,
- "word": "took",
- "punct": "took",
- "index": 1144
- },
- {
- "start": 477.89,
- "confidence": 1,
- "end": 478.27,
- "word": "five",
- "punct": "five",
- "index": 1145
- },
- {
- "start": 478.27,
- "confidence": 1,
- "end": 478.36,
- "word": "of",
- "punct": "of",
- "index": 1146
- },
- {
- "start": 478.36,
- "confidence": 1,
- "end": 478.67,
- "word": "these",
- "punct": "these",
- "index": 1147
- },
- {
- "start": 478.67,
- "confidence": 0.99,
- "end": 478.9,
- "word": "baby",
- "punct": "baby",
- "index": 1148
- },
- {
- "start": 478.9,
- "confidence": 0.97,
- "end": 479.32,
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 1149
- },
- {
- "start": 479.33,
- "confidence": 0.91,
- "end": 479.79,
- "word": "about",
- "punct": "about",
- "index": 1150
- },
- {
- "start": 479.84,
- "confidence": 0.99,
- "end": 480,
- "word": "we",
- "punct": "we",
- "index": 1151
- },
- {
- "start": 480,
- "confidence": 0.91,
- "end": 480.2,
- "word": "give",
- "punct": "give",
- "index": 1152
- },
- {
- "start": 480.2,
- "confidence": 0.94,
- "end": 480.33,
- "word": "them",
- "punct": "them.",
- "index": 1153
- }
- ],
- "start": 476.2
- },
- "entityRanges": [
- {
- "start": 476.2,
- "end": 476.62,
- "confidence": 0.27,
- "text": "Scott,",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 476.9,
- "end": 477.27,
- "confidence": 0.79,
- "text": "then",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 477.55,
- "end": 477.68,
- "confidence": 0.99,
- "text": "we",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 477.68,
- "end": 477.89,
- "confidence": 1,
- "text": "took",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 477.89,
- "end": 478.27,
- "confidence": 1,
- "text": "five",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.27,
- "end": 478.36,
- "confidence": 1,
- "text": "of",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.36,
- "end": 478.67,
- "confidence": 1,
- "text": "these",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.67,
- "end": 478.9,
- "confidence": 0.99,
- "text": "baby",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 478.9,
- "end": 479.32,
- "confidence": 0.97,
- "text": "dinosaur",
- "offset": 39,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 479.33,
- "end": 479.79,
- "confidence": 0.91,
- "text": "about",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 479.84,
- "end": 480,
- "confidence": 0.99,
- "text": "we",
- "offset": 54,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480,
- "end": 480.2,
- "confidence": 0.91,
- "text": "give",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480.2,
- "end": 480.33,
- "confidence": 0.94,
- "text": "them.",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The five teams of people.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 90",
- "words": [
- {
- "start": 480.33,
- "confidence": 0.91,
- "end": 480.4,
- "word": "the",
- "punct": "The",
- "index": 1154
- },
- {
- "start": 480.39,
- "confidence": 1,
- "end": 480.75,
- "word": "five",
- "punct": "five",
- "index": 1155
- },
- {
- "start": 480.75,
- "confidence": 1,
- "end": 481.08,
- "word": "teams",
- "punct": "teams",
- "index": 1156
- },
- {
- "start": 481.08,
- "confidence": 0.99,
- "end": 481.18,
- "word": "of",
- "punct": "of",
- "index": 1157
- },
- {
- "start": 481.18,
- "confidence": 1,
- "end": 481.72,
- "word": "people",
- "punct": "people.",
- "index": 1158
- }
- ],
- "start": 480.33
- },
- "entityRanges": [
- {
- "start": 480.33,
- "end": 480.4,
- "confidence": 0.91,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480.39,
- "end": 480.75,
- "confidence": 1,
- "text": "five",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 480.75,
- "end": 481.08,
- "confidence": 1,
- "text": "teams",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 481.08,
- "end": 481.18,
- "confidence": 0.99,
- "text": "of",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 481.18,
- "end": 481.72,
- "confidence": 1,
- "text": "people.",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We had the name them and play with them and interact with them for about an hour.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 91",
- "words": [
- {
- "start": 482.31,
- "confidence": 1,
- "end": 482.5,
- "word": "we",
- "punct": "We",
- "index": 1159
- },
- {
- "start": 482.5,
- "confidence": 0.97,
- "end": 482.7,
- "word": "had",
- "punct": "had",
- "index": 1160
- },
- {
- "start": 482.7,
- "confidence": 0.6,
- "end": 482.79,
- "word": "the",
- "punct": "the",
- "index": 1161
- },
- {
- "start": 482.79,
- "confidence": 1,
- "end": 483.22,
- "word": "name",
- "punct": "name",
- "index": 1162
- },
- {
- "start": 483.22,
- "confidence": 1,
- "end": 483.68,
- "word": "them",
- "punct": "them",
- "index": 1163
- },
- {
- "start": 483.96,
- "confidence": 0.88,
- "end": 484.12,
- "word": "and",
- "punct": "and",
- "index": 1164
- },
- {
- "start": 484.12,
- "confidence": 1,
- "end": 484.44,
- "word": "play",
- "punct": "play",
- "index": 1165
- },
- {
- "start": 484.44,
- "confidence": 1,
- "end": 484.6,
- "word": "with",
- "punct": "with",
- "index": 1166
- },
- {
- "start": 484.6,
- "confidence": 1,
- "end": 485.11,
- "word": "them",
- "punct": "them",
- "index": 1167
- },
- {
- "start": 485.14,
- "confidence": 0.91,
- "end": 485.24,
- "word": "and",
- "punct": "and",
- "index": 1168
- },
- {
- "start": 485.24,
- "confidence": 1,
- "end": 485.79,
- "word": "interact",
- "punct": "interact",
- "index": 1169
- },
- {
- "start": 485.79,
- "confidence": 1,
- "end": 485.92,
- "word": "with",
- "punct": "with",
- "index": 1170
- },
- {
- "start": 485.92,
- "confidence": 1,
- "end": 486.31,
- "word": "them",
- "punct": "them",
- "index": 1171
- },
- {
- "start": 486.31,
- "confidence": 1,
- "end": 486.75,
- "word": "for",
- "punct": "for",
- "index": 1172
- },
- {
- "start": 486.83,
- "confidence": 1,
- "end": 487.17,
- "word": "about",
- "punct": "about",
- "index": 1173
- },
- {
- "start": 487.17,
- "confidence": 1,
- "end": 487.28,
- "word": "an",
- "punct": "an",
- "index": 1174
- },
- {
- "start": 487.28,
- "confidence": 1,
- "end": 487.74,
- "word": "hour",
- "punct": "hour.",
- "index": 1175
- }
- ],
- "start": 482.31
- },
- "entityRanges": [
- {
- "start": 482.31,
- "end": 482.5,
- "confidence": 1,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 482.5,
- "end": 482.7,
- "confidence": 0.97,
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 482.7,
- "end": 482.79,
- "confidence": 0.6,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 482.79,
- "end": 483.22,
- "confidence": 1,
- "text": "name",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 483.22,
- "end": 483.68,
- "confidence": 1,
- "text": "them",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 483.96,
- "end": 484.12,
- "confidence": 0.88,
- "text": "and",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484.12,
- "end": 484.44,
- "confidence": 1,
- "text": "play",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484.44,
- "end": 484.6,
- "confidence": 1,
- "text": "with",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 484.6,
- "end": 485.11,
- "confidence": 1,
- "text": "them",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.14,
- "end": 485.24,
- "confidence": 0.91,
- "text": "and",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.24,
- "end": 485.79,
- "confidence": 1,
- "text": "interact",
- "offset": 44,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.79,
- "end": 485.92,
- "confidence": 1,
- "text": "with",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 485.92,
- "end": 486.31,
- "confidence": 1,
- "text": "them",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 486.31,
- "end": 486.75,
- "confidence": 1,
- "text": "for",
- "offset": 63,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 486.83,
- "end": 487.17,
- "confidence": 1,
- "text": "about",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 487.17,
- "end": 487.28,
- "confidence": 1,
- "text": "an",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 487.28,
- "end": 487.74,
- "confidence": 1,
- "text": "hour.",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Then we unveiled a him or a hatchet and we told them to torture and kill the row and then this turned out to be a little more dramatic than we expected it to be because none of the participants wouldn't even so much as straight.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 92",
- "words": [
- {
- "start": 488.8,
- "confidence": 1,
- "end": 489.07,
- "word": "then",
- "punct": "Then",
- "index": 1176
- },
- {
- "start": 489.07,
- "confidence": 1,
- "end": 489.19,
- "word": "we",
- "punct": "we",
- "index": 1177
- },
- {
- "start": 489.19,
- "confidence": 1,
- "end": 489.7,
- "word": "unveiled",
- "punct": "unveiled",
- "index": 1178
- },
- {
- "start": 489.73,
- "confidence": 0.88,
- "end": 489.81,
- "word": "a",
- "punct": "a",
- "index": 1179
- },
- {
- "start": 489.81,
- "confidence": 0.43,
- "end": 490.06,
- "word": "him",
- "punct": "him",
- "index": 1180
- },
- {
- "start": 490.06,
- "confidence": 0.51,
- "end": 490.22,
- "word": "or",
- "punct": "or",
- "index": 1181
- },
- {
- "start": 490.23,
- "confidence": 0.97,
- "end": 490.33,
- "word": "a",
- "punct": "a",
- "index": 1182
- },
- {
- "start": 490.34,
- "confidence": 0.97,
- "end": 490.9,
- "word": "hatchet",
- "punct": "hatchet",
- "index": 1183
- },
- {
- "start": 490.92,
- "confidence": 0.63,
- "end": 491.01,
- "word": "and",
- "punct": "and",
- "index": 1184
- },
- {
- "start": 491.01,
- "confidence": 1,
- "end": 491.14,
- "word": "we",
- "punct": "we",
- "index": 1185
- },
- {
- "start": 491.14,
- "confidence": 1,
- "end": 491.39,
- "word": "told",
- "punct": "told",
- "index": 1186
- },
- {
- "start": 491.39,
- "confidence": 0.99,
- "end": 491.51,
- "word": "them",
- "punct": "them",
- "index": 1187
- },
- {
- "start": 491.51,
- "confidence": 1,
- "end": 491.61,
- "word": "to",
- "punct": "to",
- "index": 1188
- },
- {
- "start": 491.61,
- "confidence": 1,
- "end": 492.01,
- "word": "torture",
- "punct": "torture",
- "index": 1189
- },
- {
- "start": 492.01,
- "confidence": 1,
- "end": 492.1,
- "word": "and",
- "punct": "and",
- "index": 1190
- },
- {
- "start": 492.1,
- "confidence": 1,
- "end": 492.42,
- "word": "kill",
- "punct": "kill",
- "index": 1191
- },
- {
- "start": 492.42,
- "confidence": 0.95,
- "end": 492.54,
- "word": "the",
- "punct": "the",
- "index": 1192
- },
- {
- "start": 492.62,
- "confidence": 0.24,
- "end": 493.03,
- "word": "row",
- "punct": "row",
- "index": 1193
- },
- {
- "start": 496.18,
- "confidence": 0.81,
- "end": 496.25,
- "word": "and",
- "punct": "and",
- "index": 1194
- },
- {
- "start": 496.78,
- "confidence": 0.59,
- "end": 496.98,
- "word": "then",
- "punct": "then",
- "index": 1195
- },
- {
- "start": 497.21,
- "confidence": 0.99,
- "end": 497.42,
- "word": "this",
- "punct": "this",
- "index": 1196
- },
- {
- "start": 497.42,
- "confidence": 0.97,
- "end": 497.67,
- "word": "turned",
- "punct": "turned",
- "index": 1197
- },
- {
- "start": 497.67,
- "confidence": 0.98,
- "end": 497.78,
- "word": "out",
- "punct": "out",
- "index": 1198
- },
- {
- "start": 497.78,
- "confidence": 1,
- "end": 497.91,
- "word": "to",
- "punct": "to",
- "index": 1199
- },
- {
- "start": 497.91,
- "confidence": 1,
- "end": 498.03,
- "word": "be",
- "punct": "be",
- "index": 1200
- },
- {
- "start": 498.03,
- "confidence": 1,
- "end": 498.1,
- "word": "a",
- "punct": "a",
- "index": 1201
- },
- {
- "start": 498.1,
- "confidence": 1,
- "end": 498.29,
- "word": "little",
- "punct": "little",
- "index": 1202
- },
- {
- "start": 498.29,
- "confidence": 1,
- "end": 498.41,
- "word": "more",
- "punct": "more",
- "index": 1203
- },
- {
- "start": 498.41,
- "confidence": 1,
- "end": 499.01,
- "word": "dramatic",
- "punct": "dramatic",
- "index": 1204
- },
- {
- "start": 499.01,
- "confidence": 1,
- "end": 499.13,
- "word": "than",
- "punct": "than",
- "index": 1205
- },
- {
- "start": 499.13,
- "confidence": 1,
- "end": 499.24,
- "word": "we",
- "punct": "we",
- "index": 1206
- },
- {
- "start": 499.24,
- "confidence": 1,
- "end": 499.9,
- "word": "expected",
- "punct": "expected",
- "index": 1207
- },
- {
- "start": 499.9,
- "confidence": 1,
- "end": 500,
- "word": "it",
- "punct": "it",
- "index": 1208
- },
- {
- "start": 500,
- "confidence": 1,
- "end": 500.12,
- "word": "to",
- "punct": "to",
- "index": 1209
- },
- {
- "start": 500.12,
- "confidence": 1,
- "end": 500.3,
- "word": "be",
- "punct": "be",
- "index": 1210
- },
- {
- "start": 500.3,
- "confidence": 1,
- "end": 500.6,
- "word": "because",
- "punct": "because",
- "index": 1211
- },
- {
- "start": 500.6,
- "confidence": 1,
- "end": 500.9,
- "word": "none",
- "punct": "none",
- "index": 1212
- },
- {
- "start": 500.9,
- "confidence": 1,
- "end": 501.02,
- "word": "of",
- "punct": "of",
- "index": 1213
- },
- {
- "start": 501.02,
- "confidence": 1,
- "end": 501.1,
- "word": "the",
- "punct": "the",
- "index": 1214
- },
- {
- "start": 501.1,
- "confidence": 0.96,
- "end": 501.86,
- "word": "participants",
- "punct": "participants",
- "index": 1215
- },
- {
- "start": 501.86,
- "confidence": 0.55,
- "end": 502.15,
- "word": "wouldn't",
- "punct": "wouldn't",
- "index": 1216
- },
- {
- "start": 502.44,
- "confidence": 1,
- "end": 502.71,
- "word": "even",
- "punct": "even",
- "index": 1217
- },
- {
- "start": 502.71,
- "confidence": 0.97,
- "end": 502.83,
- "word": "so",
- "punct": "so",
- "index": 1218
- },
- {
- "start": 502.83,
- "confidence": 0.97,
- "end": 503.01,
- "word": "much",
- "punct": "much",
- "index": 1219
- },
- {
- "start": 503.01,
- "confidence": 0.83,
- "end": 503.11,
- "word": "as",
- "punct": "as",
- "index": 1220
- },
- {
- "start": 503.11,
- "confidence": 0.96,
- "end": 503.56,
- "word": "straight",
- "punct": "straight.",
- "index": 1221
- }
- ],
- "start": 488.8
- },
- "entityRanges": [
- {
- "start": 488.8,
- "end": 489.07,
- "confidence": 1,
- "text": "Then",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.07,
- "end": 489.19,
- "confidence": 1,
- "text": "we",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.19,
- "end": 489.7,
- "confidence": 1,
- "text": "unveiled",
- "offset": 8,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.73,
- "end": 489.81,
- "confidence": 0.88,
- "text": "a",
- "offset": 17,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 489.81,
- "end": 490.06,
- "confidence": 0.43,
- "text": "him",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.06,
- "end": 490.22,
- "confidence": 0.51,
- "text": "or",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.23,
- "end": 490.33,
- "confidence": 0.97,
- "text": "a",
- "offset": 26,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.34,
- "end": 490.9,
- "confidence": 0.97,
- "text": "hatchet",
- "offset": 28,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 490.92,
- "end": 491.01,
- "confidence": 0.63,
- "text": "and",
- "offset": 36,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.01,
- "end": 491.14,
- "confidence": 1,
- "text": "we",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.14,
- "end": 491.39,
- "confidence": 1,
- "text": "told",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.39,
- "end": 491.51,
- "confidence": 0.99,
- "text": "them",
- "offset": 48,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.51,
- "end": 491.61,
- "confidence": 1,
- "text": "to",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 491.61,
- "end": 492.01,
- "confidence": 1,
- "text": "torture",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.01,
- "end": 492.1,
- "confidence": 1,
- "text": "and",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.1,
- "end": 492.42,
- "confidence": 1,
- "text": "kill",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.42,
- "end": 492.54,
- "confidence": 0.95,
- "text": "the",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 492.62,
- "end": 493.03,
- "confidence": 0.24,
- "text": "row",
- "offset": 77,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 496.18,
- "end": 496.25,
- "confidence": 0.81,
- "text": "and",
- "offset": 81,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 496.78,
- "end": 496.98,
- "confidence": 0.59,
- "text": "then",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.21,
- "end": 497.42,
- "confidence": 0.99,
- "text": "this",
- "offset": 90,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.42,
- "end": 497.67,
- "confidence": 0.97,
- "text": "turned",
- "offset": 95,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.67,
- "end": 497.78,
- "confidence": 0.98,
- "text": "out",
- "offset": 102,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.78,
- "end": 497.91,
- "confidence": 1,
- "text": "to",
- "offset": 106,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 497.91,
- "end": 498.03,
- "confidence": 1,
- "text": "be",
- "offset": 109,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.03,
- "end": 498.1,
- "confidence": 1,
- "text": "a",
- "offset": 112,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.1,
- "end": 498.29,
- "confidence": 1,
- "text": "little",
- "offset": 114,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.29,
- "end": 498.41,
- "confidence": 1,
- "text": "more",
- "offset": 121,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 498.41,
- "end": 499.01,
- "confidence": 1,
- "text": "dramatic",
- "offset": 126,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.01,
- "end": 499.13,
- "confidence": 1,
- "text": "than",
- "offset": 135,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.13,
- "end": 499.24,
- "confidence": 1,
- "text": "we",
- "offset": 140,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.24,
- "end": 499.9,
- "confidence": 1,
- "text": "expected",
- "offset": 143,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 499.9,
- "end": 500,
- "confidence": 1,
- "text": "it",
- "offset": 152,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500,
- "end": 500.12,
- "confidence": 1,
- "text": "to",
- "offset": 155,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.12,
- "end": 500.3,
- "confidence": 1,
- "text": "be",
- "offset": 158,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.3,
- "end": 500.6,
- "confidence": 1,
- "text": "because",
- "offset": 161,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.6,
- "end": 500.9,
- "confidence": 1,
- "text": "none",
- "offset": 169,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 500.9,
- "end": 501.02,
- "confidence": 1,
- "text": "of",
- "offset": 174,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 501.02,
- "end": 501.1,
- "confidence": 1,
- "text": "the",
- "offset": 177,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 501.1,
- "end": 501.86,
- "confidence": 0.96,
- "text": "participants",
- "offset": 181,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 501.86,
- "end": 502.15,
- "confidence": 0.55,
- "text": "wouldn't",
- "offset": 194,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 502.44,
- "end": 502.71,
- "confidence": 1,
- "text": "even",
- "offset": 203,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 502.71,
- "end": 502.83,
- "confidence": 0.97,
- "text": "so",
- "offset": 208,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 502.83,
- "end": 503.01,
- "confidence": 0.97,
- "text": "much",
- "offset": 211,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 503.01,
- "end": 503.11,
- "confidence": 0.83,
- "text": "as",
- "offset": 216,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 503.11,
- "end": 503.56,
- "confidence": 0.96,
- "text": "straight.",
- "offset": 219,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "A robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 93",
- "words": [
- {
- "start": 504.21,
- "confidence": 0.75,
- "end": 504.36,
- "word": "a",
- "punct": "A",
- "index": 1222
- },
- {
- "start": 504.36,
- "confidence": 0.69,
- "end": 504.74,
- "word": "robot",
- "punct": "robot.",
- "index": 1223
- }
- ],
- "start": 504.21
- },
- "entityRanges": [
- {
- "start": 504.21,
- "end": 504.36,
- "confidence": 0.75,
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 504.36,
- "end": 504.74,
- "confidence": 0.69,
- "text": "robot.",
- "offset": 2,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "So we had to improvise.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 94",
- "words": [
- {
- "start": 504.76,
- "confidence": 1,
- "end": 505.11,
- "word": "so",
- "punct": "So",
- "index": 1224
- },
- {
- "start": 505.42,
- "confidence": 1,
- "end": 505.57,
- "word": "we",
- "punct": "we",
- "index": 1225
- },
- {
- "start": 505.57,
- "confidence": 0.89,
- "end": 505.65,
- "word": "had",
- "punct": "had",
- "index": 1226
- },
- {
- "start": 505.65,
- "confidence": 0.91,
- "end": 505.75,
- "word": "to",
- "punct": "to",
- "index": 1227
- },
- {
- "start": 505.76,
- "confidence": 0.91,
- "end": 506.26,
- "word": "improvise",
- "punct": "improvise.",
- "index": 1228
- }
- ],
- "start": 504.76
- },
- "entityRanges": [
- {
- "start": 504.76,
- "end": 505.11,
- "confidence": 1,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.42,
- "end": 505.57,
- "confidence": 1,
- "text": "we",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.57,
- "end": 505.65,
- "confidence": 0.89,
- "text": "had",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.65,
- "end": 505.75,
- "confidence": 0.91,
- "text": "to",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 505.76,
- "end": 506.26,
- "confidence": 0.91,
- "text": "improvise.",
- "offset": 13,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "End at some point.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 95",
- "words": [
- {
- "start": 507.35,
- "confidence": 0.53,
- "end": 507.77,
- "word": "end",
- "punct": "End",
- "index": 1229
- },
- {
- "start": 507.8,
- "confidence": 0.99,
- "end": 507.98,
- "word": "at",
- "punct": "at",
- "index": 1230
- },
- {
- "start": 507.99,
- "confidence": 0.96,
- "end": 508.16,
- "word": "some",
- "punct": "some",
- "index": 1231
- },
- {
- "start": 508.15,
- "confidence": 0.96,
- "end": 508.33,
- "word": "point",
- "punct": "point.",
- "index": 1232
- }
- ],
- "start": 507.35
- },
- "entityRanges": [
- {
- "start": 507.35,
- "end": 507.77,
- "confidence": 0.53,
- "text": "End",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 507.8,
- "end": 507.98,
- "confidence": 0.99,
- "text": "at",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 507.99,
- "end": 508.16,
- "confidence": 0.96,
- "text": "some",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 508.15,
- "end": 508.33,
- "confidence": 0.96,
- "text": "point.",
- "offset": 12,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "He said o.k.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 96",
- "words": [
- {
- "start": 508.33,
- "confidence": 0.42,
- "end": 508.42,
- "word": "he",
- "punct": "He",
- "index": 1233
- },
- {
- "start": 508.42,
- "confidence": 1,
- "end": 508.72,
- "word": "said",
- "punct": "said",
- "index": 1234
- },
- {
- "start": 508.73,
- "confidence": 0.87,
- "end": 509.38,
- "word": "o.k.",
- "punct": "o.k.",
- "index": 1235
- }
- ],
- "start": 508.33
- },
- "entityRanges": [
- {
- "start": 508.33,
- "end": 508.42,
- "confidence": 0.42,
- "text": "He",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 508.42,
- "end": 508.72,
- "confidence": 1,
- "text": "said",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 508.73,
- "end": 509.38,
- "confidence": 0.87,
- "text": "o.k.",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "You can save your team's robot.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 97",
- "words": [
- {
- "start": 510.07,
- "confidence": 1,
- "end": 510.34,
- "word": "you",
- "punct": "You",
- "index": 1236
- },
- {
- "start": 510.34,
- "confidence": 1,
- "end": 510.51,
- "word": "can",
- "punct": "can",
- "index": 1237
- },
- {
- "start": 510.51,
- "confidence": 1,
- "end": 510.84,
- "word": "save",
- "punct": "save",
- "index": 1238
- },
- {
- "start": 510.84,
- "confidence": 1,
- "end": 511.17,
- "word": "your",
- "punct": "your",
- "index": 1239
- },
- {
- "start": 511.17,
- "confidence": 0.67,
- "end": 511.61,
- "word": "team's",
- "punct": "team's",
- "index": 1240
- },
- {
- "start": 511.7,
- "confidence": 0.51,
- "end": 512.08,
- "word": "robot",
- "punct": "robot.",
- "index": 1241
- }
- ],
- "start": 510.07
- },
- "entityRanges": [
- {
- "start": 510.07,
- "end": 510.34,
- "confidence": 1,
- "text": "You",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 510.34,
- "end": 510.51,
- "confidence": 1,
- "text": "can",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 510.51,
- "end": 510.84,
- "confidence": 1,
- "text": "save",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 510.84,
- "end": 511.17,
- "confidence": 1,
- "text": "your",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 511.17,
- "end": 511.61,
- "confidence": 0.67,
- "text": "team's",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 511.7,
- "end": 512.08,
- "confidence": 0.51,
- "text": "robot.",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "If you destroy another team throw.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 98",
- "words": [
- {
- "start": 512.11,
- "confidence": 1,
- "end": 512.33,
- "word": "if",
- "punct": "If",
- "index": 1242
- },
- {
- "start": 512.33,
- "confidence": 1,
- "end": 512.45,
- "word": "you",
- "punct": "you",
- "index": 1243
- },
- {
- "start": 512.45,
- "confidence": 1,
- "end": 513.03,
- "word": "destroy",
- "punct": "destroy",
- "index": 1244
- },
- {
- "start": 513.06,
- "confidence": 0.99,
- "end": 513.63,
- "word": "another",
- "punct": "another",
- "index": 1245
- },
- {
- "start": 513.63,
- "confidence": 0.44,
- "end": 513.89,
- "word": "team",
- "punct": "team",
- "index": 1246
- },
- {
- "start": 513.9,
- "confidence": 0.25,
- "end": 514.21,
- "word": "throw",
- "punct": "throw.",
- "index": 1247
- }
- ],
- "start": 512.11
- },
- "entityRanges": [
- {
- "start": 512.11,
- "end": 512.33,
- "confidence": 1,
- "text": "If",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 512.33,
- "end": 512.45,
- "confidence": 1,
- "text": "you",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 512.45,
- "end": 513.03,
- "confidence": 1,
- "text": "destroy",
- "offset": 7,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 513.06,
- "end": 513.63,
- "confidence": 0.99,
- "text": "another",
- "offset": 15,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 513.63,
- "end": 513.89,
- "confidence": 0.44,
- "text": "team",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 513.9,
- "end": 514.21,
- "confidence": 0.25,
- "text": "throw.",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "I I.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 99",
- "words": [
- {
- "start": 514.23,
- "confidence": 0.39,
- "end": 514.6,
- "word": "i",
- "punct": "I",
- "index": 1248
- },
- {
- "start": 514.77,
- "confidence": 0.65,
- "end": 515.58,
- "word": "i",
- "punct": "I.",
- "index": 1249
- }
- ],
- "start": 514.23
- },
- "entityRanges": [
- {
- "start": 514.23,
- "end": 514.6,
- "confidence": 0.39,
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 514.77,
- "end": 515.58,
- "confidence": 0.65,
- "text": "I.",
- "offset": 2,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And anyone that didn't work.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 100",
- "words": [
- {
- "start": 516.52,
- "confidence": 0.25,
- "end": 516.6,
- "word": "and",
- "punct": "And",
- "index": 1250
- },
- {
- "start": 516.86,
- "confidence": 0.39,
- "end": 517.17,
- "word": "anyone",
- "punct": "anyone",
- "index": 1251
- },
- {
- "start": 517.17,
- "confidence": 0.98,
- "end": 517.34,
- "word": "that",
- "punct": "that",
- "index": 1252
- },
- {
- "start": 517.34,
- "confidence": 1,
- "end": 517.59,
- "word": "didn't",
- "punct": "didn't",
- "index": 1253
- },
- {
- "start": 517.59,
- "confidence": 1,
- "end": 517.84,
- "word": "work",
- "punct": "work.",
- "index": 1254
- }
- ],
- "start": 516.52
- },
- "entityRanges": [
- {
- "start": 516.52,
- "end": 516.6,
- "confidence": 0.25,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 516.86,
- "end": 517.17,
- "confidence": 0.39,
- "text": "anyone",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.17,
- "end": 517.34,
- "confidence": 0.98,
- "text": "that",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.34,
- "end": 517.59,
- "confidence": 1,
- "text": "didn't",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.59,
- "end": 517.84,
- "confidence": 1,
- "text": "work.",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "They couldn't do it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 101",
- "words": [
- {
- "start": 517.87,
- "confidence": 0.36,
- "end": 517.94,
- "word": "they",
- "punct": "They",
- "index": 1255
- },
- {
- "start": 517.94,
- "confidence": 0.79,
- "end": 518.21,
- "word": "couldn't",
- "punct": "couldn't",
- "index": 1256
- },
- {
- "start": 518.22,
- "confidence": 1,
- "end": 518.35,
- "word": "do",
- "punct": "do",
- "index": 1257
- },
- {
- "start": 518.35,
- "confidence": 1,
- "end": 518.57,
- "word": "it",
- "punct": "it.",
- "index": 1258
- }
- ],
- "start": 517.87
- },
- "entityRanges": [
- {
- "start": 517.87,
- "end": 517.94,
- "confidence": 0.36,
- "text": "They",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 517.94,
- "end": 518.21,
- "confidence": 0.79,
- "text": "couldn't",
- "offset": 5,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 518.22,
- "end": 518.35,
- "confidence": 1,
- "text": "do",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 518.35,
- "end": 518.57,
- "confidence": 1,
- "text": "it.",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "So finally said, We're gonna destroy all the robots are someone takes a hatchet to one of them.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 102",
- "words": [
- {
- "start": 518.61,
- "confidence": 0.71,
- "end": 518.76,
- "word": "so",
- "punct": "So",
- "index": 1259
- },
- {
- "start": 518.79,
- "confidence": 1,
- "end": 519.3,
- "word": "finally",
- "punct": "finally",
- "index": 1260
- },
- {
- "start": 519.33,
- "confidence": 1,
- "end": 519.75,
- "word": "said",
- "punct": "said,",
- "index": 1261
- },
- {
- "start": 520.05,
- "confidence": 1,
- "end": 520.24,
- "word": "we're",
- "punct": "We're",
- "index": 1262
- },
- {
- "start": 520.24,
- "confidence": 0.85,
- "end": 520.4,
- "word": "gonna",
- "punct": "gonna",
- "index": 1263
- },
- {
- "start": 520.41,
- "confidence": 1,
- "end": 520.88,
- "word": "destroy",
- "punct": "destroy",
- "index": 1264
- },
- {
- "start": 520.91,
- "confidence": 0.98,
- "end": 521.24,
- "word": "all",
- "punct": "all",
- "index": 1265
- },
- {
- "start": 521.28,
- "confidence": 0.98,
- "end": 521.39,
- "word": "the",
- "punct": "the",
- "index": 1266
- },
- {
- "start": 521.45,
- "confidence": 0.65,
- "end": 521.93,
- "word": "robots",
- "punct": "robots",
- "index": 1267
- },
- {
- "start": 521.94,
- "confidence": 0.65,
- "end": 522.16,
- "word": "are",
- "punct": "are",
- "index": 1268
- },
- {
- "start": 522.17,
- "confidence": 1,
- "end": 522.5,
- "word": "someone",
- "punct": "someone",
- "index": 1269
- },
- {
- "start": 522.5,
- "confidence": 0.95,
- "end": 522.7,
- "word": "takes",
- "punct": "takes",
- "index": 1270
- },
- {
- "start": 522.7,
- "confidence": 0.87,
- "end": 522.78,
- "word": "a",
- "punct": "a",
- "index": 1271
- },
- {
- "start": 522.78,
- "confidence": 0.88,
- "end": 523.22,
- "word": "hatchet",
- "punct": "hatchet",
- "index": 1272
- },
- {
- "start": 523.23,
- "confidence": 0.93,
- "end": 523.36,
- "word": "to",
- "punct": "to",
- "index": 1273
- },
- {
- "start": 523.36,
- "confidence": 1,
- "end": 523.57,
- "word": "one",
- "punct": "one",
- "index": 1274
- },
- {
- "start": 523.57,
- "confidence": 1,
- "end": 523.72,
- "word": "of",
- "punct": "of",
- "index": 1275
- },
- {
- "start": 523.72,
- "confidence": 1,
- "end": 524,
- "word": "them",
- "punct": "them.",
- "index": 1276
- }
- ],
- "start": 518.61
- },
- "entityRanges": [
- {
- "start": 518.61,
- "end": 518.76,
- "confidence": 0.71,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 518.79,
- "end": 519.3,
- "confidence": 1,
- "text": "finally",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 519.33,
- "end": 519.75,
- "confidence": 1,
- "text": "said,",
- "offset": 11,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.05,
- "end": 520.24,
- "confidence": 1,
- "text": "We're",
- "offset": 17,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.24,
- "end": 520.4,
- "confidence": 0.85,
- "text": "gonna",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.41,
- "end": 520.88,
- "confidence": 1,
- "text": "destroy",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 520.91,
- "end": 521.24,
- "confidence": 0.98,
- "text": "all",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 521.28,
- "end": 521.39,
- "confidence": 0.98,
- "text": "the",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 521.45,
- "end": 521.93,
- "confidence": 0.65,
- "text": "robots",
- "offset": 45,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 521.94,
- "end": 522.16,
- "confidence": 0.65,
- "text": "are",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.17,
- "end": 522.5,
- "confidence": 1,
- "text": "someone",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.5,
- "end": 522.7,
- "confidence": 0.95,
- "text": "takes",
- "offset": 64,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.7,
- "end": 522.78,
- "confidence": 0.87,
- "text": "a",
- "offset": 70,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 522.78,
- "end": 523.22,
- "confidence": 0.88,
- "text": "hatchet",
- "offset": 72,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.23,
- "end": 523.36,
- "confidence": 0.93,
- "text": "to",
- "offset": 80,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.36,
- "end": 523.57,
- "confidence": 1,
- "text": "one",
- "offset": 83,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.57,
- "end": 523.72,
- "confidence": 1,
- "text": "of",
- "offset": 87,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 523.72,
- "end": 524,
- "confidence": 1,
- "text": "them.",
- "offset": 90,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This guy stood up and he took the hatchet and the whole room, Winston.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 103",
- "words": [
- {
- "start": 525.74,
- "confidence": 1,
- "end": 525.98,
- "word": "this",
- "punct": "This",
- "index": 1277
- },
- {
- "start": 525.98,
- "confidence": 1,
- "end": 526.24,
- "word": "guy",
- "punct": "guy",
- "index": 1278
- },
- {
- "start": 526.24,
- "confidence": 1,
- "end": 526.51,
- "word": "stood",
- "punct": "stood",
- "index": 1279
- },
- {
- "start": 526.51,
- "confidence": 1,
- "end": 526.8,
- "word": "up",
- "punct": "up",
- "index": 1280
- },
- {
- "start": 526.83,
- "confidence": 1,
- "end": 527.05,
- "word": "and",
- "punct": "and",
- "index": 1281
- },
- {
- "start": 527.05,
- "confidence": 1,
- "end": 527.29,
- "word": "he",
- "punct": "he",
- "index": 1282
- },
- {
- "start": 527.29,
- "confidence": 1,
- "end": 527.64,
- "word": "took",
- "punct": "took",
- "index": 1283
- },
- {
- "start": 527.64,
- "confidence": 1,
- "end": 527.73,
- "word": "the",
- "punct": "the",
- "index": 1284
- },
- {
- "start": 527.8,
- "confidence": 0.82,
- "end": 528.37,
- "word": "hatchet",
- "punct": "hatchet",
- "index": 1285
- },
- {
- "start": 528.72,
- "confidence": 0.89,
- "end": 528.76,
- "word": "and",
- "punct": "and",
- "index": 1286
- },
- {
- "start": 529.32,
- "confidence": 0.99,
- "end": 529.45,
- "word": "the",
- "punct": "the",
- "index": 1287
- },
- {
- "start": 529.45,
- "confidence": 0.98,
- "end": 529.74,
- "word": "whole",
- "punct": "whole",
- "index": 1288
- },
- {
- "start": 529.74,
- "confidence": 1,
- "end": 530.09,
- "word": "room",
- "punct": "room,",
- "index": 1289
- },
- {
- "start": 530.09,
- "confidence": 0.51,
- "end": 530.52,
- "word": "winston",
- "punct": "Winston.",
- "index": 1290
- }
- ],
- "start": 525.74
- },
- "entityRanges": [
- {
- "start": 525.74,
- "end": 525.98,
- "confidence": 1,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 525.98,
- "end": 526.24,
- "confidence": 1,
- "text": "guy",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 526.24,
- "end": 526.51,
- "confidence": 1,
- "text": "stood",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 526.51,
- "end": 526.8,
- "confidence": 1,
- "text": "up",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 526.83,
- "end": 527.05,
- "confidence": 1,
- "text": "and",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.05,
- "end": 527.29,
- "confidence": 1,
- "text": "he",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.29,
- "end": 527.64,
- "confidence": 1,
- "text": "took",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.64,
- "end": 527.73,
- "confidence": 1,
- "text": "the",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 527.8,
- "end": 528.37,
- "confidence": 0.82,
- "text": "hatchet",
- "offset": 34,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 528.72,
- "end": 528.76,
- "confidence": 0.89,
- "text": "and",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.32,
- "end": 529.45,
- "confidence": 0.99,
- "text": "the",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.45,
- "end": 529.74,
- "confidence": 0.98,
- "text": "whole",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 529.74,
- "end": 530.09,
- "confidence": 1,
- "text": "room,",
- "offset": 56,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 530.09,
- "end": 530.52,
- "confidence": 0.51,
- "text": "Winston.",
- "offset": 62,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "See brother had to down on the robot's neck and there was this half joking.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 104",
- "words": [
- {
- "start": 530.53,
- "confidence": 0.29,
- "end": 530.72,
- "word": "see",
- "punct": "See",
- "index": 1291
- },
- {
- "start": 530.75,
- "confidence": 0.99,
- "end": 531.1,
- "word": "brother",
- "punct": "brother",
- "index": 1292
- },
- {
- "start": 531.1,
- "confidence": 0.72,
- "end": 531.37,
- "word": "had",
- "punct": "had",
- "index": 1293
- },
- {
- "start": 531.36,
- "confidence": 0.54,
- "end": 531.44,
- "word": "to",
- "punct": "to",
- "index": 1294
- },
- {
- "start": 531.45,
- "confidence": 0.98,
- "end": 531.77,
- "word": "down",
- "punct": "down",
- "index": 1295
- },
- {
- "start": 531.76,
- "confidence": 0.55,
- "end": 531.83,
- "word": "on",
- "punct": "on",
- "index": 1296
- },
- {
- "start": 531.83,
- "confidence": 0.87,
- "end": 531.95,
- "word": "the",
- "punct": "the",
- "index": 1297
- },
- {
- "start": 531.95,
- "confidence": 0.48,
- "end": 532.43,
- "word": "robot's",
- "punct": "robot's",
- "index": 1298
- },
- {
- "start": 532.43,
- "confidence": 1,
- "end": 533.06,
- "word": "neck",
- "punct": "neck",
- "index": 1299
- },
- {
- "start": 533.7,
- "confidence": 0.48,
- "end": 533.99,
- "word": "and",
- "punct": "and",
- "index": 1300
- },
- {
- "start": 534.07,
- "confidence": 1,
- "end": 534.31,
- "word": "there",
- "punct": "there",
- "index": 1301
- },
- {
- "start": 534.31,
- "confidence": 0.98,
- "end": 534.52,
- "word": "was",
- "punct": "was",
- "index": 1302
- },
- {
- "start": 534.52,
- "confidence": 1,
- "end": 534.69,
- "word": "this",
- "punct": "this",
- "index": 1303
- },
- {
- "start": 534.69,
- "confidence": 0.99,
- "end": 535.14,
- "word": "half",
- "punct": "half",
- "index": 1304
- },
- {
- "start": 535.14,
- "confidence": 0.97,
- "end": 535.87,
- "word": "joking",
- "punct": "joking.",
- "index": 1305
- }
- ],
- "start": 530.53
- },
- "entityRanges": [
- {
- "start": 530.53,
- "end": 530.72,
- "confidence": 0.29,
- "text": "See",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 530.75,
- "end": 531.1,
- "confidence": 0.99,
- "text": "brother",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.1,
- "end": 531.37,
- "confidence": 0.72,
- "text": "had",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.36,
- "end": 531.44,
- "confidence": 0.54,
- "text": "to",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.45,
- "end": 531.77,
- "confidence": 0.98,
- "text": "down",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.76,
- "end": 531.83,
- "confidence": 0.55,
- "text": "on",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.83,
- "end": 531.95,
- "confidence": 0.87,
- "text": "the",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 531.95,
- "end": 532.43,
- "confidence": 0.48,
- "text": "robot's",
- "offset": 31,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 532.43,
- "end": 533.06,
- "confidence": 1,
- "text": "neck",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 533.7,
- "end": 533.99,
- "confidence": 0.48,
- "text": "and",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.07,
- "end": 534.31,
- "confidence": 1,
- "text": "there",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.31,
- "end": 534.52,
- "confidence": 0.98,
- "text": "was",
- "offset": 54,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.52,
- "end": 534.69,
- "confidence": 1,
- "text": "this",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 534.69,
- "end": 535.14,
- "confidence": 0.99,
- "text": "half",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 535.14,
- "end": 535.87,
- "confidence": 0.97,
- "text": "joking.",
- "offset": 68,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Half serious moment of silence in the room from this farm and but so that was a really interesting experience.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 105",
- "words": [
- {
- "start": 536.02,
- "confidence": 0.59,
- "end": 536.66,
- "word": "half",
- "punct": "Half",
- "index": 1306
- },
- {
- "start": 536.69,
- "confidence": 1,
- "end": 537.43,
- "word": "serious",
- "punct": "serious",
- "index": 1307
- },
- {
- "start": 537.43,
- "confidence": 1,
- "end": 537.81,
- "word": "moment",
- "punct": "moment",
- "index": 1308
- },
- {
- "start": 537.81,
- "confidence": 1,
- "end": 537.88,
- "word": "of",
- "punct": "of",
- "index": 1309
- },
- {
- "start": 537.88,
- "confidence": 0.99,
- "end": 538.57,
- "word": "silence",
- "punct": "silence",
- "index": 1310
- },
- {
- "start": 538.57,
- "confidence": 1,
- "end": 538.81,
- "word": "in",
- "punct": "in",
- "index": 1311
- },
- {
- "start": 538.81,
- "confidence": 1,
- "end": 538.91,
- "word": "the",
- "punct": "the",
- "index": 1312
- },
- {
- "start": 538.91,
- "confidence": 1,
- "end": 539.54,
- "word": "room",
- "punct": "room",
- "index": 1313
- },
- {
- "start": 540.03,
- "confidence": 0.89,
- "end": 540.29,
- "word": "from",
- "punct": "from",
- "index": 1314
- },
- {
- "start": 540.29,
- "confidence": 1,
- "end": 540.49,
- "word": "this",
- "punct": "this",
- "index": 1315
- },
- {
- "start": 540.49,
- "confidence": 0.87,
- "end": 540.86,
- "word": "farm",
- "punct": "farm",
- "index": 1316
- },
- {
- "start": 540.86,
- "confidence": 0.57,
- "end": 541.06,
- "word": "and",
- "punct": "and",
- "index": 1317
- },
- {
- "start": 541.11,
- "confidence": 0.34,
- "end": 541.58,
- "word": "but",
- "punct": "but",
- "index": 1318
- },
- {
- "start": 543.21,
- "confidence": 1,
- "end": 543.59,
- "word": "so",
- "punct": "so",
- "index": 1319
- },
- {
- "start": 543.65,
- "confidence": 0.99,
- "end": 543.89,
- "word": "that",
- "punct": "that",
- "index": 1320
- },
- {
- "start": 543.89,
- "confidence": 0.99,
- "end": 544.05,
- "word": "was",
- "punct": "was",
- "index": 1321
- },
- {
- "start": 544.05,
- "confidence": 0.96,
- "end": 544.17,
- "word": "a",
- "punct": "a",
- "index": 1322
- },
- {
- "start": 544.17,
- "confidence": 1,
- "end": 544.52,
- "word": "really",
- "punct": "really",
- "index": 1323
- },
- {
- "start": 544.55,
- "confidence": 1,
- "end": 545.37,
- "word": "interesting",
- "punct": "interesting",
- "index": 1324
- },
- {
- "start": 545.37,
- "confidence": 1,
- "end": 546.54,
- "word": "experience",
- "punct": "experience.",
- "index": 1325
- }
- ],
- "start": 536.02
- },
- "entityRanges": [
- {
- "start": 536.02,
- "end": 536.66,
- "confidence": 0.59,
- "text": "Half",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 536.69,
- "end": 537.43,
- "confidence": 1,
- "text": "serious",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 537.43,
- "end": 537.81,
- "confidence": 1,
- "text": "moment",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 537.81,
- "end": 537.88,
- "confidence": 1,
- "text": "of",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 537.88,
- "end": 538.57,
- "confidence": 0.99,
- "text": "silence",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 538.57,
- "end": 538.81,
- "confidence": 1,
- "text": "in",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 538.81,
- "end": 538.91,
- "confidence": 1,
- "text": "the",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 538.91,
- "end": 539.54,
- "confidence": 1,
- "text": "room",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.03,
- "end": 540.29,
- "confidence": 0.89,
- "text": "from",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.29,
- "end": 540.49,
- "confidence": 1,
- "text": "this",
- "offset": 48,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.49,
- "end": 540.86,
- "confidence": 0.87,
- "text": "farm",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 540.86,
- "end": 541.06,
- "confidence": 0.57,
- "text": "and",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 541.11,
- "end": 541.58,
- "confidence": 0.34,
- "text": "but",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 543.21,
- "end": 543.59,
- "confidence": 1,
- "text": "so",
- "offset": 66,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 543.65,
- "end": 543.89,
- "confidence": 0.99,
- "text": "that",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 543.89,
- "end": 544.05,
- "confidence": 0.99,
- "text": "was",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 544.05,
- "end": 544.17,
- "confidence": 0.96,
- "text": "a",
- "offset": 78,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 544.17,
- "end": 544.52,
- "confidence": 1,
- "text": "really",
- "offset": 80,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 544.55,
- "end": 545.37,
- "confidence": 1,
- "text": "interesting",
- "offset": 87,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 545.37,
- "end": 546.54,
- "confidence": 1,
- "text": "experience.",
- "offset": 99,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It wasn't a controlled study up your sleeve, but it did lead to some leader research that I did.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 106",
- "words": [
- {
- "start": 547.04,
- "confidence": 1,
- "end": 547.27,
- "word": "it",
- "punct": "It",
- "index": 1326
- },
- {
- "start": 547.27,
- "confidence": 1,
- "end": 547.54,
- "word": "wasn't",
- "punct": "wasn't",
- "index": 1327
- },
- {
- "start": 547.54,
- "confidence": 0.99,
- "end": 547.59,
- "word": "a",
- "punct": "a",
- "index": 1328
- },
- {
- "start": 547.59,
- "confidence": 1,
- "end": 548.26,
- "word": "controlled",
- "punct": "controlled",
- "index": 1329
- },
- {
- "start": 548.26,
- "confidence": 1,
- "end": 548.74,
- "word": "study",
- "punct": "study",
- "index": 1330
- },
- {
- "start": 548.74,
- "confidence": 1,
- "end": 548.94,
- "word": "up",
- "punct": "up",
- "index": 1331
- },
- {
- "start": 548.94,
- "confidence": 0.88,
- "end": 549.08,
- "word": "your",
- "punct": "your",
- "index": 1332
- },
- {
- "start": 549.08,
- "confidence": 0.87,
- "end": 549.4,
- "word": "sleeve",
- "punct": "sleeve,",
- "index": 1333
- },
- {
- "start": 549.4,
- "confidence": 1,
- "end": 549.57,
- "word": "but",
- "punct": "but",
- "index": 1334
- },
- {
- "start": 549.57,
- "confidence": 1,
- "end": 549.69,
- "word": "it",
- "punct": "it",
- "index": 1335
- },
- {
- "start": 549.69,
- "confidence": 0.98,
- "end": 549.93,
- "word": "did",
- "punct": "did",
- "index": 1336
- },
- {
- "start": 549.93,
- "confidence": 0.92,
- "end": 550.13,
- "word": "lead",
- "punct": "lead",
- "index": 1337
- },
- {
- "start": 550.13,
- "confidence": 0.87,
- "end": 550.23,
- "word": "to",
- "punct": "to",
- "index": 1338
- },
- {
- "start": 550.23,
- "confidence": 0.99,
- "end": 550.44,
- "word": "some",
- "punct": "some",
- "index": 1339
- },
- {
- "start": 550.44,
- "confidence": 0.59,
- "end": 550.72,
- "word": "leader",
- "punct": "leader",
- "index": 1340
- },
- {
- "start": 550.72,
- "confidence": 0.98,
- "end": 551.2,
- "word": "research",
- "punct": "research",
- "index": 1341
- },
- {
- "start": 551.2,
- "confidence": 0.72,
- "end": 551.32,
- "word": "that",
- "punct": "that",
- "index": 1342
- },
- {
- "start": 551.32,
- "confidence": 0.74,
- "end": 551.43,
- "word": "i",
- "punct": "I",
- "index": 1343
- },
- {
- "start": 551.43,
- "confidence": 1,
- "end": 551.76,
- "word": "did",
- "punct": "did.",
- "index": 1344
- }
- ],
- "start": 547.04
- },
- "entityRanges": [
- {
- "start": 547.04,
- "end": 547.27,
- "confidence": 1,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.27,
- "end": 547.54,
- "confidence": 1,
- "text": "wasn't",
- "offset": 3,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.54,
- "end": 547.59,
- "confidence": 0.99,
- "text": "a",
- "offset": 10,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 547.59,
- "end": 548.26,
- "confidence": 1,
- "text": "controlled",
- "offset": 12,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 548.26,
- "end": 548.74,
- "confidence": 1,
- "text": "study",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 548.74,
- "end": 548.94,
- "confidence": 1,
- "text": "up",
- "offset": 29,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 548.94,
- "end": 549.08,
- "confidence": 0.88,
- "text": "your",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.08,
- "end": 549.4,
- "confidence": 0.87,
- "text": "sleeve,",
- "offset": 37,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.4,
- "end": 549.57,
- "confidence": 1,
- "text": "but",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.57,
- "end": 549.69,
- "confidence": 1,
- "text": "it",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.69,
- "end": 549.93,
- "confidence": 0.98,
- "text": "did",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 549.93,
- "end": 550.13,
- "confidence": 0.92,
- "text": "lead",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.13,
- "end": 550.23,
- "confidence": 0.87,
- "text": "to",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.23,
- "end": 550.44,
- "confidence": 0.99,
- "text": "some",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.44,
- "end": 550.72,
- "confidence": 0.59,
- "text": "leader",
- "offset": 69,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 550.72,
- "end": 551.2,
- "confidence": 0.98,
- "text": "research",
- "offset": 76,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.2,
- "end": 551.32,
- "confidence": 0.72,
- "text": "that",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.32,
- "end": 551.43,
- "confidence": 0.74,
- "text": "I",
- "offset": 90,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 551.43,
- "end": 551.76,
- "confidence": 1,
- "text": "did.",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "i.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 107",
- "words": [
- {
- "start": 551.78,
- "confidence": 0.38,
- "end": 552.01,
- "word": "i.",
- "punct": "i.",
- "index": 1345
- }
- ],
- "start": 551.78
- },
- "entityRanges": [
- {
- "start": 551.78,
- "end": 552.01,
- "confidence": 0.38,
- "text": "i.",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "t.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 108",
- "words": [
- {
- "start": 552.01,
- "confidence": 0.45,
- "end": 552.25,
- "word": "t.",
- "punct": "t.",
- "index": 1346
- }
- ],
- "start": 552.01
- },
- "entityRanges": [
- {
- "start": 552.01,
- "end": 552.25,
- "confidence": 0.45,
- "text": "t.",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "With plush, London.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 109",
- "words": [
- {
- "start": 552.27,
- "confidence": 0.99,
- "end": 552.46,
- "word": "with",
- "punct": "With",
- "index": 1347
- },
- {
- "start": 552.46,
- "confidence": 1,
- "end": 552.87,
- "word": "plush",
- "punct": "plush,",
- "index": 1348
- },
- {
- "start": 552.87,
- "confidence": 0.91,
- "end": 553.26,
- "word": "london",
- "punct": "London.",
- "index": 1349
- }
- ],
- "start": 552.27
- },
- "entityRanges": [
- {
- "start": 552.27,
- "end": 552.46,
- "confidence": 0.99,
- "text": "With",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 552.46,
- "end": 552.87,
- "confidence": 1,
- "text": "plush,",
- "offset": 5,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 552.87,
- "end": 553.26,
- "confidence": 0.91,
- "text": "London.",
- "offset": 12,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Cynthia busy.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 110",
- "words": [
- {
- "start": 553.27,
- "confidence": 0.58,
- "end": 553.59,
- "word": "cynthia",
- "punct": "Cynthia",
- "index": 1350
- },
- {
- "start": 553.63,
- "confidence": 0.83,
- "end": 553.93,
- "word": "busy",
- "punct": "busy.",
- "index": 1351
- }
- ],
- "start": 553.27
- },
- "entityRanges": [
- {
- "start": 553.27,
- "end": 553.59,
- "confidence": 0.58,
- "text": "Cynthia",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 553.63,
- "end": 553.93,
- "confidence": 0.83,
- "text": "busy.",
- "offset": 8,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Or we had people come into the lab and smash these Hex bugs that move around in a really lifelike way, like insects.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 111",
- "words": [
- {
- "start": 553.93,
- "confidence": 0.67,
- "end": 554.23,
- "word": "or",
- "punct": "Or",
- "index": 1352
- },
- {
- "start": 554.52,
- "confidence": 1,
- "end": 554.96,
- "word": "we",
- "punct": "we",
- "index": 1353
- },
- {
- "start": 554.97,
- "confidence": 0.84,
- "end": 555.11,
- "word": "had",
- "punct": "had",
- "index": 1354
- },
- {
- "start": 555.11,
- "confidence": 1,
- "end": 555.33,
- "word": "people",
- "punct": "people",
- "index": 1355
- },
- {
- "start": 555.33,
- "confidence": 0.92,
- "end": 555.54,
- "word": "come",
- "punct": "come",
- "index": 1356
- },
- {
- "start": 555.54,
- "confidence": 0.88,
- "end": 555.71,
- "word": "into",
- "punct": "into",
- "index": 1357
- },
- {
- "start": 555.71,
- "confidence": 1,
- "end": 555.82,
- "word": "the",
- "punct": "the",
- "index": 1358
- },
- {
- "start": 555.82,
- "confidence": 1,
- "end": 556.3,
- "word": "lab",
- "punct": "lab",
- "index": 1359
- },
- {
- "start": 556.67,
- "confidence": 0.98,
- "end": 556.9,
- "word": "and",
- "punct": "and",
- "index": 1360
- },
- {
- "start": 556.9,
- "confidence": 0.9,
- "end": 557.25,
- "word": "smash",
- "punct": "smash",
- "index": 1361
- },
- {
- "start": 557.25,
- "confidence": 1,
- "end": 557.43,
- "word": "these",
- "punct": "these",
- "index": 1362
- },
- {
- "start": 557.43,
- "confidence": 0.86,
- "end": 557.85,
- "word": "hex",
- "punct": "Hex",
- "index": 1363
- },
- {
- "start": 557.85,
- "confidence": 0.97,
- "end": 558.21,
- "word": "bugs",
- "punct": "bugs",
- "index": 1364
- },
- {
- "start": 558.21,
- "confidence": 0.81,
- "end": 558.32,
- "word": "that",
- "punct": "that",
- "index": 1365
- },
- {
- "start": 558.32,
- "confidence": 0.99,
- "end": 558.6,
- "word": "move",
- "punct": "move",
- "index": 1366
- },
- {
- "start": 558.6,
- "confidence": 1,
- "end": 559.1,
- "word": "around",
- "punct": "around",
- "index": 1367
- },
- {
- "start": 559.1,
- "confidence": 1,
- "end": 559.24,
- "word": "in",
- "punct": "in",
- "index": 1368
- },
- {
- "start": 559.24,
- "confidence": 0.72,
- "end": 559.3,
- "word": "a",
- "punct": "a",
- "index": 1369
- },
- {
- "start": 559.29,
- "confidence": 0.97,
- "end": 559.5,
- "word": "really",
- "punct": "really",
- "index": 1370
- },
- {
- "start": 559.5,
- "confidence": 0.89,
- "end": 559.9,
- "word": "lifelike",
- "punct": "lifelike",
- "index": 1371
- },
- {
- "start": 559.92,
- "confidence": 0.88,
- "end": 560.1,
- "word": "way",
- "punct": "way,",
- "index": 1372
- },
- {
- "start": 560.1,
- "confidence": 0.94,
- "end": 560.31,
- "word": "like",
- "punct": "like",
- "index": 1373
- },
- {
- "start": 560.31,
- "confidence": 1,
- "end": 561.16,
- "word": "insects",
- "punct": "insects.",
- "index": 1374
- }
- ],
- "start": 553.93
- },
- "entityRanges": [
- {
- "start": 553.93,
- "end": 554.23,
- "confidence": 0.67,
- "text": "Or",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 554.52,
- "end": 554.96,
- "confidence": 1,
- "text": "we",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 554.97,
- "end": 555.11,
- "confidence": 0.84,
- "text": "had",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.11,
- "end": 555.33,
- "confidence": 1,
- "text": "people",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.33,
- "end": 555.54,
- "confidence": 0.92,
- "text": "come",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.54,
- "end": 555.71,
- "confidence": 0.88,
- "text": "into",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.71,
- "end": 555.82,
- "confidence": 1,
- "text": "the",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 555.82,
- "end": 556.3,
- "confidence": 1,
- "text": "lab",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 556.67,
- "end": 556.9,
- "confidence": 0.98,
- "text": "and",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 556.9,
- "end": 557.25,
- "confidence": 0.9,
- "text": "smash",
- "offset": 39,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 557.25,
- "end": 557.43,
- "confidence": 1,
- "text": "these",
- "offset": 45,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 557.43,
- "end": 557.85,
- "confidence": 0.86,
- "text": "Hex",
- "offset": 51,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 557.85,
- "end": 558.21,
- "confidence": 0.97,
- "text": "bugs",
- "offset": 55,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 558.21,
- "end": 558.32,
- "confidence": 0.81,
- "text": "that",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 558.32,
- "end": 558.6,
- "confidence": 0.99,
- "text": "move",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 558.6,
- "end": 559.1,
- "confidence": 1,
- "text": "around",
- "offset": 70,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.1,
- "end": 559.24,
- "confidence": 1,
- "text": "in",
- "offset": 77,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.24,
- "end": 559.3,
- "confidence": 0.72,
- "text": "a",
- "offset": 80,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.29,
- "end": 559.5,
- "confidence": 0.97,
- "text": "really",
- "offset": 82,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.5,
- "end": 559.9,
- "confidence": 0.89,
- "text": "lifelike",
- "offset": 89,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 559.92,
- "end": 560.1,
- "confidence": 0.88,
- "text": "way,",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 560.1,
- "end": 560.31,
- "confidence": 0.94,
- "text": "like",
- "offset": 103,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 560.31,
- "end": 561.16,
- "confidence": 1,
- "text": "insects.",
- "offset": 108,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "So instead of choosing something huge.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 112",
- "words": [
- {
- "start": 561.28,
- "confidence": 0.91,
- "end": 561.48,
- "word": "so",
- "punct": "So",
- "index": 1375
- },
- {
- "start": 561.48,
- "confidence": 0.99,
- "end": 561.71,
- "word": "instead",
- "punct": "instead",
- "index": 1376
- },
- {
- "start": 561.71,
- "confidence": 1,
- "end": 561.8,
- "word": "of",
- "punct": "of",
- "index": 1377
- },
- {
- "start": 561.8,
- "confidence": 1,
- "end": 562.09,
- "word": "choosing",
- "punct": "choosing",
- "index": 1378
- },
- {
- "start": 562.09,
- "confidence": 1,
- "end": 562.36,
- "word": "something",
- "punct": "something",
- "index": 1379
- },
- {
- "start": 562.39,
- "confidence": 0.63,
- "end": 562.75,
- "word": "huge",
- "punct": "huge.",
- "index": 1380
- }
- ],
- "start": 561.28
- },
- "entityRanges": [
- {
- "start": 561.28,
- "end": 561.48,
- "confidence": 0.91,
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 561.48,
- "end": 561.71,
- "confidence": 0.99,
- "text": "instead",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 561.71,
- "end": 561.8,
- "confidence": 1,
- "text": "of",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 561.8,
- "end": 562.09,
- "confidence": 1,
- "text": "choosing",
- "offset": 14,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 562.09,
- "end": 562.36,
- "confidence": 1,
- "text": "something",
- "offset": 23,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 562.39,
- "end": 562.75,
- "confidence": 0.63,
- "text": "huge.",
- "offset": 33,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "People are trying to reach for something more basic.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 113",
- "words": [
- {
- "start": 562.81,
- "confidence": 0.99,
- "end": 563.33,
- "word": "people",
- "punct": "People",
- "index": 1381
- },
- {
- "start": 563.69,
- "confidence": 0.93,
- "end": 563.83,
- "word": "are",
- "punct": "are",
- "index": 1382
- },
- {
- "start": 563.86,
- "confidence": 0.98,
- "end": 564.23,
- "word": "trying",
- "punct": "trying",
- "index": 1383
- },
- {
- "start": 564.23,
- "confidence": 1,
- "end": 564.48,
- "word": "to",
- "punct": "to",
- "index": 1384
- },
- {
- "start": 564.48,
- "confidence": 0.76,
- "end": 564.65,
- "word": "reach",
- "punct": "reach",
- "index": 1385
- },
- {
- "start": 564.65,
- "confidence": 0.42,
- "end": 564.76,
- "word": "for",
- "punct": "for",
- "index": 1386
- },
- {
- "start": 564.76,
- "confidence": 1,
- "end": 565.06,
- "word": "something",
- "punct": "something",
- "index": 1387
- },
- {
- "start": 565.06,
- "confidence": 1,
- "end": 565.23,
- "word": "more",
- "punct": "more",
- "index": 1388
- },
- {
- "start": 565.23,
- "confidence": 1,
- "end": 566.05,
- "word": "basic",
- "punct": "basic.",
- "index": 1389
- }
- ],
- "start": 562.81
- },
- "entityRanges": [
- {
- "start": 562.81,
- "end": 563.33,
- "confidence": 0.99,
- "text": "People",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 563.69,
- "end": 563.83,
- "confidence": 0.93,
- "text": "are",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 563.86,
- "end": 564.23,
- "confidence": 0.98,
- "text": "trying",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.23,
- "end": 564.48,
- "confidence": 1,
- "text": "to",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.48,
- "end": 564.65,
- "confidence": 0.76,
- "text": "reach",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.65,
- "end": 564.76,
- "confidence": 0.42,
- "text": "for",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 564.76,
- "end": 565.06,
- "confidence": 1,
- "text": "something",
- "offset": 31,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 565.06,
- "end": 565.23,
- "confidence": 1,
- "text": "more",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 565.23,
- "end": 566.05,
- "confidence": 1,
- "text": "basic.",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And what we found was that high embassy people would hesitate, more hit the heck's bucks.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 114",
- "words": [
- {
- "start": 566.59,
- "confidence": 1,
- "end": 567.04,
- "word": "and",
- "punct": "And",
- "index": 1390
- },
- {
- "start": 567.23,
- "confidence": 0.98,
- "end": 567.41,
- "word": "what",
- "punct": "what",
- "index": 1391
- },
- {
- "start": 567.41,
- "confidence": 1,
- "end": 567.53,
- "word": "we",
- "punct": "we",
- "index": 1392
- },
- {
- "start": 567.53,
- "confidence": 1,
- "end": 568.18,
- "word": "found",
- "punct": "found",
- "index": 1393
- },
- {
- "start": 568.18,
- "confidence": 1,
- "end": 568.55,
- "word": "was",
- "punct": "was",
- "index": 1394
- },
- {
- "start": 568.55,
- "confidence": 0.99,
- "end": 568.77,
- "word": "that",
- "punct": "that",
- "index": 1395
- },
- {
- "start": 568.8,
- "confidence": 0.91,
- "end": 569.22,
- "word": "high",
- "punct": "high",
- "index": 1396
- },
- {
- "start": 569.22,
- "confidence": 0.66,
- "end": 569.65,
- "word": "embassy",
- "punct": "embassy",
- "index": 1397
- },
- {
- "start": 569.65,
- "confidence": 1,
- "end": 570.1,
- "word": "people",
- "punct": "people",
- "index": 1398
- },
- {
- "start": 570.1,
- "confidence": 0.99,
- "end": 570.25,
- "word": "would",
- "punct": "would",
- "index": 1399
- },
- {
- "start": 570.25,
- "confidence": 0.98,
- "end": 570.77,
- "word": "hesitate",
- "punct": "hesitate,",
- "index": 1400
- },
- {
- "start": 570.78,
- "confidence": 0.45,
- "end": 570.97,
- "word": "more",
- "punct": "more",
- "index": 1401
- },
- {
- "start": 570.99,
- "confidence": 0.42,
- "end": 571.24,
- "word": "hit",
- "punct": "hit",
- "index": 1402
- },
- {
- "start": 571.25,
- "confidence": 0.99,
- "end": 571.35,
- "word": "the",
- "punct": "the",
- "index": 1403
- },
- {
- "start": 571.35,
- "confidence": 0.49,
- "end": 571.69,
- "word": "heck's",
- "punct": "heck's",
- "index": 1404
- },
- {
- "start": 571.7,
- "confidence": 0.59,
- "end": 572.22,
- "word": "bucks",
- "punct": "bucks.",
- "index": 1405
- }
- ],
- "start": 566.59
- },
- "entityRanges": [
- {
- "start": 566.59,
- "end": 567.04,
- "confidence": 1,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 567.23,
- "end": 567.41,
- "confidence": 0.98,
- "text": "what",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 567.41,
- "end": 567.53,
- "confidence": 1,
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 567.53,
- "end": 568.18,
- "confidence": 1,
- "text": "found",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 568.18,
- "end": 568.55,
- "confidence": 1,
- "text": "was",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 568.55,
- "end": 568.77,
- "confidence": 0.99,
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 568.8,
- "end": 569.22,
- "confidence": 0.91,
- "text": "high",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 569.22,
- "end": 569.65,
- "confidence": 0.66,
- "text": "embassy",
- "offset": 32,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 569.65,
- "end": 570.1,
- "confidence": 1,
- "text": "people",
- "offset": 40,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.1,
- "end": 570.25,
- "confidence": 0.99,
- "text": "would",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.25,
- "end": 570.77,
- "confidence": 0.98,
- "text": "hesitate,",
- "offset": 53,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.78,
- "end": 570.97,
- "confidence": 0.45,
- "text": "more",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 570.99,
- "end": 571.24,
- "confidence": 0.42,
- "text": "hit",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.25,
- "end": 571.35,
- "confidence": 0.99,
- "text": "the",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.35,
- "end": 571.69,
- "confidence": 0.49,
- "text": "heck's",
- "offset": 76,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 571.7,
- "end": 572.22,
- "confidence": 0.59,
- "text": "bucks.",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "This is just a little study, but it's part of a large body of research that is starting to indicate that there may be a connection between people's tendencies for empathy and their behaviour around, Rover.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 115",
- "words": [
- {
- "start": 573.62,
- "confidence": 0.99,
- "end": 573.81,
- "word": "this",
- "punct": "This",
- "index": 1406
- },
- {
- "start": 573.82,
- "confidence": 0.99,
- "end": 573.92,
- "word": "is",
- "punct": "is",
- "index": 1407
- },
- {
- "start": 573.92,
- "confidence": 1,
- "end": 574.1,
- "word": "just",
- "punct": "just",
- "index": 1408
- },
- {
- "start": 574.1,
- "confidence": 1,
- "end": 574.16,
- "word": "a",
- "punct": "a",
- "index": 1409
- },
- {
- "start": 574.16,
- "confidence": 1,
- "end": 574.4,
- "word": "little",
- "punct": "little",
- "index": 1410
- },
- {
- "start": 574.4,
- "confidence": 1,
- "end": 574.91,
- "word": "study",
- "punct": "study,",
- "index": 1411
- },
- {
- "start": 574.91,
- "confidence": 1,
- "end": 575.27,
- "word": "but",
- "punct": "but",
- "index": 1412
- },
- {
- "start": 575.49,
- "confidence": 0.66,
- "end": 575.72,
- "word": "it's",
- "punct": "it's",
- "index": 1413
- },
- {
- "start": 575.74,
- "confidence": 1,
- "end": 575.97,
- "word": "part",
- "punct": "part",
- "index": 1414
- },
- {
- "start": 575.97,
- "confidence": 1,
- "end": 576.07,
- "word": "of",
- "punct": "of",
- "index": 1415
- },
- {
- "start": 576.07,
- "confidence": 1,
- "end": 576.12,
- "word": "a",
- "punct": "a",
- "index": 1416
- },
- {
- "start": 576.12,
- "confidence": 0.57,
- "end": 576.48,
- "word": "large",
- "punct": "large",
- "index": 1417
- },
- {
- "start": 576.48,
- "confidence": 1,
- "end": 576.77,
- "word": "body",
- "punct": "body",
- "index": 1418
- },
- {
- "start": 576.77,
- "confidence": 1,
- "end": 576.88,
- "word": "of",
- "punct": "of",
- "index": 1419
- },
- {
- "start": 576.88,
- "confidence": 1,
- "end": 577.56,
- "word": "research",
- "punct": "research",
- "index": 1420
- },
- {
- "start": 577.56,
- "confidence": 1,
- "end": 577.9,
- "word": "that",
- "punct": "that",
- "index": 1421
- },
- {
- "start": 578.02,
- "confidence": 0.86,
- "end": 578.25,
- "word": "is",
- "punct": "is",
- "index": 1422
- },
- {
- "start": 578.25,
- "confidence": 0.99,
- "end": 578.61,
- "word": "starting",
- "punct": "starting",
- "index": 1423
- },
- {
- "start": 578.61,
- "confidence": 1,
- "end": 578.73,
- "word": "to",
- "punct": "to",
- "index": 1424
- },
- {
- "start": 578.76,
- "confidence": 1,
- "end": 579.2,
- "word": "indicate",
- "punct": "indicate",
- "index": 1425
- },
- {
- "start": 579.2,
- "confidence": 1,
- "end": 579.3,
- "word": "that",
- "punct": "that",
- "index": 1426
- },
- {
- "start": 579.3,
- "confidence": 1,
- "end": 579.4,
- "word": "there",
- "punct": "there",
- "index": 1427
- },
- {
- "start": 579.4,
- "confidence": 1,
- "end": 579.62,
- "word": "may",
- "punct": "may",
- "index": 1428
- },
- {
- "start": 579.62,
- "confidence": 1,
- "end": 579.84,
- "word": "be",
- "punct": "be",
- "index": 1429
- },
- {
- "start": 579.87,
- "confidence": 1,
- "end": 579.95,
- "word": "a",
- "punct": "a",
- "index": 1430
- },
- {
- "start": 579.95,
- "confidence": 1,
- "end": 580.53,
- "word": "connection",
- "punct": "connection",
- "index": 1431
- },
- {
- "start": 580.53,
- "confidence": 1,
- "end": 580.87,
- "word": "between",
- "punct": "between",
- "index": 1432
- },
- {
- "start": 580.87,
- "confidence": 0.83,
- "end": 581.3,
- "word": "people's",
- "punct": "people's",
- "index": 1433
- },
- {
- "start": 581.3,
- "confidence": 0.88,
- "end": 581.81,
- "word": "tendencies",
- "punct": "tendencies",
- "index": 1434
- },
- {
- "start": 581.81,
- "confidence": 0.98,
- "end": 581.9,
- "word": "for",
- "punct": "for",
- "index": 1435
- },
- {
- "start": 581.9,
- "confidence": 0.99,
- "end": 582.61,
- "word": "empathy",
- "punct": "empathy",
- "index": 1436
- },
- {
- "start": 582.86,
- "confidence": 0.73,
- "end": 582.99,
- "word": "and",
- "punct": "and",
- "index": 1437
- },
- {
- "start": 583.03,
- "confidence": 0.96,
- "end": 583.15,
- "word": "their",
- "punct": "their",
- "index": 1438
- },
- {
- "start": 583.15,
- "confidence": 1,
- "end": 583.79,
- "word": "behaviour",
- "punct": "behaviour",
- "index": 1439
- },
- {
- "start": 583.79,
- "confidence": 1,
- "end": 584.19,
- "word": "around",
- "punct": "around,",
- "index": 1440
- },
- {
- "start": 584.2,
- "confidence": 0.4,
- "end": 584.63,
- "word": "rover",
- "punct": "Rover.",
- "index": 1441
- }
- ],
- "start": 573.62
- },
- "entityRanges": [
- {
- "start": 573.62,
- "end": 573.81,
- "confidence": 0.99,
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 573.82,
- "end": 573.92,
- "confidence": 0.99,
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 573.92,
- "end": 574.1,
- "confidence": 1,
- "text": "just",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.1,
- "end": 574.16,
- "confidence": 1,
- "text": "a",
- "offset": 13,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.16,
- "end": 574.4,
- "confidence": 1,
- "text": "little",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.4,
- "end": 574.91,
- "confidence": 1,
- "text": "study,",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 574.91,
- "end": 575.27,
- "confidence": 1,
- "text": "but",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 575.49,
- "end": 575.72,
- "confidence": 0.66,
- "text": "it's",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 575.74,
- "end": 575.97,
- "confidence": 1,
- "text": "part",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 575.97,
- "end": 576.07,
- "confidence": 1,
- "text": "of",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.07,
- "end": 576.12,
- "confidence": 1,
- "text": "a",
- "offset": 46,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.12,
- "end": 576.48,
- "confidence": 0.57,
- "text": "large",
- "offset": 48,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.48,
- "end": 576.77,
- "confidence": 1,
- "text": "body",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.77,
- "end": 576.88,
- "confidence": 1,
- "text": "of",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 576.88,
- "end": 577.56,
- "confidence": 1,
- "text": "research",
- "offset": 62,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 577.56,
- "end": 577.9,
- "confidence": 1,
- "text": "that",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.02,
- "end": 578.25,
- "confidence": 0.86,
- "text": "is",
- "offset": 76,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.25,
- "end": 578.61,
- "confidence": 0.99,
- "text": "starting",
- "offset": 79,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.61,
- "end": 578.73,
- "confidence": 1,
- "text": "to",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 578.76,
- "end": 579.2,
- "confidence": 1,
- "text": "indicate",
- "offset": 91,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.2,
- "end": 579.3,
- "confidence": 1,
- "text": "that",
- "offset": 100,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.3,
- "end": 579.4,
- "confidence": 1,
- "text": "there",
- "offset": 105,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.4,
- "end": 579.62,
- "confidence": 1,
- "text": "may",
- "offset": 111,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.62,
- "end": 579.84,
- "confidence": 1,
- "text": "be",
- "offset": 115,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.87,
- "end": 579.95,
- "confidence": 1,
- "text": "a",
- "offset": 118,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 579.95,
- "end": 580.53,
- "confidence": 1,
- "text": "connection",
- "offset": 120,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 580.53,
- "end": 580.87,
- "confidence": 1,
- "text": "between",
- "offset": 131,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 580.87,
- "end": 581.3,
- "confidence": 0.83,
- "text": "people's",
- "offset": 139,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 581.3,
- "end": 581.81,
- "confidence": 0.88,
- "text": "tendencies",
- "offset": 148,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 581.81,
- "end": 581.9,
- "confidence": 0.98,
- "text": "for",
- "offset": 159,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 581.9,
- "end": 582.61,
- "confidence": 0.99,
- "text": "empathy",
- "offset": 163,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 582.86,
- "end": 582.99,
- "confidence": 0.73,
- "text": "and",
- "offset": 171,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 583.03,
- "end": 583.15,
- "confidence": 0.96,
- "text": "their",
- "offset": 175,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 583.15,
- "end": 583.79,
- "confidence": 1,
- "text": "behaviour",
- "offset": 181,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 583.79,
- "end": 584.19,
- "confidence": 1,
- "text": "around,",
- "offset": 191,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 584.2,
- "end": 584.63,
- "confidence": 0.4,
- "text": "Rover.",
- "offset": 199,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But my question for the coming era of human robot interaction is not to.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 116",
- "words": [
- {
- "start": 585.66,
- "confidence": 0.84,
- "end": 585.8,
- "word": "but",
- "punct": "But",
- "index": 1442
- },
- {
- "start": 585.84,
- "confidence": 1,
- "end": 586.09,
- "word": "my",
- "punct": "my",
- "index": 1443
- },
- {
- "start": 586.09,
- "confidence": 1,
- "end": 586.85,
- "word": "question",
- "punct": "question",
- "index": 1444
- },
- {
- "start": 586.88,
- "confidence": 0.95,
- "end": 587.01,
- "word": "for",
- "punct": "for",
- "index": 1445
- },
- {
- "start": 587.01,
- "confidence": 1,
- "end": 587.1,
- "word": "the",
- "punct": "the",
- "index": 1446
- },
- {
- "start": 587.1,
- "confidence": 1,
- "end": 587.61,
- "word": "coming",
- "punct": "coming",
- "index": 1447
- },
- {
- "start": 587.61,
- "confidence": 0.97,
- "end": 587.94,
- "word": "era",
- "punct": "era",
- "index": 1448
- },
- {
- "start": 587.97,
- "confidence": 0.94,
- "end": 588.09,
- "word": "of",
- "punct": "of",
- "index": 1449
- },
- {
- "start": 588.09,
- "confidence": 1,
- "end": 588.39,
- "word": "human",
- "punct": "human",
- "index": 1450
- },
- {
- "start": 588.39,
- "confidence": 0.99,
- "end": 588.68,
- "word": "robot",
- "punct": "robot",
- "index": 1451
- },
- {
- "start": 588.69,
- "confidence": 0.79,
- "end": 589.27,
- "word": "interaction",
- "punct": "interaction",
- "index": 1452
- },
- {
- "start": 589.37,
- "confidence": 0.96,
- "end": 589.54,
- "word": "is",
- "punct": "is",
- "index": 1453
- },
- {
- "start": 589.55,
- "confidence": 0.98,
- "end": 589.99,
- "word": "not",
- "punct": "not",
- "index": 1454
- },
- {
- "start": 590.35,
- "confidence": 0.43,
- "end": 590.47,
- "word": "to",
- "punct": "to.",
- "index": 1455
- }
- ],
- "start": 585.66
- },
- "entityRanges": [
- {
- "start": 585.66,
- "end": 585.8,
- "confidence": 0.84,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 585.84,
- "end": 586.09,
- "confidence": 1,
- "text": "my",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 586.09,
- "end": 586.85,
- "confidence": 1,
- "text": "question",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 586.88,
- "end": 587.01,
- "confidence": 0.95,
- "text": "for",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.01,
- "end": 587.1,
- "confidence": 1,
- "text": "the",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.1,
- "end": 587.61,
- "confidence": 1,
- "text": "coming",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.61,
- "end": 587.94,
- "confidence": 0.97,
- "text": "era",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 587.97,
- "end": 588.09,
- "confidence": 0.94,
- "text": "of",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 588.09,
- "end": 588.39,
- "confidence": 1,
- "text": "human",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 588.39,
- "end": 588.68,
- "confidence": 0.99,
- "text": "robot",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 588.69,
- "end": 589.27,
- "confidence": 0.79,
- "text": "interaction",
- "offset": 50,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 589.37,
- "end": 589.54,
- "confidence": 0.96,
- "text": "is",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 589.55,
- "end": 589.99,
- "confidence": 0.98,
- "text": "not",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 590.35,
- "end": 590.47,
- "confidence": 0.43,
- "text": "to.",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "We empathise with throw, but it.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 117",
- "words": [
- {
- "start": 590.57,
- "confidence": 0.98,
- "end": 590.76,
- "word": "we",
- "punct": "We",
- "index": 1456
- },
- {
- "start": 590.76,
- "confidence": 0.99,
- "end": 591.42,
- "word": "empathise",
- "punct": "empathise",
- "index": 1457
- },
- {
- "start": 591.42,
- "confidence": 0.98,
- "end": 591.57,
- "word": "with",
- "punct": "with",
- "index": 1458
- },
- {
- "start": 591.57,
- "confidence": 0.41,
- "end": 591.78,
- "word": "throw",
- "punct": "throw,",
- "index": 1459
- },
- {
- "start": 591.78,
- "confidence": 0.98,
- "end": 592.4,
- "word": "but",
- "punct": "but",
- "index": 1460
- },
- {
- "start": 593.2,
- "confidence": 0.56,
- "end": 593.41,
- "word": "it",
- "punct": "it.",
- "index": 1461
- }
- ],
- "start": 590.57
- },
- "entityRanges": [
- {
- "start": 590.57,
- "end": 590.76,
- "confidence": 0.98,
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 590.76,
- "end": 591.42,
- "confidence": 0.99,
- "text": "empathise",
- "offset": 3,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 591.42,
- "end": 591.57,
- "confidence": 0.98,
- "text": "with",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 591.57,
- "end": 591.78,
- "confidence": 0.41,
- "text": "throw,",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 591.78,
- "end": 592.4,
- "confidence": 0.98,
- "text": "but",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 593.2,
- "end": 593.41,
- "confidence": 0.56,
- "text": "it.",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Can robots change people's thinking, Is there reason to.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 118",
- "words": [
- {
- "start": 593.41,
- "confidence": 0.9,
- "end": 593.85,
- "word": "can",
- "punct": "Can",
- "index": 1462
- },
- {
- "start": 593.86,
- "confidence": 0.66,
- "end": 594.36,
- "word": "robots",
- "punct": "robots",
- "index": 1463
- },
- {
- "start": 594.37,
- "confidence": 0.99,
- "end": 595.01,
- "word": "change",
- "punct": "change",
- "index": 1464
- },
- {
- "start": 595.03,
- "confidence": 0.96,
- "end": 595.41,
- "word": "people's",
- "punct": "people's",
- "index": 1465
- },
- {
- "start": 595.63,
- "confidence": 0.93,
- "end": 596.03,
- "word": "thinking",
- "punct": "thinking,",
- "index": 1466
- },
- {
- "start": 597.48,
- "confidence": 0.97,
- "end": 597.69,
- "word": "is",
- "punct": "Is",
- "index": 1467
- },
- {
- "start": 597.69,
- "confidence": 0.91,
- "end": 597.85,
- "word": "there",
- "punct": "there",
- "index": 1468
- },
- {
- "start": 597.86,
- "confidence": 1,
- "end": 598.27,
- "word": "reason",
- "punct": "reason",
- "index": 1469
- },
- {
- "start": 598.27,
- "confidence": 0.97,
- "end": 598.49,
- "word": "to",
- "punct": "to.",
- "index": 1470
- }
- ],
- "start": 593.41
- },
- "entityRanges": [
- {
- "start": 593.41,
- "end": 593.85,
- "confidence": 0.9,
- "text": "Can",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 593.86,
- "end": 594.36,
- "confidence": 0.66,
- "text": "robots",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 594.37,
- "end": 595.01,
- "confidence": 0.99,
- "text": "change",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 595.03,
- "end": 595.41,
- "confidence": 0.96,
- "text": "people's",
- "offset": 18,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 595.63,
- "end": 596.03,
- "confidence": 0.93,
- "text": "thinking,",
- "offset": 27,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 597.48,
- "end": 597.69,
- "confidence": 0.97,
- "text": "Is",
- "offset": 37,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 597.69,
- "end": 597.85,
- "confidence": 0.91,
- "text": "there",
- "offset": 40,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 597.86,
- "end": 598.27,
- "confidence": 1,
- "text": "reason",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 598.27,
- "end": 598.49,
- "confidence": 0.97,
- "text": "to.",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "For example, prevent the child from kicking about Doc That just out of respect for property because the child may be more likely to take a real dark and again.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 119",
- "words": [
- {
- "start": 598.49,
- "confidence": 1,
- "end": 598.65,
- "word": "for",
- "punct": "For",
- "index": 1471
- },
- {
- "start": 598.65,
- "confidence": 1,
- "end": 599.47,
- "word": "example",
- "punct": "example,",
- "index": 1472
- },
- {
- "start": 599.79,
- "confidence": 1,
- "end": 600.15,
- "word": "prevent",
- "punct": "prevent",
- "index": 1473
- },
- {
- "start": 600.15,
- "confidence": 0.39,
- "end": 600.25,
- "word": "the",
- "punct": "the",
- "index": 1474
- },
- {
- "start": 600.25,
- "confidence": 1,
- "end": 600.7,
- "word": "child",
- "punct": "child",
- "index": 1475
- },
- {
- "start": 600.7,
- "confidence": 1,
- "end": 600.85,
- "word": "from",
- "punct": "from",
- "index": 1476
- },
- {
- "start": 600.85,
- "confidence": 0.82,
- "end": 601.25,
- "word": "kicking",
- "punct": "kicking",
- "index": 1477
- },
- {
- "start": 601.3,
- "confidence": 0.99,
- "end": 601.62,
- "word": "about",
- "punct": "about",
- "index": 1478
- },
- {
- "start": 601.69,
- "confidence": 0.58,
- "end": 602.1,
- "word": "doc",
- "punct": "Doc",
- "index": 1479
- },
- {
- "start": 603.2,
- "confidence": 0.57,
- "end": 603.51,
- "word": "that",
- "punct": "That",
- "index": 1480
- },
- {
- "start": 603.55,
- "confidence": 1,
- "end": 603.92,
- "word": "just",
- "punct": "just",
- "index": 1481
- },
- {
- "start": 603.95,
- "confidence": 0.98,
- "end": 604.06,
- "word": "out",
- "punct": "out",
- "index": 1482
- },
- {
- "start": 604.06,
- "confidence": 0.99,
- "end": 604.16,
- "word": "of",
- "punct": "of",
- "index": 1483
- },
- {
- "start": 604.16,
- "confidence": 1,
- "end": 604.66,
- "word": "respect",
- "punct": "respect",
- "index": 1484
- },
- {
- "start": 604.66,
- "confidence": 1,
- "end": 604.8,
- "word": "for",
- "punct": "for",
- "index": 1485
- },
- {
- "start": 604.8,
- "confidence": 1,
- "end": 605.53,
- "word": "property",
- "punct": "property",
- "index": 1486
- },
- {
- "start": 606.15,
- "confidence": 1,
- "end": 606.83,
- "word": "because",
- "punct": "because",
- "index": 1487
- },
- {
- "start": 606.83,
- "confidence": 0.96,
- "end": 606.93,
- "word": "the",
- "punct": "the",
- "index": 1488
- },
- {
- "start": 606.93,
- "confidence": 1,
- "end": 607.25,
- "word": "child",
- "punct": "child",
- "index": 1489
- },
- {
- "start": 607.25,
- "confidence": 0.57,
- "end": 607.35,
- "word": "may",
- "punct": "may",
- "index": 1490
- },
- {
- "start": 607.35,
- "confidence": 0.98,
- "end": 607.47,
- "word": "be",
- "punct": "be",
- "index": 1491
- },
- {
- "start": 607.47,
- "confidence": 1,
- "end": 607.6,
- "word": "more",
- "punct": "more",
- "index": 1492
- },
- {
- "start": 607.6,
- "confidence": 1,
- "end": 607.97,
- "word": "likely",
- "punct": "likely",
- "index": 1493
- },
- {
- "start": 607.97,
- "confidence": 1,
- "end": 608.07,
- "word": "to",
- "punct": "to",
- "index": 1494
- },
- {
- "start": 608.07,
- "confidence": 0.9,
- "end": 608.28,
- "word": "take",
- "punct": "take",
- "index": 1495
- },
- {
- "start": 608.28,
- "confidence": 0.92,
- "end": 608.35,
- "word": "a",
- "punct": "a",
- "index": 1496
- },
- {
- "start": 608.35,
- "confidence": 1,
- "end": 608.55,
- "word": "real",
- "punct": "real",
- "index": 1497
- },
- {
- "start": 608.55,
- "confidence": 0.8,
- "end": 609.03,
- "word": "dark",
- "punct": "dark",
- "index": 1498
- },
- {
- "start": 610.49,
- "confidence": 0.94,
- "end": 610.63,
- "word": "and",
- "punct": "and",
- "index": 1499
- },
- {
- "start": 610.65,
- "confidence": 1,
- "end": 610.96,
- "word": "again",
- "punct": "again.",
- "index": 1500
- }
- ],
- "start": 598.49
- },
- "entityRanges": [
- {
- "start": 598.49,
- "end": 598.65,
- "confidence": 1,
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 598.65,
- "end": 599.47,
- "confidence": 1,
- "text": "example,",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 599.79,
- "end": 600.15,
- "confidence": 1,
- "text": "prevent",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.15,
- "end": 600.25,
- "confidence": 0.39,
- "text": "the",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.25,
- "end": 600.7,
- "confidence": 1,
- "text": "child",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.7,
- "end": 600.85,
- "confidence": 1,
- "text": "from",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 600.85,
- "end": 601.25,
- "confidence": 0.82,
- "text": "kicking",
- "offset": 36,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 601.3,
- "end": 601.62,
- "confidence": 0.99,
- "text": "about",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 601.69,
- "end": 602.1,
- "confidence": 0.58,
- "text": "Doc",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 603.2,
- "end": 603.51,
- "confidence": 0.57,
- "text": "That",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 603.55,
- "end": 603.92,
- "confidence": 1,
- "text": "just",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 603.95,
- "end": 604.06,
- "confidence": 0.98,
- "text": "out",
- "offset": 64,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.06,
- "end": 604.16,
- "confidence": 0.99,
- "text": "of",
- "offset": 68,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.16,
- "end": 604.66,
- "confidence": 1,
- "text": "respect",
- "offset": 71,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.66,
- "end": 604.8,
- "confidence": 1,
- "text": "for",
- "offset": 79,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 604.8,
- "end": 605.53,
- "confidence": 1,
- "text": "property",
- "offset": 83,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 606.15,
- "end": 606.83,
- "confidence": 1,
- "text": "because",
- "offset": 92,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 606.83,
- "end": 606.93,
- "confidence": 0.96,
- "text": "the",
- "offset": 100,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 606.93,
- "end": 607.25,
- "confidence": 1,
- "text": "child",
- "offset": 104,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.25,
- "end": 607.35,
- "confidence": 0.57,
- "text": "may",
- "offset": 110,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.35,
- "end": 607.47,
- "confidence": 0.98,
- "text": "be",
- "offset": 114,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.47,
- "end": 607.6,
- "confidence": 1,
- "text": "more",
- "offset": 117,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.6,
- "end": 607.97,
- "confidence": 1,
- "text": "likely",
- "offset": 122,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 607.97,
- "end": 608.07,
- "confidence": 1,
- "text": "to",
- "offset": 129,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.07,
- "end": 608.28,
- "confidence": 0.9,
- "text": "take",
- "offset": 132,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.28,
- "end": 608.35,
- "confidence": 0.92,
- "text": "a",
- "offset": 137,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.35,
- "end": 608.55,
- "confidence": 1,
- "text": "real",
- "offset": 139,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 608.55,
- "end": 609.03,
- "confidence": 0.8,
- "text": "dark",
- "offset": 144,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 610.49,
- "end": 610.63,
- "confidence": 0.94,
- "text": "and",
- "offset": 149,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 610.65,
- "end": 610.96,
- "confidence": 1,
- "text": "again.",
- "offset": 153,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It's not just kids and this is the violent video games question, but it's a completely new level because of this visceral physicality that we respond more intensely.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 120",
- "words": [
- {
- "start": 610.96,
- "confidence": 1,
- "end": 611.17,
- "word": "it's",
- "punct": "It's",
- "index": 1501
- },
- {
- "start": 611.17,
- "confidence": 1,
- "end": 611.46,
- "word": "not",
- "punct": "not",
- "index": 1502
- },
- {
- "start": 611.46,
- "confidence": 1,
- "end": 611.72,
- "word": "just",
- "punct": "just",
- "index": 1503
- },
- {
- "start": 611.72,
- "confidence": 1,
- "end": 612.38,
- "word": "kids",
- "punct": "kids",
- "index": 1504
- },
- {
- "start": 612.96,
- "confidence": 0.79,
- "end": 613.14,
- "word": "and",
- "punct": "and",
- "index": 1505
- },
- {
- "start": 613.54,
- "confidence": 1,
- "end": 613.77,
- "word": "this",
- "punct": "this",
- "index": 1506
- },
- {
- "start": 613.77,
- "confidence": 1,
- "end": 613.96,
- "word": "is",
- "punct": "is",
- "index": 1507
- },
- {
- "start": 613.96,
- "confidence": 0.93,
- "end": 614.37,
- "word": "the",
- "punct": "the",
- "index": 1508
- },
- {
- "start": 614.41,
- "confidence": 1,
- "end": 615.06,
- "word": "violent",
- "punct": "violent",
- "index": 1509
- },
- {
- "start": 615.06,
- "confidence": 1,
- "end": 615.39,
- "word": "video",
- "punct": "video",
- "index": 1510
- },
- {
- "start": 615.39,
- "confidence": 1,
- "end": 615.69,
- "word": "games",
- "punct": "games",
- "index": 1511
- },
- {
- "start": 615.69,
- "confidence": 0.96,
- "end": 616.15,
- "word": "question",
- "punct": "question,",
- "index": 1512
- },
- {
- "start": 616.15,
- "confidence": 0.95,
- "end": 616.32,
- "word": "but",
- "punct": "but",
- "index": 1513
- },
- {
- "start": 616.32,
- "confidence": 0.59,
- "end": 616.42,
- "word": "it's",
- "punct": "it's",
- "index": 1514
- },
- {
- "start": 616.43,
- "confidence": 1,
- "end": 616.53,
- "word": "a",
- "punct": "a",
- "index": 1515
- },
- {
- "start": 616.54,
- "confidence": 1,
- "end": 617.15,
- "word": "completely",
- "punct": "completely",
- "index": 1516
- },
- {
- "start": 617.15,
- "confidence": 1,
- "end": 617.29,
- "word": "new",
- "punct": "new",
- "index": 1517
- },
- {
- "start": 617.29,
- "confidence": 1,
- "end": 617.6,
- "word": "level",
- "punct": "level",
- "index": 1518
- },
- {
- "start": 617.6,
- "confidence": 1,
- "end": 617.85,
- "word": "because",
- "punct": "because",
- "index": 1519
- },
- {
- "start": 617.85,
- "confidence": 1,
- "end": 617.94,
- "word": "of",
- "punct": "of",
- "index": 1520
- },
- {
- "start": 617.94,
- "confidence": 1,
- "end": 618.16,
- "word": "this",
- "punct": "this",
- "index": 1521
- },
- {
- "start": 618.16,
- "confidence": 1,
- "end": 618.82,
- "word": "visceral",
- "punct": "visceral",
- "index": 1522
- },
- {
- "start": 618.82,
- "confidence": 1,
- "end": 619.75,
- "word": "physicality",
- "punct": "physicality",
- "index": 1523
- },
- {
- "start": 619.75,
- "confidence": 1,
- "end": 619.92,
- "word": "that",
- "punct": "that",
- "index": 1524
- },
- {
- "start": 619.92,
- "confidence": 0.98,
- "end": 620.08,
- "word": "we",
- "punct": "we",
- "index": 1525
- },
- {
- "start": 620.08,
- "confidence": 1,
- "end": 620.72,
- "word": "respond",
- "punct": "respond",
- "index": 1526
- },
- {
- "start": 620.72,
- "confidence": 1,
- "end": 621.03,
- "word": "more",
- "punct": "more",
- "index": 1527
- },
- {
- "start": 621.03,
- "confidence": 1,
- "end": 621.74,
- "word": "intensely",
- "punct": "intensely.",
- "index": 1528
- }
- ],
- "start": 610.96
- },
- "entityRanges": [
- {
- "start": 610.96,
- "end": 611.17,
- "confidence": 1,
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 611.17,
- "end": 611.46,
- "confidence": 1,
- "text": "not",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 611.46,
- "end": 611.72,
- "confidence": 1,
- "text": "just",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 611.72,
- "end": 612.38,
- "confidence": 1,
- "text": "kids",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 612.96,
- "end": 613.14,
- "confidence": 0.79,
- "text": "and",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 613.54,
- "end": 613.77,
- "confidence": 1,
- "text": "this",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 613.77,
- "end": 613.96,
- "confidence": 1,
- "text": "is",
- "offset": 28,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 613.96,
- "end": 614.37,
- "confidence": 0.93,
- "text": "the",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 614.41,
- "end": 615.06,
- "confidence": 1,
- "text": "violent",
- "offset": 35,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 615.06,
- "end": 615.39,
- "confidence": 1,
- "text": "video",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 615.39,
- "end": 615.69,
- "confidence": 1,
- "text": "games",
- "offset": 49,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 615.69,
- "end": 616.15,
- "confidence": 0.96,
- "text": "question,",
- "offset": 55,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.15,
- "end": 616.32,
- "confidence": 0.95,
- "text": "but",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.32,
- "end": 616.42,
- "confidence": 0.59,
- "text": "it's",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.43,
- "end": 616.53,
- "confidence": 1,
- "text": "a",
- "offset": 74,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 616.54,
- "end": 617.15,
- "confidence": 1,
- "text": "completely",
- "offset": 76,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.15,
- "end": 617.29,
- "confidence": 1,
- "text": "new",
- "offset": 87,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.29,
- "end": 617.6,
- "confidence": 1,
- "text": "level",
- "offset": 91,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.6,
- "end": 617.85,
- "confidence": 1,
- "text": "because",
- "offset": 97,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.85,
- "end": 617.94,
- "confidence": 1,
- "text": "of",
- "offset": 105,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 617.94,
- "end": 618.16,
- "confidence": 1,
- "text": "this",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 618.16,
- "end": 618.82,
- "confidence": 1,
- "text": "visceral",
- "offset": 113,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 618.82,
- "end": 619.75,
- "confidence": 1,
- "text": "physicality",
- "offset": 122,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 619.75,
- "end": 619.92,
- "confidence": 1,
- "text": "that",
- "offset": 134,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 619.92,
- "end": 620.08,
- "confidence": 0.98,
- "text": "we",
- "offset": 139,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 620.08,
- "end": 620.72,
- "confidence": 1,
- "text": "respond",
- "offset": 142,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 620.72,
- "end": 621.03,
- "confidence": 1,
- "text": "more",
- "offset": 150,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 621.03,
- "end": 621.74,
- "confidence": 1,
- "text": "intensely.",
- "offset": 155,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Two images on a screen, we behave violently towards Robarts specifically robots that are designed to mimic life is that a healthy outlook from the behaviour or is that training cruelty muscles.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 121",
- "words": [
- {
- "start": 622.03,
- "confidence": 0.48,
- "end": 622.39,
- "word": "two",
- "punct": "Two",
- "index": 1529
- },
- {
- "start": 622.73,
- "confidence": 1,
- "end": 623.15,
- "word": "images",
- "punct": "images",
- "index": 1530
- },
- {
- "start": 623.15,
- "confidence": 1,
- "end": 623.23,
- "word": "on",
- "punct": "on",
- "index": 1531
- },
- {
- "start": 623.23,
- "confidence": 0.69,
- "end": 623.3,
- "word": "a",
- "punct": "a",
- "index": 1532
- },
- {
- "start": 623.3,
- "confidence": 1,
- "end": 623.95,
- "word": "screen",
- "punct": "screen,",
- "index": 1533
- },
- {
- "start": 625.67,
- "confidence": 0.25,
- "end": 625.89,
- "word": "we",
- "punct": "we",
- "index": 1534
- },
- {
- "start": 625.93,
- "confidence": 0.37,
- "end": 626.17,
- "word": "behave",
- "punct": "behave",
- "index": 1535
- },
- {
- "start": 626.27,
- "confidence": 1,
- "end": 626.9,
- "word": "violently",
- "punct": "violently",
- "index": 1536
- },
- {
- "start": 626.9,
- "confidence": 1,
- "end": 627.43,
- "word": "towards",
- "punct": "towards",
- "index": 1537
- },
- {
- "start": 627.43,
- "confidence": 0.47,
- "end": 628.09,
- "word": "robarts",
- "punct": "Robarts",
- "index": 1538
- },
- {
- "start": 628.12,
- "confidence": 1,
- "end": 628.84,
- "word": "specifically",
- "punct": "specifically",
- "index": 1539
- },
- {
- "start": 628.84,
- "confidence": 0.98,
- "end": 629.22,
- "word": "robots",
- "punct": "robots",
- "index": 1540
- },
- {
- "start": 629.22,
- "confidence": 1,
- "end": 629.37,
- "word": "that",
- "punct": "that",
- "index": 1541
- },
- {
- "start": 629.37,
- "confidence": 1,
- "end": 629.46,
- "word": "are",
- "punct": "are",
- "index": 1542
- },
- {
- "start": 629.46,
- "confidence": 1,
- "end": 629.95,
- "word": "designed",
- "punct": "designed",
- "index": 1543
- },
- {
- "start": 629.95,
- "confidence": 1,
- "end": 630.08,
- "word": "to",
- "punct": "to",
- "index": 1544
- },
- {
- "start": 630.08,
- "confidence": 1,
- "end": 630.4,
- "word": "mimic",
- "punct": "mimic",
- "index": 1545
- },
- {
- "start": 630.4,
- "confidence": 1,
- "end": 630.95,
- "word": "life",
- "punct": "life",
- "index": 1546
- },
- {
- "start": 631.37,
- "confidence": 1,
- "end": 631.55,
- "word": "is",
- "punct": "is",
- "index": 1547
- },
- {
- "start": 631.55,
- "confidence": 1,
- "end": 631.99,
- "word": "that",
- "punct": "that",
- "index": 1548
- },
- {
- "start": 632.38,
- "confidence": 0.67,
- "end": 632.45,
- "word": "a",
- "punct": "a",
- "index": 1549
- },
- {
- "start": 632.62,
- "confidence": 0.98,
- "end": 633.02,
- "word": "healthy",
- "punct": "healthy",
- "index": 1550
- },
- {
- "start": 633.07,
- "confidence": 0.72,
- "end": 633.49,
- "word": "outlook",
- "punct": "outlook",
- "index": 1551
- },
- {
- "start": 633.49,
- "confidence": 0.66,
- "end": 633.73,
- "word": "from",
- "punct": "from",
- "index": 1552
- },
- {
- "start": 633.73,
- "confidence": 0.35,
- "end": 633.91,
- "word": "the",
- "punct": "the",
- "index": 1553
- },
- {
- "start": 633.94,
- "confidence": 0.99,
- "end": 634.56,
- "word": "behaviour",
- "punct": "behaviour",
- "index": 1554
- },
- {
- "start": 635,
- "confidence": 0.51,
- "end": 635.23,
- "word": "or",
- "punct": "or",
- "index": 1555
- },
- {
- "start": 635.42,
- "confidence": 0.65,
- "end": 635.6,
- "word": "is",
- "punct": "is",
- "index": 1556
- },
- {
- "start": 635.6,
- "confidence": 1,
- "end": 635.89,
- "word": "that",
- "punct": "that",
- "index": 1557
- },
- {
- "start": 635.92,
- "confidence": 0.99,
- "end": 636.41,
- "word": "training",
- "punct": "training",
- "index": 1558
- },
- {
- "start": 636.48,
- "confidence": 0.93,
- "end": 637,
- "word": "cruelty",
- "punct": "cruelty",
- "index": 1559
- },
- {
- "start": 637.02,
- "confidence": 0.74,
- "end": 637.72,
- "word": "muscles",
- "punct": "muscles.",
- "index": 1560
- }
- ],
- "start": 622.03
- },
- "entityRanges": [
- {
- "start": 622.03,
- "end": 622.39,
- "confidence": 0.48,
- "text": "Two",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 622.73,
- "end": 623.15,
- "confidence": 1,
- "text": "images",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 623.15,
- "end": 623.23,
- "confidence": 1,
- "text": "on",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 623.23,
- "end": 623.3,
- "confidence": 0.69,
- "text": "a",
- "offset": 14,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 623.3,
- "end": 623.95,
- "confidence": 1,
- "text": "screen,",
- "offset": 16,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 625.67,
- "end": 625.89,
- "confidence": 0.25,
- "text": "we",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 625.93,
- "end": 626.17,
- "confidence": 0.37,
- "text": "behave",
- "offset": 27,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 626.27,
- "end": 626.9,
- "confidence": 1,
- "text": "violently",
- "offset": 34,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 626.9,
- "end": 627.43,
- "confidence": 1,
- "text": "towards",
- "offset": 44,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 627.43,
- "end": 628.09,
- "confidence": 0.47,
- "text": "Robarts",
- "offset": 52,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 628.12,
- "end": 628.84,
- "confidence": 1,
- "text": "specifically",
- "offset": 60,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 628.84,
- "end": 629.22,
- "confidence": 0.98,
- "text": "robots",
- "offset": 73,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.22,
- "end": 629.37,
- "confidence": 1,
- "text": "that",
- "offset": 80,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.37,
- "end": 629.46,
- "confidence": 1,
- "text": "are",
- "offset": 85,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.46,
- "end": 629.95,
- "confidence": 1,
- "text": "designed",
- "offset": 89,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 629.95,
- "end": 630.08,
- "confidence": 1,
- "text": "to",
- "offset": 98,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 630.08,
- "end": 630.4,
- "confidence": 1,
- "text": "mimic",
- "offset": 101,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 630.4,
- "end": 630.95,
- "confidence": 1,
- "text": "life",
- "offset": 107,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 631.37,
- "end": 631.55,
- "confidence": 1,
- "text": "is",
- "offset": 112,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 631.55,
- "end": 631.99,
- "confidence": 1,
- "text": "that",
- "offset": 115,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 632.38,
- "end": 632.45,
- "confidence": 0.67,
- "text": "a",
- "offset": 120,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 632.62,
- "end": 633.02,
- "confidence": 0.98,
- "text": "healthy",
- "offset": 122,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.07,
- "end": 633.49,
- "confidence": 0.72,
- "text": "outlook",
- "offset": 130,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.49,
- "end": 633.73,
- "confidence": 0.66,
- "text": "from",
- "offset": 138,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.73,
- "end": 633.91,
- "confidence": 0.35,
- "text": "the",
- "offset": 143,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 633.94,
- "end": 634.56,
- "confidence": 0.99,
- "text": "behaviour",
- "offset": 147,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635,
- "end": 635.23,
- "confidence": 0.51,
- "text": "or",
- "offset": 157,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.42,
- "end": 635.6,
- "confidence": 0.65,
- "text": "is",
- "offset": 160,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.6,
- "end": 635.89,
- "confidence": 1,
- "text": "that",
- "offset": 163,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 635.92,
- "end": 636.41,
- "confidence": 0.99,
- "text": "training",
- "offset": 168,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 636.48,
- "end": 637,
- "confidence": 0.93,
- "text": "cruelty",
- "offset": 177,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 637.02,
- "end": 637.72,
- "confidence": 0.74,
- "text": "muscles.",
- "offset": 185,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "The answer to this question has the potential impact human behaviour has the potential impact social norms.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 122",
- "words": [
- {
- "start": 642.67,
- "confidence": 0.97,
- "end": 642.86,
- "word": "the",
- "punct": "The",
- "index": 1561
- },
- {
- "start": 642.9,
- "confidence": 0.94,
- "end": 643.24,
- "word": "answer",
- "punct": "answer",
- "index": 1562
- },
- {
- "start": 643.24,
- "confidence": 0.64,
- "end": 643.28,
- "word": "to",
- "punct": "to",
- "index": 1563
- },
- {
- "start": 643.29,
- "confidence": 0.9,
- "end": 643.48,
- "word": "this",
- "punct": "this",
- "index": 1564
- },
- {
- "start": 643.48,
- "confidence": 1,
- "end": 644.1,
- "word": "question",
- "punct": "question",
- "index": 1565
- },
- {
- "start": 644.1,
- "confidence": 0.99,
- "end": 644.34,
- "word": "has",
- "punct": "has",
- "index": 1566
- },
- {
- "start": 644.34,
- "confidence": 0.94,
- "end": 644.42,
- "word": "the",
- "punct": "the",
- "index": 1567
- },
- {
- "start": 644.42,
- "confidence": 1,
- "end": 644.96,
- "word": "potential",
- "punct": "potential",
- "index": 1568
- },
- {
- "start": 645.01,
- "confidence": 1,
- "end": 645.45,
- "word": "impact",
- "punct": "impact",
- "index": 1569
- },
- {
- "start": 645.45,
- "confidence": 1,
- "end": 645.73,
- "word": "human",
- "punct": "human",
- "index": 1570
- },
- {
- "start": 645.73,
- "confidence": 1,
- "end": 646.44,
- "word": "behaviour",
- "punct": "behaviour",
- "index": 1571
- },
- {
- "start": 646.61,
- "confidence": 0.97,
- "end": 646.9,
- "word": "has",
- "punct": "has",
- "index": 1572
- },
- {
- "start": 646.9,
- "confidence": 0.95,
- "end": 646.98,
- "word": "the",
- "punct": "the",
- "index": 1573
- },
- {
- "start": 646.98,
- "confidence": 1,
- "end": 647.5,
- "word": "potential",
- "punct": "potential",
- "index": 1574
- },
- {
- "start": 647.5,
- "confidence": 0.79,
- "end": 647.96,
- "word": "impact",
- "punct": "impact",
- "index": 1575
- },
- {
- "start": 647.96,
- "confidence": 1,
- "end": 648.32,
- "word": "social",
- "punct": "social",
- "index": 1576
- },
- {
- "start": 648.32,
- "confidence": 1,
- "end": 648.94,
- "word": "norms",
- "punct": "norms.",
- "index": 1577
- }
- ],
- "start": 642.67
- },
- "entityRanges": [
- {
- "start": 642.67,
- "end": 642.86,
- "confidence": 0.97,
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 642.9,
- "end": 643.24,
- "confidence": 0.94,
- "text": "answer",
- "offset": 4,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 643.24,
- "end": 643.28,
- "confidence": 0.64,
- "text": "to",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 643.29,
- "end": 643.48,
- "confidence": 0.9,
- "text": "this",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 643.48,
- "end": 644.1,
- "confidence": 1,
- "text": "question",
- "offset": 19,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.1,
- "end": 644.34,
- "confidence": 0.99,
- "text": "has",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.34,
- "end": 644.42,
- "confidence": 0.94,
- "text": "the",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 644.42,
- "end": 644.96,
- "confidence": 1,
- "text": "potential",
- "offset": 36,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 645.01,
- "end": 645.45,
- "confidence": 1,
- "text": "impact",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 645.45,
- "end": 645.73,
- "confidence": 1,
- "text": "human",
- "offset": 53,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 645.73,
- "end": 646.44,
- "confidence": 1,
- "text": "behaviour",
- "offset": 59,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 646.61,
- "end": 646.9,
- "confidence": 0.97,
- "text": "has",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 646.9,
- "end": 646.98,
- "confidence": 0.95,
- "text": "the",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 646.98,
- "end": 647.5,
- "confidence": 1,
- "text": "potential",
- "offset": 77,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 647.5,
- "end": 647.96,
- "confidence": 0.79,
- "text": "impact",
- "offset": 87,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 647.96,
- "end": 648.32,
- "confidence": 1,
- "text": "social",
- "offset": 94,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 648.32,
- "end": 648.94,
- "confidence": 1,
- "text": "norms.",
- "offset": 101,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "It has the potential to inspire rules around.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 123",
- "words": [
- {
- "start": 649.33,
- "confidence": 0.89,
- "end": 649.45,
- "word": "it",
- "punct": "It",
- "index": 1578
- },
- {
- "start": 649.48,
- "confidence": 1,
- "end": 649.67,
- "word": "has",
- "punct": "has",
- "index": 1579
- },
- {
- "start": 649.67,
- "confidence": 1,
- "end": 649.77,
- "word": "the",
- "punct": "the",
- "index": 1580
- },
- {
- "start": 649.77,
- "confidence": 1,
- "end": 650.22,
- "word": "potential",
- "punct": "potential",
- "index": 1581
- },
- {
- "start": 650.22,
- "confidence": 1,
- "end": 650.37,
- "word": "to",
- "punct": "to",
- "index": 1582
- },
- {
- "start": 650.37,
- "confidence": 1,
- "end": 650.87,
- "word": "inspire",
- "punct": "inspire",
- "index": 1583
- },
- {
- "start": 650.87,
- "confidence": 0.98,
- "end": 651.43,
- "word": "rules",
- "punct": "rules",
- "index": 1584
- },
- {
- "start": 651.46,
- "confidence": 1,
- "end": 651.8,
- "word": "around",
- "punct": "around.",
- "index": 1585
- }
- ],
- "start": 649.33
- },
- "entityRanges": [
- {
- "start": 649.33,
- "end": 649.45,
- "confidence": 0.89,
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 649.48,
- "end": 649.67,
- "confidence": 1,
- "text": "has",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 649.67,
- "end": 649.77,
- "confidence": 1,
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 649.77,
- "end": 650.22,
- "confidence": 1,
- "text": "potential",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 650.22,
- "end": 650.37,
- "confidence": 1,
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 650.37,
- "end": 650.87,
- "confidence": 1,
- "text": "inspire",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 650.87,
- "end": 651.43,
- "confidence": 0.98,
- "text": "rules",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 651.46,
- "end": 651.8,
- "confidence": 1,
- "text": "around.",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "What we can and can't do certain Robarts animal cruelty, but because even if robots can't fuel our behaviour towards a matter for us and regardless of whether we end up changing ovals robots might be able to help us come to a new understanding of ourselves.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 124",
- "words": [
- {
- "start": 651.8,
- "confidence": 1,
- "end": 651.93,
- "word": "what",
- "punct": "What",
- "index": 1586
- },
- {
- "start": 651.93,
- "confidence": 1,
- "end": 652.26,
- "word": "we",
- "punct": "we",
- "index": 1587
- },
- {
- "start": 652.31,
- "confidence": 1,
- "end": 652.65,
- "word": "can",
- "punct": "can",
- "index": 1588
- },
- {
- "start": 652.65,
- "confidence": 1,
- "end": 652.72,
- "word": "and",
- "punct": "and",
- "index": 1589
- },
- {
- "start": 652.72,
- "confidence": 1,
- "end": 653.04,
- "word": "can't",
- "punct": "can't",
- "index": 1590
- },
- {
- "start": 653.04,
- "confidence": 1,
- "end": 653.29,
- "word": "do",
- "punct": "do",
- "index": 1591
- },
- {
- "start": 653.33,
- "confidence": 1,
- "end": 653.61,
- "word": "certain",
- "punct": "certain",
- "index": 1592
- },
- {
- "start": 653.63,
- "confidence": 0.5,
- "end": 654.43,
- "word": "robarts",
- "punct": "Robarts",
- "index": 1593
- },
- {
- "start": 655,
- "confidence": 1,
- "end": 655.32,
- "word": "animal",
- "punct": "animal",
- "index": 1594
- },
- {
- "start": 655.32,
- "confidence": 1,
- "end": 655.74,
- "word": "cruelty",
- "punct": "cruelty,",
- "index": 1595
- },
- {
- "start": 655.81,
- "confidence": 0.62,
- "end": 656.25,
- "word": "but",
- "punct": "but",
- "index": 1596
- },
- {
- "start": 657.22,
- "confidence": 1,
- "end": 657.55,
- "word": "because",
- "punct": "because",
- "index": 1597
- },
- {
- "start": 657.58,
- "confidence": 1,
- "end": 657.87,
- "word": "even",
- "punct": "even",
- "index": 1598
- },
- {
- "start": 657.87,
- "confidence": 0.99,
- "end": 658.02,
- "word": "if",
- "punct": "if",
- "index": 1599
- },
- {
- "start": 658.02,
- "confidence": 0.91,
- "end": 658.42,
- "word": "robots",
- "punct": "robots",
- "index": 1600
- },
- {
- "start": 658.42,
- "confidence": 0.48,
- "end": 658.68,
- "word": "can't",
- "punct": "can't",
- "index": 1601
- },
- {
- "start": 658.71,
- "confidence": 0.45,
- "end": 659.38,
- "word": "fuel",
- "punct": "fuel",
- "index": 1602
- },
- {
- "start": 660.1,
- "confidence": 0.65,
- "end": 660.22,
- "word": "our",
- "punct": "our",
- "index": 1603
- },
- {
- "start": 660.25,
- "confidence": 1,
- "end": 660.89,
- "word": "behaviour",
- "punct": "behaviour",
- "index": 1604
- },
- {
- "start": 660.89,
- "confidence": 1,
- "end": 661.26,
- "word": "towards",
- "punct": "towards",
- "index": 1605
- },
- {
- "start": 661.26,
- "confidence": 0.74,
- "end": 661.34,
- "word": "a",
- "punct": "a",
- "index": 1606
- },
- {
- "start": 661.42,
- "confidence": 0.97,
- "end": 662.25,
- "word": "matter",
- "punct": "matter",
- "index": 1607
- },
- {
- "start": 662.39,
- "confidence": 1,
- "end": 662.64,
- "word": "for",
- "punct": "for",
- "index": 1608
- },
- {
- "start": 662.64,
- "confidence": 1,
- "end": 663.15,
- "word": "us",
- "punct": "us",
- "index": 1609
- },
- {
- "start": 664.89,
- "confidence": 0.94,
- "end": 665.03,
- "word": "and",
- "punct": "and",
- "index": 1610
- },
- {
- "start": 665.06,
- "confidence": 1,
- "end": 665.6,
- "word": "regardless",
- "punct": "regardless",
- "index": 1611
- },
- {
- "start": 665.6,
- "confidence": 1,
- "end": 665.7,
- "word": "of",
- "punct": "of",
- "index": 1612
- },
- {
- "start": 665.7,
- "confidence": 1,
- "end": 665.93,
- "word": "whether",
- "punct": "whether",
- "index": 1613
- },
- {
- "start": 665.93,
- "confidence": 0.96,
- "end": 666.06,
- "word": "we",
- "punct": "we",
- "index": 1614
- },
- {
- "start": 666.06,
- "confidence": 0.96,
- "end": 666.21,
- "word": "end",
- "punct": "end",
- "index": 1615
- },
- {
- "start": 666.21,
- "confidence": 0.49,
- "end": 666.33,
- "word": "up",
- "punct": "up",
- "index": 1616
- },
- {
- "start": 666.32,
- "confidence": 1,
- "end": 666.9,
- "word": "changing",
- "punct": "changing",
- "index": 1617
- },
- {
- "start": 666.97,
- "confidence": 0.51,
- "end": 667.64,
- "word": "ovals",
- "punct": "ovals",
- "index": 1618
- },
- {
- "start": 668.9,
- "confidence": 0.97,
- "end": 669.34,
- "word": "robots",
- "punct": "robots",
- "index": 1619
- },
- {
- "start": 669.34,
- "confidence": 0.87,
- "end": 669.59,
- "word": "might",
- "punct": "might",
- "index": 1620
- },
- {
- "start": 669.59,
- "confidence": 1,
- "end": 669.74,
- "word": "be",
- "punct": "be",
- "index": 1621
- },
- {
- "start": 669.74,
- "confidence": 1,
- "end": 669.94,
- "word": "able",
- "punct": "able",
- "index": 1622
- },
- {
- "start": 669.94,
- "confidence": 1,
- "end": 670.03,
- "word": "to",
- "punct": "to",
- "index": 1623
- },
- {
- "start": 670.03,
- "confidence": 1,
- "end": 670.25,
- "word": "help",
- "punct": "help",
- "index": 1624
- },
- {
- "start": 670.25,
- "confidence": 0.97,
- "end": 670.38,
- "word": "us",
- "punct": "us",
- "index": 1625
- },
- {
- "start": 670.38,
- "confidence": 1,
- "end": 670.59,
- "word": "come",
- "punct": "come",
- "index": 1626
- },
- {
- "start": 670.59,
- "confidence": 1,
- "end": 670.73,
- "word": "to",
- "punct": "to",
- "index": 1627
- },
- {
- "start": 670.73,
- "confidence": 0.99,
- "end": 670.79,
- "word": "a",
- "punct": "a",
- "index": 1628
- },
- {
- "start": 670.79,
- "confidence": 1,
- "end": 671.02,
- "word": "new",
- "punct": "new",
- "index": 1629
- },
- {
- "start": 671.02,
- "confidence": 1,
- "end": 671.59,
- "word": "understanding",
- "punct": "understanding",
- "index": 1630
- },
- {
- "start": 671.59,
- "confidence": 1,
- "end": 671.7,
- "word": "of",
- "punct": "of",
- "index": 1631
- },
- {
- "start": 671.7,
- "confidence": 1,
- "end": 672.51,
- "word": "ourselves",
- "punct": "ourselves.",
- "index": 1632
- }
- ],
- "start": 651.8
- },
- "entityRanges": [
- {
- "start": 651.8,
- "end": 651.93,
- "confidence": 1,
- "text": "What",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 651.93,
- "end": 652.26,
- "confidence": 1,
- "text": "we",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 652.31,
- "end": 652.65,
- "confidence": 1,
- "text": "can",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 652.65,
- "end": 652.72,
- "confidence": 1,
- "text": "and",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 652.72,
- "end": 653.04,
- "confidence": 1,
- "text": "can't",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.04,
- "end": 653.29,
- "confidence": 1,
- "text": "do",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.33,
- "end": 653.61,
- "confidence": 1,
- "text": "certain",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 653.63,
- "end": 654.43,
- "confidence": 0.5,
- "text": "Robarts",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 655,
- "end": 655.32,
- "confidence": 1,
- "text": "animal",
- "offset": 41,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 655.32,
- "end": 655.74,
- "confidence": 1,
- "text": "cruelty,",
- "offset": 48,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 655.81,
- "end": 656.25,
- "confidence": 0.62,
- "text": "but",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 657.22,
- "end": 657.55,
- "confidence": 1,
- "text": "because",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 657.58,
- "end": 657.87,
- "confidence": 1,
- "text": "even",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 657.87,
- "end": 658.02,
- "confidence": 0.99,
- "text": "if",
- "offset": 74,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 658.02,
- "end": 658.42,
- "confidence": 0.91,
- "text": "robots",
- "offset": 77,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 658.42,
- "end": 658.68,
- "confidence": 0.48,
- "text": "can't",
- "offset": 84,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 658.71,
- "end": 659.38,
- "confidence": 0.45,
- "text": "fuel",
- "offset": 90,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 660.1,
- "end": 660.22,
- "confidence": 0.65,
- "text": "our",
- "offset": 95,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 660.25,
- "end": 660.89,
- "confidence": 1,
- "text": "behaviour",
- "offset": 99,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 660.89,
- "end": 661.26,
- "confidence": 1,
- "text": "towards",
- "offset": 109,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 661.26,
- "end": 661.34,
- "confidence": 0.74,
- "text": "a",
- "offset": 117,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 661.42,
- "end": 662.25,
- "confidence": 0.97,
- "text": "matter",
- "offset": 119,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 662.39,
- "end": 662.64,
- "confidence": 1,
- "text": "for",
- "offset": 126,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 662.64,
- "end": 663.15,
- "confidence": 1,
- "text": "us",
- "offset": 130,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 664.89,
- "end": 665.03,
- "confidence": 0.94,
- "text": "and",
- "offset": 133,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.06,
- "end": 665.6,
- "confidence": 1,
- "text": "regardless",
- "offset": 137,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.6,
- "end": 665.7,
- "confidence": 1,
- "text": "of",
- "offset": 148,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.7,
- "end": 665.93,
- "confidence": 1,
- "text": "whether",
- "offset": 151,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 665.93,
- "end": 666.06,
- "confidence": 0.96,
- "text": "we",
- "offset": 159,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.06,
- "end": 666.21,
- "confidence": 0.96,
- "text": "end",
- "offset": 162,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.21,
- "end": 666.33,
- "confidence": 0.49,
- "text": "up",
- "offset": 166,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.32,
- "end": 666.9,
- "confidence": 1,
- "text": "changing",
- "offset": 169,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 666.97,
- "end": 667.64,
- "confidence": 0.51,
- "text": "ovals",
- "offset": 178,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 668.9,
- "end": 669.34,
- "confidence": 0.97,
- "text": "robots",
- "offset": 184,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.34,
- "end": 669.59,
- "confidence": 0.87,
- "text": "might",
- "offset": 191,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.59,
- "end": 669.74,
- "confidence": 1,
- "text": "be",
- "offset": 197,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.74,
- "end": 669.94,
- "confidence": 1,
- "text": "able",
- "offset": 200,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 669.94,
- "end": 670.03,
- "confidence": 1,
- "text": "to",
- "offset": 205,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.03,
- "end": 670.25,
- "confidence": 1,
- "text": "help",
- "offset": 208,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.25,
- "end": 670.38,
- "confidence": 0.97,
- "text": "us",
- "offset": 213,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.38,
- "end": 670.59,
- "confidence": 1,
- "text": "come",
- "offset": 216,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.59,
- "end": 670.73,
- "confidence": 1,
- "text": "to",
- "offset": 221,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.73,
- "end": 670.79,
- "confidence": 0.99,
- "text": "a",
- "offset": 224,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 670.79,
- "end": 671.02,
- "confidence": 1,
- "text": "new",
- "offset": 226,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 671.02,
- "end": 671.59,
- "confidence": 1,
- "text": "understanding",
- "offset": 230,
- "length": 13,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 671.59,
- "end": 671.7,
- "confidence": 1,
- "text": "of",
- "offset": 244,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 671.7,
- "end": 672.51,
- "confidence": 1,
- "text": "ourselves.",
- "offset": 247,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Most of what learned over the past ten years have not been about technology.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 125",
- "words": [
- {
- "start": 674.24,
- "confidence": 1,
- "end": 674.52,
- "word": "most",
- "punct": "Most",
- "index": 1633
- },
- {
- "start": 674.52,
- "confidence": 0.54,
- "end": 674.62,
- "word": "of",
- "punct": "of",
- "index": 1634
- },
- {
- "start": 674.62,
- "confidence": 0.47,
- "end": 674.76,
- "word": "what",
- "punct": "what",
- "index": 1635
- },
- {
- "start": 674.8,
- "confidence": 0.64,
- "end": 675.03,
- "word": "learned",
- "punct": "learned",
- "index": 1636
- },
- {
- "start": 675.03,
- "confidence": 0.77,
- "end": 675.15,
- "word": "over",
- "punct": "over",
- "index": 1637
- },
- {
- "start": 675.16,
- "confidence": 1,
- "end": 675.24,
- "word": "the",
- "punct": "the",
- "index": 1638
- },
- {
- "start": 675.24,
- "confidence": 1,
- "end": 675.53,
- "word": "past",
- "punct": "past",
- "index": 1639
- },
- {
- "start": 675.53,
- "confidence": 1,
- "end": 675.72,
- "word": "ten",
- "punct": "ten",
- "index": 1640
- },
- {
- "start": 675.72,
- "confidence": 1,
- "end": 676.36,
- "word": "years",
- "punct": "years",
- "index": 1641
- },
- {
- "start": 676.45,
- "confidence": 0.9,
- "end": 676.63,
- "word": "have",
- "punct": "have",
- "index": 1642
- },
- {
- "start": 676.63,
- "confidence": 0.88,
- "end": 676.85,
- "word": "not",
- "punct": "not",
- "index": 1643
- },
- {
- "start": 676.85,
- "confidence": 0.83,
- "end": 676.97,
- "word": "been",
- "punct": "been",
- "index": 1644
- },
- {
- "start": 676.98,
- "confidence": 1,
- "end": 677.21,
- "word": "about",
- "punct": "about",
- "index": 1645
- },
- {
- "start": 677.21,
- "confidence": 1,
- "end": 677.8,
- "word": "technology",
- "punct": "technology.",
- "index": 1646
- }
- ],
- "start": 674.24
- },
- "entityRanges": [
- {
- "start": 674.24,
- "end": 674.52,
- "confidence": 1,
- "text": "Most",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.52,
- "end": 674.62,
- "confidence": 0.54,
- "text": "of",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.62,
- "end": 674.76,
- "confidence": 0.47,
- "text": "what",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 674.8,
- "end": 675.03,
- "confidence": 0.64,
- "text": "learned",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.03,
- "end": 675.15,
- "confidence": 0.77,
- "text": "over",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.16,
- "end": 675.24,
- "confidence": 1,
- "text": "the",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.24,
- "end": 675.53,
- "confidence": 1,
- "text": "past",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.53,
- "end": 675.72,
- "confidence": 1,
- "text": "ten",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 675.72,
- "end": 676.36,
- "confidence": 1,
- "text": "years",
- "offset": 39,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.45,
- "end": 676.63,
- "confidence": 0.9,
- "text": "have",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.63,
- "end": 676.85,
- "confidence": 0.88,
- "text": "not",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.85,
- "end": 676.97,
- "confidence": 0.83,
- "text": "been",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 676.98,
- "end": 677.21,
- "confidence": 1,
- "text": "about",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 677.21,
- "end": 677.8,
- "confidence": 1,
- "text": "technology.",
- "offset": 65,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "A It's been about human psychology and empathy and how we relate to others.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 126",
- "words": [
- {
- "start": 677.8,
- "confidence": 0.24,
- "end": 678.1,
- "word": "a",
- "punct": "A",
- "index": 1647
- },
- {
- "start": 678.84,
- "confidence": 0.95,
- "end": 679.07,
- "word": "it's",
- "punct": "It's",
- "index": 1648
- },
- {
- "start": 679.07,
- "confidence": 1,
- "end": 679.21,
- "word": "been",
- "punct": "been",
- "index": 1649
- },
- {
- "start": 679.21,
- "confidence": 1,
- "end": 679.45,
- "word": "about",
- "punct": "about",
- "index": 1650
- },
- {
- "start": 679.45,
- "confidence": 1,
- "end": 679.76,
- "word": "human",
- "punct": "human",
- "index": 1651
- },
- {
- "start": 679.76,
- "confidence": 1,
- "end": 680.68,
- "word": "psychology",
- "punct": "psychology",
- "index": 1652
- },
- {
- "start": 681.22,
- "confidence": 0.69,
- "end": 681.34,
- "word": "and",
- "punct": "and",
- "index": 1653
- },
- {
- "start": 681.54,
- "confidence": 0.99,
- "end": 682.29,
- "word": "empathy",
- "punct": "empathy",
- "index": 1654
- },
- {
- "start": 682.32,
- "confidence": 0.72,
- "end": 682.41,
- "word": "and",
- "punct": "and",
- "index": 1655
- },
- {
- "start": 682.42,
- "confidence": 1,
- "end": 682.67,
- "word": "how",
- "punct": "how",
- "index": 1656
- },
- {
- "start": 682.67,
- "confidence": 1,
- "end": 682.8,
- "word": "we",
- "punct": "we",
- "index": 1657
- },
- {
- "start": 682.8,
- "confidence": 1,
- "end": 683.12,
- "word": "relate",
- "punct": "relate",
- "index": 1658
- },
- {
- "start": 683.12,
- "confidence": 0.98,
- "end": 683.23,
- "word": "to",
- "punct": "to",
- "index": 1659
- },
- {
- "start": 683.26,
- "confidence": 1,
- "end": 683.91,
- "word": "others",
- "punct": "others.",
- "index": 1660
- }
- ],
- "start": 677.8
- },
- "entityRanges": [
- {
- "start": 677.8,
- "end": 678.1,
- "confidence": 0.24,
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 678.84,
- "end": 679.07,
- "confidence": 0.95,
- "text": "It's",
- "offset": 2,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.07,
- "end": 679.21,
- "confidence": 1,
- "text": "been",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.21,
- "end": 679.45,
- "confidence": 1,
- "text": "about",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.45,
- "end": 679.76,
- "confidence": 1,
- "text": "human",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 679.76,
- "end": 680.68,
- "confidence": 1,
- "text": "psychology",
- "offset": 24,
- "length": 10,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 681.22,
- "end": 681.34,
- "confidence": 0.69,
- "text": "and",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 681.54,
- "end": 682.29,
- "confidence": 0.99,
- "text": "empathy",
- "offset": 39,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.32,
- "end": 682.41,
- "confidence": 0.72,
- "text": "and",
- "offset": 47,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.42,
- "end": 682.67,
- "confidence": 1,
- "text": "how",
- "offset": 51,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.67,
- "end": 682.8,
- "confidence": 1,
- "text": "we",
- "offset": 55,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 682.8,
- "end": 683.12,
- "confidence": 1,
- "text": "relate",
- "offset": 58,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 683.12,
- "end": 683.23,
- "confidence": 0.98,
- "text": "to",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 683.26,
- "end": 683.91,
- "confidence": 1,
- "text": "others.",
- "offset": 68,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "And because when a child is kind to her room.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 127",
- "words": [
- {
- "start": 685.11,
- "confidence": 0.22,
- "end": 685.16,
- "word": "and",
- "punct": "And",
- "index": 1661
- },
- {
- "start": 685.51,
- "confidence": 1,
- "end": 685.84,
- "word": "because",
- "punct": "because",
- "index": 1662
- },
- {
- "start": 685.84,
- "confidence": 1,
- "end": 685.97,
- "word": "when",
- "punct": "when",
- "index": 1663
- },
- {
- "start": 685.97,
- "confidence": 0.93,
- "end": 686.05,
- "word": "a",
- "punct": "a",
- "index": 1664
- },
- {
- "start": 686.05,
- "confidence": 1,
- "end": 686.48,
- "word": "child",
- "punct": "child",
- "index": 1665
- },
- {
- "start": 686.48,
- "confidence": 0.92,
- "end": 686.6,
- "word": "is",
- "punct": "is",
- "index": 1666
- },
- {
- "start": 686.6,
- "confidence": 1,
- "end": 687,
- "word": "kind",
- "punct": "kind",
- "index": 1667
- },
- {
- "start": 687,
- "confidence": 1,
- "end": 687.12,
- "word": "to",
- "punct": "to",
- "index": 1668
- },
- {
- "start": 687.12,
- "confidence": 0.9,
- "end": 687.24,
- "word": "her",
- "punct": "her",
- "index": 1669
- },
- {
- "start": 687.24,
- "confidence": 1,
- "end": 687.5,
- "word": "room",
- "punct": "room.",
- "index": 1670
- }
- ],
- "start": 685.11
- },
- "entityRanges": [
- {
- "start": 685.11,
- "end": 685.16,
- "confidence": 0.22,
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 685.51,
- "end": 685.84,
- "confidence": 1,
- "text": "because",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 685.84,
- "end": 685.97,
- "confidence": 1,
- "text": "when",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 685.97,
- "end": 686.05,
- "confidence": 0.93,
- "text": "a",
- "offset": 17,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.05,
- "end": 686.48,
- "confidence": 1,
- "text": "child",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.48,
- "end": 686.6,
- "confidence": 0.92,
- "text": "is",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 686.6,
- "end": 687,
- "confidence": 1,
- "text": "kind",
- "offset": 28,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 687,
- "end": 687.12,
- "confidence": 1,
- "text": "to",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 687.12,
- "end": 687.24,
- "confidence": 0.9,
- "text": "her",
- "offset": 36,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 687.24,
- "end": 687.5,
- "confidence": 1,
- "text": "room.",
- "offset": 40,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "But when a soldier tries to save a robot on the battlefield.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 128",
- "words": [
- {
- "start": 687.5,
- "confidence": 0.99,
- "end": 687.8,
- "word": "but",
- "punct": "But",
- "index": 1671
- },
- {
- "start": 689.25,
- "confidence": 1,
- "end": 689.42,
- "word": "when",
- "punct": "when",
- "index": 1672
- },
- {
- "start": 689.42,
- "confidence": 1,
- "end": 689.51,
- "word": "a",
- "punct": "a",
- "index": 1673
- },
- {
- "start": 689.51,
- "confidence": 1,
- "end": 690,
- "word": "soldier",
- "punct": "soldier",
- "index": 1674
- },
- {
- "start": 690.01,
- "confidence": 0.43,
- "end": 690.34,
- "word": "tries",
- "punct": "tries",
- "index": 1675
- },
- {
- "start": 690.34,
- "confidence": 1,
- "end": 690.45,
- "word": "to",
- "punct": "to",
- "index": 1676
- },
- {
- "start": 690.45,
- "confidence": 0.99,
- "end": 690.77,
- "word": "save",
- "punct": "save",
- "index": 1677
- },
- {
- "start": 690.77,
- "confidence": 0.92,
- "end": 690.87,
- "word": "a",
- "punct": "a",
- "index": 1678
- },
- {
- "start": 690.87,
- "confidence": 0.98,
- "end": 691.22,
- "word": "robot",
- "punct": "robot",
- "index": 1679
- },
- {
- "start": 691.22,
- "confidence": 1,
- "end": 691.36,
- "word": "on",
- "punct": "on",
- "index": 1680
- },
- {
- "start": 691.36,
- "confidence": 0.99,
- "end": 691.43,
- "word": "the",
- "punct": "the",
- "index": 1681
- },
- {
- "start": 691.43,
- "confidence": 0.96,
- "end": 692.28,
- "word": "battlefield",
- "punct": "battlefield.",
- "index": 1682
- }
- ],
- "start": 687.5
- },
- "entityRanges": [
- {
- "start": 687.5,
- "end": 687.8,
- "confidence": 0.99,
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 689.25,
- "end": 689.42,
- "confidence": 1,
- "text": "when",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 689.42,
- "end": 689.51,
- "confidence": 1,
- "text": "a",
- "offset": 9,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 689.51,
- "end": 690,
- "confidence": 1,
- "text": "soldier",
- "offset": 11,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.01,
- "end": 690.34,
- "confidence": 0.43,
- "text": "tries",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.34,
- "end": 690.45,
- "confidence": 1,
- "text": "to",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.45,
- "end": 690.77,
- "confidence": 0.99,
- "text": "save",
- "offset": 28,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.77,
- "end": 690.87,
- "confidence": 0.92,
- "text": "a",
- "offset": 33,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 690.87,
- "end": 691.22,
- "confidence": 0.98,
- "text": "robot",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 691.22,
- "end": 691.36,
- "confidence": 1,
- "text": "on",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 691.36,
- "end": 691.43,
- "confidence": 0.99,
- "text": "the",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 691.43,
- "end": 692.28,
- "confidence": 0.96,
- "text": "battlefield.",
- "offset": 48,
- "length": 12,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "When a group of people refuses to harm her about a baby dinosaur.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 129",
- "words": [
- {
- "start": 693.36,
- "confidence": 0.92,
- "end": 693.55,
- "word": "when",
- "punct": "When",
- "index": 1683
- },
- {
- "start": 693.56,
- "confidence": 1,
- "end": 693.62,
- "word": "a",
- "punct": "a",
- "index": 1684
- },
- {
- "start": 693.62,
- "confidence": 1,
- "end": 693.84,
- "word": "group",
- "punct": "group",
- "index": 1685
- },
- {
- "start": 693.84,
- "confidence": 1,
- "end": 693.97,
- "word": "of",
- "punct": "of",
- "index": 1686
- },
- {
- "start": 693.97,
- "confidence": 1,
- "end": 694.34,
- "word": "people",
- "punct": "people",
- "index": 1687
- },
- {
- "start": 694.34,
- "confidence": 1,
- "end": 694.9,
- "word": "refuses",
- "punct": "refuses",
- "index": 1688
- },
- {
- "start": 694.9,
- "confidence": 1,
- "end": 695,
- "word": "to",
- "punct": "to",
- "index": 1689
- },
- {
- "start": 695,
- "confidence": 0.99,
- "end": 695.44,
- "word": "harm",
- "punct": "harm",
- "index": 1690
- },
- {
- "start": 695.44,
- "confidence": 0.66,
- "end": 695.57,
- "word": "her",
- "punct": "her",
- "index": 1691
- },
- {
- "start": 695.56,
- "confidence": 0.96,
- "end": 695.8,
- "word": "about",
- "punct": "about",
- "index": 1692
- },
- {
- "start": 695.81,
- "confidence": 0.68,
- "end": 695.89,
- "word": "a",
- "punct": "a",
- "index": 1693
- },
- {
- "start": 695.92,
- "confidence": 0.98,
- "end": 696.13,
- "word": "baby",
- "punct": "baby",
- "index": 1694
- },
- {
- "start": 696.13,
- "confidence": 0.99,
- "end": 696.86,
- "word": "dinosaur",
- "punct": "dinosaur.",
- "index": 1695
- }
- ],
- "start": 693.36
- },
- "entityRanges": [
- {
- "start": 693.36,
- "end": 693.55,
- "confidence": 0.92,
- "text": "When",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.56,
- "end": 693.62,
- "confidence": 1,
- "text": "a",
- "offset": 5,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.62,
- "end": 693.84,
- "confidence": 1,
- "text": "group",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.84,
- "end": 693.97,
- "confidence": 1,
- "text": "of",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 693.97,
- "end": 694.34,
- "confidence": 1,
- "text": "people",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 694.34,
- "end": 694.9,
- "confidence": 1,
- "text": "refuses",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 694.9,
- "end": 695,
- "confidence": 1,
- "text": "to",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695,
- "end": 695.44,
- "confidence": 0.99,
- "text": "harm",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.44,
- "end": 695.57,
- "confidence": 0.66,
- "text": "her",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.56,
- "end": 695.8,
- "confidence": 0.96,
- "text": "about",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.81,
- "end": 695.89,
- "confidence": 0.68,
- "text": "a",
- "offset": 49,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 695.92,
- "end": 696.13,
- "confidence": 0.98,
- "text": "baby",
- "offset": 51,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 696.13,
- "end": 696.86,
- "confidence": 0.99,
- "text": "dinosaur.",
- "offset": 56,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Those robots aren't just motors in years and a groom's.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 130",
- "words": [
- {
- "start": 698.23,
- "confidence": 1,
- "end": 698.46,
- "word": "those",
- "punct": "Those",
- "index": 1696
- },
- {
- "start": 698.46,
- "confidence": 1,
- "end": 698.86,
- "word": "robots",
- "punct": "robots",
- "index": 1697
- },
- {
- "start": 698.89,
- "confidence": 0.91,
- "end": 699.1,
- "word": "aren't",
- "punct": "aren't",
- "index": 1698
- },
- {
- "start": 699.1,
- "confidence": 0.93,
- "end": 699.49,
- "word": "just",
- "punct": "just",
- "index": 1699
- },
- {
- "start": 699.5,
- "confidence": 0.56,
- "end": 699.93,
- "word": "motors",
- "punct": "motors",
- "index": 1700
- },
- {
- "start": 699.92,
- "confidence": 0.71,
- "end": 700.04,
- "word": "in",
- "punct": "in",
- "index": 1701
- },
- {
- "start": 700.05,
- "confidence": 0.55,
- "end": 700.35,
- "word": "years",
- "punct": "years",
- "index": 1702
- },
- {
- "start": 700.35,
- "confidence": 0.83,
- "end": 700.45,
- "word": "and",
- "punct": "and",
- "index": 1703
- },
- {
- "start": 700.45,
- "confidence": 0.7,
- "end": 700.61,
- "word": "a",
- "punct": "a",
- "index": 1704
- },
- {
- "start": 700.61,
- "confidence": 0.76,
- "end": 701.37,
- "word": "groom's",
- "punct": "groom's.",
- "index": 1705
- }
- ],
- "start": 698.23
- },
- "entityRanges": [
- {
- "start": 698.23,
- "end": 698.46,
- "confidence": 1,
- "text": "Those",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 698.46,
- "end": 698.86,
- "confidence": 1,
- "text": "robots",
- "offset": 6,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 698.89,
- "end": 699.1,
- "confidence": 0.91,
- "text": "aren't",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 699.1,
- "end": 699.49,
- "confidence": 0.93,
- "text": "just",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 699.5,
- "end": 699.93,
- "confidence": 0.56,
- "text": "motors",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 699.92,
- "end": 700.04,
- "confidence": 0.71,
- "text": "in",
- "offset": 32,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.05,
- "end": 700.35,
- "confidence": 0.55,
- "text": "years",
- "offset": 35,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.35,
- "end": 700.45,
- "confidence": 0.83,
- "text": "and",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.45,
- "end": 700.61,
- "confidence": 0.7,
- "text": "a",
- "offset": 45,
- "length": 1,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 700.61,
- "end": 701.37,
- "confidence": 0.76,
- "text": "groom's.",
- "offset": 47,
- "length": 8,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- },
- {
- "text": "Their reflections of our own humanity.",
- "type": "paragraph",
- "data": {
- "speaker": "TBC 131",
- "words": [
- {
- "start": 702.17,
- "confidence": 0.67,
- "end": 702.37,
- "word": "their",
- "punct": "Their",
- "index": 1706
- },
- {
- "start": 702.62,
- "confidence": 1,
- "end": 703.26,
- "word": "reflections",
- "punct": "reflections",
- "index": 1707
- },
- {
- "start": 703.26,
- "confidence": 0.99,
- "end": 703.36,
- "word": "of",
- "punct": "of",
- "index": 1708
- },
- {
- "start": 703.36,
- "confidence": 0.99,
- "end": 703.45,
- "word": "our",
- "punct": "our",
- "index": 1709
- },
- {
- "start": 703.45,
- "confidence": 0.99,
- "end": 703.63,
- "word": "own",
- "punct": "own",
- "index": 1710
- },
- {
- "start": 703.63,
- "confidence": 1,
- "end": 704.34,
- "word": "humanity",
- "punct": "humanity.",
- "index": 1711
- }
- ],
- "start": 702.17
- },
- "entityRanges": [
- {
- "start": 702.17,
- "end": 702.37,
- "confidence": 0.67,
- "text": "Their",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 702.62,
- "end": 703.26,
- "confidence": 1,
- "text": "reflections",
- "offset": 6,
- "length": 11,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.26,
- "end": 703.36,
- "confidence": 0.99,
- "text": "of",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.36,
- "end": 703.45,
- "confidence": 0.99,
- "text": "our",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.45,
- "end": 703.63,
- "confidence": 0.99,
- "text": "own",
- "offset": 25,
- "length": 3,
- "key": expect.any(String)//"ss8pm4p"
- },
- {
- "start": 703.63,
- "end": 704.34,
- "confidence": 1,
- "text": "humanity.",
- "offset": 29,
- "length": 9,
- "key": expect.any(String)//"ss8pm4p"
- }
- ]
- }
-]
-export default draftTranscriptExample;
diff --git a/src/lib/Util/adapters/generate-entities-ranges/index.test.js b/src/lib/Util/adapters/generate-entities-ranges/index.test.js
deleted file mode 100644
index 82f7e2e9..00000000
--- a/src/lib/Util/adapters/generate-entities-ranges/index.test.js
+++ /dev/null
@@ -1,103 +0,0 @@
-import generateEntitiesRanges from './index';
-
-const exampleWords = [
- {
- start: 13.02,
- confidence: 0.68,
- end: 13.17,
- word: 'there',
- punct: 'There',
- index: 0,
- },
- {
- start: 13.17,
- confidence: 0.61,
- end: 13.38,
- word: 'is',
- punct: 'is',
- index: 1,
- },
- {
- start: 13.38,
- confidence: 0.99,
- end: 13.44,
- word: 'a',
- punct: 'a',
- index: 2,
- },
- {
- start: 13.44,
- confidence: 1,
- end: 13.86,
- word: 'day',
- punct: 'day.',
- index: 3,
- },
-];
-
-// ignoring autogenerated id
-// see" 2. Ignoring values, relative to current time"
-// https://medium.com/@boriscoder/the-hidden-power-of-jest-matchers-f3d86d8101b0
-const expectedValue = [
- {
- start: 13.02,
- end: 13.17,
- confidence: 0.68,
- text: 'There',
- offset: 0,
- length: 5,
- key: expect.any(String), // "sjagsma"
- },
- {
- start: 13.17,
- end: 13.38,
- confidence: 0.61,
- text: 'is',
- offset: 6,
- length: 2,
- key: expect.any(String), // "xuyej3b"
- },
- {
- start: 13.38,
- end: 13.44,
- confidence: 0.99,
- text: 'a',
- offset: 9,
- length: 1,
- key: expect.any(String), // "8fyva5"
- },
- {
- start: 13.44,
- end: 13.86,
- confidence: 1,
- text: 'day.',
- offset: 11,
- length: 4,
- key: expect.any(String), // "ss8pm4p"
- },
-];
-
-describe('Generate Entity Ranges', () => {
- const result = generateEntitiesRanges(exampleWords, 'punct');
- const resultFirstElement = result[0];
- it('Should be defined', ( ) => {
- expect(result).toBeDefined();
- });
-
- it('Should return a list of entities', ( ) => {
- expect(result).toEqual(expectedValue);
- });
- it('Should have expected attributes', ( ) => {
- expect(resultFirstElement).toHaveProperty('start');
- expect(resultFirstElement).toHaveProperty('end');
- expect(resultFirstElement).toHaveProperty('confidence');
- expect(resultFirstElement).toHaveProperty('text');
- expect(resultFirstElement).toHaveProperty('offset');
- expect(resultFirstElement).toHaveProperty('length');
- expect(resultFirstElement).toHaveProperty('key');
- });
-
- it('Should return a list of entities', ( ) => {
- expect(typeof resultFirstElement.key).toBe('string');
- });
-});
diff --git a/src/lib/Util/adapters/index.js b/src/lib/Util/adapters/index.js
deleted file mode 100644
index 97b1b50d..00000000
--- a/src/lib/Util/adapters/index.js
+++ /dev/null
@@ -1,60 +0,0 @@
-import bbcKaldiToDraft from './bbc-kaldi/index';
-import autoEdit2ToDraft from './autoEdit2/index';
-import speechmaticsToDraft from './speechmatics/index';
-import amazonTranscribeToDraft from './amazon-transcribe/index';
-
-/**
- * Adapters for STT conversion
- * @param {json} transcriptData - A json transcript with some word accurate timecode
- * @param {string} sttJsonType - the type of transcript supported by the available adapters
- */
-
-// converts nested arrays into one dimensional array
-const flatten = list => list.reduce((a, b) => a.concat(Array.isArray(b) ? flatten(b) : b), []);
-
-const createEntityMap = (blocks) => {
- const entityRanges = blocks.map(block => block.entityRanges);
- // eslint-disable-next-line no-use-before-define
- const flatEntityRanges = flatten(entityRanges);
-
- const entityMap = {};
-
- flatEntityRanges.forEach((data) => {
- entityMap[data.key] = {
- type: 'WORD',
- mutability: 'MUTABLE',
- data,
- };
- });
-
- return entityMap;
-};
-
-const sttJsonAdapter = (transcriptData, sttJsonType) => {
- let blocks;
- switch (sttJsonType) {
- case 'bbckaldi':
- blocks = bbcKaldiToDraft(transcriptData);
-
- return { blocks, entityMap: createEntityMap(blocks) };
- case 'autoedit2':
- blocks = autoEdit2ToDraft(transcriptData);
-
- return { blocks, entityMap: createEntityMap(blocks) };
- case 'speechmatics':
- blocks = speechmaticsToDraft(transcriptData);
-
- return { blocks, entityMap: createEntityMap(blocks) };
- case 'draftjs':
- return transcriptData; // (typeof transcriptData === 'string')? JSON.parse(transcriptData): transcriptData;
-
- case 'amazontranscribe':
- blocks = amazonTranscribeToDraft(transcriptData);
- return {blocks, entityMap: createEntityMap(blocks) };
- default:
- // code block
- console.error('not recognised the stt enginge');
- }
-};
-
-export default sttJsonAdapter;
diff --git a/src/lib/Util/adapters/speechmatics/example-usage.js b/src/lib/Util/adapters/speechmatics/example-usage.js
deleted file mode 100644
index adbb4419..00000000
--- a/src/lib/Util/adapters/speechmatics/example-usage.js
+++ /dev/null
@@ -1,7 +0,0 @@
-const speechmaticsToDraft = require('./index');
-// using require, because of testing outside of React app
-const speechmaticsTedTalkTranscript = require('./sample/speechmaticsTedTalkTranscript.sample.json');
-
-const result = speechmaticsToDraft(speechmaticsTedTalkTranscript);
-
-console.log(result);
diff --git a/src/lib/Util/adapters/speechmatics/index.test.js b/src/lib/Util/adapters/speechmatics/index.test.js
deleted file mode 100644
index b45b6cd5..00000000
--- a/src/lib/Util/adapters/speechmatics/index.test.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import speechmaticsToDraft from './index';
-
-import draftTranscriptExample from './sample/speechmaticsToDraft.sample.js';
-import speechmaticsTedTalkTranscript from './sample/speechmaticsTedTalkTranscript.sample.json';
-
-// TODO: figure out why the second of these two tests hang
-// might need to review the draftJS data structure output
-describe('speechmaticsToDraft', () => {
- const result = speechmaticsToDraft(speechmaticsTedTalkTranscript);
- it('Should be defined', ( ) => {
- expect(result).toBeDefined();
- });
-
- it('Should be equal to expected value', ( ) => {
- expect(result).toEqual(draftTranscriptExample);
- });
-});
diff --git a/src/lib/Util/adapters/speechmatics/sample/speechmaticsToDraft.sample.js b/src/lib/Util/adapters/speechmatics/sample/speechmaticsToDraft.sample.js
deleted file mode 100644
index 0907223d..00000000
--- a/src/lib/Util/adapters/speechmatics/sample/speechmaticsToDraft.sample.js
+++ /dev/null
@@ -1,31711 +0,0 @@
-const draftTranscriptExample = [
- {
- "text": "There was a day about 10 years ago when I asked a friend to hold a baby dinosaur robot upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "13.05",
- "end": "13.23",
- "confidence": "1.000",
- "word": "there",
- "punct": "There",
- "index": 0
- },
- {
- "start": "13.23",
- "end": "13.41",
- "confidence": "0.990",
- "word": "was",
- "punct": "was",
- "index": 1
- },
- {
- "start": "13.41",
- "end": "13.47",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 2
- },
- {
- "start": "13.47",
- "end": "13.89",
- "confidence": "1.000",
- "word": "day",
- "punct": "day",
- "index": 3
- },
- {
- "start": "13.89",
- "end": "14.13",
- "confidence": "1.000",
- "word": "about",
- "punct": "about",
- "index": 4
- },
- {
- "start": "14.13",
- "end": "14.370000000000001",
- "confidence": "0.690",
- "word": "10",
- "punct": "10",
- "index": 5
- },
- {
- "start": "14.37",
- "end": "14.639999999999999",
- "confidence": "1.000",
- "word": "years",
- "punct": "years",
- "index": 6
- },
- {
- "start": "14.64",
- "end": "15.15",
- "confidence": "1.000",
- "word": "ago",
- "punct": "ago",
- "index": 7
- },
- {
- "start": "15.57",
- "end": "15.75",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 8
- },
- {
- "start": "15.75",
- "end": "15.84",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 9
- },
- {
- "start": "15.84",
- "end": "16.23",
- "confidence": "1.000",
- "word": "asked",
- "punct": "asked",
- "index": 10
- },
- {
- "start": "16.23",
- "end": "16.29",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 11
- },
- {
- "start": "16.29",
- "end": "16.619999999999997",
- "confidence": "1.000",
- "word": "friend",
- "punct": "friend",
- "index": 12
- },
- {
- "start": "16.62",
- "end": "16.740000000000002",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 13
- },
- {
- "start": "16.74",
- "end": "17.189999999999998",
- "confidence": "1.000",
- "word": "hold",
- "punct": "hold",
- "index": 14
- },
- {
- "start": "17.25",
- "end": "17.31",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 15
- },
- {
- "start": "17.31",
- "end": "17.639999999999997",
- "confidence": "1.000",
- "word": "baby",
- "punct": "baby",
- "index": 16
- },
- {
- "start": "17.64",
- "end": "18.14",
- "confidence": "1.000",
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 17
- },
- {
- "start": "18.15",
- "end": "18.63",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 18
- },
- {
- "start": "18.78",
- "end": "19.17",
- "confidence": "1.000",
- "word": "upside",
- "punct": "upside",
- "index": 19
- },
- {
- "start": "19.17",
- "end": "19.990000000000002",
- "confidence": "1.000",
- "word": "down",
- "punct": "down.",
- "index": 20
- }
- ],
- "start": "13.05"
- },
- "entityRanges": [
- {
- "start": "13.05",
- "end": "13.23",
- "confidence": "1.000",
- "text": "There",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"jxbjnok"
- },
- {
- "start": "13.23",
- "end": "13.41",
- "confidence": "0.990",
- "text": "was",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"z7x4b2b"
- },
- {
- "start": "13.41",
- "end": "13.47",
- "confidence": "1.000",
- "text": "a",
- "offset": 10,
- "length": 1,
- "key": expect.any(String)//"oxb3kzp"
- },
- {
- "start": "13.47",
- "end": "13.89",
- "confidence": "1.000",
- "text": "day",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"hl6c2co"
- },
- {
- "start": "13.89",
- "end": "14.13",
- "confidence": "1.000",
- "text": "about",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"cpflbgg"
- },
- {
- "start": "14.13",
- "end": "14.370000000000001",
- "confidence": "0.690",
- "text": "10",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"xe5ihp"
- },
- {
- "start": "14.37",
- "end": "14.639999999999999",
- "confidence": "1.000",
- "text": "years",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"585to3h"
- },
- {
- "start": "14.64",
- "end": "15.15",
- "confidence": "1.000",
- "text": "ago",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"fjyebs"
- },
- {
- "start": "15.57",
- "end": "15.75",
- "confidence": "1.000",
- "text": "when",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"c9pgce8"
- },
- {
- "start": "15.75",
- "end": "15.84",
- "confidence": "1.000",
- "text": "I",
- "offset": 40,
- "length": 1,
- "key": expect.any(String)//"76v3z5c"
- },
- {
- "start": "15.84",
- "end": "16.23",
- "confidence": "1.000",
- "text": "asked",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"ai8zbl"
- },
- {
- "start": "16.23",
- "end": "16.29",
- "confidence": "1.000",
- "text": "a",
- "offset": 48,
- "length": 1,
- "key": expect.any(String)//"8hc75gf"
- },
- {
- "start": "16.29",
- "end": "16.619999999999997",
- "confidence": "1.000",
- "text": "friend",
- "offset": 50,
- "length": 6,
- "key": expect.any(String)//"dlnac2a"
- },
- {
- "start": "16.62",
- "end": "16.740000000000002",
- "confidence": "1.000",
- "text": "to",
- "offset": 57,
- "length": 2,
- "key": expect.any(String)//"zy3vdv"
- },
- {
- "start": "16.74",
- "end": "17.189999999999998",
- "confidence": "1.000",
- "text": "hold",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"7u3k2mf"
- },
- {
- "start": "17.25",
- "end": "17.31",
- "confidence": "1.000",
- "text": "a",
- "offset": 65,
- "length": 1,
- "key": expect.any(String)//"94q0qu6"
- },
- {
- "start": "17.31",
- "end": "17.639999999999997",
- "confidence": "1.000",
- "text": "baby",
- "offset": 67,
- "length": 4,
- "key": expect.any(String)//"qyzxb8c"
- },
- {
- "start": "17.64",
- "end": "18.14",
- "confidence": "1.000",
- "text": "dinosaur",
- "offset": 72,
- "length": 8,
- "key": expect.any(String)//"t9w4gd7"
- },
- {
- "start": "18.15",
- "end": "18.63",
- "confidence": "1.000",
- "text": "robot",
- "offset": 81,
- "length": 5,
- "key": expect.any(String)//"pt1a86"
- },
- {
- "start": "18.78",
- "end": "19.17",
- "confidence": "1.000",
- "text": "upside",
- "offset": 87,
- "length": 6,
- "key": expect.any(String)//"1hnurzg"
- },
- {
- "start": "19.17",
- "end": "19.990000000000002",
- "confidence": "1.000",
- "text": "down.",
- "offset": 94,
- "length": 5,
- "key": expect.any(String)//"1bzvhmh"
- }
- ]
- },
- {
- "text": "It was this toy called the polio that I had ordered and I was really excited about it because I've always loved robots and this one has really cool technical features.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "21.92",
- "end": "21.98",
- "confidence": "0.970",
- "word": "it",
- "punct": "It",
- "index": 21
- },
- {
- "start": "21.99",
- "end": "22.11",
- "confidence": "0.980",
- "word": "was",
- "punct": "was",
- "index": 22
- },
- {
- "start": "22.11",
- "end": "22.259999999999998",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 23
- },
- {
- "start": "22.26",
- "end": "22.680000000000003",
- "confidence": "1.000",
- "word": "toy",
- "punct": "toy",
- "index": 24
- },
- {
- "start": "22.68",
- "end": "22.89",
- "confidence": "1.000",
- "word": "called",
- "punct": "called",
- "index": 25
- },
- {
- "start": "22.89",
- "end": "22.98",
- "confidence": "0.910",
- "word": "the",
- "punct": "the",
- "index": 26
- },
- {
- "start": "23.02",
- "end": "23.759999999999998",
- "confidence": "0.590",
- "word": "polio",
- "punct": "polio",
- "index": 27
- },
- {
- "start": "24.21",
- "end": "24.57",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 28
- },
- {
- "start": "24.66",
- "end": "24.75",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 29
- },
- {
- "start": "24.75",
- "end": "24.9",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 30
- },
- {
- "start": "24.90",
- "end": "25.349999999999998",
- "confidence": "1.000",
- "word": "ordered",
- "punct": "ordered",
- "index": 31
- },
- {
- "start": "25.35",
- "end": "25.44",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 32
- },
- {
- "start": "25.44",
- "end": "25.5",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 33
- },
- {
- "start": "25.50",
- "end": "25.65",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 34
- },
- {
- "start": "25.65",
- "end": "25.889999999999997",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 35
- },
- {
- "start": "25.89",
- "end": "26.52",
- "confidence": "1.000",
- "word": "excited",
- "punct": "excited",
- "index": 36
- },
- {
- "start": "26.52",
- "end": "26.849999999999998",
- "confidence": "1.000",
- "word": "about",
- "punct": "about",
- "index": 37
- },
- {
- "start": "26.85",
- "end": "27",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 38
- },
- {
- "start": "27.03",
- "end": "27.75",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 39
- },
- {
- "start": "28.47",
- "end": "28.59",
- "confidence": "0.930",
- "word": "i've",
- "punct": "I've",
- "index": 40
- },
- {
- "start": "28.59",
- "end": "28.8",
- "confidence": "1.000",
- "word": "always",
- "punct": "always",
- "index": 41
- },
- {
- "start": "28.80",
- "end": "29.04",
- "confidence": "1.000",
- "word": "loved",
- "punct": "loved",
- "index": 42
- },
- {
- "start": "29.04",
- "end": "29.52",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 43
- },
- {
- "start": "29.79",
- "end": "29.88",
- "confidence": "0.990",
- "word": "and",
- "punct": "and",
- "index": 44
- },
- {
- "start": "29.88",
- "end": "30.029999999999998",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 45
- },
- {
- "start": "30.03",
- "end": "30.21",
- "confidence": "1.000",
- "word": "one",
- "punct": "one",
- "index": 46
- },
- {
- "start": "30.21",
- "end": "30.45",
- "confidence": "1.000",
- "word": "has",
- "punct": "has",
- "index": 47
- },
- {
- "start": "30.45",
- "end": "30.779999999999998",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 48
- },
- {
- "start": "30.78",
- "end": "30.96",
- "confidence": "1.000",
- "word": "cool",
- "punct": "cool",
- "index": 49
- },
- {
- "start": "30.96",
- "end": "31.35",
- "confidence": "1.000",
- "word": "technical",
- "punct": "technical",
- "index": 50
- },
- {
- "start": "31.35",
- "end": "31.830000000000002",
- "confidence": "1.000",
- "word": "features",
- "punct": "features.",
- "index": 51
- }
- ],
- "start": "21.92"
- },
- "entityRanges": [
- {
- "start": "21.92",
- "end": "21.98",
- "confidence": "0.970",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"d5la7d"
- },
- {
- "start": "21.99",
- "end": "22.11",
- "confidence": "0.980",
- "text": "was",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"kvdg61j"
- },
- {
- "start": "22.11",
- "end": "22.259999999999998",
- "confidence": "1.000",
- "text": "this",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"773ejzi"
- },
- {
- "start": "22.26",
- "end": "22.680000000000003",
- "confidence": "1.000",
- "text": "toy",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"jw9mos9"
- },
- {
- "start": "22.68",
- "end": "22.89",
- "confidence": "1.000",
- "text": "called",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"7tpb8vo"
- },
- {
- "start": "22.89",
- "end": "22.98",
- "confidence": "0.910",
- "text": "the",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)//"ot667l9"
- },
- {
- "start": "23.02",
- "end": "23.759999999999998",
- "confidence": "0.590",
- "text": "polio",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"rstps2n"
- },
- {
- "start": "24.21",
- "end": "24.57",
- "confidence": "1.000",
- "text": "that",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"mqb6ha"
- },
- {
- "start": "24.66",
- "end": "24.75",
- "confidence": "1.000",
- "text": "I",
- "offset": 38,
- "length": 1,
- "key": expect.any(String)//"uxuerpn"
- },
- {
- "start": "24.75",
- "end": "24.9",
- "confidence": "1.000",
- "text": "had",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"j2xl5n"
- },
- {
- "start": "24.90",
- "end": "25.349999999999998",
- "confidence": "1.000",
- "text": "ordered",
- "offset": 44,
- "length": 7,
- "key": expect.any(String)//"wmbt0wa"
- },
- {
- "start": "25.35",
- "end": "25.44",
- "confidence": "1.000",
- "text": "and",
- "offset": 52,
- "length": 3,
- "key": expect.any(String)//"177qun4"
- },
- {
- "start": "25.44",
- "end": "25.5",
- "confidence": "1.000",
- "text": "I",
- "offset": 56,
- "length": 1,
- "key": expect.any(String)//"15dooq39"
- },
- {
- "start": "25.50",
- "end": "25.65",
- "confidence": "1.000",
- "text": "was",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"thq2l9b"
- },
- {
- "start": "25.65",
- "end": "25.889999999999997",
- "confidence": "1.000",
- "text": "really",
- "offset": 62,
- "length": 6,
- "key": expect.any(String)//"nc172d"
- },
- {
- "start": "25.89",
- "end": "26.52",
- "confidence": "1.000",
- "text": "excited",
- "offset": 69,
- "length": 7,
- "key": expect.any(String)//"0fnuzs"
- },
- {
- "start": "26.52",
- "end": "26.849999999999998",
- "confidence": "1.000",
- "text": "about",
- "offset": 77,
- "length": 5,
- "key": expect.any(String)//"0l8fr4"
- },
- {
- "start": "26.85",
- "end": "27",
- "confidence": "1.000",
- "text": "it",
- "offset": 83,
- "length": 2,
- "key": expect.any(String)//"w1fn4ed"
- },
- {
- "start": "27.03",
- "end": "27.75",
- "confidence": "1.000",
- "text": "because",
- "offset": 86,
- "length": 7,
- "key": expect.any(String)//"wlrgne"
- },
- {
- "start": "28.47",
- "end": "28.59",
- "confidence": "0.930",
- "text": "I've",
- "offset": 94,
- "length": 4,
- "key": expect.any(String)//"v3n7sg5"
- },
- {
- "start": "28.59",
- "end": "28.8",
- "confidence": "1.000",
- "text": "always",
- "offset": 99,
- "length": 6,
- "key": expect.any(String)//"x00bwa9"
- },
- {
- "start": "28.80",
- "end": "29.04",
- "confidence": "1.000",
- "text": "loved",
- "offset": 106,
- "length": 5,
- "key": expect.any(String)//"5l7np49"
- },
- {
- "start": "29.04",
- "end": "29.52",
- "confidence": "1.000",
- "text": "robots",
- "offset": 112,
- "length": 6,
- "key": expect.any(String)//"1xmcr1ua"
- },
- {
- "start": "29.79",
- "end": "29.88",
- "confidence": "0.990",
- "text": "and",
- "offset": 119,
- "length": 3,
- "key": expect.any(String)//"1w0q52"
- },
- {
- "start": "29.88",
- "end": "30.029999999999998",
- "confidence": "1.000",
- "text": "this",
- "offset": 123,
- "length": 4,
- "key": expect.any(String)//"25toj0y"
- },
- {
- "start": "30.03",
- "end": "30.21",
- "confidence": "1.000",
- "text": "one",
- "offset": 128,
- "length": 3,
- "key": expect.any(String)//"qkpuv9t"
- },
- {
- "start": "30.21",
- "end": "30.45",
- "confidence": "1.000",
- "text": "has",
- "offset": 132,
- "length": 3,
- "key": expect.any(String)//"8cl0brk"
- },
- {
- "start": "30.45",
- "end": "30.779999999999998",
- "confidence": "1.000",
- "text": "really",
- "offset": 136,
- "length": 6,
- "key": expect.any(String)//"zoc3woo"
- },
- {
- "start": "30.78",
- "end": "30.96",
- "confidence": "1.000",
- "text": "cool",
- "offset": 143,
- "length": 4,
- "key": expect.any(String)//"wxyhuah"
- },
- {
- "start": "30.96",
- "end": "31.35",
- "confidence": "1.000",
- "text": "technical",
- "offset": 148,
- "length": 9,
- "key": expect.any(String)//"dkib4yj"
- },
- {
- "start": "31.35",
- "end": "31.830000000000002",
- "confidence": "1.000",
- "text": "features.",
- "offset": 158,
- "length": 9,
- "key": expect.any(String)//"aivhrqk"
- }
- ]
- },
- {
- "text": "It had motors and touch sensors and it had an infrared camera and one of the things that I had was a tilt sensor so it knew what direction it was facing.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "31.83",
- "end": "31.919999999999998",
- "confidence": "1.000",
- "word": "it",
- "punct": "It",
- "index": 52
- },
- {
- "start": "31.92",
- "end": "32.13",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 53
- },
- {
- "start": "32.13",
- "end": "32.760000000000005",
- "confidence": "1.000",
- "word": "motors",
- "punct": "motors",
- "index": 54
- },
- {
- "start": "32.76",
- "end": "32.879999999999995",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 55
- },
- {
- "start": "32.88",
- "end": "33.18",
- "confidence": "0.990",
- "word": "touch",
- "punct": "touch",
- "index": 56
- },
- {
- "start": "33.18",
- "end": "33.87",
- "confidence": "1.000",
- "word": "sensors",
- "punct": "sensors",
- "index": 57
- },
- {
- "start": "34.26",
- "end": "34.41",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 58
- },
- {
- "start": "34.41",
- "end": "34.5",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 59
- },
- {
- "start": "34.50",
- "end": "34.71",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 60
- },
- {
- "start": "34.71",
- "end": "34.800000000000004",
- "confidence": "1.000",
- "word": "an",
- "punct": "an",
- "index": 61
- },
- {
- "start": "34.80",
- "end": "35.309999999999995",
- "confidence": "1.000",
- "word": "infrared",
- "punct": "infrared",
- "index": 62
- },
- {
- "start": "35.31",
- "end": "35.97",
- "confidence": "1.000",
- "word": "camera",
- "punct": "camera",
- "index": 63
- },
- {
- "start": "36.54",
- "end": "36.66",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 64
- },
- {
- "start": "36.66",
- "end": "36.809999999999995",
- "confidence": "1.000",
- "word": "one",
- "punct": "one",
- "index": 65
- },
- {
- "start": "36.81",
- "end": "36.870000000000005",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 66
- },
- {
- "start": "36.87",
- "end": "36.989999999999995",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 67
- },
- {
- "start": "36.99",
- "end": "37.230000000000004",
- "confidence": "1.000",
- "word": "things",
- "punct": "things",
- "index": 68
- },
- {
- "start": "37.23",
- "end": "37.33",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 69
- },
- {
- "start": "37.33",
- "end": "37.35",
- "confidence": "0.660",
- "word": "i",
- "punct": "I",
- "index": 70
- },
- {
- "start": "37.35",
- "end": "37.53",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 71
- },
- {
- "start": "37.53",
- "end": "37.71",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 72
- },
- {
- "start": "37.71",
- "end": "37.800000000000004",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 73
- },
- {
- "start": "37.95",
- "end": "38.370000000000005",
- "confidence": "1.000",
- "word": "tilt",
- "punct": "tilt",
- "index": 74
- },
- {
- "start": "38.37",
- "end": "38.97",
- "confidence": "1.000",
- "word": "sensor",
- "punct": "sensor",
- "index": 75
- },
- {
- "start": "39.30",
- "end": "39.54",
- "confidence": "1.000",
- "word": "so",
- "punct": "so",
- "index": 76
- },
- {
- "start": "39.54",
- "end": "39.63",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 77
- },
- {
- "start": "39.63",
- "end": "39.84",
- "confidence": "1.000",
- "word": "knew",
- "punct": "knew",
- "index": 78
- },
- {
- "start": "39.84",
- "end": "39.96",
- "confidence": "1.000",
- "word": "what",
- "punct": "what",
- "index": 79
- },
- {
- "start": "39.96",
- "end": "40.56",
- "confidence": "1.000",
- "word": "direction",
- "punct": "direction",
- "index": 80
- },
- {
- "start": "40.56",
- "end": "40.650000000000006",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 81
- },
- {
- "start": "40.65",
- "end": "40.86",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 82
- },
- {
- "start": "40.86",
- "end": "41.99",
- "confidence": "1.000",
- "word": "facing",
- "punct": "facing.",
- "index": 83
- }
- ],
- "start": "31.83"
- },
- "entityRanges": [
- {
- "start": "31.83",
- "end": "31.919999999999998",
- "confidence": "1.000",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"lahabrq"
- },
- {
- "start": "31.92",
- "end": "32.13",
- "confidence": "1.000",
- "text": "had",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"l9z2lw4"
- },
- {
- "start": "32.13",
- "end": "32.760000000000005",
- "confidence": "1.000",
- "text": "motors",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)//"7wymhja"
- },
- {
- "start": "32.76",
- "end": "32.879999999999995",
- "confidence": "1.000",
- "text": "and",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)//"ubaocr"
- },
- {
- "start": "32.88",
- "end": "33.18",
- "confidence": "0.990",
- "text": "touch",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)//"jz9xju9"
- },
- {
- "start": "33.18",
- "end": "33.87",
- "confidence": "1.000",
- "text": "sensors",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"0srbx3n"
- },
- {
- "start": "34.26",
- "end": "34.41",
- "confidence": "1.000",
- "text": "and",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)//"i3biwr"
- },
- {
- "start": "34.41",
- "end": "34.5",
- "confidence": "1.000",
- "text": "it",
- "offset": 36,
- "length": 2,
- "key": expect.any(String)//"ocw7r3"
- },
- {
- "start": "34.50",
- "end": "34.71",
- "confidence": "1.000",
- "text": "had",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"lrplleo"
- },
- {
- "start": "34.71",
- "end": "34.800000000000004",
- "confidence": "1.000",
- "text": "an",
- "offset": 43,
- "length": 2,
- "key": expect.any(String)//"1zhlz88"
- },
- {
- "start": "34.80",
- "end": "35.309999999999995",
- "confidence": "1.000",
- "text": "infrared",
- "offset": 46,
- "length": 8,
- "key": expect.any(String)//"3uft5epo"
- },
- {
- "start": "35.31",
- "end": "35.97",
- "confidence": "1.000",
- "text": "camera",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)//"4cl9itp"
- },
- {
- "start": "36.54",
- "end": "36.66",
- "confidence": "1.000",
- "text": "and",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"wbb0e4"
- },
- {
- "start": "36.66",
- "end": "36.809999999999995",
- "confidence": "1.000",
- "text": "one",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"sqgncye"
- },
- {
- "start": "36.81",
- "end": "36.870000000000005",
- "confidence": "1.000",
- "text": "of",
- "offset": 70,
- "length": 2,
- "key": expect.any(String)//"t5k1iv"
- },
- {
- "start": "36.87",
- "end": "36.989999999999995",
- "confidence": "1.000",
- "text": "the",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)//"lu1hpcq"
- },
- {
- "start": "36.99",
- "end": "37.230000000000004",
- "confidence": "1.000",
- "text": "things",
- "offset": 77,
- "length": 6,
- "key": expect.any(String)//"3f3p3ed"
- },
- {
- "start": "37.23",
- "end": "37.33",
- "confidence": "1.000",
- "text": "that",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"ao8e53h"
- },
- {
- "start": "37.33",
- "end": "37.35",
- "confidence": "0.660",
- "text": "I",
- "offset": 89,
- "length": 1,
- "key": expect.any(String)//"wc7t0qs"
- },
- {
- "start": "37.35",
- "end": "37.53",
- "confidence": "1.000",
- "text": "had",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)//"q97w169"
- },
- {
- "start": "37.53",
- "end": "37.71",
- "confidence": "1.000",
- "text": "was",
- "offset": 95,
- "length": 3,
- "key": expect.any(String)//"94myv0e"
- },
- {
- "start": "37.71",
- "end": "37.800000000000004",
- "confidence": "1.000",
- "text": "a",
- "offset": 99,
- "length": 1,
- "key": expect.any(String)//"iu36m1dm"
- },
- {
- "start": "37.95",
- "end": "38.370000000000005",
- "confidence": "1.000",
- "text": "tilt",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)//"vj1qpmj"
- },
- {
- "start": "38.37",
- "end": "38.97",
- "confidence": "1.000",
- "text": "sensor",
- "offset": 106,
- "length": 6,
- "key": expect.any(String)//"7f5k4fc"
- },
- {
- "start": "39.30",
- "end": "39.54",
- "confidence": "1.000",
- "text": "so",
- "offset": 113,
- "length": 2,
- "key": expect.any(String)//"ve90pp"
- },
- {
- "start": "39.54",
- "end": "39.63",
- "confidence": "1.000",
- "text": "it",
- "offset": 116,
- "length": 2,
- "key": expect.any(String)//"l7f4b5l"
- },
- {
- "start": "39.63",
- "end": "39.84",
- "confidence": "1.000",
- "text": "knew",
- "offset": 119,
- "length": 4,
- "key": expect.any(String)//"ey1j24q"
- },
- {
- "start": "39.84",
- "end": "39.96",
- "confidence": "1.000",
- "text": "what",
- "offset": 124,
- "length": 4,
- "key": expect.any(String)//"mncs1p"
- },
- {
- "start": "39.96",
- "end": "40.56",
- "confidence": "1.000",
- "text": "direction",
- "offset": 129,
- "length": 9,
- "key": expect.any(String)//"os0t506r"
- },
- {
- "start": "40.56",
- "end": "40.650000000000006",
- "confidence": "1.000",
- "text": "it",
- "offset": 139,
- "length": 2,
- "key": expect.any(String)//"dt9gf7e"
- },
- {
- "start": "40.65",
- "end": "40.86",
- "confidence": "1.000",
- "text": "was",
- "offset": 142,
- "length": 3,
- "key": expect.any(String)//"qbwfr2"
- },
- {
- "start": "40.86",
- "end": "41.99",
- "confidence": "1.000",
- "text": "facing.",
- "offset": 146,
- "length": 7,
- "key": expect.any(String)//"o30911"
- }
- ]
- },
- {
- "text": "And when you held it upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "42.09",
- "end": "42.21",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 84
- },
- {
- "start": "42.21",
- "end": "42.33",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 85
- },
- {
- "start": "42.33",
- "end": "42.42",
- "confidence": "1.000",
- "word": "you",
- "punct": "you",
- "index": 86
- },
- {
- "start": "42.42",
- "end": "42.63",
- "confidence": "0.980",
- "word": "held",
- "punct": "held",
- "index": 87
- },
- {
- "start": "42.63",
- "end": "42.720000000000006",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 88
- },
- {
- "start": "42.72",
- "end": "43.019999999999996",
- "confidence": "1.000",
- "word": "upside",
- "punct": "upside",
- "index": 89
- },
- {
- "start": "43.02",
- "end": "43.56",
- "confidence": "1.000",
- "word": "down",
- "punct": "down.",
- "index": 90
- }
- ],
- "start": "42.09"
- },
- "entityRanges": [
- {
- "start": "42.09",
- "end": "42.21",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"u4pwzek"
- },
- {
- "start": "42.21",
- "end": "42.33",
- "confidence": "1.000",
- "text": "when",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"6my3gyb"
- },
- {
- "start": "42.33",
- "end": "42.42",
- "confidence": "1.000",
- "text": "you",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"e8w7lia"
- },
- {
- "start": "42.42",
- "end": "42.63",
- "confidence": "0.980",
- "text": "held",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"762fne6"
- },
- {
- "start": "42.63",
- "end": "42.720000000000006",
- "confidence": "1.000",
- "text": "it",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"ufhd7u"
- },
- {
- "start": "42.72",
- "end": "43.019999999999996",
- "confidence": "1.000",
- "text": "upside",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"l0bo84"
- },
- {
- "start": "43.02",
- "end": "43.56",
- "confidence": "1.000",
- "text": "down.",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)//"ejj8px"
- }
- ]
- },
- {
- "text": "It would start to cry.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "44.28",
- "end": "44.34",
- "confidence": "1.000",
- "word": "it",
- "punct": "It",
- "index": 91
- },
- {
- "start": "44.34",
- "end": "44.46",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 92
- },
- {
- "start": "44.46",
- "end": "44.67",
- "confidence": "1.000",
- "word": "start",
- "punct": "start",
- "index": 93
- },
- {
- "start": "44.67",
- "end": "44.760000000000005",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 94
- },
- {
- "start": "44.76",
- "end": "45.21",
- "confidence": "1.000",
- "word": "cry",
- "punct": "cry.",
- "index": 95
- }
- ],
- "start": "44.28"
- },
- "entityRanges": [
- {
- "start": "44.28",
- "end": "44.34",
- "confidence": "1.000",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"7o6xbks"
- },
- {
- "start": "44.34",
- "end": "44.46",
- "confidence": "1.000",
- "text": "would",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"91wq6bb"
- },
- {
- "start": "44.46",
- "end": "44.67",
- "confidence": "1.000",
- "text": "start",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"m5acuhf"
- },
- {
- "start": "44.67",
- "end": "44.760000000000005",
- "confidence": "1.000",
- "text": "to",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"ntet6as"
- },
- {
- "start": "44.76",
- "end": "45.21",
- "confidence": "1.000",
- "text": "cry.",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"9dq0v5r"
- }
- ]
- },
- {
- "text": "And I thought it was super cool.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "46.52",
- "end": "46.6",
- "confidence": "0.930",
- "word": "and",
- "punct": "And",
- "index": 96
- },
- {
- "start": "46.64",
- "end": "46.7",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 97
- },
- {
- "start": "46.70",
- "end": "46.88",
- "confidence": "1.000",
- "word": "thought",
- "punct": "thought",
- "index": 98
- },
- {
- "start": "46.94",
- "end": "47.059999999999995",
- "confidence": "0.340",
- "word": "it",
- "punct": "it",
- "index": 99
- },
- {
- "start": "47.12",
- "end": "47.269999999999996",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 100
- },
- {
- "start": "47.27",
- "end": "47.660000000000004",
- "confidence": "1.000",
- "word": "super",
- "punct": "super",
- "index": 101
- },
- {
- "start": "47.66",
- "end": "47.989999999999995",
- "confidence": "0.960",
- "word": "cool",
- "punct": "cool.",
- "index": 102
- }
- ],
- "start": "46.52"
- },
- "entityRanges": [
- {
- "start": "46.52",
- "end": "46.6",
- "confidence": "0.930",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"8u378w"
- },
- {
- "start": "46.64",
- "end": "46.7",
- "confidence": "1.000",
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)//"q2wa65"
- },
- {
- "start": "46.70",
- "end": "46.88",
- "confidence": "1.000",
- "text": "thought",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)//"4igkv08"
- },
- {
- "start": "46.94",
- "end": "47.059999999999995",
- "confidence": "0.340",
- "text": "it",
- "offset": 14,
- "length": 2,
- "key": expect.any(String)//"dfzvdb"
- },
- {
- "start": "47.12",
- "end": "47.269999999999996",
- "confidence": "1.000",
- "text": "was",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"tgzqvw"
- },
- {
- "start": "47.27",
- "end": "47.660000000000004",
- "confidence": "1.000",
- "text": "super",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)//"udr1wbv"
- },
- {
- "start": "47.66",
- "end": "47.989999999999995",
- "confidence": "0.960",
- "text": "cool.",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"fuxid0r"
- }
- ]
- },
- {
- "text": "So I was showing it off to my friend and I said oh hold it up by the tail see what it does.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "48.00",
- "end": "48.15",
- "confidence": "0.840",
- "word": "so",
- "punct": "So",
- "index": 103
- },
- {
- "start": "48.17",
- "end": "48.230000000000004",
- "confidence": "0.990",
- "word": "i",
- "punct": "I",
- "index": 104
- },
- {
- "start": "48.23",
- "end": "48.32",
- "confidence": "0.990",
- "word": "was",
- "punct": "was",
- "index": 105
- },
- {
- "start": "48.32",
- "end": "48.62",
- "confidence": "1.000",
- "word": "showing",
- "punct": "showing",
- "index": 106
- },
- {
- "start": "48.62",
- "end": "48.71",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 107
- },
- {
- "start": "48.71",
- "end": "48.83",
- "confidence": "1.000",
- "word": "off",
- "punct": "off",
- "index": 108
- },
- {
- "start": "48.83",
- "end": "48.92",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 109
- },
- {
- "start": "48.92",
- "end": "49.07",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 110
- },
- {
- "start": "49.07",
- "end": "49.52",
- "confidence": "1.000",
- "word": "friend",
- "punct": "friend",
- "index": 111
- },
- {
- "start": "50.06",
- "end": "50.18",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 112
- },
- {
- "start": "50.18",
- "end": "50.24",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 113
- },
- {
- "start": "50.24",
- "end": "50.42",
- "confidence": "1.000",
- "word": "said",
- "punct": "said",
- "index": 114
- },
- {
- "start": "50.45",
- "end": "50.57",
- "confidence": "0.370",
- "word": "oh",
- "punct": "oh",
- "index": 115
- },
- {
- "start": "50.60",
- "end": "50.84",
- "confidence": "1.000",
- "word": "hold",
- "punct": "hold",
- "index": 116
- },
- {
- "start": "50.84",
- "end": "50.900000000000006",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 117
- },
- {
- "start": "50.90",
- "end": "50.99",
- "confidence": "1.000",
- "word": "up",
- "punct": "up",
- "index": 118
- },
- {
- "start": "50.99",
- "end": "51.080000000000005",
- "confidence": "1.000",
- "word": "by",
- "punct": "by",
- "index": 119
- },
- {
- "start": "51.08",
- "end": "51.17",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 120
- },
- {
- "start": "51.17",
- "end": "51.5",
- "confidence": "1.000",
- "word": "tail",
- "punct": "tail",
- "index": 121
- },
- {
- "start": "51.50",
- "end": "51.68",
- "confidence": "1.000",
- "word": "see",
- "punct": "see",
- "index": 122
- },
- {
- "start": "51.68",
- "end": "51.79",
- "confidence": "0.990",
- "word": "what",
- "punct": "what",
- "index": 123
- },
- {
- "start": "51.79",
- "end": "51.85",
- "confidence": "0.810",
- "word": "it",
- "punct": "it",
- "index": 124
- },
- {
- "start": "51.86",
- "end": "52.24",
- "confidence": "0.920",
- "word": "does",
- "punct": "does.",
- "index": 125
- }
- ],
- "start": "48.00"
- },
- "entityRanges": [
- {
- "start": "48.00",
- "end": "48.15",
- "confidence": "0.840",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"xjok1a"
- },
- {
- "start": "48.17",
- "end": "48.230000000000004",
- "confidence": "0.990",
- "text": "I",
- "offset": 3,
- "length": 1,
- "key": expect.any(String)//"coixcbq"
- },
- {
- "start": "48.23",
- "end": "48.32",
- "confidence": "0.990",
- "text": "was",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"vgm9aq"
- },
- {
- "start": "48.32",
- "end": "48.62",
- "confidence": "1.000",
- "text": "showing",
- "offset": 9,
- "length": 7,
- "key": expect.any(String)//"da43iq2"
- },
- {
- "start": "48.62",
- "end": "48.71",
- "confidence": "1.000",
- "text": "it",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"ivzluhp"
- },
- {
- "start": "48.71",
- "end": "48.83",
- "confidence": "1.000",
- "text": "off",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"7kj7w2k"
- },
- {
- "start": "48.83",
- "end": "48.92",
- "confidence": "1.000",
- "text": "to",
- "offset": 24,
- "length": 2,
- "key": expect.any(String)//"ctlvsv"
- },
- {
- "start": "48.92",
- "end": "49.07",
- "confidence": "1.000",
- "text": "my",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"mtdh2al"
- },
- {
- "start": "49.07",
- "end": "49.52",
- "confidence": "1.000",
- "text": "friend",
- "offset": 30,
- "length": 6,
- "key": expect.any(String)//"hovv6x"
- },
- {
- "start": "50.06",
- "end": "50.18",
- "confidence": "1.000",
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"rjzgqt"
- },
- {
- "start": "50.18",
- "end": "50.24",
- "confidence": "1.000",
- "text": "I",
- "offset": 41,
- "length": 1,
- "key": expect.any(String)//"flk9dh"
- },
- {
- "start": "50.24",
- "end": "50.42",
- "confidence": "1.000",
- "text": "said",
- "offset": 43,
- "length": 4,
- "key": expect.any(String)//"qwmkju"
- },
- {
- "start": "50.45",
- "end": "50.57",
- "confidence": "0.370",
- "text": "oh",
- "offset": 48,
- "length": 2,
- "key": expect.any(String)//"sg7oysf"
- },
- {
- "start": "50.60",
- "end": "50.84",
- "confidence": "1.000",
- "text": "hold",
- "offset": 51,
- "length": 4,
- "key": expect.any(String)//"t2hp57"
- },
- {
- "start": "50.84",
- "end": "50.900000000000006",
- "confidence": "1.000",
- "text": "it",
- "offset": 56,
- "length": 2,
- "key": expect.any(String)//"yuquisn"
- },
- {
- "start": "50.90",
- "end": "50.99",
- "confidence": "1.000",
- "text": "up",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)//"duoram"
- },
- {
- "start": "50.99",
- "end": "51.080000000000005",
- "confidence": "1.000",
- "text": "by",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"jqx3y6w"
- },
- {
- "start": "51.08",
- "end": "51.17",
- "confidence": "1.000",
- "text": "the",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"kjm5gm8"
- },
- {
- "start": "51.17",
- "end": "51.5",
- "confidence": "1.000",
- "text": "tail",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"be7gp2g"
- },
- {
- "start": "51.50",
- "end": "51.68",
- "confidence": "1.000",
- "text": "see",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"ueka66b"
- },
- {
- "start": "51.68",
- "end": "51.79",
- "confidence": "0.990",
- "text": "what",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)//"bjt4el"
- },
- {
- "start": "51.79",
- "end": "51.85",
- "confidence": "0.810",
- "text": "it",
- "offset": 83,
- "length": 2,
- "key": expect.any(String)//"kaf42m8"
- },
- {
- "start": "51.86",
- "end": "52.24",
- "confidence": "0.920",
- "text": "does.",
- "offset": 86,
- "length": 5,
- "key": expect.any(String)//"qo83ngo"
- }
- ]
- },
- {
- "text": "So we're watching the theatrical of this robot struggle and cry out.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "55.27",
- "end": "55.39",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 126
- },
- {
- "start": "55.39",
- "end": "55.51",
- "confidence": "1.000",
- "word": "we're",
- "punct": "we're",
- "index": 127
- },
- {
- "start": "55.51",
- "end": "55.93",
- "confidence": "1.000",
- "word": "watching",
- "punct": "watching",
- "index": 128
- },
- {
- "start": "55.93",
- "end": "56.02",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 129
- },
- {
- "start": "56.02",
- "end": "56.910000000000004",
- "confidence": "0.800",
- "word": "theatrical",
- "punct": "theatrical",
- "index": 130
- },
- {
- "start": "56.92",
- "end": "57.010000000000005",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 131
- },
- {
- "start": "57.01",
- "end": "57.22",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 132
- },
- {
- "start": "57.22",
- "end": "57.94",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 133
- },
- {
- "start": "58.93",
- "end": "59.83",
- "confidence": "1.000",
- "word": "struggle",
- "punct": "struggle",
- "index": 134
- },
- {
- "start": "59.92",
- "end": "60.1",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 135
- },
- {
- "start": "60.10",
- "end": "60.67",
- "confidence": "1.000",
- "word": "cry",
- "punct": "cry",
- "index": 136
- },
- {
- "start": "60.67",
- "end": "62.14",
- "confidence": "1.000",
- "word": "out",
- "punct": "out.",
- "index": 137
- }
- ],
- "start": "55.27"
- },
- "entityRanges": [
- {
- "start": "55.27",
- "end": "55.39",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"9frlnmc"
- },
- {
- "start": "55.39",
- "end": "55.51",
- "confidence": "1.000",
- "text": "we're",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"q6sf0yd"
- },
- {
- "start": "55.51",
- "end": "55.93",
- "confidence": "1.000",
- "text": "watching",
- "offset": 9,
- "length": 8,
- "key": expect.any(String)//"v3fkbf"
- },
- {
- "start": "55.93",
- "end": "56.02",
- "confidence": "1.000",
- "text": "the",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"any2mrv"
- },
- {
- "start": "56.02",
- "end": "56.910000000000004",
- "confidence": "0.800",
- "text": "theatrical",
- "offset": 22,
- "length": 10,
- "key": expect.any(String)//"no4m996"
- },
- {
- "start": "56.92",
- "end": "57.010000000000005",
- "confidence": "1.000",
- "text": "of",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"widqlgr"
- },
- {
- "start": "57.01",
- "end": "57.22",
- "confidence": "1.000",
- "text": "this",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)//"pc8dnjq"
- },
- {
- "start": "57.22",
- "end": "57.94",
- "confidence": "1.000",
- "text": "robot",
- "offset": 41,
- "length": 5,
- "key": expect.any(String)//"3bwd9cd"
- },
- {
- "start": "58.93",
- "end": "59.83",
- "confidence": "1.000",
- "text": "struggle",
- "offset": 47,
- "length": 8,
- "key": expect.any(String)//"tly9hh4"
- },
- {
- "start": "59.92",
- "end": "60.1",
- "confidence": "1.000",
- "text": "and",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"i1459u"
- },
- {
- "start": "60.10",
- "end": "60.67",
- "confidence": "1.000",
- "text": "cry",
- "offset": 60,
- "length": 3,
- "key": expect.any(String)//"2sg9h4"
- },
- {
- "start": "60.67",
- "end": "62.14",
- "confidence": "1.000",
- "text": "out.",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"19fup2"
- }
- ]
- },
- {
- "text": "And after a few seconds.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "62.80",
- "end": "63.04",
- "confidence": "0.990",
- "word": "and",
- "punct": "And",
- "index": 138
- },
- {
- "start": "63.28",
- "end": "63.550000000000004",
- "confidence": "1.000",
- "word": "after",
- "punct": "after",
- "index": 139
- },
- {
- "start": "63.55",
- "end": "63.58",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 140
- },
- {
- "start": "63.58",
- "end": "63.76",
- "confidence": "1.000",
- "word": "few",
- "punct": "few",
- "index": 141
- },
- {
- "start": "63.76",
- "end": "64.45",
- "confidence": "1.000",
- "word": "seconds",
- "punct": "seconds.",
- "index": 142
- }
- ],
- "start": "62.80"
- },
- "entityRanges": [
- {
- "start": "62.80",
- "end": "63.04",
- "confidence": "0.990",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"tm4hp6e"
- },
- {
- "start": "63.28",
- "end": "63.550000000000004",
- "confidence": "1.000",
- "text": "after",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)//"5ke8jk"
- },
- {
- "start": "63.55",
- "end": "63.58",
- "confidence": "1.000",
- "text": "a",
- "offset": 10,
- "length": 1,
- "key": expect.any(String)//"ron4b4b"
- },
- {
- "start": "63.58",
- "end": "63.76",
- "confidence": "1.000",
- "text": "few",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"fr8we8o"
- },
- {
- "start": "63.76",
- "end": "64.45",
- "confidence": "1.000",
- "text": "seconds.",
- "offset": 16,
- "length": 8,
- "key": expect.any(String)//"57i7iba"
- }
- ]
- },
- {
- "text": "It starts to bother me a little.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "64.90",
- "end": "64.96000000000001",
- "confidence": "1.000",
- "word": "it",
- "punct": "It",
- "index": 143
- },
- {
- "start": "64.96",
- "end": "65.28999999999999",
- "confidence": "1.000",
- "word": "starts",
- "punct": "starts",
- "index": 144
- },
- {
- "start": "65.29",
- "end": "65.41000000000001",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 145
- },
- {
- "start": "65.41",
- "end": "65.86",
- "confidence": "1.000",
- "word": "bother",
- "punct": "bother",
- "index": 146
- },
- {
- "start": "65.86",
- "end": "66.01",
- "confidence": "1.000",
- "word": "me",
- "punct": "me",
- "index": 147
- },
- {
- "start": "66.01",
- "end": "66.04",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 148
- },
- {
- "start": "66.04",
- "end": "66.43",
- "confidence": "1.000",
- "word": "little",
- "punct": "little.",
- "index": 149
- }
- ],
- "start": "64.90"
- },
- "entityRanges": [
- {
- "start": "64.90",
- "end": "64.96000000000001",
- "confidence": "1.000",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"u8glryc"
- },
- {
- "start": "64.96",
- "end": "65.28999999999999",
- "confidence": "1.000",
- "text": "starts",
- "offset": 3,
- "length": 6,
- "key": expect.any(String)//"mk396y"
- },
- {
- "start": "65.29",
- "end": "65.41000000000001",
- "confidence": "1.000",
- "text": "to",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"e2t9flg"
- },
- {
- "start": "65.41",
- "end": "65.86",
- "confidence": "1.000",
- "text": "bother",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"zz4jky"
- },
- {
- "start": "65.86",
- "end": "66.01",
- "confidence": "1.000",
- "text": "me",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"8o0tty7"
- },
- {
- "start": "66.01",
- "end": "66.04",
- "confidence": "1.000",
- "text": "a",
- "offset": 23,
- "length": 1,
- "key": expect.any(String)//"l5eumwk"
- },
- {
- "start": "66.04",
- "end": "66.43",
- "confidence": "1.000",
- "text": "little.",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)//"9b8rd87"
- }
- ]
- },
- {
- "text": "And I said OK.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "67.77",
- "end": "67.92",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 150
- },
- {
- "start": "67.92",
- "end": "67.98",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 151
- },
- {
- "start": "67.98",
- "end": "68.2",
- "confidence": "1.000",
- "word": "said",
- "punct": "said",
- "index": 152
- },
- {
- "start": "68.22",
- "end": "68.81",
- "confidence": "0.580",
- "word": "ok",
- "punct": "OK.",
- "index": 153
- }
- ],
- "start": "67.77"
- },
- "entityRanges": [
- {
- "start": "67.77",
- "end": "67.92",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"zw8k2ma"
- },
- {
- "start": "67.92",
- "end": "67.98",
- "confidence": "1.000",
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)//"0qlqha"
- },
- {
- "start": "67.98",
- "end": "68.2",
- "confidence": "1.000",
- "text": "said",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"sb8rybf"
- },
- {
- "start": "68.22",
- "end": "68.81",
- "confidence": "0.580",
- "text": "OK.",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"f2zh10o"
- }
- ]
- },
- {
- "text": "That's enough.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "70.00",
- "end": "70.24",
- "confidence": "1.000",
- "word": "that's",
- "punct": "That's",
- "index": 154
- },
- {
- "start": "70.24",
- "end": "70.67999999999999",
- "confidence": "1.000",
- "word": "enough",
- "punct": "enough.",
- "index": 155
- }
- ],
- "start": "70.00"
- },
- "entityRanges": [
- {
- "start": "70.00",
- "end": "70.24",
- "confidence": "1.000",
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"z7fggkk"
- },
- {
- "start": "70.24",
- "end": "70.67999999999999",
- "confidence": "1.000",
- "text": "enough.",
- "offset": 7,
- "length": 7,
- "key": expect.any(String)//"5k2y8tv"
- }
- ]
- },
- {
- "text": "Now let's put him back down and then I pet the robot to make it stop crying.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "70.69",
- "end": "71.09",
- "confidence": "0.760",
- "word": "now",
- "punct": "Now",
- "index": 156
- },
- {
- "start": "71.95",
- "end": "72.13000000000001",
- "confidence": "0.980",
- "word": "let's",
- "punct": "let's",
- "index": 157
- },
- {
- "start": "72.13",
- "end": "72.25",
- "confidence": "1.000",
- "word": "put",
- "punct": "put",
- "index": 158
- },
- {
- "start": "72.25",
- "end": "72.34",
- "confidence": "0.550",
- "word": "him",
- "punct": "him",
- "index": 159
- },
- {
- "start": "72.34",
- "end": "72.55",
- "confidence": "1.000",
- "word": "back",
- "punct": "back",
- "index": 160
- },
- {
- "start": "72.55",
- "end": "73.09",
- "confidence": "1.000",
- "word": "down",
- "punct": "down",
- "index": 161
- },
- {
- "start": "74.32",
- "end": "74.44",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 162
- },
- {
- "start": "74.44",
- "end": "74.59",
- "confidence": "1.000",
- "word": "then",
- "punct": "then",
- "index": 163
- },
- {
- "start": "74.59",
- "end": "74.65",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 164
- },
- {
- "start": "74.65",
- "end": "74.89",
- "confidence": "0.980",
- "word": "pet",
- "punct": "pet",
- "index": 165
- },
- {
- "start": "74.89",
- "end": "74.98",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 166
- },
- {
- "start": "74.98",
- "end": "75.34",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 167
- },
- {
- "start": "75.34",
- "end": "75.43",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 168
- },
- {
- "start": "75.43",
- "end": "75.58000000000001",
- "confidence": "1.000",
- "word": "make",
- "punct": "make",
- "index": 169
- },
- {
- "start": "75.58",
- "end": "75.67",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 170
- },
- {
- "start": "75.67",
- "end": "75.91",
- "confidence": "1.000",
- "word": "stop",
- "punct": "stop",
- "index": 171
- },
- {
- "start": "75.91",
- "end": "77.14",
- "confidence": "1.000",
- "word": "crying",
- "punct": "crying.",
- "index": 172
- }
- ],
- "start": "70.69"
- },
- "entityRanges": [
- {
- "start": "70.69",
- "end": "71.09",
- "confidence": "0.760",
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ifw4mq"
- },
- {
- "start": "71.95",
- "end": "72.13000000000001",
- "confidence": "0.980",
- "text": "let's",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)//"npqmotg"
- },
- {
- "start": "72.13",
- "end": "72.25",
- "confidence": "1.000",
- "text": "put",
- "offset": 10,
- "length": 3,
- "key": expect.any(String)//"6c3jutw"
- },
- {
- "start": "72.25",
- "end": "72.34",
- "confidence": "0.550",
- "text": "him",
- "offset": 14,
- "length": 3,
- "key": expect.any(String)//"fzxad6p"
- },
- {
- "start": "72.34",
- "end": "72.55",
- "confidence": "1.000",
- "text": "back",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"6edyak"
- },
- {
- "start": "72.55",
- "end": "73.09",
- "confidence": "1.000",
- "text": "down",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"ikssnkk"
- },
- {
- "start": "74.32",
- "end": "74.44",
- "confidence": "1.000",
- "text": "and",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"bq1ld3jr"
- },
- {
- "start": "74.44",
- "end": "74.59",
- "confidence": "1.000",
- "text": "then",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)//"bfu3pwra"
- },
- {
- "start": "74.59",
- "end": "74.65",
- "confidence": "1.000",
- "text": "I",
- "offset": 37,
- "length": 1,
- "key": expect.any(String)//"fd6j53r"
- },
- {
- "start": "74.65",
- "end": "74.89",
- "confidence": "0.980",
- "text": "pet",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"r9lgvko"
- },
- {
- "start": "74.89",
- "end": "74.98",
- "confidence": "1.000",
- "text": "the",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"ie36yrn"
- },
- {
- "start": "74.98",
- "end": "75.34",
- "confidence": "1.000",
- "text": "robot",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"h6usr1c"
- },
- {
- "start": "75.34",
- "end": "75.43",
- "confidence": "1.000",
- "text": "to",
- "offset": 53,
- "length": 2,
- "key": expect.any(String)//"vh8ly4i"
- },
- {
- "start": "75.43",
- "end": "75.58000000000001",
- "confidence": "1.000",
- "text": "make",
- "offset": 56,
- "length": 4,
- "key": expect.any(String)//"0sgrdr8"
- },
- {
- "start": "75.58",
- "end": "75.67",
- "confidence": "1.000",
- "text": "it",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)//"6u28rip"
- },
- {
- "start": "75.67",
- "end": "75.91",
- "confidence": "1.000",
- "text": "stop",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"6rubq"
- },
- {
- "start": "75.91",
- "end": "77.14",
- "confidence": "1.000",
- "text": "crying.",
- "offset": 69,
- "length": 7,
- "key": expect.any(String)//"sgzjd8g"
- }
- ]
- },
- {
- "text": "And that was kind of a weird experience for me.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "78.88",
- "end": "78.94999999999999",
- "confidence": "0.780",
- "word": "and",
- "punct": "And",
- "index": 173
- },
- {
- "start": "79.08",
- "end": "79.17",
- "confidence": "0.990",
- "word": "that",
- "punct": "that",
- "index": 174
- },
- {
- "start": "79.17",
- "end": "79.29",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 175
- },
- {
- "start": "79.29",
- "end": "79.44000000000001",
- "confidence": "1.000",
- "word": "kind",
- "punct": "kind",
- "index": 176
- },
- {
- "start": "79.44",
- "end": "79.56",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 177
- },
- {
- "start": "79.56",
- "end": "79.62",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 178
- },
- {
- "start": "79.62",
- "end": "79.95",
- "confidence": "1.000",
- "word": "weird",
- "punct": "weird",
- "index": 179
- },
- {
- "start": "79.95",
- "end": "80.61",
- "confidence": "1.000",
- "word": "experience",
- "punct": "experience",
- "index": 180
- },
- {
- "start": "80.61",
- "end": "80.76",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 181
- },
- {
- "start": "80.76",
- "end": "82.02000000000001",
- "confidence": "1.000",
- "word": "me",
- "punct": "me.",
- "index": 182
- }
- ],
- "start": "78.88"
- },
- "entityRanges": [
- {
- "start": "78.88",
- "end": "78.94999999999999",
- "confidence": "0.780",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"hpig7fu"
- },
- {
- "start": "79.08",
- "end": "79.17",
- "confidence": "0.990",
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"nicf5aj"
- },
- {
- "start": "79.17",
- "end": "79.29",
- "confidence": "1.000",
- "text": "was",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"h7y4w97"
- },
- {
- "start": "79.29",
- "end": "79.44000000000001",
- "confidence": "1.000",
- "text": "kind",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"78vvkt"
- },
- {
- "start": "79.44",
- "end": "79.56",
- "confidence": "1.000",
- "text": "of",
- "offset": 18,
- "length": 2,
- "key": expect.any(String)//"uyng6r"
- },
- {
- "start": "79.56",
- "end": "79.62",
- "confidence": "1.000",
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)//"qdk5es4"
- },
- {
- "start": "79.62",
- "end": "79.95",
- "confidence": "1.000",
- "text": "weird",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"jdz8azg"
- },
- {
- "start": "79.95",
- "end": "80.61",
- "confidence": "1.000",
- "text": "experience",
- "offset": 29,
- "length": 10,
- "key": expect.any(String)//"71ek68v"
- },
- {
- "start": "80.61",
- "end": "80.76",
- "confidence": "1.000",
- "text": "for",
- "offset": 40,
- "length": 3,
- "key": expect.any(String)//"lxithqj"
- },
- {
- "start": "80.76",
- "end": "82.02000000000001",
- "confidence": "1.000",
- "text": "me.",
- "offset": 44,
- "length": 3,
- "key": expect.any(String)//"203c0l"
- }
- ]
- },
- {
- "text": "For one thing I wasn't the most maternal person at the time.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "82.09",
- "end": "82.17",
- "confidence": "0.810",
- "word": "for",
- "punct": "For",
- "index": 183
- },
- {
- "start": "82.17",
- "end": "82.35000000000001",
- "confidence": "1.000",
- "word": "one",
- "punct": "one",
- "index": 184
- },
- {
- "start": "82.35",
- "end": "82.67999999999999",
- "confidence": "1.000",
- "word": "thing",
- "punct": "thing",
- "index": 185
- },
- {
- "start": "82.98",
- "end": "83.07000000000001",
- "confidence": "0.590",
- "word": "i",
- "punct": "I",
- "index": 186
- },
- {
- "start": "83.07",
- "end": "83.30999999999999",
- "confidence": "1.000",
- "word": "wasn't",
- "punct": "wasn't",
- "index": 187
- },
- {
- "start": "83.31",
- "end": "83.4",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 188
- },
- {
- "start": "83.40",
- "end": "83.64",
- "confidence": "1.000",
- "word": "most",
- "punct": "most",
- "index": 189
- },
- {
- "start": "83.82",
- "end": "84.38999999999999",
- "confidence": "1.000",
- "word": "maternal",
- "punct": "maternal",
- "index": 190
- },
- {
- "start": "84.39",
- "end": "84.96",
- "confidence": "1.000",
- "word": "person",
- "punct": "person",
- "index": 191
- },
- {
- "start": "84.96",
- "end": "85.08",
- "confidence": "1.000",
- "word": "at",
- "punct": "at",
- "index": 192
- },
- {
- "start": "85.08",
- "end": "85.17",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 193
- },
- {
- "start": "85.17",
- "end": "85.77",
- "confidence": "1.000",
- "word": "time",
- "punct": "time.",
- "index": 194
- }
- ],
- "start": "82.09"
- },
- "entityRanges": [
- {
- "start": "82.09",
- "end": "82.17",
- "confidence": "0.810",
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"fr69xym"
- },
- {
- "start": "82.17",
- "end": "82.35000000000001",
- "confidence": "1.000",
- "text": "one",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"vtrwooa"
- },
- {
- "start": "82.35",
- "end": "82.67999999999999",
- "confidence": "1.000",
- "text": "thing",
- "offset": 8,
- "length": 5,
- "key": expect.any(String)//"34y42g8"
- },
- {
- "start": "82.98",
- "end": "83.07000000000001",
- "confidence": "0.590",
- "text": "I",
- "offset": 14,
- "length": 1,
- "key": expect.any(String)//"i8oyi0d"
- },
- {
- "start": "83.07",
- "end": "83.30999999999999",
- "confidence": "1.000",
- "text": "wasn't",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"jbj6gat"
- },
- {
- "start": "83.31",
- "end": "83.4",
- "confidence": "1.000",
- "text": "the",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)//"zufqrrd"
- },
- {
- "start": "83.40",
- "end": "83.64",
- "confidence": "1.000",
- "text": "most",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"30sak75"
- },
- {
- "start": "83.82",
- "end": "84.38999999999999",
- "confidence": "1.000",
- "text": "maternal",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"k0m1av"
- },
- {
- "start": "84.39",
- "end": "84.96",
- "confidence": "1.000",
- "text": "person",
- "offset": 41,
- "length": 6,
- "key": expect.any(String)//"407qw3g"
- },
- {
- "start": "84.96",
- "end": "85.08",
- "confidence": "1.000",
- "text": "at",
- "offset": 48,
- "length": 2,
- "key": expect.any(String)//"odk0hz"
- },
- {
- "start": "85.08",
- "end": "85.17",
- "confidence": "1.000",
- "text": "the",
- "offset": 51,
- "length": 3,
- "key": expect.any(String)//"l6gbos8"
- },
- {
- "start": "85.17",
- "end": "85.77",
- "confidence": "1.000",
- "text": "time.",
- "offset": 55,
- "length": 5,
- "key": expect.any(String)//"m3c4tpv"
- }
- ]
- },
- {
- "text": "Although since then I've become a mother.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "86.73",
- "end": "86.94",
- "confidence": "1.000",
- "word": "although",
- "punct": "Although",
- "index": 195
- },
- {
- "start": "86.94",
- "end": "87.17999999999999",
- "confidence": "1.000",
- "word": "since",
- "punct": "since",
- "index": 196
- },
- {
- "start": "87.18",
- "end": "87.30000000000001",
- "confidence": "1.000",
- "word": "then",
- "punct": "then",
- "index": 197
- },
- {
- "start": "87.30",
- "end": "87.39",
- "confidence": "0.860",
- "word": "i've",
- "punct": "I've",
- "index": 198
- },
- {
- "start": "87.39",
- "end": "87.63",
- "confidence": "1.000",
- "word": "become",
- "punct": "become",
- "index": 199
- },
- {
- "start": "87.63",
- "end": "87.66",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 200
- },
- {
- "start": "87.66",
- "end": "88.03999999999999",
- "confidence": "1.000",
- "word": "mother",
- "punct": "mother.",
- "index": 201
- }
- ],
- "start": "86.73"
- },
- "entityRanges": [
- {
- "start": "86.73",
- "end": "86.94",
- "confidence": "1.000",
- "text": "Although",
- "offset": 0,
- "length": 8,
- "key": expect.any(String)//"sp3y3w7"
- },
- {
- "start": "86.94",
- "end": "87.17999999999999",
- "confidence": "1.000",
- "text": "since",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"45eqhf"
- },
- {
- "start": "87.18",
- "end": "87.30000000000001",
- "confidence": "1.000",
- "text": "then",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"4kxp4z"
- },
- {
- "start": "87.30",
- "end": "87.39",
- "confidence": "0.860",
- "text": "I've",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"g2r5e38"
- },
- {
- "start": "87.39",
- "end": "87.63",
- "confidence": "1.000",
- "text": "become",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)//"eri4lho"
- },
- {
- "start": "87.63",
- "end": "87.66",
- "confidence": "1.000",
- "text": "a",
- "offset": 32,
- "length": 1,
- "key": expect.any(String)//"zy0h90b"
- },
- {
- "start": "87.66",
- "end": "88.03999999999999",
- "confidence": "1.000",
- "text": "mother.",
- "offset": 34,
- "length": 7,
- "key": expect.any(String)//"rp3yuc"
- }
- ]
- },
- {
- "text": "Nine months ago and I've learned that babies also squirm when you hold them upside down.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "88.04",
- "end": "88.29",
- "confidence": "0.680",
- "word": "nine",
- "punct": "Nine",
- "index": 202
- },
- {
- "start": "88.29",
- "end": "88.5",
- "confidence": "1.000",
- "word": "months",
- "punct": "months",
- "index": 203
- },
- {
- "start": "88.50",
- "end": "88.89",
- "confidence": "1.000",
- "word": "ago",
- "punct": "ago",
- "index": 204
- },
- {
- "start": "89.44",
- "end": "89.55",
- "confidence": "0.960",
- "word": "and",
- "punct": "and",
- "index": 205
- },
- {
- "start": "89.55",
- "end": "89.67",
- "confidence": "1.000",
- "word": "i've",
- "punct": "I've",
- "index": 206
- },
- {
- "start": "89.67",
- "end": "89.88",
- "confidence": "1.000",
- "word": "learned",
- "punct": "learned",
- "index": 207
- },
- {
- "start": "89.88",
- "end": "90.14999999999999",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 208
- },
- {
- "start": "90.15",
- "end": "90.51",
- "confidence": "0.990",
- "word": "babies",
- "punct": "babies",
- "index": 209
- },
- {
- "start": "90.51",
- "end": "90.75",
- "confidence": "1.000",
- "word": "also",
- "punct": "also",
- "index": 210
- },
- {
- "start": "90.75",
- "end": "91.11",
- "confidence": "0.900",
- "word": "squirm",
- "punct": "squirm",
- "index": 211
- },
- {
- "start": "91.11",
- "end": "91.23",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 212
- },
- {
- "start": "91.23",
- "end": "91.32000000000001",
- "confidence": "1.000",
- "word": "you",
- "punct": "you",
- "index": 213
- },
- {
- "start": "91.32",
- "end": "91.47",
- "confidence": "1.000",
- "word": "hold",
- "punct": "hold",
- "index": 214
- },
- {
- "start": "91.47",
- "end": "91.59",
- "confidence": "0.990",
- "word": "them",
- "punct": "them",
- "index": 215
- },
- {
- "start": "91.59",
- "end": "91.83",
- "confidence": "1.000",
- "word": "upside",
- "punct": "upside",
- "index": 216
- },
- {
- "start": "91.83",
- "end": "94.67",
- "confidence": "1.000",
- "word": "down",
- "punct": "down.",
- "index": 217
- }
- ],
- "start": "88.04"
- },
- "entityRanges": [
- {
- "start": "88.04",
- "end": "88.29",
- "confidence": "0.680",
- "text": "Nine",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"h7lyqqg"
- },
- {
- "start": "88.29",
- "end": "88.5",
- "confidence": "1.000",
- "text": "months",
- "offset": 5,
- "length": 6,
- "key": expect.any(String)//"sefv4c7"
- },
- {
- "start": "88.50",
- "end": "88.89",
- "confidence": "1.000",
- "text": "ago",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"mda2c3e"
- },
- {
- "start": "89.44",
- "end": "89.55",
- "confidence": "0.960",
- "text": "and",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"pttbeua"
- },
- {
- "start": "89.55",
- "end": "89.67",
- "confidence": "1.000",
- "text": "I've",
- "offset": 20,
- "length": 4,
- "key": expect.any(String)//"5hsh6em"
- },
- {
- "start": "89.67",
- "end": "89.88",
- "confidence": "1.000",
- "text": "learned",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)//"d2ruvx"
- },
- {
- "start": "89.88",
- "end": "90.14999999999999",
- "confidence": "1.000",
- "text": "that",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"5zbaybx"
- },
- {
- "start": "90.15",
- "end": "90.51",
- "confidence": "0.990",
- "text": "babies",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"5z3pj8t"
- },
- {
- "start": "90.51",
- "end": "90.75",
- "confidence": "1.000",
- "text": "also",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"w940v1"
- },
- {
- "start": "90.75",
- "end": "91.11",
- "confidence": "0.900",
- "text": "squirm",
- "offset": 50,
- "length": 6,
- "key": expect.any(String)//"7c4rpc7"
- },
- {
- "start": "91.11",
- "end": "91.23",
- "confidence": "1.000",
- "text": "when",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"wo3ad7"
- },
- {
- "start": "91.23",
- "end": "91.32000000000001",
- "confidence": "1.000",
- "text": "you",
- "offset": 62,
- "length": 3,
- "key": expect.any(String)//"00n203r"
- },
- {
- "start": "91.32",
- "end": "91.47",
- "confidence": "1.000",
- "text": "hold",
- "offset": 66,
- "length": 4,
- "key": expect.any(String)//"mci162r"
- },
- {
- "start": "91.47",
- "end": "91.59",
- "confidence": "0.990",
- "text": "them",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"orrkhr8"
- },
- {
- "start": "91.59",
- "end": "91.83",
- "confidence": "1.000",
- "text": "upside",
- "offset": 76,
- "length": 6,
- "key": expect.any(String)//"vo0tyf"
- },
- {
- "start": "91.83",
- "end": "94.67",
- "confidence": "1.000",
- "text": "down.",
- "offset": 83,
- "length": 5,
- "key": expect.any(String)//"dbztbf"
- }
- ]
- },
- {
- "text": "But my response to this robot was also interesting because I knew exactly how this machine worked and yet I still felt compelled to be kind to it.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "95.01",
- "end": "95.28",
- "confidence": "1.000",
- "word": "but",
- "punct": "But",
- "index": 218
- },
- {
- "start": "95.28",
- "end": "95.49",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 219
- },
- {
- "start": "95.49",
- "end": "95.86",
- "confidence": "1.000",
- "word": "response",
- "punct": "response",
- "index": 220
- },
- {
- "start": "95.86",
- "end": "95.91",
- "confidence": "0.860",
- "word": "to",
- "punct": "to",
- "index": 221
- },
- {
- "start": "95.91",
- "end": "96.11999999999999",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 222
- },
- {
- "start": "96.12",
- "end": "96.45",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 223
- },
- {
- "start": "96.45",
- "end": "96.60000000000001",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 224
- },
- {
- "start": "96.60",
- "end": "96.86999999999999",
- "confidence": "1.000",
- "word": "also",
- "punct": "also",
- "index": 225
- },
- {
- "start": "96.87",
- "end": "97.29",
- "confidence": "1.000",
- "word": "interesting",
- "punct": "interesting",
- "index": 226
- },
- {
- "start": "97.29",
- "end": "97.68",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 227
- },
- {
- "start": "97.95",
- "end": "98.04",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 228
- },
- {
- "start": "98.04",
- "end": "98.19000000000001",
- "confidence": "1.000",
- "word": "knew",
- "punct": "knew",
- "index": 229
- },
- {
- "start": "98.19",
- "end": "98.91",
- "confidence": "1.000",
- "word": "exactly",
- "punct": "exactly",
- "index": 230
- },
- {
- "start": "98.91",
- "end": "99.21",
- "confidence": "1.000",
- "word": "how",
- "punct": "how",
- "index": 231
- },
- {
- "start": "99.21",
- "end": "99.39",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 232
- },
- {
- "start": "99.39",
- "end": "99.93",
- "confidence": "1.000",
- "word": "machine",
- "punct": "machine",
- "index": 233
- },
- {
- "start": "99.93",
- "end": "100.77000000000001",
- "confidence": "0.990",
- "word": "worked",
- "punct": "worked",
- "index": 234
- },
- {
- "start": "101.55",
- "end": "101.7",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 235
- },
- {
- "start": "101.70",
- "end": "101.85000000000001",
- "confidence": "1.000",
- "word": "yet",
- "punct": "yet",
- "index": 236
- },
- {
- "start": "101.88",
- "end": "102",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 237
- },
- {
- "start": "102.00",
- "end": "102.39",
- "confidence": "1.000",
- "word": "still",
- "punct": "still",
- "index": 238
- },
- {
- "start": "102.39",
- "end": "102.63",
- "confidence": "1.000",
- "word": "felt",
- "punct": "felt",
- "index": 239
- },
- {
- "start": "102.66",
- "end": "103.35",
- "confidence": "1.000",
- "word": "compelled",
- "punct": "compelled",
- "index": 240
- },
- {
- "start": "103.35",
- "end": "103.5",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 241
- },
- {
- "start": "103.50",
- "end": "103.68",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 242
- },
- {
- "start": "103.68",
- "end": "104.4",
- "confidence": "1.000",
- "word": "kind",
- "punct": "kind",
- "index": 243
- },
- {
- "start": "104.40",
- "end": "104.61",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 244
- },
- {
- "start": "104.61",
- "end": "104.75",
- "confidence": "1.000",
- "word": "it",
- "punct": "it.",
- "index": 245
- }
- ],
- "start": "95.01"
- },
- "entityRanges": [
- {
- "start": "95.01",
- "end": "95.28",
- "confidence": "1.000",
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"hk2pu98"
- },
- {
- "start": "95.28",
- "end": "95.49",
- "confidence": "1.000",
- "text": "my",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"wrzyfin"
- },
- {
- "start": "95.49",
- "end": "95.86",
- "confidence": "1.000",
- "text": "response",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"3vvpby"
- },
- {
- "start": "95.86",
- "end": "95.91",
- "confidence": "0.860",
- "text": "to",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"qm0cb97"
- },
- {
- "start": "95.91",
- "end": "96.11999999999999",
- "confidence": "1.000",
- "text": "this",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"xwim7ij"
- },
- {
- "start": "96.12",
- "end": "96.45",
- "confidence": "1.000",
- "text": "robot",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)//"076delf"
- },
- {
- "start": "96.45",
- "end": "96.60000000000001",
- "confidence": "1.000",
- "text": "was",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"uu7ogzf"
- },
- {
- "start": "96.60",
- "end": "96.86999999999999",
- "confidence": "1.000",
- "text": "also",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"2lf4sn"
- },
- {
- "start": "96.87",
- "end": "97.29",
- "confidence": "1.000",
- "text": "interesting",
- "offset": 39,
- "length": 11,
- "key": expect.any(String)//"vcbq7sl"
- },
- {
- "start": "97.29",
- "end": "97.68",
- "confidence": "1.000",
- "text": "because",
- "offset": 51,
- "length": 7,
- "key": expect.any(String)//"ybodor"
- },
- {
- "start": "97.95",
- "end": "98.04",
- "confidence": "1.000",
- "text": "I",
- "offset": 59,
- "length": 1,
- "key": expect.any(String)//"ecljtrm"
- },
- {
- "start": "98.04",
- "end": "98.19000000000001",
- "confidence": "1.000",
- "text": "knew",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"1x7rk0d"
- },
- {
- "start": "98.19",
- "end": "98.91",
- "confidence": "1.000",
- "text": "exactly",
- "offset": 66,
- "length": 7,
- "key": expect.any(String)//"5djqlb"
- },
- {
- "start": "98.91",
- "end": "99.21",
- "confidence": "1.000",
- "text": "how",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"l2dzl0r"
- },
- {
- "start": "99.21",
- "end": "99.39",
- "confidence": "1.000",
- "text": "this",
- "offset": 78,
- "length": 4,
- "key": expect.any(String)//"32kqhm"
- },
- {
- "start": "99.39",
- "end": "99.93",
- "confidence": "1.000",
- "text": "machine",
- "offset": 83,
- "length": 7,
- "key": expect.any(String)//"d5q29j"
- },
- {
- "start": "99.93",
- "end": "100.77000000000001",
- "confidence": "0.990",
- "text": "worked",
- "offset": 91,
- "length": 6,
- "key": expect.any(String)//"com2nfb"
- },
- {
- "start": "101.55",
- "end": "101.7",
- "confidence": "1.000",
- "text": "and",
- "offset": 98,
- "length": 3,
- "key": expect.any(String)//"3tb9de"
- },
- {
- "start": "101.70",
- "end": "101.85000000000001",
- "confidence": "1.000",
- "text": "yet",
- "offset": 102,
- "length": 3,
- "key": expect.any(String)//"2me1upn"
- },
- {
- "start": "101.88",
- "end": "102",
- "confidence": "1.000",
- "text": "I",
- "offset": 106,
- "length": 1,
- "key": expect.any(String)//"enoxqad"
- },
- {
- "start": "102.00",
- "end": "102.39",
- "confidence": "1.000",
- "text": "still",
- "offset": 108,
- "length": 5,
- "key": expect.any(String)//"789thkj"
- },
- {
- "start": "102.39",
- "end": "102.63",
- "confidence": "1.000",
- "text": "felt",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)//"wlfp0g"
- },
- {
- "start": "102.66",
- "end": "103.35",
- "confidence": "1.000",
- "text": "compelled",
- "offset": 119,
- "length": 9,
- "key": expect.any(String)//"f7kv07i"
- },
- {
- "start": "103.35",
- "end": "103.5",
- "confidence": "1.000",
- "text": "to",
- "offset": 129,
- "length": 2,
- "key": expect.any(String)//"d1los98"
- },
- {
- "start": "103.50",
- "end": "103.68",
- "confidence": "1.000",
- "text": "be",
- "offset": 132,
- "length": 2,
- "key": expect.any(String)//"g8zgiw6"
- },
- {
- "start": "103.68",
- "end": "104.4",
- "confidence": "1.000",
- "text": "kind",
- "offset": 135,
- "length": 4,
- "key": expect.any(String)//"ol7k3gs"
- },
- {
- "start": "104.40",
- "end": "104.61",
- "confidence": "1.000",
- "text": "to",
- "offset": 140,
- "length": 2,
- "key": expect.any(String)//"ew81y3m"
- },
- {
- "start": "104.61",
- "end": "104.75",
- "confidence": "1.000",
- "text": "it.",
- "offset": 143,
- "length": 3,
- "key": expect.any(String)//"vnhi8pm"
- }
- ]
- },
- {
- "text": "And that observation sparked a curiosity that I've spent the fat the past decade pursuing.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "106.45",
- "end": "106.60000000000001",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 246
- },
- {
- "start": "106.60",
- "end": "106.89999999999999",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 247
- },
- {
- "start": "106.96",
- "end": "107.71",
- "confidence": "0.980",
- "word": "observation",
- "punct": "observation",
- "index": 248
- },
- {
- "start": "107.71",
- "end": "108.14",
- "confidence": "1.000",
- "word": "sparked",
- "punct": "sparked",
- "index": 249
- },
- {
- "start": "108.14",
- "end": "108.19",
- "confidence": "0.590",
- "word": "a",
- "punct": "a",
- "index": 250
- },
- {
- "start": "108.19",
- "end": "109.12",
- "confidence": "1.000",
- "word": "curiosity",
- "punct": "curiosity",
- "index": 251
- },
- {
- "start": "109.12",
- "end": "109.33",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 252
- },
- {
- "start": "109.33",
- "end": "109.42",
- "confidence": "0.530",
- "word": "i've",
- "punct": "I've",
- "index": 253
- },
- {
- "start": "109.42",
- "end": "109.75",
- "confidence": "1.000",
- "word": "spent",
- "punct": "spent",
- "index": 254
- },
- {
- "start": "109.75",
- "end": "109.81",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 255
- },
- {
- "start": "109.81",
- "end": "110.2",
- "confidence": "0.970",
- "word": "fat",
- "punct": "fat",
- "index": 256
- },
- {
- "start": "110.23",
- "end": "110.38000000000001",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 257
- },
- {
- "start": "110.38",
- "end": "110.71",
- "confidence": "1.000",
- "word": "past",
- "punct": "past",
- "index": 258
- },
- {
- "start": "110.71",
- "end": "111.25",
- "confidence": "1.000",
- "word": "decade",
- "punct": "decade",
- "index": 259
- },
- {
- "start": "111.28",
- "end": "112.93",
- "confidence": "1.000",
- "word": "pursuing",
- "punct": "pursuing.",
- "index": 260
- }
- ],
- "start": "106.45"
- },
- "entityRanges": [
- {
- "start": "106.45",
- "end": "106.60000000000001",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"g7nvsr"
- },
- {
- "start": "106.60",
- "end": "106.89999999999999",
- "confidence": "1.000",
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"l6zsyvx"
- },
- {
- "start": "106.96",
- "end": "107.71",
- "confidence": "0.980",
- "text": "observation",
- "offset": 9,
- "length": 11,
- "key": expect.any(String)//"rvtxc8"
- },
- {
- "start": "107.71",
- "end": "108.14",
- "confidence": "1.000",
- "text": "sparked",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)//"6iu93a"
- },
- {
- "start": "108.14",
- "end": "108.19",
- "confidence": "0.590",
- "text": "a",
- "offset": 29,
- "length": 1,
- "key": expect.any(String)//"bzosmi"
- },
- {
- "start": "108.19",
- "end": "109.12",
- "confidence": "1.000",
- "text": "curiosity",
- "offset": 31,
- "length": 9,
- "key": expect.any(String)//"80fdzsk"
- },
- {
- "start": "109.12",
- "end": "109.33",
- "confidence": "1.000",
- "text": "that",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"59lgf7x"
- },
- {
- "start": "109.33",
- "end": "109.42",
- "confidence": "0.530",
- "text": "I've",
- "offset": 46,
- "length": 4,
- "key": expect.any(String)//"tiwrix8"
- },
- {
- "start": "109.42",
- "end": "109.75",
- "confidence": "1.000",
- "text": "spent",
- "offset": 51,
- "length": 5,
- "key": expect.any(String)//"388cyqh"
- },
- {
- "start": "109.75",
- "end": "109.81",
- "confidence": "1.000",
- "text": "the",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"4se40yz"
- },
- {
- "start": "109.81",
- "end": "110.2",
- "confidence": "0.970",
- "text": "fat",
- "offset": 61,
- "length": 3,
- "key": expect.any(String)//"bwitdc"
- },
- {
- "start": "110.23",
- "end": "110.38000000000001",
- "confidence": "1.000",
- "text": "the",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"td22o4v"
- },
- {
- "start": "110.38",
- "end": "110.71",
- "confidence": "1.000",
- "text": "past",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"xuakarh"
- },
- {
- "start": "110.71",
- "end": "111.25",
- "confidence": "1.000",
- "text": "decade",
- "offset": 74,
- "length": 6,
- "key": expect.any(String)//"xpctzi"
- },
- {
- "start": "111.28",
- "end": "112.93",
- "confidence": "1.000",
- "text": "pursuing.",
- "offset": 81,
- "length": 9,
- "key": expect.any(String)//"umoqql"
- }
- ]
- },
- {
- "text": "Why did I comfort this robot.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "112.93",
- "end": "113.2",
- "confidence": "1.000",
- "word": "why",
- "punct": "Why",
- "index": 261
- },
- {
- "start": "113.20",
- "end": "113.38000000000001",
- "confidence": "0.980",
- "word": "did",
- "punct": "did",
- "index": 262
- },
- {
- "start": "113.38",
- "end": "113.47",
- "confidence": "0.950",
- "word": "i",
- "punct": "I",
- "index": 263
- },
- {
- "start": "113.47",
- "end": "113.92",
- "confidence": "1.000",
- "word": "comfort",
- "punct": "comfort",
- "index": 264
- },
- {
- "start": "113.92",
- "end": "114.13",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 265
- },
- {
- "start": "114.13",
- "end": "114.58",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot.",
- "index": 266
- }
- ],
- "start": "112.93"
- },
- "entityRanges": [
- {
- "start": "112.93",
- "end": "113.2",
- "confidence": "1.000",
- "text": "Why",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"rsjymko"
- },
- {
- "start": "113.20",
- "end": "113.38000000000001",
- "confidence": "0.980",
- "text": "did",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"0jyfw6j"
- },
- {
- "start": "113.38",
- "end": "113.47",
- "confidence": "0.950",
- "text": "I",
- "offset": 8,
- "length": 1,
- "key": expect.any(String)//"fqarjtr"
- },
- {
- "start": "113.47",
- "end": "113.92",
- "confidence": "1.000",
- "text": "comfort",
- "offset": 10,
- "length": 7,
- "key": expect.any(String)//"jx5b2pa"
- },
- {
- "start": "113.92",
- "end": "114.13",
- "confidence": "1.000",
- "text": "this",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"ws01y3h"
- },
- {
- "start": "114.13",
- "end": "114.58",
- "confidence": "1.000",
- "text": "robot.",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)//"fgtjr1"
- }
- ]
- },
- {
- "text": "And one of the things I discovered was that my treatment of this machine was more than just an awkward moment in my living room that in a world where we're increasingly integrating robots into our lives an instinct like that might actually have consequences because the first thing that I discovered is that it's not just me.",
- "type": "paragraph",
- "data": {
- "speaker": "UNK",
- "words": [
- {
- "start": "116.24",
- "end": "116.33",
- "confidence": "0.930",
- "word": "and",
- "punct": "And",
- "index": 267
- },
- {
- "start": "116.35",
- "end": "116.5",
- "confidence": "1.000",
- "word": "one",
- "punct": "one",
- "index": 268
- },
- {
- "start": "116.50",
- "end": "116.56",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 269
- },
- {
- "start": "116.56",
- "end": "116.65",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 270
- },
- {
- "start": "116.65",
- "end": "116.89",
- "confidence": "1.000",
- "word": "things",
- "punct": "things",
- "index": 271
- },
- {
- "start": "116.89",
- "end": "116.95",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 272
- },
- {
- "start": "116.95",
- "end": "117.58",
- "confidence": "1.000",
- "word": "discovered",
- "punct": "discovered",
- "index": 273
- },
- {
- "start": "117.58",
- "end": "117.76",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 274
- },
- {
- "start": "117.76",
- "end": "118.18",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 275
- },
- {
- "start": "118.48",
- "end": "118.63000000000001",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 276
- },
- {
- "start": "118.63",
- "end": "119.19999999999999",
- "confidence": "1.000",
- "word": "treatment",
- "punct": "treatment",
- "index": 277
- },
- {
- "start": "119.20",
- "end": "119.26",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 278
- },
- {
- "start": "119.26",
- "end": "119.44000000000001",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 279
- },
- {
- "start": "119.44",
- "end": "119.8",
- "confidence": "1.000",
- "word": "machine",
- "punct": "machine",
- "index": 280
- },
- {
- "start": "119.80",
- "end": "119.95",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 281
- },
- {
- "start": "119.95",
- "end": "120.22",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 282
- },
- {
- "start": "120.22",
- "end": "120.37",
- "confidence": "1.000",
- "word": "than",
- "punct": "than",
- "index": 283
- },
- {
- "start": "120.37",
- "end": "120.76",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 284
- },
- {
- "start": "121.03",
- "end": "121.18",
- "confidence": "1.000",
- "word": "an",
- "punct": "an",
- "index": 285
- },
- {
- "start": "121.21",
- "end": "121.6",
- "confidence": "1.000",
- "word": "awkward",
- "punct": "awkward",
- "index": 286
- },
- {
- "start": "121.60",
- "end": "122.05",
- "confidence": "1.000",
- "word": "moment",
- "punct": "moment",
- "index": 287
- },
- {
- "start": "122.08",
- "end": "122.17",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 288
- },
- {
- "start": "122.17",
- "end": "122.32000000000001",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 289
- },
- {
- "start": "122.32",
- "end": "122.61999999999999",
- "confidence": "1.000",
- "word": "living",
- "punct": "living",
- "index": 290
- },
- {
- "start": "122.62",
- "end": "122.95",
- "confidence": "1.000",
- "word": "room",
- "punct": "room",
- "index": 291
- },
- {
- "start": "123.55",
- "end": "123.73",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 292
- },
- {
- "start": "123.73",
- "end": "123.88000000000001",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 293
- },
- {
- "start": "123.88",
- "end": "123.94",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 294
- },
- {
- "start": "123.94",
- "end": "124.39",
- "confidence": "1.000",
- "word": "world",
- "punct": "world",
- "index": 295
- },
- {
- "start": "124.42",
- "end": "124.54",
- "confidence": "1.000",
- "word": "where",
- "punct": "where",
- "index": 296
- },
- {
- "start": "124.54",
- "end": "124.66000000000001",
- "confidence": "1.000",
- "word": "we're",
- "punct": "we're",
- "index": 297
- },
- {
- "start": "124.66",
- "end": "125.44",
- "confidence": "1.000",
- "word": "increasingly",
- "punct": "increasingly",
- "index": 298
- },
- {
- "start": "125.50",
- "end": "126.19",
- "confidence": "1.000",
- "word": "integrating",
- "punct": "integrating",
- "index": 299
- },
- {
- "start": "126.19",
- "end": "126.97",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 300
- },
- {
- "start": "127.27",
- "end": "127.53999999999999",
- "confidence": "1.000",
- "word": "into",
- "punct": "into",
- "index": 301
- },
- {
- "start": "127.54",
- "end": "127.66000000000001",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 302
- },
- {
- "start": "127.66",
- "end": "128.47",
- "confidence": "1.000",
- "word": "lives",
- "punct": "lives",
- "index": 303
- },
- {
- "start": "129.01",
- "end": "129.13",
- "confidence": "0.900",
- "word": "an",
- "punct": "an",
- "index": 304
- },
- {
- "start": "129.13",
- "end": "129.57999999999998",
- "confidence": "0.960",
- "word": "instinct",
- "punct": "instinct",
- "index": 305
- },
- {
- "start": "129.58",
- "end": "129.73000000000002",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 306
- },
- {
- "start": "129.73",
- "end": "130",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 307
- },
- {
- "start": "130.00",
- "end": "130.27",
- "confidence": "1.000",
- "word": "might",
- "punct": "might",
- "index": 308
- },
- {
- "start": "130.45",
- "end": "130.78",
- "confidence": "1.000",
- "word": "actually",
- "punct": "actually",
- "index": 309
- },
- {
- "start": "130.78",
- "end": "130.9",
- "confidence": "1.000",
- "word": "have",
- "punct": "have",
- "index": 310
- },
- {
- "start": "130.90",
- "end": "132.07",
- "confidence": "1.000",
- "word": "consequences",
- "punct": "consequences",
- "index": 311
- },
- {
- "start": "133.43",
- "end": "133.70000000000002",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 312
- },
- {
- "start": "133.70",
- "end": "133.76",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 313
- },
- {
- "start": "133.76",
- "end": "134.03",
- "confidence": "1.000",
- "word": "first",
- "punct": "first",
- "index": 314
- },
- {
- "start": "134.03",
- "end": "134.15",
- "confidence": "1.000",
- "word": "thing",
- "punct": "thing",
- "index": 315
- },
- {
- "start": "134.15",
- "end": "134.27",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 316
- },
- {
- "start": "134.27",
- "end": "134.33",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 317
- },
- {
- "start": "134.33",
- "end": "135.11",
- "confidence": "1.000",
- "word": "discovered",
- "punct": "discovered",
- "index": 318
- },
- {
- "start": "135.23",
- "end": "135.38",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 319
- },
- {
- "start": "135.38",
- "end": "135.53",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 320
- },
- {
- "start": "135.56",
- "end": "135.77",
- "confidence": "1.000",
- "word": "it's",
- "punct": "it's",
- "index": 321
- },
- {
- "start": "135.77",
- "end": "136.04000000000002",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 322
- },
- {
- "start": "136.04",
- "end": "136.37",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 323
- },
- {
- "start": "136.37",
- "end": "137.25",
- "confidence": "1.000",
- "word": "me",
- "punct": "me.",
- "index": 324
- }
- ],
- "start": "116.24"
- },
- "entityRanges": [
- {
- "start": "116.24",
- "end": "116.33",
- "confidence": "0.930",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"aj6fj9n"
- },
- {
- "start": "116.35",
- "end": "116.5",
- "confidence": "1.000",
- "text": "one",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"0lp5tsl"
- },
- {
- "start": "116.50",
- "end": "116.56",
- "confidence": "1.000",
- "text": "of",
- "offset": 8,
- "length": 2,
- "key": expect.any(String)//"mwvwx2j"
- },
- {
- "start": "116.56",
- "end": "116.65",
- "confidence": "1.000",
- "text": "the",
- "offset": 11,
- "length": 3,
- "key": expect.any(String)//"by0895r"
- },
- {
- "start": "116.65",
- "end": "116.89",
- "confidence": "1.000",
- "text": "things",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"2gzko9e"
- },
- {
- "start": "116.89",
- "end": "116.95",
- "confidence": "1.000",
- "text": "I",
- "offset": 22,
- "length": 1,
- "key": expect.any(String)//"muiyqar"
- },
- {
- "start": "116.95",
- "end": "117.58",
- "confidence": "1.000",
- "text": "discovered",
- "offset": 24,
- "length": 10,
- "key": expect.any(String)//"50q6ppf"
- },
- {
- "start": "117.58",
- "end": "117.76",
- "confidence": "1.000",
- "text": "was",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"c2jyjge"
- },
- {
- "start": "117.76",
- "end": "118.18",
- "confidence": "1.000",
- "text": "that",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"w4x7eb"
- },
- {
- "start": "118.48",
- "end": "118.63000000000001",
- "confidence": "1.000",
- "text": "my",
- "offset": 44,
- "length": 2,
- "key": expect.any(String)//"b9y3dwd"
- },
- {
- "start": "118.63",
- "end": "119.19999999999999",
- "confidence": "1.000",
- "text": "treatment",
- "offset": 47,
- "length": 9,
- "key": expect.any(String)//"hmwqswl"
- },
- {
- "start": "119.20",
- "end": "119.26",
- "confidence": "1.000",
- "text": "of",
- "offset": 57,
- "length": 2,
- "key": expect.any(String)//"fknbas8"
- },
- {
- "start": "119.26",
- "end": "119.44000000000001",
- "confidence": "1.000",
- "text": "this",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"lor0bl"
- },
- {
- "start": "119.44",
- "end": "119.8",
- "confidence": "1.000",
- "text": "machine",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)//"ilhmllw"
- },
- {
- "start": "119.80",
- "end": "119.95",
- "confidence": "1.000",
- "text": "was",
- "offset": 73,
- "length": 3,
- "key": expect.any(String)//"j1lu6xc"
- },
- {
- "start": "119.95",
- "end": "120.22",
- "confidence": "1.000",
- "text": "more",
- "offset": 77,
- "length": 4,
- "key": expect.any(String)//"x1enwu7"
- },
- {
- "start": "120.22",
- "end": "120.37",
- "confidence": "1.000",
- "text": "than",
- "offset": 82,
- "length": 4,
- "key": expect.any(String)//"6w2wdz"
- },
- {
- "start": "120.37",
- "end": "120.76",
- "confidence": "1.000",
- "text": "just",
- "offset": 87,
- "length": 4,
- "key": expect.any(String)//"trukm9"
- },
- {
- "start": "121.03",
- "end": "121.18",
- "confidence": "1.000",
- "text": "an",
- "offset": 92,
- "length": 2,
- "key": expect.any(String)//"89aw6po"
- },
- {
- "start": "121.21",
- "end": "121.6",
- "confidence": "1.000",
- "text": "awkward",
- "offset": 95,
- "length": 7,
- "key": expect.any(String)//"tsm7bnl"
- },
- {
- "start": "121.60",
- "end": "122.05",
- "confidence": "1.000",
- "text": "moment",
- "offset": 103,
- "length": 6,
- "key": expect.any(String)//"mo081v"
- },
- {
- "start": "122.08",
- "end": "122.17",
- "confidence": "1.000",
- "text": "in",
- "offset": 110,
- "length": 2,
- "key": expect.any(String)//"5zc4m1c"
- },
- {
- "start": "122.17",
- "end": "122.32000000000001",
- "confidence": "1.000",
- "text": "my",
- "offset": 113,
- "length": 2,
- "key": expect.any(String)//"5at21kh"
- },
- {
- "start": "122.32",
- "end": "122.61999999999999",
- "confidence": "1.000",
- "text": "living",
- "offset": 116,
- "length": 6,
- "key": expect.any(String)//"k4dmcv"
- },
- {
- "start": "122.62",
- "end": "122.95",
- "confidence": "1.000",
- "text": "room",
- "offset": 123,
- "length": 4,
- "key": expect.any(String)//"xbrtjfe"
- },
- {
- "start": "123.55",
- "end": "123.73",
- "confidence": "1.000",
- "text": "that",
- "offset": 128,
- "length": 4,
- "key": expect.any(String)//"q7fmp1b"
- },
- {
- "start": "123.73",
- "end": "123.88000000000001",
- "confidence": "1.000",
- "text": "in",
- "offset": 133,
- "length": 2,
- "key": expect.any(String)//"1onpp7"
- },
- {
- "start": "123.88",
- "end": "123.94",
- "confidence": "1.000",
- "text": "a",
- "offset": 136,
- "length": 1,
- "key": expect.any(String)//"z8c85qo"
- },
- {
- "start": "123.94",
- "end": "124.39",
- "confidence": "1.000",
- "text": "world",
- "offset": 138,
- "length": 5,
- "key": expect.any(String)//"z75tc5f"
- },
- {
- "start": "124.42",
- "end": "124.54",
- "confidence": "1.000",
- "text": "where",
- "offset": 144,
- "length": 5,
- "key": expect.any(String)//"a91ave"
- },
- {
- "start": "124.54",
- "end": "124.66000000000001",
- "confidence": "1.000",
- "text": "we're",
- "offset": 150,
- "length": 5,
- "key": expect.any(String)//"id5eidl"
- },
- {
- "start": "124.66",
- "end": "125.44",
- "confidence": "1.000",
- "text": "increasingly",
- "offset": 156,
- "length": 12,
- "key": expect.any(String)//"pxmuram"
- },
- {
- "start": "125.50",
- "end": "126.19",
- "confidence": "1.000",
- "text": "integrating",
- "offset": 169,
- "length": 11,
- "key": expect.any(String)//"n8inyhx"
- },
- {
- "start": "126.19",
- "end": "126.97",
- "confidence": "1.000",
- "text": "robots",
- "offset": 181,
- "length": 6,
- "key": expect.any(String)//"2czp988"
- },
- {
- "start": "127.27",
- "end": "127.53999999999999",
- "confidence": "1.000",
- "text": "into",
- "offset": 188,
- "length": 4,
- "key": expect.any(String)//"lqbmd6"
- },
- {
- "start": "127.54",
- "end": "127.66000000000001",
- "confidence": "1.000",
- "text": "our",
- "offset": 193,
- "length": 3,
- "key": expect.any(String)//"j2xf26n"
- },
- {
- "start": "127.66",
- "end": "128.47",
- "confidence": "1.000",
- "text": "lives",
- "offset": 197,
- "length": 5,
- "key": expect.any(String)//"mpy5wc"
- },
- {
- "start": "129.01",
- "end": "129.13",
- "confidence": "0.900",
- "text": "an",
- "offset": 203,
- "length": 2,
- "key": expect.any(String)//"3707jo"
- },
- {
- "start": "129.13",
- "end": "129.57999999999998",
- "confidence": "0.960",
- "text": "instinct",
- "offset": 206,
- "length": 8,
- "key": expect.any(String)//"wgovye"
- },
- {
- "start": "129.58",
- "end": "129.73000000000002",
- "confidence": "1.000",
- "text": "like",
- "offset": 215,
- "length": 4,
- "key": expect.any(String)//"ett4h7"
- },
- {
- "start": "129.73",
- "end": "130",
- "confidence": "1.000",
- "text": "that",
- "offset": 220,
- "length": 4,
- "key": expect.any(String)//"lgkssvj"
- },
- {
- "start": "130.00",
- "end": "130.27",
- "confidence": "1.000",
- "text": "might",
- "offset": 225,
- "length": 5,
- "key": expect.any(String)//"qpwrkwm"
- },
- {
- "start": "130.45",
- "end": "130.78",
- "confidence": "1.000",
- "text": "actually",
- "offset": 231,
- "length": 8,
- "key": expect.any(String)//"bfff8y1f"
- },
- {
- "start": "130.78",
- "end": "130.9",
- "confidence": "1.000",
- "text": "have",
- "offset": 240,
- "length": 4,
- "key": expect.any(String)//"8f966gl"
- },
- {
- "start": "130.90",
- "end": "132.07",
- "confidence": "1.000",
- "text": "consequences",
- "offset": 245,
- "length": 12,
- "key": expect.any(String)//"ynd9ny"
- },
- {
- "start": "133.43",
- "end": "133.70000000000002",
- "confidence": "1.000",
- "text": "because",
- "offset": 258,
- "length": 7,
- "key": expect.any(String)//"oy83tcv"
- },
- {
- "start": "133.70",
- "end": "133.76",
- "confidence": "1.000",
- "text": "the",
- "offset": 266,
- "length": 3,
- "key": expect.any(String)//"zuq9g37"
- },
- {
- "start": "133.76",
- "end": "134.03",
- "confidence": "1.000",
- "text": "first",
- "offset": 270,
- "length": 5,
- "key": expect.any(String)//"1eb8nys"
- },
- {
- "start": "134.03",
- "end": "134.15",
- "confidence": "1.000",
- "text": "thing",
- "offset": 276,
- "length": 5,
- "key": expect.any(String)//"xiret5n"
- },
- {
- "start": "134.15",
- "end": "134.27",
- "confidence": "1.000",
- "text": "that",
- "offset": 282,
- "length": 4,
- "key": expect.any(String)//"gmw6mg8"
- },
- {
- "start": "134.27",
- "end": "134.33",
- "confidence": "1.000",
- "text": "I",
- "offset": 287,
- "length": 1,
- "key": expect.any(String)//"c4u3wf"
- },
- {
- "start": "134.33",
- "end": "135.11",
- "confidence": "1.000",
- "text": "discovered",
- "offset": 289,
- "length": 10,
- "key": expect.any(String)//"9p753oq"
- },
- {
- "start": "135.23",
- "end": "135.38",
- "confidence": "1.000",
- "text": "is",
- "offset": 300,
- "length": 2,
- "key": expect.any(String)//"yolg66c"
- },
- {
- "start": "135.38",
- "end": "135.53",
- "confidence": "1.000",
- "text": "that",
- "offset": 303,
- "length": 4,
- "key": expect.any(String)//"22r84h"
- },
- {
- "start": "135.56",
- "end": "135.77",
- "confidence": "1.000",
- "text": "it's",
- "offset": 308,
- "length": 4,
- "key": expect.any(String)//"pahqu4v"
- },
- {
- "start": "135.77",
- "end": "136.04000000000002",
- "confidence": "1.000",
- "text": "not",
- "offset": 313,
- "length": 3,
- "key": expect.any(String)//"yw6dh5j"
- },
- {
- "start": "136.04",
- "end": "136.37",
- "confidence": "1.000",
- "text": "just",
- "offset": 317,
- "length": 4,
- "key": expect.any(String)//"u67usuq"
- },
- {
- "start": "136.37",
- "end": "137.25",
- "confidence": "1.000",
- "text": "me.",
- "offset": 322,
- "length": 3,
- "key": expect.any(String)//"dc5mxc"
- }
- ]
- },
- {
- "text": "In 2007 the Washington Post reported that the United States military was testing this robot that diffused landmines and the way it worked was it was shaped like a stick insect and it would walk around a minefield on its legs and every time it stepped on a mine.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "139.30",
- "end": "139.42000000000002",
- "confidence": "1.000",
- "word": "in",
- "punct": "In",
- "index": 325
- },
- {
- "start": "139.42",
- "end": "140.61999999999998",
- "confidence": "1.000",
- "word": "2007",
- "punct": "2007",
- "index": 326
- },
- {
- "start": "140.77",
- "end": "140.89000000000001",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 327
- },
- {
- "start": "140.89",
- "end": "141.39999999999998",
- "confidence": "1.000",
- "word": "washington",
- "punct": "Washington",
- "index": 328
- },
- {
- "start": "141.40",
- "end": "141.73000000000002",
- "confidence": "1.000",
- "word": "post",
- "punct": "Post",
- "index": 329
- },
- {
- "start": "141.73",
- "end": "142.23999999999998",
- "confidence": "1.000",
- "word": "reported",
- "punct": "reported",
- "index": 330
- },
- {
- "start": "142.24",
- "end": "142.42000000000002",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 331
- },
- {
- "start": "142.42",
- "end": "142.54",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 332
- },
- {
- "start": "142.54",
- "end": "142.9",
- "confidence": "1.000",
- "word": "united",
- "punct": "United",
- "index": 333
- },
- {
- "start": "142.90",
- "end": "143.20000000000002",
- "confidence": "1.000",
- "word": "states",
- "punct": "States",
- "index": 334
- },
- {
- "start": "143.20",
- "end": "144.04",
- "confidence": "1.000",
- "word": "military",
- "punct": "military",
- "index": 335
- },
- {
- "start": "144.07",
- "end": "144.25",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 336
- },
- {
- "start": "144.25",
- "end": "144.82",
- "confidence": "1.000",
- "word": "testing",
- "punct": "testing",
- "index": 337
- },
- {
- "start": "144.82",
- "end": "145.09",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 338
- },
- {
- "start": "145.36",
- "end": "145.84",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 339
- },
- {
- "start": "145.87",
- "end": "145.99",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 340
- },
- {
- "start": "145.99",
- "end": "146.56",
- "confidence": "0.570",
- "word": "diffused",
- "punct": "diffused",
- "index": 341
- },
- {
- "start": "146.56",
- "end": "147.31",
- "confidence": "1.000",
- "word": "landmines",
- "punct": "landmines",
- "index": 342
- },
- {
- "start": "147.34",
- "end": "147.46",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 343
- },
- {
- "start": "147.46",
- "end": "147.52",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 344
- },
- {
- "start": "147.52",
- "end": "147.64000000000001",
- "confidence": "1.000",
- "word": "way",
- "punct": "way",
- "index": 345
- },
- {
- "start": "147.64",
- "end": "147.7",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 346
- },
- {
- "start": "147.70",
- "end": "147.91",
- "confidence": "1.000",
- "word": "worked",
- "punct": "worked",
- "index": 347
- },
- {
- "start": "147.91",
- "end": "148.09",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 348
- },
- {
- "start": "148.39",
- "end": "148.48",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 349
- },
- {
- "start": "148.48",
- "end": "148.6",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 350
- },
- {
- "start": "148.60",
- "end": "148.93",
- "confidence": "1.000",
- "word": "shaped",
- "punct": "shaped",
- "index": 351
- },
- {
- "start": "148.93",
- "end": "149.11",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 352
- },
- {
- "start": "149.11",
- "end": "149.17000000000002",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 353
- },
- {
- "start": "149.17",
- "end": "149.55999999999997",
- "confidence": "1.000",
- "word": "stick",
- "punct": "stick",
- "index": 354
- },
- {
- "start": "149.59",
- "end": "150.07",
- "confidence": "1.000",
- "word": "insect",
- "punct": "insect",
- "index": 355
- },
- {
- "start": "150.10",
- "end": "150.19",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 356
- },
- {
- "start": "150.48",
- "end": "150.57",
- "confidence": "0.950",
- "word": "it",
- "punct": "it",
- "index": 357
- },
- {
- "start": "150.58",
- "end": "150.70000000000002",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 358
- },
- {
- "start": "150.70",
- "end": "150.97",
- "confidence": "1.000",
- "word": "walk",
- "punct": "walk",
- "index": 359
- },
- {
- "start": "150.97",
- "end": "151.18",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 360
- },
- {
- "start": "151.18",
- "end": "151.21",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 361
- },
- {
- "start": "151.21",
- "end": "151.8",
- "confidence": "0.970",
- "word": "minefield",
- "punct": "minefield",
- "index": 362
- },
- {
- "start": "151.81",
- "end": "151.9",
- "confidence": "0.970",
- "word": "on",
- "punct": "on",
- "index": 363
- },
- {
- "start": "151.90",
- "end": "152.05",
- "confidence": "1.000",
- "word": "its",
- "punct": "its",
- "index": 364
- },
- {
- "start": "152.05",
- "end": "152.53",
- "confidence": "1.000",
- "word": "legs",
- "punct": "legs",
- "index": 365
- },
- {
- "start": "152.95",
- "end": "153.1",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 366
- },
- {
- "start": "153.10",
- "end": "153.31",
- "confidence": "1.000",
- "word": "every",
- "punct": "every",
- "index": 367
- },
- {
- "start": "153.31",
- "end": "153.49",
- "confidence": "1.000",
- "word": "time",
- "punct": "time",
- "index": 368
- },
- {
- "start": "153.49",
- "end": "153.58",
- "confidence": "0.930",
- "word": "it",
- "punct": "it",
- "index": 369
- },
- {
- "start": "153.58",
- "end": "153.91000000000003",
- "confidence": "1.000",
- "word": "stepped",
- "punct": "stepped",
- "index": 370
- },
- {
- "start": "153.91",
- "end": "154",
- "confidence": "1.000",
- "word": "on",
- "punct": "on",
- "index": 371
- },
- {
- "start": "154.00",
- "end": "154.06",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 372
- },
- {
- "start": "154.06",
- "end": "154.44",
- "confidence": "1.000",
- "word": "mine",
- "punct": "mine.",
- "index": 373
- }
- ],
- "start": "139.30"
- },
- "entityRanges": [
- {
- "start": "139.30",
- "end": "139.42000000000002",
- "confidence": "1.000",
- "text": "In",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"l61zyl"
- },
- {
- "start": "139.42",
- "end": "140.61999999999998",
- "confidence": "1.000",
- "text": "2007",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"i8o5djc"
- },
- {
- "start": "140.77",
- "end": "140.89000000000001",
- "confidence": "1.000",
- "text": "the",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"4ut9paj"
- },
- {
- "start": "140.89",
- "end": "141.39999999999998",
- "confidence": "1.000",
- "text": "Washington",
- "offset": 12,
- "length": 10,
- "key": expect.any(String)//"j1m3gx"
- },
- {
- "start": "141.40",
- "end": "141.73000000000002",
- "confidence": "1.000",
- "text": "Post",
- "offset": 23,
- "length": 4,
- "key": expect.any(String)//"pw1ufw"
- },
- {
- "start": "141.73",
- "end": "142.23999999999998",
- "confidence": "1.000",
- "text": "reported",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"hkhn1ox"
- },
- {
- "start": "142.24",
- "end": "142.42000000000002",
- "confidence": "1.000",
- "text": "that",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)//"t7baba"
- },
- {
- "start": "142.42",
- "end": "142.54",
- "confidence": "1.000",
- "text": "the",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"onftyy"
- },
- {
- "start": "142.54",
- "end": "142.9",
- "confidence": "1.000",
- "text": "United",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)//"lxg9nr"
- },
- {
- "start": "142.90",
- "end": "143.20000000000002",
- "confidence": "1.000",
- "text": "States",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"w4xuh5"
- },
- {
- "start": "143.20",
- "end": "144.04",
- "confidence": "1.000",
- "text": "military",
- "offset": 60,
- "length": 8,
- "key": expect.any(String)//"7honch9"
- },
- {
- "start": "144.07",
- "end": "144.25",
- "confidence": "1.000",
- "text": "was",
- "offset": 69,
- "length": 3,
- "key": expect.any(String)//"e84aufp"
- },
- {
- "start": "144.25",
- "end": "144.82",
- "confidence": "1.000",
- "text": "testing",
- "offset": 73,
- "length": 7,
- "key": expect.any(String)//"bc65ua"
- },
- {
- "start": "144.82",
- "end": "145.09",
- "confidence": "1.000",
- "text": "this",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"mkm50m"
- },
- {
- "start": "145.36",
- "end": "145.84",
- "confidence": "1.000",
- "text": "robot",
- "offset": 86,
- "length": 5,
- "key": expect.any(String)//"o1387io"
- },
- {
- "start": "145.87",
- "end": "145.99",
- "confidence": "1.000",
- "text": "that",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"w118bhe"
- },
- {
- "start": "145.99",
- "end": "146.56",
- "confidence": "0.570",
- "text": "diffused",
- "offset": 97,
- "length": 8,
- "key": expect.any(String)//"pu0anqh"
- },
- {
- "start": "146.56",
- "end": "147.31",
- "confidence": "1.000",
- "text": "landmines",
- "offset": 106,
- "length": 9,
- "key": expect.any(String)//"uqh8xv8"
- },
- {
- "start": "147.34",
- "end": "147.46",
- "confidence": "1.000",
- "text": "and",
- "offset": 116,
- "length": 3,
- "key": expect.any(String)//"cfy5yvi"
- },
- {
- "start": "147.46",
- "end": "147.52",
- "confidence": "1.000",
- "text": "the",
- "offset": 120,
- "length": 3,
- "key": expect.any(String)//"e9fpzqj"
- },
- {
- "start": "147.52",
- "end": "147.64000000000001",
- "confidence": "1.000",
- "text": "way",
- "offset": 124,
- "length": 3,
- "key": expect.any(String)//"feh6g2"
- },
- {
- "start": "147.64",
- "end": "147.7",
- "confidence": "1.000",
- "text": "it",
- "offset": 128,
- "length": 2,
- "key": expect.any(String)//"4xx5joo"
- },
- {
- "start": "147.70",
- "end": "147.91",
- "confidence": "1.000",
- "text": "worked",
- "offset": 131,
- "length": 6,
- "key": expect.any(String)//"52zouhv"
- },
- {
- "start": "147.91",
- "end": "148.09",
- "confidence": "1.000",
- "text": "was",
- "offset": 138,
- "length": 3,
- "key": expect.any(String)//"qnfbuxn"
- },
- {
- "start": "148.39",
- "end": "148.48",
- "confidence": "1.000",
- "text": "it",
- "offset": 142,
- "length": 2,
- "key": expect.any(String)//"z2y08wa"
- },
- {
- "start": "148.48",
- "end": "148.6",
- "confidence": "1.000",
- "text": "was",
- "offset": 145,
- "length": 3,
- "key": expect.any(String)//"n94j42"
- },
- {
- "start": "148.60",
- "end": "148.93",
- "confidence": "1.000",
- "text": "shaped",
- "offset": 149,
- "length": 6,
- "key": expect.any(String)//"6sgiakn"
- },
- {
- "start": "148.93",
- "end": "149.11",
- "confidence": "1.000",
- "text": "like",
- "offset": 156,
- "length": 4,
- "key": expect.any(String)//"b8m4ngf"
- },
- {
- "start": "149.11",
- "end": "149.17000000000002",
- "confidence": "1.000",
- "text": "a",
- "offset": 161,
- "length": 1,
- "key": expect.any(String)//"5u28t1r"
- },
- {
- "start": "149.17",
- "end": "149.55999999999997",
- "confidence": "1.000",
- "text": "stick",
- "offset": 163,
- "length": 5,
- "key": expect.any(String)//"uyiaeoi"
- },
- {
- "start": "149.59",
- "end": "150.07",
- "confidence": "1.000",
- "text": "insect",
- "offset": 169,
- "length": 6,
- "key": expect.any(String)//"kavbe1"
- },
- {
- "start": "150.10",
- "end": "150.19",
- "confidence": "1.000",
- "text": "and",
- "offset": 176,
- "length": 3,
- "key": expect.any(String)//"el3zxs6"
- },
- {
- "start": "150.48",
- "end": "150.57",
- "confidence": "0.950",
- "text": "it",
- "offset": 180,
- "length": 2,
- "key": expect.any(String)//"lza68d"
- },
- {
- "start": "150.58",
- "end": "150.70000000000002",
- "confidence": "1.000",
- "text": "would",
- "offset": 183,
- "length": 5,
- "key": expect.any(String)//"kiqls25"
- },
- {
- "start": "150.70",
- "end": "150.97",
- "confidence": "1.000",
- "text": "walk",
- "offset": 189,
- "length": 4,
- "key": expect.any(String)//"y8z9zgt"
- },
- {
- "start": "150.97",
- "end": "151.18",
- "confidence": "1.000",
- "text": "around",
- "offset": 194,
- "length": 6,
- "key": expect.any(String)//"z0h08g"
- },
- {
- "start": "151.18",
- "end": "151.21",
- "confidence": "1.000",
- "text": "a",
- "offset": 201,
- "length": 1,
- "key": expect.any(String)//"895lkj"
- },
- {
- "start": "151.21",
- "end": "151.8",
- "confidence": "0.970",
- "text": "minefield",
- "offset": 203,
- "length": 9,
- "key": expect.any(String)//"dibxrvg"
- },
- {
- "start": "151.81",
- "end": "151.9",
- "confidence": "0.970",
- "text": "on",
- "offset": 213,
- "length": 2,
- "key": expect.any(String)//"i6xq52k"
- },
- {
- "start": "151.90",
- "end": "152.05",
- "confidence": "1.000",
- "text": "its",
- "offset": 216,
- "length": 3,
- "key": expect.any(String)//"tctk8ec"
- },
- {
- "start": "152.05",
- "end": "152.53",
- "confidence": "1.000",
- "text": "legs",
- "offset": 220,
- "length": 4,
- "key": expect.any(String)//"9dlllhg"
- },
- {
- "start": "152.95",
- "end": "153.1",
- "confidence": "1.000",
- "text": "and",
- "offset": 225,
- "length": 3,
- "key": expect.any(String)//"y8njneq"
- },
- {
- "start": "153.10",
- "end": "153.31",
- "confidence": "1.000",
- "text": "every",
- "offset": 229,
- "length": 5,
- "key": expect.any(String)//"d8p43a9"
- },
- {
- "start": "153.31",
- "end": "153.49",
- "confidence": "1.000",
- "text": "time",
- "offset": 235,
- "length": 4,
- "key": expect.any(String)//"fpjt89a"
- },
- {
- "start": "153.49",
- "end": "153.58",
- "confidence": "0.930",
- "text": "it",
- "offset": 240,
- "length": 2,
- "key": expect.any(String)//"s3gvxi"
- },
- {
- "start": "153.58",
- "end": "153.91000000000003",
- "confidence": "1.000",
- "text": "stepped",
- "offset": 243,
- "length": 7,
- "key": expect.any(String)//"im8tt7c"
- },
- {
- "start": "153.91",
- "end": "154",
- "confidence": "1.000",
- "text": "on",
- "offset": 251,
- "length": 2,
- "key": expect.any(String)//"u0im8"
- },
- {
- "start": "154.00",
- "end": "154.06",
- "confidence": "1.000",
- "text": "a",
- "offset": 254,
- "length": 1,
- "key": expect.any(String)//"zdrpo5"
- },
- {
- "start": "154.06",
- "end": "154.44",
- "confidence": "1.000",
- "text": "mine.",
- "offset": 256,
- "length": 5,
- "key": expect.any(String)//"ewyapem"
- }
- ]
- },
- {
- "text": "One of the legs would blow up and it would continue on the other legs to blow up more mines and the colonel who is in charge of this testing exercise ends up calling it off because he says it's too inhumane to watch this damaged robot drag itself along.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "154.48",
- "end": "154.66",
- "confidence": "1.000",
- "word": "one",
- "punct": "One",
- "index": 374
- },
- {
- "start": "154.66",
- "end": "154.75",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 375
- },
- {
- "start": "154.75",
- "end": "154.84",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 376
- },
- {
- "start": "154.84",
- "end": "155.11",
- "confidence": "1.000",
- "word": "legs",
- "punct": "legs",
- "index": 377
- },
- {
- "start": "155.11",
- "end": "155.23000000000002",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 378
- },
- {
- "start": "155.23",
- "end": "155.5",
- "confidence": "1.000",
- "word": "blow",
- "punct": "blow",
- "index": 379
- },
- {
- "start": "155.50",
- "end": "155.74",
- "confidence": "1.000",
- "word": "up",
- "punct": "up",
- "index": 380
- },
- {
- "start": "155.80",
- "end": "155.89000000000001",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 381
- },
- {
- "start": "155.89",
- "end": "155.95",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 382
- },
- {
- "start": "155.95",
- "end": "156.04",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 383
- },
- {
- "start": "156.04",
- "end": "156.54999999999998",
- "confidence": "1.000",
- "word": "continue",
- "punct": "continue",
- "index": 384
- },
- {
- "start": "156.55",
- "end": "156.64000000000001",
- "confidence": "1.000",
- "word": "on",
- "punct": "on",
- "index": 385
- },
- {
- "start": "156.64",
- "end": "156.73",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 386
- },
- {
- "start": "156.73",
- "end": "156.91",
- "confidence": "1.000",
- "word": "other",
- "punct": "other",
- "index": 387
- },
- {
- "start": "156.91",
- "end": "157.27",
- "confidence": "1.000",
- "word": "legs",
- "punct": "legs",
- "index": 388
- },
- {
- "start": "157.27",
- "end": "157.39000000000001",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 389
- },
- {
- "start": "157.39",
- "end": "157.6",
- "confidence": "1.000",
- "word": "blow",
- "punct": "blow",
- "index": 390
- },
- {
- "start": "157.60",
- "end": "157.69",
- "confidence": "1.000",
- "word": "up",
- "punct": "up",
- "index": 391
- },
- {
- "start": "157.69",
- "end": "157.84",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 392
- },
- {
- "start": "157.84",
- "end": "158.35",
- "confidence": "0.980",
- "word": "mines",
- "punct": "mines",
- "index": 393
- },
- {
- "start": "159.28",
- "end": "159.49",
- "confidence": "0.990",
- "word": "and",
- "punct": "and",
- "index": 394
- },
- {
- "start": "159.55",
- "end": "159.67000000000002",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 395
- },
- {
- "start": "159.67",
- "end": "160.14999999999998",
- "confidence": "1.000",
- "word": "colonel",
- "punct": "colonel",
- "index": 396
- },
- {
- "start": "160.15",
- "end": "160.26000000000002",
- "confidence": "0.950",
- "word": "who",
- "punct": "who",
- "index": 397
- },
- {
- "start": "160.26",
- "end": "160.35999999999999",
- "confidence": "0.920",
- "word": "is",
- "punct": "is",
- "index": 398
- },
- {
- "start": "160.36",
- "end": "160.48000000000002",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 399
- },
- {
- "start": "160.48",
- "end": "160.95999999999998",
- "confidence": "1.000",
- "word": "charge",
- "punct": "charge",
- "index": 400
- },
- {
- "start": "160.96",
- "end": "161.05",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 401
- },
- {
- "start": "161.05",
- "end": "161.20000000000002",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 402
- },
- {
- "start": "161.20",
- "end": "161.70999999999998",
- "confidence": "1.000",
- "word": "testing",
- "punct": "testing",
- "index": 403
- },
- {
- "start": "161.71",
- "end": "162.67000000000002",
- "confidence": "1.000",
- "word": "exercise",
- "punct": "exercise",
- "index": 404
- },
- {
- "start": "163.12",
- "end": "163.3",
- "confidence": "1.000",
- "word": "ends",
- "punct": "ends",
- "index": 405
- },
- {
- "start": "163.30",
- "end": "163.36",
- "confidence": "1.000",
- "word": "up",
- "punct": "up",
- "index": 406
- },
- {
- "start": "163.36",
- "end": "163.84",
- "confidence": "1.000",
- "word": "calling",
- "punct": "calling",
- "index": 407
- },
- {
- "start": "163.84",
- "end": "163.93",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 408
- },
- {
- "start": "163.93",
- "end": "164.35",
- "confidence": "1.000",
- "word": "off",
- "punct": "off",
- "index": 409
- },
- {
- "start": "165.19",
- "end": "165.60999999999999",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 410
- },
- {
- "start": "165.61",
- "end": "165.76000000000002",
- "confidence": "1.000",
- "word": "he",
- "punct": "he",
- "index": 411
- },
- {
- "start": "165.76",
- "end": "166.14999999999998",
- "confidence": "1.000",
- "word": "says",
- "punct": "says",
- "index": 412
- },
- {
- "start": "166.24",
- "end": "166.45000000000002",
- "confidence": "0.990",
- "word": "it's",
- "punct": "it's",
- "index": 413
- },
- {
- "start": "166.45",
- "end": "166.81",
- "confidence": "1.000",
- "word": "too",
- "punct": "too",
- "index": 414
- },
- {
- "start": "166.81",
- "end": "167.59",
- "confidence": "1.000",
- "word": "inhumane",
- "punct": "inhumane",
- "index": 415
- },
- {
- "start": "167.62",
- "end": "167.83",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 416
- },
- {
- "start": "167.83",
- "end": "168.34",
- "confidence": "1.000",
- "word": "watch",
- "punct": "watch",
- "index": 417
- },
- {
- "start": "168.34",
- "end": "168.58",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 418
- },
- {
- "start": "168.58",
- "end": "169.12",
- "confidence": "0.990",
- "word": "damaged",
- "punct": "damaged",
- "index": 419
- },
- {
- "start": "169.12",
- "end": "169.57",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 420
- },
- {
- "start": "169.60",
- "end": "170.04999999999998",
- "confidence": "1.000",
- "word": "drag",
- "punct": "drag",
- "index": 421
- },
- {
- "start": "170.05",
- "end": "170.47",
- "confidence": "1.000",
- "word": "itself",
- "punct": "itself",
- "index": 422
- },
- {
- "start": "170.47",
- "end": "170.92",
- "confidence": "1.000",
- "word": "along",
- "punct": "along.",
- "index": 423
- }
- ],
- "start": "154.48"
- },
- "entityRanges": [
- {
- "start": "154.48",
- "end": "154.66",
- "confidence": "1.000",
- "text": "One",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"1d4cxk"
- },
- {
- "start": "154.66",
- "end": "154.75",
- "confidence": "1.000",
- "text": "of",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"tod7r82"
- },
- {
- "start": "154.75",
- "end": "154.84",
- "confidence": "1.000",
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"m1p16dq"
- },
- {
- "start": "154.84",
- "end": "155.11",
- "confidence": "1.000",
- "text": "legs",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"9alf6zi"
- },
- {
- "start": "155.11",
- "end": "155.23000000000002",
- "confidence": "1.000",
- "text": "would",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"7naf8dr"
- },
- {
- "start": "155.23",
- "end": "155.5",
- "confidence": "1.000",
- "text": "blow",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"g5pl0ok"
- },
- {
- "start": "155.50",
- "end": "155.74",
- "confidence": "1.000",
- "text": "up",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"p3557om"
- },
- {
- "start": "155.80",
- "end": "155.89000000000001",
- "confidence": "1.000",
- "text": "and",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"ezyp6ta"
- },
- {
- "start": "155.89",
- "end": "155.95",
- "confidence": "1.000",
- "text": "it",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)//"5pk16v"
- },
- {
- "start": "155.95",
- "end": "156.04",
- "confidence": "1.000",
- "text": "would",
- "offset": 37,
- "length": 5,
- "key": expect.any(String)//"i9u2yl"
- },
- {
- "start": "156.04",
- "end": "156.54999999999998",
- "confidence": "1.000",
- "text": "continue",
- "offset": 43,
- "length": 8,
- "key": expect.any(String)//"s6nblrg"
- },
- {
- "start": "156.55",
- "end": "156.64000000000001",
- "confidence": "1.000",
- "text": "on",
- "offset": 52,
- "length": 2,
- "key": expect.any(String)//"r6ge66g"
- },
- {
- "start": "156.64",
- "end": "156.73",
- "confidence": "1.000",
- "text": "the",
- "offset": 55,
- "length": 3,
- "key": expect.any(String)//"1pktajf"
- },
- {
- "start": "156.73",
- "end": "156.91",
- "confidence": "1.000",
- "text": "other",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)//"4p99t3k"
- },
- {
- "start": "156.91",
- "end": "157.27",
- "confidence": "1.000",
- "text": "legs",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"mk6xgwu"
- },
- {
- "start": "157.27",
- "end": "157.39000000000001",
- "confidence": "1.000",
- "text": "to",
- "offset": 70,
- "length": 2,
- "key": expect.any(String)//"vaiy5v"
- },
- {
- "start": "157.39",
- "end": "157.6",
- "confidence": "1.000",
- "text": "blow",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"1mjgfrw"
- },
- {
- "start": "157.60",
- "end": "157.69",
- "confidence": "1.000",
- "text": "up",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"fyc288d"
- },
- {
- "start": "157.69",
- "end": "157.84",
- "confidence": "1.000",
- "text": "more",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"4c6uc1u"
- },
- {
- "start": "157.84",
- "end": "158.35",
- "confidence": "0.980",
- "text": "mines",
- "offset": 86,
- "length": 5,
- "key": expect.any(String)//"vavxkxh"
- },
- {
- "start": "159.28",
- "end": "159.49",
- "confidence": "0.990",
- "text": "and",
- "offset": 92,
- "length": 3,
- "key": expect.any(String)//"5rmf4w"
- },
- {
- "start": "159.55",
- "end": "159.67000000000002",
- "confidence": "1.000",
- "text": "the",
- "offset": 96,
- "length": 3,
- "key": expect.any(String)//"2egiyql"
- },
- {
- "start": "159.67",
- "end": "160.14999999999998",
- "confidence": "1.000",
- "text": "colonel",
- "offset": 100,
- "length": 7,
- "key": expect.any(String)//"at11db"
- },
- {
- "start": "160.15",
- "end": "160.26000000000002",
- "confidence": "0.950",
- "text": "who",
- "offset": 108,
- "length": 3,
- "key": expect.any(String)//"89yeivp"
- },
- {
- "start": "160.26",
- "end": "160.35999999999999",
- "confidence": "0.920",
- "text": "is",
- "offset": 112,
- "length": 2,
- "key": expect.any(String)//"ivg3tn"
- },
- {
- "start": "160.36",
- "end": "160.48000000000002",
- "confidence": "1.000",
- "text": "in",
- "offset": 115,
- "length": 2,
- "key": expect.any(String)//"r7g4glo"
- },
- {
- "start": "160.48",
- "end": "160.95999999999998",
- "confidence": "1.000",
- "text": "charge",
- "offset": 118,
- "length": 6,
- "key": expect.any(String)//"ikom0ga"
- },
- {
- "start": "160.96",
- "end": "161.05",
- "confidence": "1.000",
- "text": "of",
- "offset": 125,
- "length": 2,
- "key": expect.any(String)//"mwvfm6l"
- },
- {
- "start": "161.05",
- "end": "161.20000000000002",
- "confidence": "1.000",
- "text": "this",
- "offset": 128,
- "length": 4,
- "key": expect.any(String)//"4ev7gia"
- },
- {
- "start": "161.20",
- "end": "161.70999999999998",
- "confidence": "1.000",
- "text": "testing",
- "offset": 133,
- "length": 7,
- "key": expect.any(String)//"52dforg"
- },
- {
- "start": "161.71",
- "end": "162.67000000000002",
- "confidence": "1.000",
- "text": "exercise",
- "offset": 141,
- "length": 8,
- "key": expect.any(String)//"paa2ly8"
- },
- {
- "start": "163.12",
- "end": "163.3",
- "confidence": "1.000",
- "text": "ends",
- "offset": 150,
- "length": 4,
- "key": expect.any(String)//"i0y5ow8f"
- },
- {
- "start": "163.30",
- "end": "163.36",
- "confidence": "1.000",
- "text": "up",
- "offset": 155,
- "length": 2,
- "key": expect.any(String)//"wyut5ku"
- },
- {
- "start": "163.36",
- "end": "163.84",
- "confidence": "1.000",
- "text": "calling",
- "offset": 158,
- "length": 7,
- "key": expect.any(String)//"tydz60q"
- },
- {
- "start": "163.84",
- "end": "163.93",
- "confidence": "1.000",
- "text": "it",
- "offset": 166,
- "length": 2,
- "key": expect.any(String)//"eeeypy"
- },
- {
- "start": "163.93",
- "end": "164.35",
- "confidence": "1.000",
- "text": "off",
- "offset": 169,
- "length": 3,
- "key": expect.any(String)//"ws1ybm5"
- },
- {
- "start": "165.19",
- "end": "165.60999999999999",
- "confidence": "1.000",
- "text": "because",
- "offset": 173,
- "length": 7,
- "key": expect.any(String)//"iv54h6"
- },
- {
- "start": "165.61",
- "end": "165.76000000000002",
- "confidence": "1.000",
- "text": "he",
- "offset": 181,
- "length": 2,
- "key": expect.any(String)//"g1ijyze"
- },
- {
- "start": "165.76",
- "end": "166.14999999999998",
- "confidence": "1.000",
- "text": "says",
- "offset": 184,
- "length": 4,
- "key": expect.any(String)//"s04qcf6"
- },
- {
- "start": "166.24",
- "end": "166.45000000000002",
- "confidence": "0.990",
- "text": "it's",
- "offset": 189,
- "length": 4,
- "key": expect.any(String)//"6x1va9"
- },
- {
- "start": "166.45",
- "end": "166.81",
- "confidence": "1.000",
- "text": "too",
- "offset": 194,
- "length": 3,
- "key": expect.any(String)//"z291frw"
- },
- {
- "start": "166.81",
- "end": "167.59",
- "confidence": "1.000",
- "text": "inhumane",
- "offset": 198,
- "length": 8,
- "key": expect.any(String)//"xf9qd2l"
- },
- {
- "start": "167.62",
- "end": "167.83",
- "confidence": "1.000",
- "text": "to",
- "offset": 207,
- "length": 2,
- "key": expect.any(String)//"vuzs4kr"
- },
- {
- "start": "167.83",
- "end": "168.34",
- "confidence": "1.000",
- "text": "watch",
- "offset": 210,
- "length": 5,
- "key": expect.any(String)//"82ul12l"
- },
- {
- "start": "168.34",
- "end": "168.58",
- "confidence": "1.000",
- "text": "this",
- "offset": 216,
- "length": 4,
- "key": expect.any(String)//"usm7bbb"
- },
- {
- "start": "168.58",
- "end": "169.12",
- "confidence": "0.990",
- "text": "damaged",
- "offset": 221,
- "length": 7,
- "key": expect.any(String)//"xgy8uvh"
- },
- {
- "start": "169.12",
- "end": "169.57",
- "confidence": "1.000",
- "text": "robot",
- "offset": 229,
- "length": 5,
- "key": expect.any(String)//"fipsujk"
- },
- {
- "start": "169.60",
- "end": "170.04999999999998",
- "confidence": "1.000",
- "text": "drag",
- "offset": 235,
- "length": 4,
- "key": expect.any(String)//"ynhba6"
- },
- {
- "start": "170.05",
- "end": "170.47",
- "confidence": "1.000",
- "text": "itself",
- "offset": 240,
- "length": 6,
- "key": expect.any(String)//"5gvx2c"
- },
- {
- "start": "170.47",
- "end": "170.92",
- "confidence": "1.000",
- "text": "along.",
- "offset": 247,
- "length": 6,
- "key": expect.any(String)//"osezgx"
- }
- ]
- },
- {
- "text": "The minefield.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "171.34",
- "end": "171.43",
- "confidence": "1.000",
- "word": "the",
- "punct": "The",
- "index": 424
- },
- {
- "start": "171.46",
- "end": "172.12",
- "confidence": "0.900",
- "word": "minefield",
- "punct": "minefield.",
- "index": 425
- }
- ],
- "start": "171.34"
- },
- "entityRanges": [
- {
- "start": "171.34",
- "end": "171.43",
- "confidence": "1.000",
- "text": "The",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"jzlfkzc"
- },
- {
- "start": "171.46",
- "end": "172.12",
- "confidence": "0.900",
- "text": "minefield.",
- "offset": 4,
- "length": 10,
- "key": expect.any(String)//"p1g7xen"
- }
- ]
- },
- {
- "text": "Now what would cause a hardened military officer and someone like myself to have this response to robots.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "175.01",
- "end": "175.19",
- "confidence": "0.600",
- "word": "now",
- "punct": "Now",
- "index": 426
- },
- {
- "start": "175.20",
- "end": "175.41",
- "confidence": "1.000",
- "word": "what",
- "punct": "what",
- "index": 427
- },
- {
- "start": "175.41",
- "end": "175.53",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 428
- },
- {
- "start": "175.53",
- "end": "176.19",
- "confidence": "1.000",
- "word": "cause",
- "punct": "cause",
- "index": 429
- },
- {
- "start": "176.31",
- "end": "176.4",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 430
- },
- {
- "start": "176.40",
- "end": "176.94",
- "confidence": "1.000",
- "word": "hardened",
- "punct": "hardened",
- "index": 431
- },
- {
- "start": "176.94",
- "end": "177.69",
- "confidence": "1.000",
- "word": "military",
- "punct": "military",
- "index": 432
- },
- {
- "start": "177.69",
- "end": "178.5",
- "confidence": "1.000",
- "word": "officer",
- "punct": "officer",
- "index": 433
- },
- {
- "start": "178.89",
- "end": "179.07",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 434
- },
- {
- "start": "179.07",
- "end": "179.45999999999998",
- "confidence": "1.000",
- "word": "someone",
- "punct": "someone",
- "index": 435
- },
- {
- "start": "179.46",
- "end": "179.61",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 436
- },
- {
- "start": "179.61",
- "end": "180.3",
- "confidence": "1.000",
- "word": "myself",
- "punct": "myself",
- "index": 437
- },
- {
- "start": "180.96",
- "end": "181.08",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 438
- },
- {
- "start": "181.08",
- "end": "181.29000000000002",
- "confidence": "1.000",
- "word": "have",
- "punct": "have",
- "index": 439
- },
- {
- "start": "181.29",
- "end": "181.44",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 440
- },
- {
- "start": "181.44",
- "end": "181.92",
- "confidence": "1.000",
- "word": "response",
- "punct": "response",
- "index": 441
- },
- {
- "start": "181.92",
- "end": "182.04",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 442
- },
- {
- "start": "182.04",
- "end": "183.53",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots.",
- "index": 443
- }
- ],
- "start": "175.01"
- },
- "entityRanges": [
- {
- "start": "175.01",
- "end": "175.19",
- "confidence": "0.600",
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"1n9t6g"
- },
- {
- "start": "175.20",
- "end": "175.41",
- "confidence": "1.000",
- "text": "what",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"dj30f1b"
- },
- {
- "start": "175.41",
- "end": "175.53",
- "confidence": "1.000",
- "text": "would",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"2rrdbgq"
- },
- {
- "start": "175.53",
- "end": "176.19",
- "confidence": "1.000",
- "text": "cause",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)//"wkxqtxe"
- },
- {
- "start": "176.31",
- "end": "176.4",
- "confidence": "1.000",
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)//"mu3vnw"
- },
- {
- "start": "176.40",
- "end": "176.94",
- "confidence": "1.000",
- "text": "hardened",
- "offset": 23,
- "length": 8,
- "key": expect.any(String)//"521lmo"
- },
- {
- "start": "176.94",
- "end": "177.69",
- "confidence": "1.000",
- "text": "military",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"kz7rb6a"
- },
- {
- "start": "177.69",
- "end": "178.5",
- "confidence": "1.000",
- "text": "officer",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"9w6ev2b"
- },
- {
- "start": "178.89",
- "end": "179.07",
- "confidence": "1.000",
- "text": "and",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"bpnq3d"
- },
- {
- "start": "179.07",
- "end": "179.45999999999998",
- "confidence": "1.000",
- "text": "someone",
- "offset": 53,
- "length": 7,
- "key": expect.any(String)//"4min15b"
- },
- {
- "start": "179.46",
- "end": "179.61",
- "confidence": "1.000",
- "text": "like",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"hppuesc"
- },
- {
- "start": "179.61",
- "end": "180.3",
- "confidence": "1.000",
- "text": "myself",
- "offset": 66,
- "length": 6,
- "key": expect.any(String)//"76a78t"
- },
- {
- "start": "180.96",
- "end": "181.08",
- "confidence": "1.000",
- "text": "to",
- "offset": 73,
- "length": 2,
- "key": expect.any(String)//"5o8ctir"
- },
- {
- "start": "181.08",
- "end": "181.29000000000002",
- "confidence": "1.000",
- "text": "have",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"vovp2dp"
- },
- {
- "start": "181.29",
- "end": "181.44",
- "confidence": "1.000",
- "text": "this",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"6mol9md"
- },
- {
- "start": "181.44",
- "end": "181.92",
- "confidence": "1.000",
- "text": "response",
- "offset": 86,
- "length": 8,
- "key": expect.any(String)//"q9q7flm"
- },
- {
- "start": "181.92",
- "end": "182.04",
- "confidence": "1.000",
- "text": "to",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)//"raxvvns"
- },
- {
- "start": "182.04",
- "end": "183.53",
- "confidence": "1.000",
- "text": "robots.",
- "offset": 98,
- "length": 7,
- "key": expect.any(String)//"2rvgkrp"
- }
- ]
- },
- {
- "text": "Well of course we're primed by science fiction and pop culture to really want to personify these things but it goes a little bit deeper than that.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "183.54",
- "end": "183.9",
- "confidence": "1.000",
- "word": "well",
- "punct": "Well",
- "index": 444
- },
- {
- "start": "184.11",
- "end": "184.23000000000002",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 445
- },
- {
- "start": "184.23",
- "end": "184.53",
- "confidence": "1.000",
- "word": "course",
- "punct": "course",
- "index": 446
- },
- {
- "start": "184.53",
- "end": "184.65",
- "confidence": "0.940",
- "word": "we're",
- "punct": "we're",
- "index": 447
- },
- {
- "start": "184.65",
- "end": "185.19",
- "confidence": "1.000",
- "word": "primed",
- "punct": "primed",
- "index": 448
- },
- {
- "start": "185.22",
- "end": "185.34",
- "confidence": "1.000",
- "word": "by",
- "punct": "by",
- "index": 449
- },
- {
- "start": "185.34",
- "end": "185.79",
- "confidence": "1.000",
- "word": "science",
- "punct": "science",
- "index": 450
- },
- {
- "start": "185.79",
- "end": "186.03",
- "confidence": "1.000",
- "word": "fiction",
- "punct": "fiction",
- "index": 451
- },
- {
- "start": "186.03",
- "end": "186.12",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 452
- },
- {
- "start": "186.12",
- "end": "186.42000000000002",
- "confidence": "1.000",
- "word": "pop",
- "punct": "pop",
- "index": 453
- },
- {
- "start": "186.42",
- "end": "186.86999999999998",
- "confidence": "1.000",
- "word": "culture",
- "punct": "culture",
- "index": 454
- },
- {
- "start": "186.87",
- "end": "186.96",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 455
- },
- {
- "start": "186.96",
- "end": "187.20000000000002",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 456
- },
- {
- "start": "187.20",
- "end": "187.35",
- "confidence": "1.000",
- "word": "want",
- "punct": "want",
- "index": 457
- },
- {
- "start": "187.35",
- "end": "187.41",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 458
- },
- {
- "start": "187.41",
- "end": "188.07",
- "confidence": "1.000",
- "word": "personify",
- "punct": "personify",
- "index": 459
- },
- {
- "start": "188.10",
- "end": "188.31",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 460
- },
- {
- "start": "188.31",
- "end": "188.91",
- "confidence": "1.000",
- "word": "things",
- "punct": "things",
- "index": 461
- },
- {
- "start": "189.45",
- "end": "189.72",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 462
- },
- {
- "start": "189.81",
- "end": "189.9",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 463
- },
- {
- "start": "189.90",
- "end": "190.08",
- "confidence": "1.000",
- "word": "goes",
- "punct": "goes",
- "index": 464
- },
- {
- "start": "190.08",
- "end": "190.14000000000001",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 465
- },
- {
- "start": "190.14",
- "end": "190.35",
- "confidence": "1.000",
- "word": "little",
- "punct": "little",
- "index": 466
- },
- {
- "start": "190.35",
- "end": "190.5",
- "confidence": "1.000",
- "word": "bit",
- "punct": "bit",
- "index": 467
- },
- {
- "start": "190.50",
- "end": "190.8",
- "confidence": "1.000",
- "word": "deeper",
- "punct": "deeper",
- "index": 468
- },
- {
- "start": "190.80",
- "end": "190.95000000000002",
- "confidence": "1.000",
- "word": "than",
- "punct": "than",
- "index": 469
- },
- {
- "start": "190.95",
- "end": "191.61999999999998",
- "confidence": "1.000",
- "word": "that",
- "punct": "that.",
- "index": 470
- }
- ],
- "start": "183.54"
- },
- "entityRanges": [
- {
- "start": "183.54",
- "end": "183.9",
- "confidence": "1.000",
- "text": "Well",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"5twtb89"
- },
- {
- "start": "184.11",
- "end": "184.23000000000002",
- "confidence": "1.000",
- "text": "of",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"4t2ypv"
- },
- {
- "start": "184.23",
- "end": "184.53",
- "confidence": "1.000",
- "text": "course",
- "offset": 8,
- "length": 6,
- "key": expect.any(String)//"txjc8p"
- },
- {
- "start": "184.53",
- "end": "184.65",
- "confidence": "0.940",
- "text": "we're",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)//"8p411lm"
- },
- {
- "start": "184.65",
- "end": "185.19",
- "confidence": "1.000",
- "text": "primed",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"rqndfs"
- },
- {
- "start": "185.22",
- "end": "185.34",
- "confidence": "1.000",
- "text": "by",
- "offset": 28,
- "length": 2,
- "key": expect.any(String)//"7blbuvp"
- },
- {
- "start": "185.34",
- "end": "185.79",
- "confidence": "1.000",
- "text": "science",
- "offset": 31,
- "length": 7,
- "key": expect.any(String)//"tm4lc5"
- },
- {
- "start": "185.79",
- "end": "186.03",
- "confidence": "1.000",
- "text": "fiction",
- "offset": 39,
- "length": 7,
- "key": expect.any(String)//"ybk1g45"
- },
- {
- "start": "186.03",
- "end": "186.12",
- "confidence": "1.000",
- "text": "and",
- "offset": 47,
- "length": 3,
- "key": expect.any(String)//"7nnmf3"
- },
- {
- "start": "186.12",
- "end": "186.42000000000002",
- "confidence": "1.000",
- "text": "pop",
- "offset": 51,
- "length": 3,
- "key": expect.any(String)//"r5qme4"
- },
- {
- "start": "186.42",
- "end": "186.86999999999998",
- "confidence": "1.000",
- "text": "culture",
- "offset": 55,
- "length": 7,
- "key": expect.any(String)//"f0ljnd2"
- },
- {
- "start": "186.87",
- "end": "186.96",
- "confidence": "1.000",
- "text": "to",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)//"8ng418h"
- },
- {
- "start": "186.96",
- "end": "187.20000000000002",
- "confidence": "1.000",
- "text": "really",
- "offset": 66,
- "length": 6,
- "key": expect.any(String)//"knf512f"
- },
- {
- "start": "187.20",
- "end": "187.35",
- "confidence": "1.000",
- "text": "want",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"x4gdn9j"
- },
- {
- "start": "187.35",
- "end": "187.41",
- "confidence": "1.000",
- "text": "to",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"merjvq6"
- },
- {
- "start": "187.41",
- "end": "188.07",
- "confidence": "1.000",
- "text": "personify",
- "offset": 81,
- "length": 9,
- "key": expect.any(String)//"27a4r2bj"
- },
- {
- "start": "188.10",
- "end": "188.31",
- "confidence": "1.000",
- "text": "these",
- "offset": 91,
- "length": 5,
- "key": expect.any(String)//"uxpglb9"
- },
- {
- "start": "188.31",
- "end": "188.91",
- "confidence": "1.000",
- "text": "things",
- "offset": 97,
- "length": 6,
- "key": expect.any(String)//"ch9av"
- },
- {
- "start": "189.45",
- "end": "189.72",
- "confidence": "1.000",
- "text": "but",
- "offset": 104,
- "length": 3,
- "key": expect.any(String)//"vk0pufq"
- },
- {
- "start": "189.81",
- "end": "189.9",
- "confidence": "1.000",
- "text": "it",
- "offset": 108,
- "length": 2,
- "key": expect.any(String)//"0zys888"
- },
- {
- "start": "189.90",
- "end": "190.08",
- "confidence": "1.000",
- "text": "goes",
- "offset": 111,
- "length": 4,
- "key": expect.any(String)//"qrkurv9"
- },
- {
- "start": "190.08",
- "end": "190.14000000000001",
- "confidence": "1.000",
- "text": "a",
- "offset": 116,
- "length": 1,
- "key": expect.any(String)//"ecn3qct"
- },
- {
- "start": "190.14",
- "end": "190.35",
- "confidence": "1.000",
- "text": "little",
- "offset": 118,
- "length": 6,
- "key": expect.any(String)//"wg4i3uf"
- },
- {
- "start": "190.35",
- "end": "190.5",
- "confidence": "1.000",
- "text": "bit",
- "offset": 125,
- "length": 3,
- "key": expect.any(String)//"ubv2uep"
- },
- {
- "start": "190.50",
- "end": "190.8",
- "confidence": "1.000",
- "text": "deeper",
- "offset": 129,
- "length": 6,
- "key": expect.any(String)//"b6lx65x"
- },
- {
- "start": "190.80",
- "end": "190.95000000000002",
- "confidence": "1.000",
- "text": "than",
- "offset": 136,
- "length": 4,
- "key": expect.any(String)//"goj5wj"
- },
- {
- "start": "190.95",
- "end": "191.61999999999998",
- "confidence": "1.000",
- "text": "that.",
- "offset": 141,
- "length": 5,
- "key": expect.any(String)//"5rduz3c"
- }
- ]
- },
- {
- "text": "It turns out that we're biologically hard wired to project intent and life on to any movement in our physical space it seems autonomous to us.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "192.29",
- "end": "192.38",
- "confidence": "1.000",
- "word": "it",
- "punct": "It",
- "index": 471
- },
- {
- "start": "192.38",
- "end": "192.71",
- "confidence": "1.000",
- "word": "turns",
- "punct": "turns",
- "index": 472
- },
- {
- "start": "192.71",
- "end": "192.83",
- "confidence": "1.000",
- "word": "out",
- "punct": "out",
- "index": 473
- },
- {
- "start": "192.83",
- "end": "192.95000000000002",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 474
- },
- {
- "start": "192.95",
- "end": "193.07",
- "confidence": "0.990",
- "word": "we're",
- "punct": "we're",
- "index": 475
- },
- {
- "start": "193.07",
- "end": "194",
- "confidence": "1.000",
- "word": "biologically",
- "punct": "biologically",
- "index": 476
- },
- {
- "start": "194.00",
- "end": "194.4",
- "confidence": "0.880",
- "word": "hard",
- "punct": "hard",
- "index": 477
- },
- {
- "start": "194.40",
- "end": "194.9",
- "confidence": "0.880",
- "word": "wired",
- "punct": "wired",
- "index": 478
- },
- {
- "start": "194.90",
- "end": "195.11",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 479
- },
- {
- "start": "195.11",
- "end": "195.77",
- "confidence": "1.000",
- "word": "project",
- "punct": "project",
- "index": 480
- },
- {
- "start": "196.13",
- "end": "196.85",
- "confidence": "1.000",
- "word": "intent",
- "punct": "intent",
- "index": 481
- },
- {
- "start": "196.94",
- "end": "197.09",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 482
- },
- {
- "start": "197.09",
- "end": "197.6",
- "confidence": "1.000",
- "word": "life",
- "punct": "life",
- "index": 483
- },
- {
- "start": "197.65",
- "end": "197.78",
- "confidence": "0.770",
- "word": "on",
- "punct": "on",
- "index": 484
- },
- {
- "start": "197.78",
- "end": "198.23",
- "confidence": "0.770",
- "word": "to",
- "punct": "to",
- "index": 485
- },
- {
- "start": "198.62",
- "end": "198.83",
- "confidence": "1.000",
- "word": "any",
- "punct": "any",
- "index": 486
- },
- {
- "start": "198.83",
- "end": "199.37",
- "confidence": "1.000",
- "word": "movement",
- "punct": "movement",
- "index": 487
- },
- {
- "start": "199.37",
- "end": "199.49",
- "confidence": "0.980",
- "word": "in",
- "punct": "in",
- "index": 488
- },
- {
- "start": "199.49",
- "end": "199.58",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 489
- },
- {
- "start": "199.58",
- "end": "200.12",
- "confidence": "1.000",
- "word": "physical",
- "punct": "physical",
- "index": 490
- },
- {
- "start": "200.12",
- "end": "200.53",
- "confidence": "1.000",
- "word": "space",
- "punct": "space",
- "index": 491
- },
- {
- "start": "200.53",
- "end": "200.66",
- "confidence": "0.870",
- "word": "it",
- "punct": "it",
- "index": 492
- },
- {
- "start": "200.66",
- "end": "201.17",
- "confidence": "1.000",
- "word": "seems",
- "punct": "seems",
- "index": 493
- },
- {
- "start": "201.17",
- "end": "201.76999999999998",
- "confidence": "1.000",
- "word": "autonomous",
- "punct": "autonomous",
- "index": 494
- },
- {
- "start": "201.77",
- "end": "201.98000000000002",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 495
- },
- {
- "start": "201.98",
- "end": "202.91",
- "confidence": "1.000",
- "word": "us",
- "punct": "us.",
- "index": 496
- }
- ],
- "start": "192.29"
- },
- "entityRanges": [
- {
- "start": "192.29",
- "end": "192.38",
- "confidence": "1.000",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"rpny0pc"
- },
- {
- "start": "192.38",
- "end": "192.71",
- "confidence": "1.000",
- "text": "turns",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"9jhpnyd"
- },
- {
- "start": "192.71",
- "end": "192.83",
- "confidence": "1.000",
- "text": "out",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"gjcfaci"
- },
- {
- "start": "192.83",
- "end": "192.95000000000002",
- "confidence": "1.000",
- "text": "that",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"r4dybbu"
- },
- {
- "start": "192.95",
- "end": "193.07",
- "confidence": "0.990",
- "text": "we're",
- "offset": 18,
- "length": 5,
- "key": expect.any(String)//"dadply"
- },
- {
- "start": "193.07",
- "end": "194",
- "confidence": "1.000",
- "text": "biologically",
- "offset": 24,
- "length": 12,
- "key": expect.any(String)//"z3mxob8"
- },
- {
- "start": "194.00",
- "end": "194.4",
- "confidence": "0.880",
- "text": "hard",
- "offset": 37,
- "length": 4,
- "key": expect.any(String)//"rfetioc"
- },
- {
- "start": "194.40",
- "end": "194.9",
- "confidence": "0.880",
- "text": "wired",
- "offset": 42,
- "length": 5,
- "key": expect.any(String)//"m5t9l79"
- },
- {
- "start": "194.90",
- "end": "195.11",
- "confidence": "1.000",
- "text": "to",
- "offset": 48,
- "length": 2,
- "key": expect.any(String)//"v40zdfo"
- },
- {
- "start": "195.11",
- "end": "195.77",
- "confidence": "1.000",
- "text": "project",
- "offset": 51,
- "length": 7,
- "key": expect.any(String)//"kfo0xl5"
- },
- {
- "start": "196.13",
- "end": "196.85",
- "confidence": "1.000",
- "text": "intent",
- "offset": 59,
- "length": 6,
- "key": expect.any(String)//"sgqpdhp"
- },
- {
- "start": "196.94",
- "end": "197.09",
- "confidence": "1.000",
- "text": "and",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"fhr5uxl"
- },
- {
- "start": "197.09",
- "end": "197.6",
- "confidence": "1.000",
- "text": "life",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)//"pb5lsib"
- },
- {
- "start": "197.65",
- "end": "197.78",
- "confidence": "0.770",
- "text": "on",
- "offset": 75,
- "length": 2,
- "key": expect.any(String)//"xtjo0w5"
- },
- {
- "start": "197.78",
- "end": "198.23",
- "confidence": "0.770",
- "text": "to",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"szcyyxu"
- },
- {
- "start": "198.62",
- "end": "198.83",
- "confidence": "1.000",
- "text": "any",
- "offset": 81,
- "length": 3,
- "key": expect.any(String)//"vi4zyui"
- },
- {
- "start": "198.83",
- "end": "199.37",
- "confidence": "1.000",
- "text": "movement",
- "offset": 85,
- "length": 8,
- "key": expect.any(String)//"utgdiv"
- },
- {
- "start": "199.37",
- "end": "199.49",
- "confidence": "0.980",
- "text": "in",
- "offset": 94,
- "length": 2,
- "key": expect.any(String)//"qptp54r"
- },
- {
- "start": "199.49",
- "end": "199.58",
- "confidence": "1.000",
- "text": "our",
- "offset": 97,
- "length": 3,
- "key": expect.any(String)//"q5m41sk"
- },
- {
- "start": "199.58",
- "end": "200.12",
- "confidence": "1.000",
- "text": "physical",
- "offset": 101,
- "length": 8,
- "key": expect.any(String)//"m6it38"
- },
- {
- "start": "200.12",
- "end": "200.53",
- "confidence": "1.000",
- "text": "space",
- "offset": 110,
- "length": 5,
- "key": expect.any(String)//"j51u84"
- },
- {
- "start": "200.53",
- "end": "200.66",
- "confidence": "0.870",
- "text": "it",
- "offset": 116,
- "length": 2,
- "key": expect.any(String)//"8dqlfc"
- },
- {
- "start": "200.66",
- "end": "201.17",
- "confidence": "1.000",
- "text": "seems",
- "offset": 119,
- "length": 5,
- "key": expect.any(String)//"20lxrkg"
- },
- {
- "start": "201.17",
- "end": "201.76999999999998",
- "confidence": "1.000",
- "text": "autonomous",
- "offset": 125,
- "length": 10,
- "key": expect.any(String)//"wawrot"
- },
- {
- "start": "201.77",
- "end": "201.98000000000002",
- "confidence": "1.000",
- "text": "to",
- "offset": 136,
- "length": 2,
- "key": expect.any(String)//"z83vrgd"
- },
- {
- "start": "201.98",
- "end": "202.91",
- "confidence": "1.000",
- "text": "us.",
- "offset": 139,
- "length": 3,
- "key": expect.any(String)//"eosktjm"
- }
- ]
- },
- {
- "text": "So people will treat all sorts of robots like they're alive.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "203.24",
- "end": "203.42000000000002",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 497
- },
- {
- "start": "203.42",
- "end": "203.66",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 498
- },
- {
- "start": "203.66",
- "end": "203.78",
- "confidence": "1.000",
- "word": "will",
- "punct": "will",
- "index": 499
- },
- {
- "start": "203.78",
- "end": "203.99",
- "confidence": "1.000",
- "word": "treat",
- "punct": "treat",
- "index": 500
- },
- {
- "start": "204.05",
- "end": "204.20000000000002",
- "confidence": "1.000",
- "word": "all",
- "punct": "all",
- "index": 501
- },
- {
- "start": "204.20",
- "end": "204.47",
- "confidence": "1.000",
- "word": "sorts",
- "punct": "sorts",
- "index": 502
- },
- {
- "start": "204.47",
- "end": "204.59",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 503
- },
- {
- "start": "204.59",
- "end": "204.95000000000002",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 504
- },
- {
- "start": "204.95",
- "end": "205.13",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 505
- },
- {
- "start": "205.13",
- "end": "205.28",
- "confidence": "1.000",
- "word": "they're",
- "punct": "they're",
- "index": 506
- },
- {
- "start": "205.28",
- "end": "205.82",
- "confidence": "1.000",
- "word": "alive",
- "punct": "alive.",
- "index": 507
- }
- ],
- "start": "203.24"
- },
- "entityRanges": [
- {
- "start": "203.24",
- "end": "203.42000000000002",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"ojqez7e"
- },
- {
- "start": "203.42",
- "end": "203.66",
- "confidence": "1.000",
- "text": "people",
- "offset": 3,
- "length": 6,
- "key": expect.any(String)//"ycvbrhg"
- },
- {
- "start": "203.66",
- "end": "203.78",
- "confidence": "1.000",
- "text": "will",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"cx4kxvi"
- },
- {
- "start": "203.78",
- "end": "203.99",
- "confidence": "1.000",
- "text": "treat",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)//"n3qebug"
- },
- {
- "start": "204.05",
- "end": "204.20000000000002",
- "confidence": "1.000",
- "text": "all",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"kpi215i7"
- },
- {
- "start": "204.20",
- "end": "204.47",
- "confidence": "1.000",
- "text": "sorts",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"gvhgg0n"
- },
- {
- "start": "204.47",
- "end": "204.59",
- "confidence": "1.000",
- "text": "of",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"dabwdqd"
- },
- {
- "start": "204.59",
- "end": "204.95000000000002",
- "confidence": "1.000",
- "text": "robots",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)//"c15n7a4"
- },
- {
- "start": "204.95",
- "end": "205.13",
- "confidence": "1.000",
- "text": "like",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"8wvipqj"
- },
- {
- "start": "205.13",
- "end": "205.28",
- "confidence": "1.000",
- "text": "they're",
- "offset": 46,
- "length": 7,
- "key": expect.any(String)//"97bmn8"
- },
- {
- "start": "205.28",
- "end": "205.82",
- "confidence": "1.000",
- "text": "alive.",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"0s9zldq"
- }
- ]
- },
- {
- "text": "These bomb disposal units get names they get medals of honor.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "206.69",
- "end": "206.93",
- "confidence": "1.000",
- "word": "these",
- "punct": "These",
- "index": 508
- },
- {
- "start": "206.93",
- "end": "207.26000000000002",
- "confidence": "1.000",
- "word": "bomb",
- "punct": "bomb",
- "index": 509
- },
- {
- "start": "207.26",
- "end": "207.98",
- "confidence": "1.000",
- "word": "disposal",
- "punct": "disposal",
- "index": 510
- },
- {
- "start": "208.04",
- "end": "208.54999999999998",
- "confidence": "1.000",
- "word": "units",
- "punct": "units",
- "index": 511
- },
- {
- "start": "208.58",
- "end": "208.76000000000002",
- "confidence": "1.000",
- "word": "get",
- "punct": "get",
- "index": 512
- },
- {
- "start": "208.76",
- "end": "209.39",
- "confidence": "1.000",
- "word": "names",
- "punct": "names",
- "index": 513
- },
- {
- "start": "209.42",
- "end": "209.57",
- "confidence": "1.000",
- "word": "they",
- "punct": "they",
- "index": 514
- },
- {
- "start": "209.57",
- "end": "209.72",
- "confidence": "1.000",
- "word": "get",
- "punct": "get",
- "index": 515
- },
- {
- "start": "209.72",
- "end": "210.2",
- "confidence": "1.000",
- "word": "medals",
- "punct": "medals",
- "index": 516
- },
- {
- "start": "210.20",
- "end": "210.32",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 517
- },
- {
- "start": "210.32",
- "end": "211",
- "confidence": "1.000",
- "word": "honor",
- "punct": "honor.",
- "index": 518
- }
- ],
- "start": "206.69"
- },
- "entityRanges": [
- {
- "start": "206.69",
- "end": "206.93",
- "confidence": "1.000",
- "text": "These",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"xfn9f3le"
- },
- {
- "start": "206.93",
- "end": "207.26000000000002",
- "confidence": "1.000",
- "text": "bomb",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"8tt243w"
- },
- {
- "start": "207.26",
- "end": "207.98",
- "confidence": "1.000",
- "text": "disposal",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)//"farqid6"
- },
- {
- "start": "208.04",
- "end": "208.54999999999998",
- "confidence": "1.000",
- "text": "units",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)//"yke4jwi"
- },
- {
- "start": "208.58",
- "end": "208.76000000000002",
- "confidence": "1.000",
- "text": "get",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"nlv81en"
- },
- {
- "start": "208.76",
- "end": "209.39",
- "confidence": "1.000",
- "text": "names",
- "offset": 30,
- "length": 5,
- "key": expect.any(String)//"azvz3ofl"
- },
- {
- "start": "209.42",
- "end": "209.57",
- "confidence": "1.000",
- "text": "they",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)//"5zc8vm"
- },
- {
- "start": "209.57",
- "end": "209.72",
- "confidence": "1.000",
- "text": "get",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"awvr4k"
- },
- {
- "start": "209.72",
- "end": "210.2",
- "confidence": "1.000",
- "text": "medals",
- "offset": 45,
- "length": 6,
- "key": expect.any(String)//"a5lstk"
- },
- {
- "start": "210.20",
- "end": "210.32",
- "confidence": "1.000",
- "text": "of",
- "offset": 52,
- "length": 2,
- "key": expect.any(String)//"jbql5u"
- },
- {
- "start": "210.32",
- "end": "211",
- "confidence": "1.000",
- "text": "honor.",
- "offset": 55,
- "length": 6,
- "key": expect.any(String)//"7oxwsmv"
- }
- ]
- },
- {
- "text": "They've had funerals for them with gun salutes.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "211.10",
- "end": "211.28",
- "confidence": "1.000",
- "word": "they've",
- "punct": "They've",
- "index": 519
- },
- {
- "start": "211.28",
- "end": "211.43",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 520
- },
- {
- "start": "211.43",
- "end": "212.03",
- "confidence": "1.000",
- "word": "funerals",
- "punct": "funerals",
- "index": 521
- },
- {
- "start": "212.03",
- "end": "212.18",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 522
- },
- {
- "start": "212.18",
- "end": "212.36",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 523
- },
- {
- "start": "212.36",
- "end": "212.51000000000002",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 524
- },
- {
- "start": "212.51",
- "end": "212.81",
- "confidence": "0.960",
- "word": "gun",
- "punct": "gun",
- "index": 525
- },
- {
- "start": "212.81",
- "end": "213.41",
- "confidence": "1.000",
- "word": "salutes",
- "punct": "salutes.",
- "index": 526
- }
- ],
- "start": "211.10"
- },
- "entityRanges": [
- {
- "start": "211.10",
- "end": "211.28",
- "confidence": "1.000",
- "text": "They've",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"r4uifx"
- },
- {
- "start": "211.28",
- "end": "211.43",
- "confidence": "1.000",
- "text": "had",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"ny7w4d"
- },
- {
- "start": "211.43",
- "end": "212.03",
- "confidence": "1.000",
- "text": "funerals",
- "offset": 12,
- "length": 8,
- "key": expect.any(String)//"0gmqmso"
- },
- {
- "start": "212.03",
- "end": "212.18",
- "confidence": "1.000",
- "text": "for",
- "offset": 21,
- "length": 3,
- "key": expect.any(String)//"pzz9zb4"
- },
- {
- "start": "212.18",
- "end": "212.36",
- "confidence": "1.000",
- "text": "them",
- "offset": 25,
- "length": 4,
- "key": expect.any(String)//"vfmw078"
- },
- {
- "start": "212.36",
- "end": "212.51000000000002",
- "confidence": "1.000",
- "text": "with",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"6b90rrt"
- },
- {
- "start": "212.51",
- "end": "212.81",
- "confidence": "0.960",
- "text": "gun",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"wdjfzuh"
- },
- {
- "start": "212.81",
- "end": "213.41",
- "confidence": "1.000",
- "text": "salutes.",
- "offset": 39,
- "length": 8,
- "key": expect.any(String)//"n9vm89s"
- }
- ]
- },
- {
- "text": "And.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "214.40",
- "end": "214.61",
- "confidence": "1.000",
- "word": "and",
- "punct": "And.",
- "index": 527
- }
- ],
- "start": "214.40"
- },
- "entityRanges": [
- {
- "start": "214.40",
- "end": "214.61",
- "confidence": "1.000",
- "text": "And.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"7jfxuac"
- }
- ]
- },
- {
- "text": "Research shows that we do this even with very simple household robots like the Roomba vacuum cleaner just a disk that roams around your floor to clean it which is the fact that it's moving around on its own will cause people to name the Roomba and feel bad for the Roomba when it gets stuck under the couch.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "215.00",
- "end": "215.36",
- "confidence": "1.000",
- "word": "research",
- "punct": "Research",
- "index": 528
- },
- {
- "start": "215.36",
- "end": "215.60000000000002",
- "confidence": "1.000",
- "word": "shows",
- "punct": "shows",
- "index": 529
- },
- {
- "start": "215.60",
- "end": "215.69",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 530
- },
- {
- "start": "215.69",
- "end": "215.78",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 531
- },
- {
- "start": "215.78",
- "end": "215.9",
- "confidence": "1.000",
- "word": "do",
- "punct": "do",
- "index": 532
- },
- {
- "start": "215.90",
- "end": "216.08",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 533
- },
- {
- "start": "216.08",
- "end": "216.35000000000002",
- "confidence": "1.000",
- "word": "even",
- "punct": "even",
- "index": 534
- },
- {
- "start": "216.35",
- "end": "216.47",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 535
- },
- {
- "start": "216.47",
- "end": "216.8",
- "confidence": "1.000",
- "word": "very",
- "punct": "very",
- "index": 536
- },
- {
- "start": "216.80",
- "end": "217.19",
- "confidence": "1.000",
- "word": "simple",
- "punct": "simple",
- "index": 537
- },
- {
- "start": "217.19",
- "end": "217.76",
- "confidence": "1.000",
- "word": "household",
- "punct": "household",
- "index": 538
- },
- {
- "start": "217.76",
- "end": "218.23999999999998",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 539
- },
- {
- "start": "218.24",
- "end": "218.54000000000002",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 540
- },
- {
- "start": "218.84",
- "end": "218.96",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 541
- },
- {
- "start": "218.96",
- "end": "219.41",
- "confidence": "1.000",
- "word": "roomba",
- "punct": "Roomba",
- "index": 542
- },
- {
- "start": "219.41",
- "end": "219.85999999999999",
- "confidence": "1.000",
- "word": "vacuum",
- "punct": "vacuum",
- "index": 543
- },
- {
- "start": "219.86",
- "end": "220.28",
- "confidence": "1.000",
- "word": "cleaner",
- "punct": "cleaner",
- "index": 544
- },
- {
- "start": "221.72",
- "end": "221.96",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 545
- },
- {
- "start": "221.96",
- "end": "222.02",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 546
- },
- {
- "start": "222.02",
- "end": "222.47",
- "confidence": "0.510",
- "word": "disk",
- "punct": "disk",
- "index": 547
- },
- {
- "start": "222.50",
- "end": "222.68",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 548
- },
- {
- "start": "222.68",
- "end": "223.01000000000002",
- "confidence": "1.000",
- "word": "roams",
- "punct": "roams",
- "index": 549
- },
- {
- "start": "223.01",
- "end": "223.25",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 550
- },
- {
- "start": "223.25",
- "end": "223.37",
- "confidence": "1.000",
- "word": "your",
- "punct": "your",
- "index": 551
- },
- {
- "start": "223.37",
- "end": "223.79",
- "confidence": "1.000",
- "word": "floor",
- "punct": "floor",
- "index": 552
- },
- {
- "start": "223.79",
- "end": "223.88",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 553
- },
- {
- "start": "223.88",
- "end": "224.24",
- "confidence": "1.000",
- "word": "clean",
- "punct": "clean",
- "index": 554
- },
- {
- "start": "224.24",
- "end": "224.42000000000002",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 555
- },
- {
- "start": "224.81",
- "end": "224.93",
- "confidence": "1.000",
- "word": "which",
- "punct": "which",
- "index": 556
- },
- {
- "start": "224.93",
- "end": "225.02",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 557
- },
- {
- "start": "225.02",
- "end": "225.11",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 558
- },
- {
- "start": "225.11",
- "end": "225.44000000000003",
- "confidence": "1.000",
- "word": "fact",
- "punct": "fact",
- "index": 559
- },
- {
- "start": "225.44",
- "end": "225.59",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 560
- },
- {
- "start": "225.59",
- "end": "225.74",
- "confidence": "0.990",
- "word": "it's",
- "punct": "it's",
- "index": 561
- },
- {
- "start": "225.74",
- "end": "226.25",
- "confidence": "1.000",
- "word": "moving",
- "punct": "moving",
- "index": 562
- },
- {
- "start": "226.25",
- "end": "226.55",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 563
- },
- {
- "start": "226.55",
- "end": "226.67000000000002",
- "confidence": "1.000",
- "word": "on",
- "punct": "on",
- "index": 564
- },
- {
- "start": "226.67",
- "end": "226.82",
- "confidence": "0.860",
- "word": "its",
- "punct": "its",
- "index": 565
- },
- {
- "start": "226.85",
- "end": "227.12",
- "confidence": "1.000",
- "word": "own",
- "punct": "own",
- "index": 566
- },
- {
- "start": "227.12",
- "end": "227.24",
- "confidence": "1.000",
- "word": "will",
- "punct": "will",
- "index": 567
- },
- {
- "start": "227.24",
- "end": "227.54000000000002",
- "confidence": "1.000",
- "word": "cause",
- "punct": "cause",
- "index": 568
- },
- {
- "start": "227.54",
- "end": "227.81",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 569
- },
- {
- "start": "227.81",
- "end": "227.96",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 570
- },
- {
- "start": "227.96",
- "end": "228.38",
- "confidence": "1.000",
- "word": "name",
- "punct": "name",
- "index": 571
- },
- {
- "start": "228.38",
- "end": "228.5",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 572
- },
- {
- "start": "228.50",
- "end": "228.98",
- "confidence": "1.000",
- "word": "roomba",
- "punct": "Roomba",
- "index": 573
- },
- {
- "start": "229.37",
- "end": "229.49",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 574
- },
- {
- "start": "229.49",
- "end": "229.73000000000002",
- "confidence": "1.000",
- "word": "feel",
- "punct": "feel",
- "index": 575
- },
- {
- "start": "229.73",
- "end": "230.11999999999998",
- "confidence": "1.000",
- "word": "bad",
- "punct": "bad",
- "index": 576
- },
- {
- "start": "230.12",
- "end": "230.3",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 577
- },
- {
- "start": "230.30",
- "end": "230.39000000000001",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 578
- },
- {
- "start": "230.39",
- "end": "230.75",
- "confidence": "0.990",
- "word": "roomba",
- "punct": "Roomba",
- "index": 579
- },
- {
- "start": "230.78",
- "end": "230.9",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 580
- },
- {
- "start": "230.90",
- "end": "230.96",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 581
- },
- {
- "start": "230.96",
- "end": "231.11",
- "confidence": "1.000",
- "word": "gets",
- "punct": "gets",
- "index": 582
- },
- {
- "start": "231.11",
- "end": "231.44000000000003",
- "confidence": "1.000",
- "word": "stuck",
- "punct": "stuck",
- "index": 583
- },
- {
- "start": "231.44",
- "end": "231.62",
- "confidence": "1.000",
- "word": "under",
- "punct": "under",
- "index": 584
- },
- {
- "start": "231.62",
- "end": "231.74",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 585
- },
- {
- "start": "231.74",
- "end": "232.43",
- "confidence": "1.000",
- "word": "couch",
- "punct": "couch.",
- "index": 586
- }
- ],
- "start": "215.00"
- },
- "entityRanges": [
- {
- "start": "215.00",
- "end": "215.36",
- "confidence": "1.000",
- "text": "Research",
- "offset": 0,
- "length": 8,
- "key": expect.any(String)//"micmu1l"
- },
- {
- "start": "215.36",
- "end": "215.60000000000002",
- "confidence": "1.000",
- "text": "shows",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"8atk46u"
- },
- {
- "start": "215.60",
- "end": "215.69",
- "confidence": "1.000",
- "text": "that",
- "offset": 15,
- "length": 4,
- "key": expect.any(String)//"d6f4utf"
- },
- {
- "start": "215.69",
- "end": "215.78",
- "confidence": "1.000",
- "text": "we",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"qlnqp3e"
- },
- {
- "start": "215.78",
- "end": "215.9",
- "confidence": "1.000",
- "text": "do",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"k03hnel"
- },
- {
- "start": "215.90",
- "end": "216.08",
- "confidence": "1.000",
- "text": "this",
- "offset": 26,
- "length": 4,
- "key": expect.any(String)//"2dt77eh"
- },
- {
- "start": "216.08",
- "end": "216.35000000000002",
- "confidence": "1.000",
- "text": "even",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)//"7yd8i3"
- },
- {
- "start": "216.35",
- "end": "216.47",
- "confidence": "1.000",
- "text": "with",
- "offset": 36,
- "length": 4,
- "key": expect.any(String)//"8eyapue"
- },
- {
- "start": "216.47",
- "end": "216.8",
- "confidence": "1.000",
- "text": "very",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"0o3msxa"
- },
- {
- "start": "216.80",
- "end": "217.19",
- "confidence": "1.000",
- "text": "simple",
- "offset": 46,
- "length": 6,
- "key": expect.any(String)//"pgxmstj"
- },
- {
- "start": "217.19",
- "end": "217.76",
- "confidence": "1.000",
- "text": "household",
- "offset": 53,
- "length": 9,
- "key": expect.any(String)//"8vnozzo"
- },
- {
- "start": "217.76",
- "end": "218.23999999999998",
- "confidence": "1.000",
- "text": "robots",
- "offset": 63,
- "length": 6,
- "key": expect.any(String)//"ttw3gvt"
- },
- {
- "start": "218.24",
- "end": "218.54000000000002",
- "confidence": "1.000",
- "text": "like",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)//"42bvt4"
- },
- {
- "start": "218.84",
- "end": "218.96",
- "confidence": "1.000",
- "text": "the",
- "offset": 75,
- "length": 3,
- "key": expect.any(String)//"gvqws3"
- },
- {
- "start": "218.96",
- "end": "219.41",
- "confidence": "1.000",
- "text": "Roomba",
- "offset": 79,
- "length": 6,
- "key": expect.any(String)//"o6e6575"
- },
- {
- "start": "219.41",
- "end": "219.85999999999999",
- "confidence": "1.000",
- "text": "vacuum",
- "offset": 86,
- "length": 6,
- "key": expect.any(String)//"gygkubh"
- },
- {
- "start": "219.86",
- "end": "220.28",
- "confidence": "1.000",
- "text": "cleaner",
- "offset": 93,
- "length": 7,
- "key": expect.any(String)//"tcy6jja"
- },
- {
- "start": "221.72",
- "end": "221.96",
- "confidence": "1.000",
- "text": "just",
- "offset": 101,
- "length": 4,
- "key": expect.any(String)//"445x91"
- },
- {
- "start": "221.96",
- "end": "222.02",
- "confidence": "1.000",
- "text": "a",
- "offset": 106,
- "length": 1,
- "key": expect.any(String)//"neb4wp8"
- },
- {
- "start": "222.02",
- "end": "222.47",
- "confidence": "0.510",
- "text": "disk",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"hd7wtb5"
- },
- {
- "start": "222.50",
- "end": "222.68",
- "confidence": "1.000",
- "text": "that",
- "offset": 113,
- "length": 4,
- "key": expect.any(String)//"6xo20mo"
- },
- {
- "start": "222.68",
- "end": "223.01000000000002",
- "confidence": "1.000",
- "text": "roams",
- "offset": 118,
- "length": 5,
- "key": expect.any(String)//"eny0wfe"
- },
- {
- "start": "223.01",
- "end": "223.25",
- "confidence": "1.000",
- "text": "around",
- "offset": 124,
- "length": 6,
- "key": expect.any(String)//"9nfk4pzg"
- },
- {
- "start": "223.25",
- "end": "223.37",
- "confidence": "1.000",
- "text": "your",
- "offset": 131,
- "length": 4,
- "key": expect.any(String)//"j3chlgs"
- },
- {
- "start": "223.37",
- "end": "223.79",
- "confidence": "1.000",
- "text": "floor",
- "offset": 136,
- "length": 5,
- "key": expect.any(String)//"goacy8"
- },
- {
- "start": "223.79",
- "end": "223.88",
- "confidence": "1.000",
- "text": "to",
- "offset": 142,
- "length": 2,
- "key": expect.any(String)//"sfkas9r"
- },
- {
- "start": "223.88",
- "end": "224.24",
- "confidence": "1.000",
- "text": "clean",
- "offset": 145,
- "length": 5,
- "key": expect.any(String)//"jnq6tuw"
- },
- {
- "start": "224.24",
- "end": "224.42000000000002",
- "confidence": "1.000",
- "text": "it",
- "offset": 151,
- "length": 2,
- "key": expect.any(String)//"ilcszaw"
- },
- {
- "start": "224.81",
- "end": "224.93",
- "confidence": "1.000",
- "text": "which",
- "offset": 154,
- "length": 5,
- "key": expect.any(String)//"zjjn2rj"
- },
- {
- "start": "224.93",
- "end": "225.02",
- "confidence": "1.000",
- "text": "is",
- "offset": 160,
- "length": 2,
- "key": expect.any(String)//"yhvjkvh"
- },
- {
- "start": "225.02",
- "end": "225.11",
- "confidence": "1.000",
- "text": "the",
- "offset": 163,
- "length": 3,
- "key": expect.any(String)//"22l7tj"
- },
- {
- "start": "225.11",
- "end": "225.44000000000003",
- "confidence": "1.000",
- "text": "fact",
- "offset": 167,
- "length": 4,
- "key": expect.any(String)//"bzaj4qa"
- },
- {
- "start": "225.44",
- "end": "225.59",
- "confidence": "1.000",
- "text": "that",
- "offset": 172,
- "length": 4,
- "key": expect.any(String)//"w6thu5m"
- },
- {
- "start": "225.59",
- "end": "225.74",
- "confidence": "0.990",
- "text": "it's",
- "offset": 177,
- "length": 4,
- "key": expect.any(String)//"baq8a4k"
- },
- {
- "start": "225.74",
- "end": "226.25",
- "confidence": "1.000",
- "text": "moving",
- "offset": 182,
- "length": 6,
- "key": expect.any(String)//"ig3elmg"
- },
- {
- "start": "226.25",
- "end": "226.55",
- "confidence": "1.000",
- "text": "around",
- "offset": 189,
- "length": 6,
- "key": expect.any(String)//"c4j7k87"
- },
- {
- "start": "226.55",
- "end": "226.67000000000002",
- "confidence": "1.000",
- "text": "on",
- "offset": 196,
- "length": 2,
- "key": expect.any(String)//"8l4ix18"
- },
- {
- "start": "226.67",
- "end": "226.82",
- "confidence": "0.860",
- "text": "its",
- "offset": 199,
- "length": 3,
- "key": expect.any(String)//"2dz8s1"
- },
- {
- "start": "226.85",
- "end": "227.12",
- "confidence": "1.000",
- "text": "own",
- "offset": 203,
- "length": 3,
- "key": expect.any(String)//"v2rtxhz"
- },
- {
- "start": "227.12",
- "end": "227.24",
- "confidence": "1.000",
- "text": "will",
- "offset": 207,
- "length": 4,
- "key": expect.any(String)//"93zh80q"
- },
- {
- "start": "227.24",
- "end": "227.54000000000002",
- "confidence": "1.000",
- "text": "cause",
- "offset": 212,
- "length": 5,
- "key": expect.any(String)//"px3dde"
- },
- {
- "start": "227.54",
- "end": "227.81",
- "confidence": "1.000",
- "text": "people",
- "offset": 218,
- "length": 6,
- "key": expect.any(String)//"xyv9bn"
- },
- {
- "start": "227.81",
- "end": "227.96",
- "confidence": "1.000",
- "text": "to",
- "offset": 225,
- "length": 2,
- "key": expect.any(String)//"5j0ew39"
- },
- {
- "start": "227.96",
- "end": "228.38",
- "confidence": "1.000",
- "text": "name",
- "offset": 228,
- "length": 4,
- "key": expect.any(String)//"8fh3qn"
- },
- {
- "start": "228.38",
- "end": "228.5",
- "confidence": "1.000",
- "text": "the",
- "offset": 233,
- "length": 3,
- "key": expect.any(String)//"tyjkbah"
- },
- {
- "start": "228.50",
- "end": "228.98",
- "confidence": "1.000",
- "text": "Roomba",
- "offset": 237,
- "length": 6,
- "key": expect.any(String)//"if1cnce"
- },
- {
- "start": "229.37",
- "end": "229.49",
- "confidence": "1.000",
- "text": "and",
- "offset": 244,
- "length": 3,
- "key": expect.any(String)//"n48mh8l"
- },
- {
- "start": "229.49",
- "end": "229.73000000000002",
- "confidence": "1.000",
- "text": "feel",
- "offset": 248,
- "length": 4,
- "key": expect.any(String)//"jcdynng"
- },
- {
- "start": "229.73",
- "end": "230.11999999999998",
- "confidence": "1.000",
- "text": "bad",
- "offset": 253,
- "length": 3,
- "key": expect.any(String)//"ujpdhk"
- },
- {
- "start": "230.12",
- "end": "230.3",
- "confidence": "1.000",
- "text": "for",
- "offset": 257,
- "length": 3,
- "key": expect.any(String)//"09rsji9u"
- },
- {
- "start": "230.30",
- "end": "230.39000000000001",
- "confidence": "1.000",
- "text": "the",
- "offset": 261,
- "length": 3,
- "key": expect.any(String)//"qd6gg1f"
- },
- {
- "start": "230.39",
- "end": "230.75",
- "confidence": "0.990",
- "text": "Roomba",
- "offset": 265,
- "length": 6,
- "key": expect.any(String)//"jm08qka"
- },
- {
- "start": "230.78",
- "end": "230.9",
- "confidence": "1.000",
- "text": "when",
- "offset": 272,
- "length": 4,
- "key": expect.any(String)//"wq7qlif"
- },
- {
- "start": "230.90",
- "end": "230.96",
- "confidence": "1.000",
- "text": "it",
- "offset": 277,
- "length": 2,
- "key": expect.any(String)//"f5dflf"
- },
- {
- "start": "230.96",
- "end": "231.11",
- "confidence": "1.000",
- "text": "gets",
- "offset": 280,
- "length": 4,
- "key": expect.any(String)//"h8rwvl"
- },
- {
- "start": "231.11",
- "end": "231.44000000000003",
- "confidence": "1.000",
- "text": "stuck",
- "offset": 285,
- "length": 5,
- "key": expect.any(String)//"ceii8ub"
- },
- {
- "start": "231.44",
- "end": "231.62",
- "confidence": "1.000",
- "text": "under",
- "offset": 291,
- "length": 5,
- "key": expect.any(String)//"3e2nz3l"
- },
- {
- "start": "231.62",
- "end": "231.74",
- "confidence": "1.000",
- "text": "the",
- "offset": 297,
- "length": 3,
- "key": expect.any(String)//"oarbub"
- },
- {
- "start": "231.74",
- "end": "232.43",
- "confidence": "1.000",
- "text": "couch.",
- "offset": 301,
- "length": 6,
- "key": expect.any(String)//"ulqfi9"
- }
- ]
- },
- {
- "text": "And we can design robots specifically to evoke this response using eyes and faces or movements that people automatically subconsciously associate with states of mind.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "234.47",
- "end": "234.59",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 587
- },
- {
- "start": "234.59",
- "end": "234.74",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 588
- },
- {
- "start": "234.74",
- "end": "234.86",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 589
- },
- {
- "start": "234.86",
- "end": "235.31",
- "confidence": "1.000",
- "word": "design",
- "punct": "design",
- "index": 590
- },
- {
- "start": "235.31",
- "end": "235.67000000000002",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 591
- },
- {
- "start": "235.67",
- "end": "236.51",
- "confidence": "1.000",
- "word": "specifically",
- "punct": "specifically",
- "index": 592
- },
- {
- "start": "236.51",
- "end": "236.66",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 593
- },
- {
- "start": "236.66",
- "end": "236.99",
- "confidence": "1.000",
- "word": "evoke",
- "punct": "evoke",
- "index": 594
- },
- {
- "start": "237.02",
- "end": "237.20000000000002",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 595
- },
- {
- "start": "237.20",
- "end": "237.76999999999998",
- "confidence": "1.000",
- "word": "response",
- "punct": "response",
- "index": 596
- },
- {
- "start": "237.77",
- "end": "238.10000000000002",
- "confidence": "1.000",
- "word": "using",
- "punct": "using",
- "index": 597
- },
- {
- "start": "238.25",
- "end": "238.88",
- "confidence": "1.000",
- "word": "eyes",
- "punct": "eyes",
- "index": 598
- },
- {
- "start": "239.21",
- "end": "239.36",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 599
- },
- {
- "start": "239.36",
- "end": "240.20000000000002",
- "confidence": "1.000",
- "word": "faces",
- "punct": "faces",
- "index": 600
- },
- {
- "start": "240.50",
- "end": "240.62",
- "confidence": "1.000",
- "word": "or",
- "punct": "or",
- "index": 601
- },
- {
- "start": "240.62",
- "end": "241.25",
- "confidence": "1.000",
- "word": "movements",
- "punct": "movements",
- "index": 602
- },
- {
- "start": "241.28",
- "end": "241.4",
- "confidence": "0.990",
- "word": "that",
- "punct": "that",
- "index": 603
- },
- {
- "start": "241.40",
- "end": "241.73000000000002",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 604
- },
- {
- "start": "241.76",
- "end": "242.54",
- "confidence": "1.000",
- "word": "automatically",
- "punct": "automatically",
- "index": 605
- },
- {
- "start": "242.54",
- "end": "243.47",
- "confidence": "1.000",
- "word": "subconsciously",
- "punct": "subconsciously",
- "index": 606
- },
- {
- "start": "243.47",
- "end": "244.34",
- "confidence": "1.000",
- "word": "associate",
- "punct": "associate",
- "index": 607
- },
- {
- "start": "244.61",
- "end": "244.73000000000002",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 608
- },
- {
- "start": "244.73",
- "end": "245.09",
- "confidence": "1.000",
- "word": "states",
- "punct": "states",
- "index": 609
- },
- {
- "start": "245.09",
- "end": "245.18",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 610
- },
- {
- "start": "245.18",
- "end": "245.8",
- "confidence": "1.000",
- "word": "mind",
- "punct": "mind.",
- "index": 611
- }
- ],
- "start": "234.47"
- },
- "entityRanges": [
- {
- "start": "234.47",
- "end": "234.59",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"578zcvp"
- },
- {
- "start": "234.59",
- "end": "234.74",
- "confidence": "1.000",
- "text": "we",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"nvufjat"
- },
- {
- "start": "234.74",
- "end": "234.86",
- "confidence": "1.000",
- "text": "can",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"ft25zvn"
- },
- {
- "start": "234.86",
- "end": "235.31",
- "confidence": "1.000",
- "text": "design",
- "offset": 11,
- "length": 6,
- "key": expect.any(String)//"itxwmql"
- },
- {
- "start": "235.31",
- "end": "235.67000000000002",
- "confidence": "1.000",
- "text": "robots",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)//"f72l83"
- },
- {
- "start": "235.67",
- "end": "236.51",
- "confidence": "1.000",
- "text": "specifically",
- "offset": 25,
- "length": 12,
- "key": expect.any(String)//"zxkb5gx"
- },
- {
- "start": "236.51",
- "end": "236.66",
- "confidence": "1.000",
- "text": "to",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)//"7zyf22q"
- },
- {
- "start": "236.66",
- "end": "236.99",
- "confidence": "1.000",
- "text": "evoke",
- "offset": 41,
- "length": 5,
- "key": expect.any(String)//"gj9atxq"
- },
- {
- "start": "237.02",
- "end": "237.20000000000002",
- "confidence": "1.000",
- "text": "this",
- "offset": 47,
- "length": 4,
- "key": expect.any(String)//"ogiv5r9"
- },
- {
- "start": "237.20",
- "end": "237.76999999999998",
- "confidence": "1.000",
- "text": "response",
- "offset": 52,
- "length": 8,
- "key": expect.any(String)//"7rw5sv"
- },
- {
- "start": "237.77",
- "end": "238.10000000000002",
- "confidence": "1.000",
- "text": "using",
- "offset": 61,
- "length": 5,
- "key": expect.any(String)//"p32yww"
- },
- {
- "start": "238.25",
- "end": "238.88",
- "confidence": "1.000",
- "text": "eyes",
- "offset": 67,
- "length": 4,
- "key": expect.any(String)//"6tlmh"
- },
- {
- "start": "239.21",
- "end": "239.36",
- "confidence": "1.000",
- "text": "and",
- "offset": 72,
- "length": 3,
- "key": expect.any(String)//"v6loyx2"
- },
- {
- "start": "239.36",
- "end": "240.20000000000002",
- "confidence": "1.000",
- "text": "faces",
- "offset": 76,
- "length": 5,
- "key": expect.any(String)//"rtz5la"
- },
- {
- "start": "240.50",
- "end": "240.62",
- "confidence": "1.000",
- "text": "or",
- "offset": 82,
- "length": 2,
- "key": expect.any(String)//"n1mp1hl"
- },
- {
- "start": "240.62",
- "end": "241.25",
- "confidence": "1.000",
- "text": "movements",
- "offset": 85,
- "length": 9,
- "key": expect.any(String)//"7k9513"
- },
- {
- "start": "241.28",
- "end": "241.4",
- "confidence": "0.990",
- "text": "that",
- "offset": 95,
- "length": 4,
- "key": expect.any(String)//"4dlodjs"
- },
- {
- "start": "241.40",
- "end": "241.73000000000002",
- "confidence": "1.000",
- "text": "people",
- "offset": 100,
- "length": 6,
- "key": expect.any(String)//"ktzcs7t"
- },
- {
- "start": "241.76",
- "end": "242.54",
- "confidence": "1.000",
- "text": "automatically",
- "offset": 107,
- "length": 13,
- "key": expect.any(String)//"5y58jj8"
- },
- {
- "start": "242.54",
- "end": "243.47",
- "confidence": "1.000",
- "text": "subconsciously",
- "offset": 121,
- "length": 14,
- "key": expect.any(String)//"nxcx6fe"
- },
- {
- "start": "243.47",
- "end": "244.34",
- "confidence": "1.000",
- "text": "associate",
- "offset": 136,
- "length": 9,
- "key": expect.any(String)//"r0xwb4i"
- },
- {
- "start": "244.61",
- "end": "244.73000000000002",
- "confidence": "1.000",
- "text": "with",
- "offset": 146,
- "length": 4,
- "key": expect.any(String)//"axktz4g"
- },
- {
- "start": "244.73",
- "end": "245.09",
- "confidence": "1.000",
- "text": "states",
- "offset": 151,
- "length": 6,
- "key": expect.any(String)//"hmxokzr"
- },
- {
- "start": "245.09",
- "end": "245.18",
- "confidence": "1.000",
- "text": "of",
- "offset": 158,
- "length": 2,
- "key": expect.any(String)//"ah95kgf"
- },
- {
- "start": "245.18",
- "end": "245.8",
- "confidence": "1.000",
- "text": "mind.",
- "offset": 161,
- "length": 5,
- "key": expect.any(String)//"84oel8d"
- }
- ]
- },
- {
- "text": "And there's an entire body of research called human robot interaction that really shows how well this works.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "246.62",
- "end": "246.71",
- "confidence": "0.970",
- "word": "and",
- "punct": "And",
- "index": 612
- },
- {
- "start": "246.71",
- "end": "246.88",
- "confidence": "0.920",
- "word": "there's",
- "punct": "there's",
- "index": 613
- },
- {
- "start": "246.89",
- "end": "246.98",
- "confidence": "1.000",
- "word": "an",
- "punct": "an",
- "index": 614
- },
- {
- "start": "246.98",
- "end": "247.36999999999998",
- "confidence": "1.000",
- "word": "entire",
- "punct": "entire",
- "index": 615
- },
- {
- "start": "247.37",
- "end": "247.61",
- "confidence": "1.000",
- "word": "body",
- "punct": "body",
- "index": 616
- },
- {
- "start": "247.61",
- "end": "247.70000000000002",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 617
- },
- {
- "start": "247.70",
- "end": "248.11999999999998",
- "confidence": "1.000",
- "word": "research",
- "punct": "research",
- "index": 618
- },
- {
- "start": "248.12",
- "end": "248.33",
- "confidence": "1.000",
- "word": "called",
- "punct": "called",
- "index": 619
- },
- {
- "start": "248.33",
- "end": "248.60000000000002",
- "confidence": "1.000",
- "word": "human",
- "punct": "human",
- "index": 620
- },
- {
- "start": "248.60",
- "end": "248.87",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 621
- },
- {
- "start": "248.87",
- "end": "249.38",
- "confidence": "1.000",
- "word": "interaction",
- "punct": "interaction",
- "index": 622
- },
- {
- "start": "249.38",
- "end": "249.53",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 623
- },
- {
- "start": "249.68",
- "end": "249.95000000000002",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 624
- },
- {
- "start": "249.95",
- "end": "250.39999999999998",
- "confidence": "1.000",
- "word": "shows",
- "punct": "shows",
- "index": 625
- },
- {
- "start": "250.40",
- "end": "250.55",
- "confidence": "1.000",
- "word": "how",
- "punct": "how",
- "index": 626
- },
- {
- "start": "250.55",
- "end": "250.70000000000002",
- "confidence": "1.000",
- "word": "well",
- "punct": "well",
- "index": 627
- },
- {
- "start": "250.70",
- "end": "250.88",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 628
- },
- {
- "start": "250.88",
- "end": "251.68",
- "confidence": "1.000",
- "word": "works",
- "punct": "works.",
- "index": 629
- }
- ],
- "start": "246.62"
- },
- "entityRanges": [
- {
- "start": "246.62",
- "end": "246.71",
- "confidence": "0.970",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"z3fs0ra"
- },
- {
- "start": "246.71",
- "end": "246.88",
- "confidence": "0.920",
- "text": "there's",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)//"d3bni1"
- },
- {
- "start": "246.89",
- "end": "246.98",
- "confidence": "1.000",
- "text": "an",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"zpmmsvo"
- },
- {
- "start": "246.98",
- "end": "247.36999999999998",
- "confidence": "1.000",
- "text": "entire",
- "offset": 15,
- "length": 6,
- "key": expect.any(String)//"3jd7jvp"
- },
- {
- "start": "247.37",
- "end": "247.61",
- "confidence": "1.000",
- "text": "body",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"bdrkvn"
- },
- {
- "start": "247.61",
- "end": "247.70000000000002",
- "confidence": "1.000",
- "text": "of",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"4pr898"
- },
- {
- "start": "247.70",
- "end": "248.11999999999998",
- "confidence": "1.000",
- "text": "research",
- "offset": 30,
- "length": 8,
- "key": expect.any(String)//"plt890e"
- },
- {
- "start": "248.12",
- "end": "248.33",
- "confidence": "1.000",
- "text": "called",
- "offset": 39,
- "length": 6,
- "key": expect.any(String)//"2s1h6bs"
- },
- {
- "start": "248.33",
- "end": "248.60000000000002",
- "confidence": "1.000",
- "text": "human",
- "offset": 46,
- "length": 5,
- "key": expect.any(String)//"mn28sd7"
- },
- {
- "start": "248.60",
- "end": "248.87",
- "confidence": "1.000",
- "text": "robot",
- "offset": 52,
- "length": 5,
- "key": expect.any(String)//"t6y478"
- },
- {
- "start": "248.87",
- "end": "249.38",
- "confidence": "1.000",
- "text": "interaction",
- "offset": 58,
- "length": 11,
- "key": expect.any(String)//"pwg291c"
- },
- {
- "start": "249.38",
- "end": "249.53",
- "confidence": "1.000",
- "text": "that",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)//"41xodcv"
- },
- {
- "start": "249.68",
- "end": "249.95000000000002",
- "confidence": "1.000",
- "text": "really",
- "offset": 75,
- "length": 6,
- "key": expect.any(String)//"ed58cc"
- },
- {
- "start": "249.95",
- "end": "250.39999999999998",
- "confidence": "1.000",
- "text": "shows",
- "offset": 82,
- "length": 5,
- "key": expect.any(String)//"rhuzf2t"
- },
- {
- "start": "250.40",
- "end": "250.55",
- "confidence": "1.000",
- "text": "how",
- "offset": 88,
- "length": 3,
- "key": expect.any(String)//"1euu29k"
- },
- {
- "start": "250.55",
- "end": "250.70000000000002",
- "confidence": "1.000",
- "text": "well",
- "offset": 92,
- "length": 4,
- "key": expect.any(String)//"ln5np3p"
- },
- {
- "start": "250.70",
- "end": "250.88",
- "confidence": "1.000",
- "text": "this",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)//"0jpxvne"
- },
- {
- "start": "250.88",
- "end": "251.68",
- "confidence": "1.000",
- "text": "works.",
- "offset": 102,
- "length": 6,
- "key": expect.any(String)//"179e7dl"
- }
- ]
- },
- {
- "text": "So for example researchers at Stanford University found out that it makes people really uncomfortable when you ask them to touch on robots private parts.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "251.69",
- "end": "251.9",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 630
- },
- {
- "start": "251.90",
- "end": "252.05",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 631
- },
- {
- "start": "252.05",
- "end": "252.53",
- "confidence": "1.000",
- "word": "example",
- "punct": "example",
- "index": 632
- },
- {
- "start": "252.53",
- "end": "253.16",
- "confidence": "1.000",
- "word": "researchers",
- "punct": "researchers",
- "index": 633
- },
- {
- "start": "253.16",
- "end": "253.31",
- "confidence": "1.000",
- "word": "at",
- "punct": "at",
- "index": 634
- },
- {
- "start": "253.46",
- "end": "253.97",
- "confidence": "1.000",
- "word": "stanford",
- "punct": "Stanford",
- "index": 635
- },
- {
- "start": "253.97",
- "end": "254.51",
- "confidence": "1.000",
- "word": "university",
- "punct": "University",
- "index": 636
- },
- {
- "start": "254.51",
- "end": "254.78",
- "confidence": "1.000",
- "word": "found",
- "punct": "found",
- "index": 637
- },
- {
- "start": "254.78",
- "end": "254.93",
- "confidence": "1.000",
- "word": "out",
- "punct": "out",
- "index": 638
- },
- {
- "start": "254.93",
- "end": "255.05",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 639
- },
- {
- "start": "255.05",
- "end": "255.11",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 640
- },
- {
- "start": "255.11",
- "end": "255.32000000000002",
- "confidence": "1.000",
- "word": "makes",
- "punct": "makes",
- "index": 641
- },
- {
- "start": "255.32",
- "end": "255.62",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 642
- },
- {
- "start": "255.62",
- "end": "255.92000000000002",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 643
- },
- {
- "start": "255.92",
- "end": "256.58",
- "confidence": "1.000",
- "word": "uncomfortable",
- "punct": "uncomfortable",
- "index": 644
- },
- {
- "start": "256.58",
- "end": "256.7",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 645
- },
- {
- "start": "256.70",
- "end": "256.78999999999996",
- "confidence": "1.000",
- "word": "you",
- "punct": "you",
- "index": 646
- },
- {
- "start": "256.79",
- "end": "257.06",
- "confidence": "0.990",
- "word": "ask",
- "punct": "ask",
- "index": 647
- },
- {
- "start": "257.06",
- "end": "257.18",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 648
- },
- {
- "start": "257.18",
- "end": "257.3",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 649
- },
- {
- "start": "257.30",
- "end": "257.54",
- "confidence": "0.980",
- "word": "touch",
- "punct": "touch",
- "index": 650
- },
- {
- "start": "257.54",
- "end": "257.63",
- "confidence": "0.710",
- "word": "on",
- "punct": "on",
- "index": 651
- },
- {
- "start": "257.62",
- "end": "257.96",
- "confidence": "0.830",
- "word": "robots",
- "punct": "robots",
- "index": 652
- },
- {
- "start": "257.96",
- "end": "258.38",
- "confidence": "1.000",
- "word": "private",
- "punct": "private",
- "index": 653
- },
- {
- "start": "258.38",
- "end": "261.61",
- "confidence": "1.000",
- "word": "parts",
- "punct": "parts.",
- "index": 654
- }
- ],
- "start": "251.69"
- },
- "entityRanges": [
- {
- "start": "251.69",
- "end": "251.9",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"qfu0sp"
- },
- {
- "start": "251.90",
- "end": "252.05",
- "confidence": "1.000",
- "text": "for",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"maxlfnr"
- },
- {
- "start": "252.05",
- "end": "252.53",
- "confidence": "1.000",
- "text": "example",
- "offset": 7,
- "length": 7,
- "key": expect.any(String)//"8m5obh"
- },
- {
- "start": "252.53",
- "end": "253.16",
- "confidence": "1.000",
- "text": "researchers",
- "offset": 15,
- "length": 11,
- "key": expect.any(String)//"cp6th5i"
- },
- {
- "start": "253.16",
- "end": "253.31",
- "confidence": "1.000",
- "text": "at",
- "offset": 27,
- "length": 2,
- "key": expect.any(String)//"aoeioo"
- },
- {
- "start": "253.46",
- "end": "253.97",
- "confidence": "1.000",
- "text": "Stanford",
- "offset": 30,
- "length": 8,
- "key": expect.any(String)//"qaxq8ed"
- },
- {
- "start": "253.97",
- "end": "254.51",
- "confidence": "1.000",
- "text": "University",
- "offset": 39,
- "length": 10,
- "key": expect.any(String)//"p065iau"
- },
- {
- "start": "254.51",
- "end": "254.78",
- "confidence": "1.000",
- "text": "found",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"l6d9pcg"
- },
- {
- "start": "254.78",
- "end": "254.93",
- "confidence": "1.000",
- "text": "out",
- "offset": 56,
- "length": 3,
- "key": expect.any(String)//"gl3okgk"
- },
- {
- "start": "254.93",
- "end": "255.05",
- "confidence": "1.000",
- "text": "that",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"5ezwj1p"
- },
- {
- "start": "255.05",
- "end": "255.11",
- "confidence": "1.000",
- "text": "it",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)//"b5pudw"
- },
- {
- "start": "255.11",
- "end": "255.32000000000002",
- "confidence": "1.000",
- "text": "makes",
- "offset": 68,
- "length": 5,
- "key": expect.any(String)//"xq41z89"
- },
- {
- "start": "255.32",
- "end": "255.62",
- "confidence": "1.000",
- "text": "people",
- "offset": 74,
- "length": 6,
- "key": expect.any(String)//"m4np4kr"
- },
- {
- "start": "255.62",
- "end": "255.92000000000002",
- "confidence": "1.000",
- "text": "really",
- "offset": 81,
- "length": 6,
- "key": expect.any(String)//"lg5nhe"
- },
- {
- "start": "255.92",
- "end": "256.58",
- "confidence": "1.000",
- "text": "uncomfortable",
- "offset": 88,
- "length": 13,
- "key": expect.any(String)//"vepgmzn"
- },
- {
- "start": "256.58",
- "end": "256.7",
- "confidence": "1.000",
- "text": "when",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)//"yd0wtfb"
- },
- {
- "start": "256.70",
- "end": "256.78999999999996",
- "confidence": "1.000",
- "text": "you",
- "offset": 107,
- "length": 3,
- "key": expect.any(String)//"xghp8p7"
- },
- {
- "start": "256.79",
- "end": "257.06",
- "confidence": "0.990",
- "text": "ask",
- "offset": 111,
- "length": 3,
- "key": expect.any(String)//"2jtspu"
- },
- {
- "start": "257.06",
- "end": "257.18",
- "confidence": "1.000",
- "text": "them",
- "offset": 115,
- "length": 4,
- "key": expect.any(String)//"8gvdgt"
- },
- {
- "start": "257.18",
- "end": "257.3",
- "confidence": "1.000",
- "text": "to",
- "offset": 120,
- "length": 2,
- "key": expect.any(String)//"ayqhiej"
- },
- {
- "start": "257.30",
- "end": "257.54",
- "confidence": "0.980",
- "text": "touch",
- "offset": 123,
- "length": 5,
- "key": expect.any(String)//"gznyki"
- },
- {
- "start": "257.54",
- "end": "257.63",
- "confidence": "0.710",
- "text": "on",
- "offset": 129,
- "length": 2,
- "key": expect.any(String)//"5adcxv"
- },
- {
- "start": "257.62",
- "end": "257.96",
- "confidence": "0.830",
- "text": "robots",
- "offset": 132,
- "length": 6,
- "key": expect.any(String)//"xsx3jyf"
- },
- {
- "start": "257.96",
- "end": "258.38",
- "confidence": "1.000",
- "text": "private",
- "offset": 139,
- "length": 7,
- "key": expect.any(String)//"ziqq638"
- },
- {
- "start": "258.38",
- "end": "261.61",
- "confidence": "1.000",
- "text": "parts.",
- "offset": 147,
- "length": 6,
- "key": expect.any(String)//"6ojerhg"
- }
- ]
- },
- {
- "text": "So from this but from many other studies we know we know that people respond to the cues given to them by these lifelike machines even if they know that they're not real.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "261.62",
- "end": "261.77",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 655
- },
- {
- "start": "261.77",
- "end": "261.95",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 656
- },
- {
- "start": "261.95",
- "end": "262.09999999999997",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 657
- },
- {
- "start": "262.10",
- "end": "262.25",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 658
- },
- {
- "start": "262.25",
- "end": "262.46",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 659
- },
- {
- "start": "262.46",
- "end": "262.78999999999996",
- "confidence": "1.000",
- "word": "many",
- "punct": "many",
- "index": 660
- },
- {
- "start": "262.79",
- "end": "263",
- "confidence": "1.000",
- "word": "other",
- "punct": "other",
- "index": 661
- },
- {
- "start": "263.00",
- "end": "263.39",
- "confidence": "1.000",
- "word": "studies",
- "punct": "studies",
- "index": 662
- },
- {
- "start": "263.39",
- "end": "263.57",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 663
- },
- {
- "start": "263.57",
- "end": "264.08",
- "confidence": "1.000",
- "word": "know",
- "punct": "know",
- "index": 664
- },
- {
- "start": "264.50",
- "end": "264.68",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 665
- },
- {
- "start": "264.68",
- "end": "265.1",
- "confidence": "1.000",
- "word": "know",
- "punct": "know",
- "index": 666
- },
- {
- "start": "265.10",
- "end": "265.25",
- "confidence": "0.990",
- "word": "that",
- "punct": "that",
- "index": 667
- },
- {
- "start": "265.25",
- "end": "265.79",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 668
- },
- {
- "start": "265.79",
- "end": "266.39000000000004",
- "confidence": "1.000",
- "word": "respond",
- "punct": "respond",
- "index": 669
- },
- {
- "start": "266.39",
- "end": "266.51",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 670
- },
- {
- "start": "266.51",
- "end": "266.63",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 671
- },
- {
- "start": "266.63",
- "end": "267.23",
- "confidence": "1.000",
- "word": "cues",
- "punct": "cues",
- "index": 672
- },
- {
- "start": "267.26",
- "end": "267.59",
- "confidence": "1.000",
- "word": "given",
- "punct": "given",
- "index": 673
- },
- {
- "start": "267.59",
- "end": "267.67999999999995",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 674
- },
- {
- "start": "267.68",
- "end": "267.86",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 675
- },
- {
- "start": "267.86",
- "end": "268.01",
- "confidence": "1.000",
- "word": "by",
- "punct": "by",
- "index": 676
- },
- {
- "start": "268.01",
- "end": "268.21999999999997",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 677
- },
- {
- "start": "268.22",
- "end": "268.67",
- "confidence": "1.000",
- "word": "lifelike",
- "punct": "lifelike",
- "index": 678
- },
- {
- "start": "268.67",
- "end": "269.42",
- "confidence": "1.000",
- "word": "machines",
- "punct": "machines",
- "index": 679
- },
- {
- "start": "269.93",
- "end": "270.23",
- "confidence": "1.000",
- "word": "even",
- "punct": "even",
- "index": 680
- },
- {
- "start": "270.23",
- "end": "270.32",
- "confidence": "0.990",
- "word": "if",
- "punct": "if",
- "index": 681
- },
- {
- "start": "270.32",
- "end": "270.44",
- "confidence": "1.000",
- "word": "they",
- "punct": "they",
- "index": 682
- },
- {
- "start": "270.44",
- "end": "270.68",
- "confidence": "1.000",
- "word": "know",
- "punct": "know",
- "index": 683
- },
- {
- "start": "270.68",
- "end": "270.83",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 684
- },
- {
- "start": "270.83",
- "end": "271.01",
- "confidence": "1.000",
- "word": "they're",
- "punct": "they're",
- "index": 685
- },
- {
- "start": "271.01",
- "end": "271.21999999999997",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 686
- },
- {
- "start": "271.22",
- "end": "272.07000000000005",
- "confidence": "1.000",
- "word": "real",
- "punct": "real.",
- "index": 687
- }
- ],
- "start": "261.62"
- },
- "entityRanges": [
- {
- "start": "261.62",
- "end": "261.77",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"4memrbd"
- },
- {
- "start": "261.77",
- "end": "261.95",
- "confidence": "1.000",
- "text": "from",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"elxboil"
- },
- {
- "start": "261.95",
- "end": "262.09999999999997",
- "confidence": "1.000",
- "text": "this",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"my592l7"
- },
- {
- "start": "262.10",
- "end": "262.25",
- "confidence": "1.000",
- "text": "but",
- "offset": 13,
- "length": 3,
- "key": expect.any(String)//"qdo6vd8"
- },
- {
- "start": "262.25",
- "end": "262.46",
- "confidence": "1.000",
- "text": "from",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"mqcat96"
- },
- {
- "start": "262.46",
- "end": "262.78999999999996",
- "confidence": "1.000",
- "text": "many",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"qav3v9n"
- },
- {
- "start": "262.79",
- "end": "263",
- "confidence": "1.000",
- "text": "other",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"0zowwfb"
- },
- {
- "start": "263.00",
- "end": "263.39",
- "confidence": "1.000",
- "text": "studies",
- "offset": 33,
- "length": 7,
- "key": expect.any(String)//"10htgsw"
- },
- {
- "start": "263.39",
- "end": "263.57",
- "confidence": "1.000",
- "text": "we",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"8kqgq13"
- },
- {
- "start": "263.57",
- "end": "264.08",
- "confidence": "1.000",
- "text": "know",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)//"cpdmhd"
- },
- {
- "start": "264.50",
- "end": "264.68",
- "confidence": "1.000",
- "text": "we",
- "offset": 49,
- "length": 2,
- "key": expect.any(String)//"57ffpmp"
- },
- {
- "start": "264.68",
- "end": "265.1",
- "confidence": "1.000",
- "text": "know",
- "offset": 52,
- "length": 4,
- "key": expect.any(String)//"gcim63"
- },
- {
- "start": "265.10",
- "end": "265.25",
- "confidence": "0.990",
- "text": "that",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"qo8zzd"
- },
- {
- "start": "265.25",
- "end": "265.79",
- "confidence": "1.000",
- "text": "people",
- "offset": 62,
- "length": 6,
- "key": expect.any(String)//"gruyn6gp"
- },
- {
- "start": "265.79",
- "end": "266.39000000000004",
- "confidence": "1.000",
- "text": "respond",
- "offset": 69,
- "length": 7,
- "key": expect.any(String)//"5v5wzo"
- },
- {
- "start": "266.39",
- "end": "266.51",
- "confidence": "1.000",
- "text": "to",
- "offset": 77,
- "length": 2,
- "key": expect.any(String)//"arr0l0w"
- },
- {
- "start": "266.51",
- "end": "266.63",
- "confidence": "1.000",
- "text": "the",
- "offset": 80,
- "length": 3,
- "key": expect.any(String)//"86wazvh"
- },
- {
- "start": "266.63",
- "end": "267.23",
- "confidence": "1.000",
- "text": "cues",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"gwz8ir"
- },
- {
- "start": "267.26",
- "end": "267.59",
- "confidence": "1.000",
- "text": "given",
- "offset": 89,
- "length": 5,
- "key": expect.any(String)//"r3d4pr"
- },
- {
- "start": "267.59",
- "end": "267.67999999999995",
- "confidence": "1.000",
- "text": "to",
- "offset": 95,
- "length": 2,
- "key": expect.any(String)//"9wqxusn"
- },
- {
- "start": "267.68",
- "end": "267.86",
- "confidence": "1.000",
- "text": "them",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"o50zkac"
- },
- {
- "start": "267.86",
- "end": "268.01",
- "confidence": "1.000",
- "text": "by",
- "offset": 103,
- "length": 2,
- "key": expect.any(String)//"lh47hfb"
- },
- {
- "start": "268.01",
- "end": "268.21999999999997",
- "confidence": "1.000",
- "text": "these",
- "offset": 106,
- "length": 5,
- "key": expect.any(String)//"8w1lymq"
- },
- {
- "start": "268.22",
- "end": "268.67",
- "confidence": "1.000",
- "text": "lifelike",
- "offset": 112,
- "length": 8,
- "key": expect.any(String)//"w5sfml9"
- },
- {
- "start": "268.67",
- "end": "269.42",
- "confidence": "1.000",
- "text": "machines",
- "offset": 121,
- "length": 8,
- "key": expect.any(String)//"v5tolii"
- },
- {
- "start": "269.93",
- "end": "270.23",
- "confidence": "1.000",
- "text": "even",
- "offset": 130,
- "length": 4,
- "key": expect.any(String)//"5mga8no"
- },
- {
- "start": "270.23",
- "end": "270.32",
- "confidence": "0.990",
- "text": "if",
- "offset": 135,
- "length": 2,
- "key": expect.any(String)//"mh8locc"
- },
- {
- "start": "270.32",
- "end": "270.44",
- "confidence": "1.000",
- "text": "they",
- "offset": 138,
- "length": 4,
- "key": expect.any(String)//"lahbdnr"
- },
- {
- "start": "270.44",
- "end": "270.68",
- "confidence": "1.000",
- "text": "know",
- "offset": 143,
- "length": 4,
- "key": expect.any(String)//"ylmt6dx"
- },
- {
- "start": "270.68",
- "end": "270.83",
- "confidence": "1.000",
- "text": "that",
- "offset": 148,
- "length": 4,
- "key": expect.any(String)//"br3xum"
- },
- {
- "start": "270.83",
- "end": "271.01",
- "confidence": "1.000",
- "text": "they're",
- "offset": 153,
- "length": 7,
- "key": expect.any(String)//"pc6t2gm"
- },
- {
- "start": "271.01",
- "end": "271.21999999999997",
- "confidence": "1.000",
- "text": "not",
- "offset": 161,
- "length": 3,
- "key": expect.any(String)//"hy6xi0b"
- },
- {
- "start": "271.22",
- "end": "272.07000000000005",
- "confidence": "1.000",
- "text": "real.",
- "offset": 165,
- "length": 5,
- "key": expect.any(String)//"f4yj2i5"
- }
- ]
- },
- {
- "text": "Now.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "273.69",
- "end": "274.11",
- "confidence": "1.000",
- "word": "now",
- "punct": "Now.",
- "index": 688
- }
- ],
- "start": "273.69"
- },
- "entityRanges": [
- {
- "start": "273.69",
- "end": "274.11",
- "confidence": "1.000",
- "text": "Now.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"fuj0ofe"
- }
- ]
- },
- {
- "text": "We're headed towards a world where robots are everywhere.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "274.53",
- "end": "274.71",
- "confidence": "1.000",
- "word": "we're",
- "punct": "We're",
- "index": 689
- },
- {
- "start": "274.71",
- "end": "274.97999999999996",
- "confidence": "1.000",
- "word": "headed",
- "punct": "headed",
- "index": 690
- },
- {
- "start": "274.98",
- "end": "275.25",
- "confidence": "1.000",
- "word": "towards",
- "punct": "towards",
- "index": 691
- },
- {
- "start": "275.25",
- "end": "275.28",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 692
- },
- {
- "start": "275.28",
- "end": "275.7",
- "confidence": "1.000",
- "word": "world",
- "punct": "world",
- "index": 693
- },
- {
- "start": "275.70",
- "end": "275.84999999999997",
- "confidence": "1.000",
- "word": "where",
- "punct": "where",
- "index": 694
- },
- {
- "start": "275.85",
- "end": "276.36",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 695
- },
- {
- "start": "276.36",
- "end": "276.51",
- "confidence": "1.000",
- "word": "are",
- "punct": "are",
- "index": 696
- },
- {
- "start": "276.60",
- "end": "277.43",
- "confidence": "1.000",
- "word": "everywhere",
- "punct": "everywhere.",
- "index": 697
- }
- ],
- "start": "274.53"
- },
- "entityRanges": [
- {
- "start": "274.53",
- "end": "274.71",
- "confidence": "1.000",
- "text": "We're",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"ez701n"
- },
- {
- "start": "274.71",
- "end": "274.97999999999996",
- "confidence": "1.000",
- "text": "headed",
- "offset": 6,
- "length": 6,
- "key": expect.any(String)//"11w84y"
- },
- {
- "start": "274.98",
- "end": "275.25",
- "confidence": "1.000",
- "text": "towards",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"8rtimu"
- },
- {
- "start": "275.25",
- "end": "275.28",
- "confidence": "1.000",
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)//"k3mu5ra"
- },
- {
- "start": "275.28",
- "end": "275.7",
- "confidence": "1.000",
- "text": "world",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"tkhlkrc"
- },
- {
- "start": "275.70",
- "end": "275.84999999999997",
- "confidence": "1.000",
- "text": "where",
- "offset": 29,
- "length": 5,
- "key": expect.any(String)//"ivpad94j"
- },
- {
- "start": "275.85",
- "end": "276.36",
- "confidence": "1.000",
- "text": "robots",
- "offset": 35,
- "length": 6,
- "key": expect.any(String)//"pwwunxj"
- },
- {
- "start": "276.36",
- "end": "276.51",
- "confidence": "1.000",
- "text": "are",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"7w1dvk"
- },
- {
- "start": "276.60",
- "end": "277.43",
- "confidence": "1.000",
- "text": "everywhere.",
- "offset": 46,
- "length": 11,
- "key": expect.any(String)//"nqvhe35"
- }
- ]
- },
- {
- "text": "Robotic technology is moving out from behind factory walls.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "277.71",
- "end": "278.07",
- "confidence": "1.000",
- "word": "robotic",
- "punct": "Robotic",
- "index": 698
- },
- {
- "start": "278.07",
- "end": "278.61",
- "confidence": "1.000",
- "word": "technology",
- "punct": "technology",
- "index": 699
- },
- {
- "start": "278.61",
- "end": "278.82",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 700
- },
- {
- "start": "278.82",
- "end": "279.24",
- "confidence": "1.000",
- "word": "moving",
- "punct": "moving",
- "index": 701
- },
- {
- "start": "279.24",
- "end": "279.39",
- "confidence": "1.000",
- "word": "out",
- "punct": "out",
- "index": 702
- },
- {
- "start": "279.39",
- "end": "279.57",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 703
- },
- {
- "start": "279.57",
- "end": "279.84",
- "confidence": "1.000",
- "word": "behind",
- "punct": "behind",
- "index": 704
- },
- {
- "start": "279.84",
- "end": "280.26",
- "confidence": "1.000",
- "word": "factory",
- "punct": "factory",
- "index": 705
- },
- {
- "start": "280.26",
- "end": "280.83",
- "confidence": "1.000",
- "word": "walls",
- "punct": "walls.",
- "index": 706
- }
- ],
- "start": "277.71"
- },
- "entityRanges": [
- {
- "start": "277.71",
- "end": "278.07",
- "confidence": "1.000",
- "text": "Robotic",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"hxalm2r"
- },
- {
- "start": "278.07",
- "end": "278.61",
- "confidence": "1.000",
- "text": "technology",
- "offset": 8,
- "length": 10,
- "key": expect.any(String)//"swj1ug"
- },
- {
- "start": "278.61",
- "end": "278.82",
- "confidence": "1.000",
- "text": "is",
- "offset": 19,
- "length": 2,
- "key": expect.any(String)//"95xcief"
- },
- {
- "start": "278.82",
- "end": "279.24",
- "confidence": "1.000",
- "text": "moving",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"cbyaz2k"
- },
- {
- "start": "279.24",
- "end": "279.39",
- "confidence": "1.000",
- "text": "out",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"pwys89"
- },
- {
- "start": "279.39",
- "end": "279.57",
- "confidence": "1.000",
- "text": "from",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"it9lwve"
- },
- {
- "start": "279.57",
- "end": "279.84",
- "confidence": "1.000",
- "text": "behind",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"vkzjty"
- },
- {
- "start": "279.84",
- "end": "280.26",
- "confidence": "1.000",
- "text": "factory",
- "offset": 45,
- "length": 7,
- "key": expect.any(String)//"3mer5ts"
- },
- {
- "start": "280.26",
- "end": "280.83",
- "confidence": "1.000",
- "text": "walls.",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"9it4jro"
- }
- ]
- },
- {
- "text": "It's entering workplaces households.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "280.83",
- "end": "281.01",
- "confidence": "0.990",
- "word": "it's",
- "punct": "It's",
- "index": 707
- },
- {
- "start": "281.01",
- "end": "281.37",
- "confidence": "1.000",
- "word": "entering",
- "punct": "entering",
- "index": 708
- },
- {
- "start": "281.37",
- "end": "282.36",
- "confidence": "1.000",
- "word": "workplaces",
- "punct": "workplaces",
- "index": 709
- },
- {
- "start": "282.36",
- "end": "283.76",
- "confidence": "1.000",
- "word": "households",
- "punct": "households.",
- "index": 710
- }
- ],
- "start": "280.83"
- },
- "entityRanges": [
- {
- "start": "280.83",
- "end": "281.01",
- "confidence": "0.990",
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"g35iatm"
- },
- {
- "start": "281.01",
- "end": "281.37",
- "confidence": "1.000",
- "text": "entering",
- "offset": 5,
- "length": 8,
- "key": expect.any(String)//"zig6dc8"
- },
- {
- "start": "281.37",
- "end": "282.36",
- "confidence": "1.000",
- "text": "workplaces",
- "offset": 14,
- "length": 10,
- "key": expect.any(String)//"c0grfm8"
- },
- {
- "start": "282.36",
- "end": "283.76",
- "confidence": "1.000",
- "text": "households.",
- "offset": 25,
- "length": 11,
- "key": expect.any(String)//"rn5j53m"
- }
- ]
- },
- {
- "text": "And as these machines that can sense and make autonomous decisions and learn enter into these shared spaces I think that maybe the best analogy we have for this is our relationship with animals.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "283.89",
- "end": "284.09999999999997",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 711
- },
- {
- "start": "284.16",
- "end": "284.37",
- "confidence": "1.000",
- "word": "as",
- "punct": "as",
- "index": 712
- },
- {
- "start": "284.37",
- "end": "284.55",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 713
- },
- {
- "start": "284.55",
- "end": "285.21000000000004",
- "confidence": "1.000",
- "word": "machines",
- "punct": "machines",
- "index": 714
- },
- {
- "start": "285.21",
- "end": "285.35999999999996",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 715
- },
- {
- "start": "285.36",
- "end": "285.84000000000003",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 716
- },
- {
- "start": "285.93",
- "end": "286.62",
- "confidence": "0.990",
- "word": "sense",
- "punct": "sense",
- "index": 717
- },
- {
- "start": "286.68",
- "end": "286.95",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 718
- },
- {
- "start": "287.22",
- "end": "287.46000000000004",
- "confidence": "1.000",
- "word": "make",
- "punct": "make",
- "index": 719
- },
- {
- "start": "287.46",
- "end": "288.06",
- "confidence": "1.000",
- "word": "autonomous",
- "punct": "autonomous",
- "index": 720
- },
- {
- "start": "288.06",
- "end": "288.72",
- "confidence": "1.000",
- "word": "decisions",
- "punct": "decisions",
- "index": 721
- },
- {
- "start": "288.72",
- "end": "288.84000000000003",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 722
- },
- {
- "start": "288.84",
- "end": "289.53",
- "confidence": "1.000",
- "word": "learn",
- "punct": "learn",
- "index": 723
- },
- {
- "start": "290.10",
- "end": "290.40000000000003",
- "confidence": "1.000",
- "word": "enter",
- "punct": "enter",
- "index": 724
- },
- {
- "start": "290.40",
- "end": "290.58",
- "confidence": "1.000",
- "word": "into",
- "punct": "into",
- "index": 725
- },
- {
- "start": "290.58",
- "end": "290.76",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 726
- },
- {
- "start": "290.76",
- "end": "291.09",
- "confidence": "1.000",
- "word": "shared",
- "punct": "shared",
- "index": 727
- },
- {
- "start": "291.09",
- "end": "292.10999999999996",
- "confidence": "1.000",
- "word": "spaces",
- "punct": "spaces",
- "index": 728
- },
- {
- "start": "292.71",
- "end": "292.79999999999995",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 729
- },
- {
- "start": "292.80",
- "end": "293.01",
- "confidence": "1.000",
- "word": "think",
- "punct": "think",
- "index": 730
- },
- {
- "start": "293.01",
- "end": "293.15999999999997",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 731
- },
- {
- "start": "293.19",
- "end": "293.43",
- "confidence": "0.950",
- "word": "maybe",
- "punct": "maybe",
- "index": 732
- },
- {
- "start": "293.43",
- "end": "293.52",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 733
- },
- {
- "start": "293.52",
- "end": "293.76",
- "confidence": "1.000",
- "word": "best",
- "punct": "best",
- "index": 734
- },
- {
- "start": "293.76",
- "end": "294.33",
- "confidence": "1.000",
- "word": "analogy",
- "punct": "analogy",
- "index": 735
- },
- {
- "start": "294.33",
- "end": "294.45",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 736
- },
- {
- "start": "294.45",
- "end": "294.71999999999997",
- "confidence": "1.000",
- "word": "have",
- "punct": "have",
- "index": 737
- },
- {
- "start": "294.72",
- "end": "294.84000000000003",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 738
- },
- {
- "start": "294.84",
- "end": "295.08",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 739
- },
- {
- "start": "295.08",
- "end": "295.22999999999996",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 740
- },
- {
- "start": "295.23",
- "end": "295.32",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 741
- },
- {
- "start": "295.32",
- "end": "296.04",
- "confidence": "1.000",
- "word": "relationship",
- "punct": "relationship",
- "index": 742
- },
- {
- "start": "296.04",
- "end": "296.19",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 743
- },
- {
- "start": "296.28",
- "end": "297.27",
- "confidence": "1.000",
- "word": "animals",
- "punct": "animals.",
- "index": 744
- }
- ],
- "start": "283.89"
- },
- "entityRanges": [
- {
- "start": "283.89",
- "end": "284.09999999999997",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"jhrvplj"
- },
- {
- "start": "284.16",
- "end": "284.37",
- "confidence": "1.000",
- "text": "as",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"mhylet6"
- },
- {
- "start": "284.37",
- "end": "284.55",
- "confidence": "1.000",
- "text": "these",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"56u8dg5"
- },
- {
- "start": "284.55",
- "end": "285.21000000000004",
- "confidence": "1.000",
- "text": "machines",
- "offset": 13,
- "length": 8,
- "key": expect.any(String)//"6vw6qk"
- },
- {
- "start": "285.21",
- "end": "285.35999999999996",
- "confidence": "1.000",
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"2h80wj5"
- },
- {
- "start": "285.36",
- "end": "285.84000000000003",
- "confidence": "1.000",
- "text": "can",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"m3u1hwb"
- },
- {
- "start": "285.93",
- "end": "286.62",
- "confidence": "0.990",
- "text": "sense",
- "offset": 31,
- "length": 5,
- "key": expect.any(String)//"blx5l6o"
- },
- {
- "start": "286.68",
- "end": "286.95",
- "confidence": "1.000",
- "text": "and",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"xgsqrsq"
- },
- {
- "start": "287.22",
- "end": "287.46000000000004",
- "confidence": "1.000",
- "text": "make",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"v01aoxo"
- },
- {
- "start": "287.46",
- "end": "288.06",
- "confidence": "1.000",
- "text": "autonomous",
- "offset": 46,
- "length": 10,
- "key": expect.any(String)//"6w2njtb"
- },
- {
- "start": "288.06",
- "end": "288.72",
- "confidence": "1.000",
- "text": "decisions",
- "offset": 57,
- "length": 9,
- "key": expect.any(String)//"9ug3dbo"
- },
- {
- "start": "288.72",
- "end": "288.84000000000003",
- "confidence": "1.000",
- "text": "and",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"zugo09e"
- },
- {
- "start": "288.84",
- "end": "289.53",
- "confidence": "1.000",
- "text": "learn",
- "offset": 71,
- "length": 5,
- "key": expect.any(String)//"wfz0g2q"
- },
- {
- "start": "290.10",
- "end": "290.40000000000003",
- "confidence": "1.000",
- "text": "enter",
- "offset": 77,
- "length": 5,
- "key": expect.any(String)//"ghpkko"
- },
- {
- "start": "290.40",
- "end": "290.58",
- "confidence": "1.000",
- "text": "into",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)//"j2ado1m"
- },
- {
- "start": "290.58",
- "end": "290.76",
- "confidence": "1.000",
- "text": "these",
- "offset": 88,
- "length": 5,
- "key": expect.any(String)//"biyoath"
- },
- {
- "start": "290.76",
- "end": "291.09",
- "confidence": "1.000",
- "text": "shared",
- "offset": 94,
- "length": 6,
- "key": expect.any(String)//"7bmaloq"
- },
- {
- "start": "291.09",
- "end": "292.10999999999996",
- "confidence": "1.000",
- "text": "spaces",
- "offset": 101,
- "length": 6,
- "key": expect.any(String)//"r8nxb26"
- },
- {
- "start": "292.71",
- "end": "292.79999999999995",
- "confidence": "1.000",
- "text": "I",
- "offset": 108,
- "length": 1,
- "key": expect.any(String)//"xfh2tok"
- },
- {
- "start": "292.80",
- "end": "293.01",
- "confidence": "1.000",
- "text": "think",
- "offset": 110,
- "length": 5,
- "key": expect.any(String)//"4o8hrm3"
- },
- {
- "start": "293.01",
- "end": "293.15999999999997",
- "confidence": "1.000",
- "text": "that",
- "offset": 116,
- "length": 4,
- "key": expect.any(String)//"obufbdj"
- },
- {
- "start": "293.19",
- "end": "293.43",
- "confidence": "0.950",
- "text": "maybe",
- "offset": 121,
- "length": 5,
- "key": expect.any(String)//"brlxttc"
- },
- {
- "start": "293.43",
- "end": "293.52",
- "confidence": "1.000",
- "text": "the",
- "offset": 127,
- "length": 3,
- "key": expect.any(String)//"8dpkrq"
- },
- {
- "start": "293.52",
- "end": "293.76",
- "confidence": "1.000",
- "text": "best",
- "offset": 131,
- "length": 4,
- "key": expect.any(String)//"ddrhuep"
- },
- {
- "start": "293.76",
- "end": "294.33",
- "confidence": "1.000",
- "text": "analogy",
- "offset": 136,
- "length": 7,
- "key": expect.any(String)//"ypupg4"
- },
- {
- "start": "294.33",
- "end": "294.45",
- "confidence": "1.000",
- "text": "we",
- "offset": 144,
- "length": 2,
- "key": expect.any(String)//"ip8gup"
- },
- {
- "start": "294.45",
- "end": "294.71999999999997",
- "confidence": "1.000",
- "text": "have",
- "offset": 147,
- "length": 4,
- "key": expect.any(String)//"t7rj46"
- },
- {
- "start": "294.72",
- "end": "294.84000000000003",
- "confidence": "1.000",
- "text": "for",
- "offset": 152,
- "length": 3,
- "key": expect.any(String)//"b1cz8cu"
- },
- {
- "start": "294.84",
- "end": "295.08",
- "confidence": "1.000",
- "text": "this",
- "offset": 156,
- "length": 4,
- "key": expect.any(String)//"l98ehh"
- },
- {
- "start": "295.08",
- "end": "295.22999999999996",
- "confidence": "1.000",
- "text": "is",
- "offset": 161,
- "length": 2,
- "key": expect.any(String)//"ysikq1"
- },
- {
- "start": "295.23",
- "end": "295.32",
- "confidence": "1.000",
- "text": "our",
- "offset": 164,
- "length": 3,
- "key": expect.any(String)//"3m0vvy"
- },
- {
- "start": "295.32",
- "end": "296.04",
- "confidence": "1.000",
- "text": "relationship",
- "offset": 168,
- "length": 12,
- "key": expect.any(String)//"xerxvwf"
- },
- {
- "start": "296.04",
- "end": "296.19",
- "confidence": "1.000",
- "text": "with",
- "offset": 181,
- "length": 4,
- "key": expect.any(String)//"tjqu6qq"
- },
- {
- "start": "296.28",
- "end": "297.27",
- "confidence": "1.000",
- "text": "animals.",
- "offset": 186,
- "length": 8,
- "key": expect.any(String)//"usq97i"
- }
- ]
- },
- {
- "text": "Thousands of years ago we started to domesticate animals and we trained them for work and weaponry and companionship and throughout history we've treated some animals like tools or like products and other animals we've treated with kindness and we've given a place in society as our companions.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "297.48",
- "end": "297.99",
- "confidence": "1.000",
- "word": "thousands",
- "punct": "Thousands",
- "index": 745
- },
- {
- "start": "297.99",
- "end": "298.11",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 746
- },
- {
- "start": "298.11",
- "end": "298.35",
- "confidence": "1.000",
- "word": "years",
- "punct": "years",
- "index": 747
- },
- {
- "start": "298.35",
- "end": "298.83000000000004",
- "confidence": "1.000",
- "word": "ago",
- "punct": "ago",
- "index": 748
- },
- {
- "start": "299.34",
- "end": "299.46",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 749
- },
- {
- "start": "299.46",
- "end": "299.76",
- "confidence": "1.000",
- "word": "started",
- "punct": "started",
- "index": 750
- },
- {
- "start": "299.76",
- "end": "299.88",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 751
- },
- {
- "start": "299.88",
- "end": "300.51",
- "confidence": "1.000",
- "word": "domesticate",
- "punct": "domesticate",
- "index": 752
- },
- {
- "start": "300.51",
- "end": "301.14",
- "confidence": "1.000",
- "word": "animals",
- "punct": "animals",
- "index": 753
- },
- {
- "start": "301.47",
- "end": "301.56",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 754
- },
- {
- "start": "301.56",
- "end": "301.65",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 755
- },
- {
- "start": "301.65",
- "end": "301.97999999999996",
- "confidence": "0.640",
- "word": "trained",
- "punct": "trained",
- "index": 756
- },
- {
- "start": "301.98",
- "end": "302.16",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 757
- },
- {
- "start": "302.16",
- "end": "302.34000000000003",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 758
- },
- {
- "start": "302.34",
- "end": "302.88",
- "confidence": "1.000",
- "word": "work",
- "punct": "work",
- "index": 759
- },
- {
- "start": "302.94",
- "end": "303.09",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 760
- },
- {
- "start": "303.09",
- "end": "303.81",
- "confidence": "1.000",
- "word": "weaponry",
- "punct": "weaponry",
- "index": 761
- },
- {
- "start": "303.84",
- "end": "303.96",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 762
- },
- {
- "start": "303.96",
- "end": "304.89",
- "confidence": "1.000",
- "word": "companionship",
- "punct": "companionship",
- "index": 763
- },
- {
- "start": "305.55",
- "end": "305.67",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 764
- },
- {
- "start": "305.67",
- "end": "305.94",
- "confidence": "1.000",
- "word": "throughout",
- "punct": "throughout",
- "index": 765
- },
- {
- "start": "305.94",
- "end": "306.42",
- "confidence": "1.000",
- "word": "history",
- "punct": "history",
- "index": 766
- },
- {
- "start": "306.42",
- "end": "306.6",
- "confidence": "0.980",
- "word": "we've",
- "punct": "we've",
- "index": 767
- },
- {
- "start": "306.60",
- "end": "306.93",
- "confidence": "1.000",
- "word": "treated",
- "punct": "treated",
- "index": 768
- },
- {
- "start": "306.93",
- "end": "307.23",
- "confidence": "1.000",
- "word": "some",
- "punct": "some",
- "index": 769
- },
- {
- "start": "307.23",
- "end": "307.74",
- "confidence": "1.000",
- "word": "animals",
- "punct": "animals",
- "index": 770
- },
- {
- "start": "307.74",
- "end": "307.92",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 771
- },
- {
- "start": "307.92",
- "end": "308.58000000000004",
- "confidence": "1.000",
- "word": "tools",
- "punct": "tools",
- "index": 772
- },
- {
- "start": "308.94",
- "end": "309.06",
- "confidence": "0.990",
- "word": "or",
- "punct": "or",
- "index": 773
- },
- {
- "start": "309.06",
- "end": "309.24",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 774
- },
- {
- "start": "309.24",
- "end": "310.05",
- "confidence": "1.000",
- "word": "products",
- "punct": "products",
- "index": 775
- },
- {
- "start": "310.53",
- "end": "310.73999999999995",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 776
- },
- {
- "start": "310.77",
- "end": "311.01",
- "confidence": "1.000",
- "word": "other",
- "punct": "other",
- "index": 777
- },
- {
- "start": "311.01",
- "end": "311.33",
- "confidence": "1.000",
- "word": "animals",
- "punct": "animals",
- "index": 778
- },
- {
- "start": "311.34",
- "end": "311.46",
- "confidence": "0.950",
- "word": "we've",
- "punct": "we've",
- "index": 779
- },
- {
- "start": "311.46",
- "end": "311.72999999999996",
- "confidence": "1.000",
- "word": "treated",
- "punct": "treated",
- "index": 780
- },
- {
- "start": "311.73",
- "end": "311.88",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 781
- },
- {
- "start": "311.88",
- "end": "312.54",
- "confidence": "1.000",
- "word": "kindness",
- "punct": "kindness",
- "index": 782
- },
- {
- "start": "312.63",
- "end": "312.71999999999997",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 783
- },
- {
- "start": "312.72",
- "end": "312.87",
- "confidence": "1.000",
- "word": "we've",
- "punct": "we've",
- "index": 784
- },
- {
- "start": "312.87",
- "end": "313.14",
- "confidence": "1.000",
- "word": "given",
- "punct": "given",
- "index": 785
- },
- {
- "start": "313.14",
- "end": "313.16999999999996",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 786
- },
- {
- "start": "313.17",
- "end": "313.56",
- "confidence": "1.000",
- "word": "place",
- "punct": "place",
- "index": 787
- },
- {
- "start": "313.56",
- "end": "313.65",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 788
- },
- {
- "start": "313.65",
- "end": "314.13",
- "confidence": "1.000",
- "word": "society",
- "punct": "society",
- "index": 789
- },
- {
- "start": "314.13",
- "end": "314.25",
- "confidence": "0.780",
- "word": "as",
- "punct": "as",
- "index": 790
- },
- {
- "start": "314.25",
- "end": "314.34",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 791
- },
- {
- "start": "314.34",
- "end": "315.86999999999995",
- "confidence": "1.000",
- "word": "companions",
- "punct": "companions.",
- "index": 792
- }
- ],
- "start": "297.48"
- },
- "entityRanges": [
- {
- "start": "297.48",
- "end": "297.99",
- "confidence": "1.000",
- "text": "Thousands",
- "offset": 0,
- "length": 9,
- "key": expect.any(String)//"vi1a7ya"
- },
- {
- "start": "297.99",
- "end": "298.11",
- "confidence": "1.000",
- "text": "of",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"2r2dyk"
- },
- {
- "start": "298.11",
- "end": "298.35",
- "confidence": "1.000",
- "text": "years",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)//"9789skq"
- },
- {
- "start": "298.35",
- "end": "298.83000000000004",
- "confidence": "1.000",
- "text": "ago",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"h8noal"
- },
- {
- "start": "299.34",
- "end": "299.46",
- "confidence": "1.000",
- "text": "we",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"jau0n"
- },
- {
- "start": "299.46",
- "end": "299.76",
- "confidence": "1.000",
- "text": "started",
- "offset": 26,
- "length": 7,
- "key": expect.any(String)//"gj23ls"
- },
- {
- "start": "299.76",
- "end": "299.88",
- "confidence": "1.000",
- "text": "to",
- "offset": 34,
- "length": 2,
- "key": expect.any(String)//"lgzaq"
- },
- {
- "start": "299.88",
- "end": "300.51",
- "confidence": "1.000",
- "text": "domesticate",
- "offset": 37,
- "length": 11,
- "key": expect.any(String)//"uu5ksu7"
- },
- {
- "start": "300.51",
- "end": "301.14",
- "confidence": "1.000",
- "text": "animals",
- "offset": 49,
- "length": 7,
- "key": expect.any(String)//"z9prtrc"
- },
- {
- "start": "301.47",
- "end": "301.56",
- "confidence": "1.000",
- "text": "and",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"jpfv49t"
- },
- {
- "start": "301.56",
- "end": "301.65",
- "confidence": "1.000",
- "text": "we",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)//"bz7ukm6"
- },
- {
- "start": "301.65",
- "end": "301.97999999999996",
- "confidence": "0.640",
- "text": "trained",
- "offset": 64,
- "length": 7,
- "key": expect.any(String)//"bn78i7q"
- },
- {
- "start": "301.98",
- "end": "302.16",
- "confidence": "1.000",
- "text": "them",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)//"it1dg1e"
- },
- {
- "start": "302.16",
- "end": "302.34000000000003",
- "confidence": "1.000",
- "text": "for",
- "offset": 77,
- "length": 3,
- "key": expect.any(String)//"m8jjc6"
- },
- {
- "start": "302.34",
- "end": "302.88",
- "confidence": "1.000",
- "text": "work",
- "offset": 81,
- "length": 4,
- "key": expect.any(String)//"kl0gjnh"
- },
- {
- "start": "302.94",
- "end": "303.09",
- "confidence": "1.000",
- "text": "and",
- "offset": 86,
- "length": 3,
- "key": expect.any(String)//"eqckuns"
- },
- {
- "start": "303.09",
- "end": "303.81",
- "confidence": "1.000",
- "text": "weaponry",
- "offset": 90,
- "length": 8,
- "key": expect.any(String)//"e247us"
- },
- {
- "start": "303.84",
- "end": "303.96",
- "confidence": "1.000",
- "text": "and",
- "offset": 99,
- "length": 3,
- "key": expect.any(String)//"g4sutn"
- },
- {
- "start": "303.96",
- "end": "304.89",
- "confidence": "1.000",
- "text": "companionship",
- "offset": 103,
- "length": 13,
- "key": expect.any(String)//"fidlhi"
- },
- {
- "start": "305.55",
- "end": "305.67",
- "confidence": "1.000",
- "text": "and",
- "offset": 117,
- "length": 3,
- "key": expect.any(String)//"9xx56yp"
- },
- {
- "start": "305.67",
- "end": "305.94",
- "confidence": "1.000",
- "text": "throughout",
- "offset": 121,
- "length": 10,
- "key": expect.any(String)//"4d80hvj"
- },
- {
- "start": "305.94",
- "end": "306.42",
- "confidence": "1.000",
- "text": "history",
- "offset": 132,
- "length": 7,
- "key": expect.any(String)//"w6r89p"
- },
- {
- "start": "306.42",
- "end": "306.6",
- "confidence": "0.980",
- "text": "we've",
- "offset": 140,
- "length": 5,
- "key": expect.any(String)//"i6dxmb"
- },
- {
- "start": "306.60",
- "end": "306.93",
- "confidence": "1.000",
- "text": "treated",
- "offset": 146,
- "length": 7,
- "key": expect.any(String)//"874r9la"
- },
- {
- "start": "306.93",
- "end": "307.23",
- "confidence": "1.000",
- "text": "some",
- "offset": 154,
- "length": 4,
- "key": expect.any(String)//"ewzkfy3"
- },
- {
- "start": "307.23",
- "end": "307.74",
- "confidence": "1.000",
- "text": "animals",
- "offset": 159,
- "length": 7,
- "key": expect.any(String)//"pahk99"
- },
- {
- "start": "307.74",
- "end": "307.92",
- "confidence": "1.000",
- "text": "like",
- "offset": 167,
- "length": 4,
- "key": expect.any(String)//"gyp6qga"
- },
- {
- "start": "307.92",
- "end": "308.58000000000004",
- "confidence": "1.000",
- "text": "tools",
- "offset": 172,
- "length": 5,
- "key": expect.any(String)//"ixexb0g"
- },
- {
- "start": "308.94",
- "end": "309.06",
- "confidence": "0.990",
- "text": "or",
- "offset": 178,
- "length": 2,
- "key": expect.any(String)//"bf8fdkq"
- },
- {
- "start": "309.06",
- "end": "309.24",
- "confidence": "1.000",
- "text": "like",
- "offset": 181,
- "length": 4,
- "key": expect.any(String)//"6khufs"
- },
- {
- "start": "309.24",
- "end": "310.05",
- "confidence": "1.000",
- "text": "products",
- "offset": 186,
- "length": 8,
- "key": expect.any(String)//"0oo2fd"
- },
- {
- "start": "310.53",
- "end": "310.73999999999995",
- "confidence": "1.000",
- "text": "and",
- "offset": 195,
- "length": 3,
- "key": expect.any(String)//"oze28m8"
- },
- {
- "start": "310.77",
- "end": "311.01",
- "confidence": "1.000",
- "text": "other",
- "offset": 199,
- "length": 5,
- "key": expect.any(String)//"uf3dfk"
- },
- {
- "start": "311.01",
- "end": "311.33",
- "confidence": "1.000",
- "text": "animals",
- "offset": 205,
- "length": 7,
- "key": expect.any(String)//"2u6dp2r"
- },
- {
- "start": "311.34",
- "end": "311.46",
- "confidence": "0.950",
- "text": "we've",
- "offset": 213,
- "length": 5,
- "key": expect.any(String)//"ayypvp"
- },
- {
- "start": "311.46",
- "end": "311.72999999999996",
- "confidence": "1.000",
- "text": "treated",
- "offset": 219,
- "length": 7,
- "key": expect.any(String)//"t5liogb"
- },
- {
- "start": "311.73",
- "end": "311.88",
- "confidence": "1.000",
- "text": "with",
- "offset": 227,
- "length": 4,
- "key": expect.any(String)//"udau07"
- },
- {
- "start": "311.88",
- "end": "312.54",
- "confidence": "1.000",
- "text": "kindness",
- "offset": 232,
- "length": 8,
- "key": expect.any(String)//"pyuwzsh"
- },
- {
- "start": "312.63",
- "end": "312.71999999999997",
- "confidence": "1.000",
- "text": "and",
- "offset": 241,
- "length": 3,
- "key": expect.any(String)//"5q2quvi"
- },
- {
- "start": "312.72",
- "end": "312.87",
- "confidence": "1.000",
- "text": "we've",
- "offset": 245,
- "length": 5,
- "key": expect.any(String)//"1oriy9"
- },
- {
- "start": "312.87",
- "end": "313.14",
- "confidence": "1.000",
- "text": "given",
- "offset": 251,
- "length": 5,
- "key": expect.any(String)//"38spz3v"
- },
- {
- "start": "313.14",
- "end": "313.16999999999996",
- "confidence": "1.000",
- "text": "a",
- "offset": 257,
- "length": 1,
- "key": expect.any(String)//"l9f0do"
- },
- {
- "start": "313.17",
- "end": "313.56",
- "confidence": "1.000",
- "text": "place",
- "offset": 259,
- "length": 5,
- "key": expect.any(String)//"v14b3o"
- },
- {
- "start": "313.56",
- "end": "313.65",
- "confidence": "1.000",
- "text": "in",
- "offset": 265,
- "length": 2,
- "key": expect.any(String)//"ycrseec"
- },
- {
- "start": "313.65",
- "end": "314.13",
- "confidence": "1.000",
- "text": "society",
- "offset": 268,
- "length": 7,
- "key": expect.any(String)//"8kfd8ko"
- },
- {
- "start": "314.13",
- "end": "314.25",
- "confidence": "0.780",
- "text": "as",
- "offset": 276,
- "length": 2,
- "key": expect.any(String)//"eg517po"
- },
- {
- "start": "314.25",
- "end": "314.34",
- "confidence": "1.000",
- "text": "our",
- "offset": 279,
- "length": 3,
- "key": expect.any(String)//"yz8g7uy"
- },
- {
- "start": "314.34",
- "end": "315.86999999999995",
- "confidence": "1.000",
- "text": "companions.",
- "offset": 283,
- "length": 11,
- "key": expect.any(String)//"uwu929f"
- }
- ]
- },
- {
- "text": "I think it's plausible we might start to integrate robots in similar ways.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "315.87",
- "end": "315.96",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 793
- },
- {
- "start": "315.96",
- "end": "316.10999999999996",
- "confidence": "1.000",
- "word": "think",
- "punct": "think",
- "index": 794
- },
- {
- "start": "316.11",
- "end": "316.23",
- "confidence": "1.000",
- "word": "it's",
- "punct": "it's",
- "index": 795
- },
- {
- "start": "316.23",
- "end": "316.71000000000004",
- "confidence": "1.000",
- "word": "plausible",
- "punct": "plausible",
- "index": 796
- },
- {
- "start": "316.71",
- "end": "316.83",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 797
- },
- {
- "start": "316.83",
- "end": "317.01",
- "confidence": "1.000",
- "word": "might",
- "punct": "might",
- "index": 798
- },
- {
- "start": "317.01",
- "end": "317.25",
- "confidence": "1.000",
- "word": "start",
- "punct": "start",
- "index": 799
- },
- {
- "start": "317.25",
- "end": "317.37",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 800
- },
- {
- "start": "317.37",
- "end": "317.76",
- "confidence": "1.000",
- "word": "integrate",
- "punct": "integrate",
- "index": 801
- },
- {
- "start": "317.76",
- "end": "318.39",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 802
- },
- {
- "start": "318.42",
- "end": "318.51",
- "confidence": "0.980",
- "word": "in",
- "punct": "in",
- "index": 803
- },
- {
- "start": "318.51",
- "end": "318.93",
- "confidence": "1.000",
- "word": "similar",
- "punct": "similar",
- "index": 804
- },
- {
- "start": "318.93",
- "end": "319.56",
- "confidence": "1.000",
- "word": "ways",
- "punct": "ways.",
- "index": 805
- }
- ],
- "start": "315.87"
- },
- "entityRanges": [
- {
- "start": "315.87",
- "end": "315.96",
- "confidence": "1.000",
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"u05a4vk"
- },
- {
- "start": "315.96",
- "end": "316.10999999999996",
- "confidence": "1.000",
- "text": "think",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"utdxesc"
- },
- {
- "start": "316.11",
- "end": "316.23",
- "confidence": "1.000",
- "text": "it's",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"5dn43k4"
- },
- {
- "start": "316.23",
- "end": "316.71000000000004",
- "confidence": "1.000",
- "text": "plausible",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)//"l779s1r"
- },
- {
- "start": "316.71",
- "end": "316.83",
- "confidence": "1.000",
- "text": "we",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"ql9rrm8"
- },
- {
- "start": "316.83",
- "end": "317.01",
- "confidence": "1.000",
- "text": "might",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"f9ymgbo"
- },
- {
- "start": "317.01",
- "end": "317.25",
- "confidence": "1.000",
- "text": "start",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"dsxo5jr"
- },
- {
- "start": "317.25",
- "end": "317.37",
- "confidence": "1.000",
- "text": "to",
- "offset": 38,
- "length": 2,
- "key": expect.any(String)//"xgarzvp"
- },
- {
- "start": "317.37",
- "end": "317.76",
- "confidence": "1.000",
- "text": "integrate",
- "offset": 41,
- "length": 9,
- "key": expect.any(String)//"lzysntn"
- },
- {
- "start": "317.76",
- "end": "318.39",
- "confidence": "1.000",
- "text": "robots",
- "offset": 51,
- "length": 6,
- "key": expect.any(String)//"otax0l"
- },
- {
- "start": "318.42",
- "end": "318.51",
- "confidence": "0.980",
- "text": "in",
- "offset": 58,
- "length": 2,
- "key": expect.any(String)//"jwx58lh"
- },
- {
- "start": "318.51",
- "end": "318.93",
- "confidence": "1.000",
- "text": "similar",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"9lopfet"
- },
- {
- "start": "318.93",
- "end": "319.56",
- "confidence": "1.000",
- "text": "ways.",
- "offset": 69,
- "length": 5,
- "key": expect.any(String)//"htkj37"
- }
- ]
- },
- {
- "text": "And.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "321.39",
- "end": "321.47999999999996",
- "confidence": "0.770",
- "word": "and",
- "punct": "And.",
- "index": 806
- }
- ],
- "start": "321.39"
- },
- "entityRanges": [
- {
- "start": "321.39",
- "end": "321.47999999999996",
- "confidence": "0.770",
- "text": "And.",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"1h76m1"
- }
- ]
- },
- {
- "text": "Sure.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "321.60",
- "end": "322.05",
- "confidence": "0.770",
- "word": "sure",
- "punct": "Sure.",
- "index": 807
- }
- ],
- "start": "321.60"
- },
- "entityRanges": [
- {
- "start": "321.60",
- "end": "322.05",
- "confidence": "0.770",
- "text": "Sure.",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"upmd9qq"
- }
- ]
- },
- {
- "text": "Animals are alive.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "323.08",
- "end": "323.56",
- "confidence": "1.000",
- "word": "animals",
- "punct": "Animals",
- "index": 808
- },
- {
- "start": "323.56",
- "end": "323.71",
- "confidence": "1.000",
- "word": "are",
- "punct": "are",
- "index": 809
- },
- {
- "start": "323.71",
- "end": "324.51",
- "confidence": "0.990",
- "word": "alive",
- "punct": "alive.",
- "index": 810
- }
- ],
- "start": "323.08"
- },
- "entityRanges": [
- {
- "start": "323.08",
- "end": "323.56",
- "confidence": "1.000",
- "text": "Animals",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"m09kbdu"
- },
- {
- "start": "323.56",
- "end": "323.71",
- "confidence": "1.000",
- "text": "are",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"42ntkw"
- },
- {
- "start": "323.71",
- "end": "324.51",
- "confidence": "0.990",
- "text": "alive.",
- "offset": 12,
- "length": 6,
- "key": expect.any(String)//"69vlaev"
- }
- ]
- },
- {
- "text": "Robots are not.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "324.64",
- "end": "325.06",
- "confidence": "1.000",
- "word": "robots",
- "punct": "Robots",
- "index": 811
- },
- {
- "start": "325.06",
- "end": "325.12",
- "confidence": "1.000",
- "word": "are",
- "punct": "are",
- "index": 812
- },
- {
- "start": "325.12",
- "end": "325.39",
- "confidence": "1.000",
- "word": "not",
- "punct": "not.",
- "index": 813
- }
- ],
- "start": "324.64"
- },
- "entityRanges": [
- {
- "start": "324.64",
- "end": "325.06",
- "confidence": "1.000",
- "text": "Robots",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"vd2wl4"
- },
- {
- "start": "325.06",
- "end": "325.12",
- "confidence": "1.000",
- "text": "are",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"fojeqf5"
- },
- {
- "start": "325.12",
- "end": "325.39",
- "confidence": "1.000",
- "text": "not.",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"9v7wgy9"
- }
- ]
- },
- {
- "text": "And I can tell you from working with roboticists that we're pretty far away from developing robots that can feel anything.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "327.66",
- "end": "327.81",
- "confidence": "0.960",
- "word": "and",
- "punct": "And",
- "index": 814
- },
- {
- "start": "327.84",
- "end": "327.9",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 815
- },
- {
- "start": "327.90",
- "end": "328.04999999999995",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 816
- },
- {
- "start": "328.05",
- "end": "328.26",
- "confidence": "1.000",
- "word": "tell",
- "punct": "tell",
- "index": 817
- },
- {
- "start": "328.26",
- "end": "328.34999999999997",
- "confidence": "1.000",
- "word": "you",
- "punct": "you",
- "index": 818
- },
- {
- "start": "328.35",
- "end": "328.59000000000003",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 819
- },
- {
- "start": "328.59",
- "end": "328.95",
- "confidence": "1.000",
- "word": "working",
- "punct": "working",
- "index": 820
- },
- {
- "start": "328.95",
- "end": "329.07",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 821
- },
- {
- "start": "329.07",
- "end": "329.67",
- "confidence": "0.910",
- "word": "roboticists",
- "punct": "roboticists",
- "index": 822
- },
- {
- "start": "329.67",
- "end": "329.82",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 823
- },
- {
- "start": "329.82",
- "end": "330",
- "confidence": "0.950",
- "word": "we're",
- "punct": "we're",
- "index": 824
- },
- {
- "start": "330.24",
- "end": "330.54",
- "confidence": "1.000",
- "word": "pretty",
- "punct": "pretty",
- "index": 825
- },
- {
- "start": "330.54",
- "end": "330.75",
- "confidence": "1.000",
- "word": "far",
- "punct": "far",
- "index": 826
- },
- {
- "start": "330.75",
- "end": "331.05",
- "confidence": "1.000",
- "word": "away",
- "punct": "away",
- "index": 827
- },
- {
- "start": "331.05",
- "end": "331.23",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 828
- },
- {
- "start": "331.23",
- "end": "331.74",
- "confidence": "1.000",
- "word": "developing",
- "punct": "developing",
- "index": 829
- },
- {
- "start": "331.74",
- "end": "332.06",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 830
- },
- {
- "start": "332.06",
- "end": "332.13",
- "confidence": "0.640",
- "word": "that",
- "punct": "that",
- "index": 831
- },
- {
- "start": "332.16",
- "end": "332.31",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 832
- },
- {
- "start": "332.31",
- "end": "332.7",
- "confidence": "1.000",
- "word": "feel",
- "punct": "feel",
- "index": 833
- },
- {
- "start": "332.70",
- "end": "333.4",
- "confidence": "1.000",
- "word": "anything",
- "punct": "anything.",
- "index": 834
- }
- ],
- "start": "327.66"
- },
- "entityRanges": [
- {
- "start": "327.66",
- "end": "327.81",
- "confidence": "0.960",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"8qwm4k"
- },
- {
- "start": "327.84",
- "end": "327.9",
- "confidence": "1.000",
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)//"95z4iav"
- },
- {
- "start": "327.90",
- "end": "328.04999999999995",
- "confidence": "1.000",
- "text": "can",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"b35i8lh"
- },
- {
- "start": "328.05",
- "end": "328.26",
- "confidence": "1.000",
- "text": "tell",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"wzdkty"
- },
- {
- "start": "328.26",
- "end": "328.34999999999997",
- "confidence": "1.000",
- "text": "you",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"3g8fzu9"
- },
- {
- "start": "328.35",
- "end": "328.59000000000003",
- "confidence": "1.000",
- "text": "from",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"9tmbz2"
- },
- {
- "start": "328.59",
- "end": "328.95",
- "confidence": "1.000",
- "text": "working",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"hxbrg0l"
- },
- {
- "start": "328.95",
- "end": "329.07",
- "confidence": "1.000",
- "text": "with",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)//"6lr5oq"
- },
- {
- "start": "329.07",
- "end": "329.67",
- "confidence": "0.910",
- "text": "roboticists",
- "offset": 37,
- "length": 11,
- "key": expect.any(String)//"t4ohjba"
- },
- {
- "start": "329.67",
- "end": "329.82",
- "confidence": "1.000",
- "text": "that",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"des21yc"
- },
- {
- "start": "329.82",
- "end": "330",
- "confidence": "0.950",
- "text": "we're",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"vjux23q"
- },
- {
- "start": "330.24",
- "end": "330.54",
- "confidence": "1.000",
- "text": "pretty",
- "offset": 60,
- "length": 6,
- "key": expect.any(String)//"0fjdpz"
- },
- {
- "start": "330.54",
- "end": "330.75",
- "confidence": "1.000",
- "text": "far",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"65f4la"
- },
- {
- "start": "330.75",
- "end": "331.05",
- "confidence": "1.000",
- "text": "away",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"c1h3ex"
- },
- {
- "start": "331.05",
- "end": "331.23",
- "confidence": "1.000",
- "text": "from",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"tn0v9or"
- },
- {
- "start": "331.23",
- "end": "331.74",
- "confidence": "1.000",
- "text": "developing",
- "offset": 81,
- "length": 10,
- "key": expect.any(String)//"ug549z"
- },
- {
- "start": "331.74",
- "end": "332.06",
- "confidence": "1.000",
- "text": "robots",
- "offset": 92,
- "length": 6,
- "key": expect.any(String)//"n3neqbq"
- },
- {
- "start": "332.06",
- "end": "332.13",
- "confidence": "0.640",
- "text": "that",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)//"14ubi2"
- },
- {
- "start": "332.16",
- "end": "332.31",
- "confidence": "1.000",
- "text": "can",
- "offset": 104,
- "length": 3,
- "key": expect.any(String)//"6w2o9cr"
- },
- {
- "start": "332.31",
- "end": "332.7",
- "confidence": "1.000",
- "text": "feel",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"my9a1he"
- },
- {
- "start": "332.70",
- "end": "333.4",
- "confidence": "1.000",
- "text": "anything.",
- "offset": 113,
- "length": 9,
- "key": expect.any(String)//"t1h6zoj"
- }
- ]
- },
- {
- "text": "But we feel for them.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "335.06",
- "end": "335.21",
- "confidence": "1.000",
- "word": "but",
- "punct": "But",
- "index": 835
- },
- {
- "start": "335.21",
- "end": "335.53999999999996",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 836
- },
- {
- "start": "335.54",
- "end": "335.78000000000003",
- "confidence": "1.000",
- "word": "feel",
- "punct": "feel",
- "index": 837
- },
- {
- "start": "335.78",
- "end": "335.96",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 838
- },
- {
- "start": "335.96",
- "end": "336.38",
- "confidence": "1.000",
- "word": "them",
- "punct": "them.",
- "index": 839
- }
- ],
- "start": "335.06"
- },
- "entityRanges": [
- {
- "start": "335.06",
- "end": "335.21",
- "confidence": "1.000",
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"twejdui"
- },
- {
- "start": "335.21",
- "end": "335.53999999999996",
- "confidence": "1.000",
- "text": "we",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"r2es51f"
- },
- {
- "start": "335.54",
- "end": "335.78000000000003",
- "confidence": "1.000",
- "text": "feel",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"s0e7p74"
- },
- {
- "start": "335.78",
- "end": "335.96",
- "confidence": "1.000",
- "text": "for",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"cnreeb"
- },
- {
- "start": "335.96",
- "end": "336.38",
- "confidence": "1.000",
- "text": "them.",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"s2x0yas"
- }
- ]
- },
- {
- "text": "And that matters because if we're trying to integrate robots into these shared spaces we need to understand that people will treat them differently than other devices.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "337.88",
- "end": "338",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 840
- },
- {
- "start": "338.00",
- "end": "338.21",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 841
- },
- {
- "start": "338.21",
- "end": "338.96",
- "confidence": "1.000",
- "word": "matters",
- "punct": "matters",
- "index": 842
- },
- {
- "start": "338.99",
- "end": "339.53000000000003",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 843
- },
- {
- "start": "339.62",
- "end": "339.77",
- "confidence": "1.000",
- "word": "if",
- "punct": "if",
- "index": 844
- },
- {
- "start": "339.77",
- "end": "339.89",
- "confidence": "1.000",
- "word": "we're",
- "punct": "we're",
- "index": 845
- },
- {
- "start": "339.89",
- "end": "340.19",
- "confidence": "1.000",
- "word": "trying",
- "punct": "trying",
- "index": 846
- },
- {
- "start": "340.19",
- "end": "340.31",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 847
- },
- {
- "start": "340.34",
- "end": "340.90999999999997",
- "confidence": "1.000",
- "word": "integrate",
- "punct": "integrate",
- "index": 848
- },
- {
- "start": "340.91",
- "end": "341.42",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 849
- },
- {
- "start": "341.42",
- "end": "341.57",
- "confidence": "1.000",
- "word": "into",
- "punct": "into",
- "index": 850
- },
- {
- "start": "341.57",
- "end": "341.71999999999997",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 851
- },
- {
- "start": "341.72",
- "end": "342.05",
- "confidence": "1.000",
- "word": "shared",
- "punct": "shared",
- "index": 852
- },
- {
- "start": "342.05",
- "end": "342.68",
- "confidence": "1.000",
- "word": "spaces",
- "punct": "spaces",
- "index": 853
- },
- {
- "start": "342.71",
- "end": "342.79999999999995",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 854
- },
- {
- "start": "342.80",
- "end": "342.98",
- "confidence": "1.000",
- "word": "need",
- "punct": "need",
- "index": 855
- },
- {
- "start": "342.98",
- "end": "343.07",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 856
- },
- {
- "start": "343.07",
- "end": "343.79",
- "confidence": "1.000",
- "word": "understand",
- "punct": "understand",
- "index": 857
- },
- {
- "start": "343.79",
- "end": "343.94",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 858
- },
- {
- "start": "343.94",
- "end": "344.27",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 859
- },
- {
- "start": "344.27",
- "end": "344.39",
- "confidence": "1.000",
- "word": "will",
- "punct": "will",
- "index": 860
- },
- {
- "start": "344.39",
- "end": "344.63",
- "confidence": "1.000",
- "word": "treat",
- "punct": "treat",
- "index": 861
- },
- {
- "start": "344.63",
- "end": "344.78",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 862
- },
- {
- "start": "344.78",
- "end": "345.38",
- "confidence": "1.000",
- "word": "differently",
- "punct": "differently",
- "index": 863
- },
- {
- "start": "345.38",
- "end": "345.56",
- "confidence": "1.000",
- "word": "than",
- "punct": "than",
- "index": 864
- },
- {
- "start": "345.56",
- "end": "345.74",
- "confidence": "1.000",
- "word": "other",
- "punct": "other",
- "index": 865
- },
- {
- "start": "345.74",
- "end": "347",
- "confidence": "1.000",
- "word": "devices",
- "punct": "devices.",
- "index": 866
- }
- ],
- "start": "337.88"
- },
- "entityRanges": [
- {
- "start": "337.88",
- "end": "338",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"62jqj9"
- },
- {
- "start": "338.00",
- "end": "338.21",
- "confidence": "1.000",
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"q9yf46n"
- },
- {
- "start": "338.21",
- "end": "338.96",
- "confidence": "1.000",
- "text": "matters",
- "offset": 9,
- "length": 7,
- "key": expect.any(String)//"utz9ez8"
- },
- {
- "start": "338.99",
- "end": "339.53000000000003",
- "confidence": "1.000",
- "text": "because",
- "offset": 17,
- "length": 7,
- "key": expect.any(String)//"8umprhv"
- },
- {
- "start": "339.62",
- "end": "339.77",
- "confidence": "1.000",
- "text": "if",
- "offset": 25,
- "length": 2,
- "key": expect.any(String)//"c9ze6sh"
- },
- {
- "start": "339.77",
- "end": "339.89",
- "confidence": "1.000",
- "text": "we're",
- "offset": 28,
- "length": 5,
- "key": expect.any(String)//"cjeli8q"
- },
- {
- "start": "339.89",
- "end": "340.19",
- "confidence": "1.000",
- "text": "trying",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)//"gazxyl2"
- },
- {
- "start": "340.19",
- "end": "340.31",
- "confidence": "1.000",
- "text": "to",
- "offset": 41,
- "length": 2,
- "key": expect.any(String)//"frjwzsa"
- },
- {
- "start": "340.34",
- "end": "340.90999999999997",
- "confidence": "1.000",
- "text": "integrate",
- "offset": 44,
- "length": 9,
- "key": expect.any(String)//"yfs58np"
- },
- {
- "start": "340.91",
- "end": "341.42",
- "confidence": "1.000",
- "text": "robots",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"mvggh0a"
- },
- {
- "start": "341.42",
- "end": "341.57",
- "confidence": "1.000",
- "text": "into",
- "offset": 61,
- "length": 4,
- "key": expect.any(String)//"5c426gl"
- },
- {
- "start": "341.57",
- "end": "341.71999999999997",
- "confidence": "1.000",
- "text": "these",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)//"7dp5h5q"
- },
- {
- "start": "341.72",
- "end": "342.05",
- "confidence": "1.000",
- "text": "shared",
- "offset": 72,
- "length": 6,
- "key": expect.any(String)//"tgqchtm"
- },
- {
- "start": "342.05",
- "end": "342.68",
- "confidence": "1.000",
- "text": "spaces",
- "offset": 79,
- "length": 6,
- "key": expect.any(String)//"xdgek8m"
- },
- {
- "start": "342.71",
- "end": "342.79999999999995",
- "confidence": "1.000",
- "text": "we",
- "offset": 86,
- "length": 2,
- "key": expect.any(String)//"z2h8ppk"
- },
- {
- "start": "342.80",
- "end": "342.98",
- "confidence": "1.000",
- "text": "need",
- "offset": 89,
- "length": 4,
- "key": expect.any(String)//"ya8uj39"
- },
- {
- "start": "342.98",
- "end": "343.07",
- "confidence": "1.000",
- "text": "to",
- "offset": 94,
- "length": 2,
- "key": expect.any(String)//"7jtanfd"
- },
- {
- "start": "343.07",
- "end": "343.79",
- "confidence": "1.000",
- "text": "understand",
- "offset": 97,
- "length": 10,
- "key": expect.any(String)//"44wou3o"
- },
- {
- "start": "343.79",
- "end": "343.94",
- "confidence": "1.000",
- "text": "that",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"gs4vm8n"
- },
- {
- "start": "343.94",
- "end": "344.27",
- "confidence": "1.000",
- "text": "people",
- "offset": 113,
- "length": 6,
- "key": expect.any(String)//"es4t92j"
- },
- {
- "start": "344.27",
- "end": "344.39",
- "confidence": "1.000",
- "text": "will",
- "offset": 120,
- "length": 4,
- "key": expect.any(String)//"b61dwc5"
- },
- {
- "start": "344.39",
- "end": "344.63",
- "confidence": "1.000",
- "text": "treat",
- "offset": 125,
- "length": 5,
- "key": expect.any(String)//"i1e9wu"
- },
- {
- "start": "344.63",
- "end": "344.78",
- "confidence": "1.000",
- "text": "them",
- "offset": 131,
- "length": 4,
- "key": expect.any(String)//"g9ff4if"
- },
- {
- "start": "344.78",
- "end": "345.38",
- "confidence": "1.000",
- "text": "differently",
- "offset": 136,
- "length": 11,
- "key": expect.any(String)//"xnr2aqs"
- },
- {
- "start": "345.38",
- "end": "345.56",
- "confidence": "1.000",
- "text": "than",
- "offset": 148,
- "length": 4,
- "key": expect.any(String)//"muujw8f"
- },
- {
- "start": "345.56",
- "end": "345.74",
- "confidence": "1.000",
- "text": "other",
- "offset": 153,
- "length": 5,
- "key": expect.any(String)//"3wcovo"
- },
- {
- "start": "345.74",
- "end": "347",
- "confidence": "1.000",
- "text": "devices.",
- "offset": 159,
- "length": 8,
- "key": expect.any(String)//"o0goa5e"
- }
- ]
- },
- {
- "text": "And that in some cases for example the case of a soldier who becomes emotionally attached to the robot that they work with that can be anything from inefficient to dangerous.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "347.39",
- "end": "347.51",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 867
- },
- {
- "start": "347.51",
- "end": "347.65999999999997",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 868
- },
- {
- "start": "347.66",
- "end": "347.78000000000003",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 869
- },
- {
- "start": "347.78",
- "end": "348.08",
- "confidence": "1.000",
- "word": "some",
- "punct": "some",
- "index": 870
- },
- {
- "start": "348.08",
- "end": "348.89",
- "confidence": "1.000",
- "word": "cases",
- "punct": "cases",
- "index": 871
- },
- {
- "start": "349.22",
- "end": "349.40000000000003",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 872
- },
- {
- "start": "349.40",
- "end": "349.96999999999997",
- "confidence": "1.000",
- "word": "example",
- "punct": "example",
- "index": 873
- },
- {
- "start": "350.00",
- "end": "350.09",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 874
- },
- {
- "start": "350.09",
- "end": "350.39",
- "confidence": "1.000",
- "word": "case",
- "punct": "case",
- "index": 875
- },
- {
- "start": "350.39",
- "end": "350.51",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 876
- },
- {
- "start": "350.51",
- "end": "350.53999999999996",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 877
- },
- {
- "start": "350.54",
- "end": "350.99",
- "confidence": "1.000",
- "word": "soldier",
- "punct": "soldier",
- "index": 878
- },
- {
- "start": "351.02",
- "end": "351.10999999999996",
- "confidence": "1.000",
- "word": "who",
- "punct": "who",
- "index": 879
- },
- {
- "start": "351.11",
- "end": "351.44",
- "confidence": "1.000",
- "word": "becomes",
- "punct": "becomes",
- "index": 880
- },
- {
- "start": "351.44",
- "end": "352.01",
- "confidence": "1.000",
- "word": "emotionally",
- "punct": "emotionally",
- "index": 881
- },
- {
- "start": "352.01",
- "end": "352.49",
- "confidence": "1.000",
- "word": "attached",
- "punct": "attached",
- "index": 882
- },
- {
- "start": "352.49",
- "end": "352.61",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 883
- },
- {
- "start": "352.61",
- "end": "352.73",
- "confidence": "0.990",
- "word": "the",
- "punct": "the",
- "index": 884
- },
- {
- "start": "352.73",
- "end": "353.12",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 885
- },
- {
- "start": "353.12",
- "end": "353.24",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 886
- },
- {
- "start": "353.24",
- "end": "353.36",
- "confidence": "1.000",
- "word": "they",
- "punct": "they",
- "index": 887
- },
- {
- "start": "353.36",
- "end": "353.6",
- "confidence": "1.000",
- "word": "work",
- "punct": "work",
- "index": 888
- },
- {
- "start": "353.60",
- "end": "353.99",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 889
- },
- {
- "start": "354.50",
- "end": "354.68",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 890
- },
- {
- "start": "354.68",
- "end": "354.83",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 891
- },
- {
- "start": "354.83",
- "end": "354.95",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 892
- },
- {
- "start": "354.95",
- "end": "355.31",
- "confidence": "1.000",
- "word": "anything",
- "punct": "anything",
- "index": 893
- },
- {
- "start": "355.31",
- "end": "355.49",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 894
- },
- {
- "start": "355.52",
- "end": "356.03",
- "confidence": "1.000",
- "word": "inefficient",
- "punct": "inefficient",
- "index": 895
- },
- {
- "start": "356.03",
- "end": "356.15",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 896
- },
- {
- "start": "356.15",
- "end": "356.92999999999995",
- "confidence": "1.000",
- "word": "dangerous",
- "punct": "dangerous.",
- "index": 897
- }
- ],
- "start": "347.39"
- },
- "entityRanges": [
- {
- "start": "347.39",
- "end": "347.51",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"tfnj856"
- },
- {
- "start": "347.51",
- "end": "347.65999999999997",
- "confidence": "1.000",
- "text": "that",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"cz1t4yb"
- },
- {
- "start": "347.66",
- "end": "347.78000000000003",
- "confidence": "1.000",
- "text": "in",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"y0kndhq"
- },
- {
- "start": "347.78",
- "end": "348.08",
- "confidence": "1.000",
- "text": "some",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"0p640gq"
- },
- {
- "start": "348.08",
- "end": "348.89",
- "confidence": "1.000",
- "text": "cases",
- "offset": 17,
- "length": 5,
- "key": expect.any(String)//"rdbaiqx"
- },
- {
- "start": "349.22",
- "end": "349.40000000000003",
- "confidence": "1.000",
- "text": "for",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)//"4n3dmsp"
- },
- {
- "start": "349.40",
- "end": "349.96999999999997",
- "confidence": "1.000",
- "text": "example",
- "offset": 27,
- "length": 7,
- "key": expect.any(String)//"9pstese"
- },
- {
- "start": "350.00",
- "end": "350.09",
- "confidence": "1.000",
- "text": "the",
- "offset": 35,
- "length": 3,
- "key": expect.any(String)//"kdnkobo"
- },
- {
- "start": "350.09",
- "end": "350.39",
- "confidence": "1.000",
- "text": "case",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"w0oycsq"
- },
- {
- "start": "350.39",
- "end": "350.51",
- "confidence": "1.000",
- "text": "of",
- "offset": 44,
- "length": 2,
- "key": expect.any(String)//"o4eguw"
- },
- {
- "start": "350.51",
- "end": "350.53999999999996",
- "confidence": "1.000",
- "text": "a",
- "offset": 47,
- "length": 1,
- "key": expect.any(String)//"dr2y5vk"
- },
- {
- "start": "350.54",
- "end": "350.99",
- "confidence": "1.000",
- "text": "soldier",
- "offset": 49,
- "length": 7,
- "key": expect.any(String)//"9hw011a"
- },
- {
- "start": "351.02",
- "end": "351.10999999999996",
- "confidence": "1.000",
- "text": "who",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"cjxw7zn"
- },
- {
- "start": "351.11",
- "end": "351.44",
- "confidence": "1.000",
- "text": "becomes",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"ci18zxw"
- },
- {
- "start": "351.44",
- "end": "352.01",
- "confidence": "1.000",
- "text": "emotionally",
- "offset": 69,
- "length": 11,
- "key": expect.any(String)//"yj9zcyq"
- },
- {
- "start": "352.01",
- "end": "352.49",
- "confidence": "1.000",
- "text": "attached",
- "offset": 81,
- "length": 8,
- "key": expect.any(String)//"ldgvbef"
- },
- {
- "start": "352.49",
- "end": "352.61",
- "confidence": "1.000",
- "text": "to",
- "offset": 90,
- "length": 2,
- "key": expect.any(String)//"vvob5zl"
- },
- {
- "start": "352.61",
- "end": "352.73",
- "confidence": "0.990",
- "text": "the",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)//"7pbacwt"
- },
- {
- "start": "352.73",
- "end": "353.12",
- "confidence": "1.000",
- "text": "robot",
- "offset": 97,
- "length": 5,
- "key": expect.any(String)//"8x4b3ua"
- },
- {
- "start": "353.12",
- "end": "353.24",
- "confidence": "1.000",
- "text": "that",
- "offset": 103,
- "length": 4,
- "key": expect.any(String)//"94f572"
- },
- {
- "start": "353.24",
- "end": "353.36",
- "confidence": "1.000",
- "text": "they",
- "offset": 108,
- "length": 4,
- "key": expect.any(String)//"z0mg25"
- },
- {
- "start": "353.36",
- "end": "353.6",
- "confidence": "1.000",
- "text": "work",
- "offset": 113,
- "length": 4,
- "key": expect.any(String)//"lnfr70g"
- },
- {
- "start": "353.60",
- "end": "353.99",
- "confidence": "1.000",
- "text": "with",
- "offset": 118,
- "length": 4,
- "key": expect.any(String)//"aa6vod"
- },
- {
- "start": "354.50",
- "end": "354.68",
- "confidence": "1.000",
- "text": "that",
- "offset": 123,
- "length": 4,
- "key": expect.any(String)//"agbyi2r"
- },
- {
- "start": "354.68",
- "end": "354.83",
- "confidence": "1.000",
- "text": "can",
- "offset": 128,
- "length": 3,
- "key": expect.any(String)//"64917oh9"
- },
- {
- "start": "354.83",
- "end": "354.95",
- "confidence": "1.000",
- "text": "be",
- "offset": 132,
- "length": 2,
- "key": expect.any(String)//"rqqg7t"
- },
- {
- "start": "354.95",
- "end": "355.31",
- "confidence": "1.000",
- "text": "anything",
- "offset": 135,
- "length": 8,
- "key": expect.any(String)//"eciiq56"
- },
- {
- "start": "355.31",
- "end": "355.49",
- "confidence": "1.000",
- "text": "from",
- "offset": 144,
- "length": 4,
- "key": expect.any(String)//"730kipo"
- },
- {
- "start": "355.52",
- "end": "356.03",
- "confidence": "1.000",
- "text": "inefficient",
- "offset": 149,
- "length": 11,
- "key": expect.any(String)//"p5w772r"
- },
- {
- "start": "356.03",
- "end": "356.15",
- "confidence": "1.000",
- "text": "to",
- "offset": 161,
- "length": 2,
- "key": expect.any(String)//"mvwnrd"
- },
- {
- "start": "356.15",
- "end": "356.92999999999995",
- "confidence": "1.000",
- "text": "dangerous.",
- "offset": 164,
- "length": 10,
- "key": expect.any(String)//"m0mhqt"
- }
- ]
- },
- {
- "text": "But in other cases it can actually be useful to foster this emotional connection to robots.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "358.52",
- "end": "358.7",
- "confidence": "1.000",
- "word": "but",
- "punct": "But",
- "index": 898
- },
- {
- "start": "358.70",
- "end": "358.82",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 899
- },
- {
- "start": "358.82",
- "end": "359.03",
- "confidence": "1.000",
- "word": "other",
- "punct": "other",
- "index": 900
- },
- {
- "start": "359.03",
- "end": "359.45",
- "confidence": "1.000",
- "word": "cases",
- "punct": "cases",
- "index": 901
- },
- {
- "start": "359.45",
- "end": "359.51",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 902
- },
- {
- "start": "359.51",
- "end": "359.63",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 903
- },
- {
- "start": "359.63",
- "end": "359.96",
- "confidence": "1.000",
- "word": "actually",
- "punct": "actually",
- "index": 904
- },
- {
- "start": "359.96",
- "end": "360.10999999999996",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 905
- },
- {
- "start": "360.11",
- "end": "360.68",
- "confidence": "1.000",
- "word": "useful",
- "punct": "useful",
- "index": 906
- },
- {
- "start": "360.68",
- "end": "360.8",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 907
- },
- {
- "start": "360.80",
- "end": "361.34000000000003",
- "confidence": "1.000",
- "word": "foster",
- "punct": "foster",
- "index": 908
- },
- {
- "start": "361.34",
- "end": "361.52",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 909
- },
- {
- "start": "361.52",
- "end": "361.94",
- "confidence": "1.000",
- "word": "emotional",
- "punct": "emotional",
- "index": 910
- },
- {
- "start": "361.94",
- "end": "362.45",
- "confidence": "1.000",
- "word": "connection",
- "punct": "connection",
- "index": 911
- },
- {
- "start": "362.45",
- "end": "362.57",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 912
- },
- {
- "start": "362.57",
- "end": "364.18",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots.",
- "index": 913
- }
- ],
- "start": "358.52"
- },
- "entityRanges": [
- {
- "start": "358.52",
- "end": "358.7",
- "confidence": "1.000",
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"jraw587"
- },
- {
- "start": "358.70",
- "end": "358.82",
- "confidence": "1.000",
- "text": "in",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"0tp998m"
- },
- {
- "start": "358.82",
- "end": "359.03",
- "confidence": "1.000",
- "text": "other",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"s7a5sbi"
- },
- {
- "start": "359.03",
- "end": "359.45",
- "confidence": "1.000",
- "text": "cases",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)//"dl4s9q9"
- },
- {
- "start": "359.45",
- "end": "359.51",
- "confidence": "1.000",
- "text": "it",
- "offset": 19,
- "length": 2,
- "key": expect.any(String)//"fayauy3"
- },
- {
- "start": "359.51",
- "end": "359.63",
- "confidence": "1.000",
- "text": "can",
- "offset": 22,
- "length": 3,
- "key": expect.any(String)//"pxmcyzw"
- },
- {
- "start": "359.63",
- "end": "359.96",
- "confidence": "1.000",
- "text": "actually",
- "offset": 26,
- "length": 8,
- "key": expect.any(String)//"6fnqv45"
- },
- {
- "start": "359.96",
- "end": "360.10999999999996",
- "confidence": "1.000",
- "text": "be",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"1cy5lqt"
- },
- {
- "start": "360.11",
- "end": "360.68",
- "confidence": "1.000",
- "text": "useful",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"g41gwc6"
- },
- {
- "start": "360.68",
- "end": "360.8",
- "confidence": "1.000",
- "text": "to",
- "offset": 45,
- "length": 2,
- "key": expect.any(String)//"hs8dork"
- },
- {
- "start": "360.80",
- "end": "361.34000000000003",
- "confidence": "1.000",
- "text": "foster",
- "offset": 48,
- "length": 6,
- "key": expect.any(String)//"7e0y19"
- },
- {
- "start": "361.34",
- "end": "361.52",
- "confidence": "1.000",
- "text": "this",
- "offset": 55,
- "length": 4,
- "key": expect.any(String)//"otv4mq"
- },
- {
- "start": "361.52",
- "end": "361.94",
- "confidence": "1.000",
- "text": "emotional",
- "offset": 60,
- "length": 9,
- "key": expect.any(String)//"97i9z1r"
- },
- {
- "start": "361.94",
- "end": "362.45",
- "confidence": "1.000",
- "text": "connection",
- "offset": 70,
- "length": 10,
- "key": expect.any(String)//"x2qvnos"
- },
- {
- "start": "362.45",
- "end": "362.57",
- "confidence": "1.000",
- "text": "to",
- "offset": 81,
- "length": 2,
- "key": expect.any(String)//"tl2iij"
- },
- {
- "start": "362.57",
- "end": "364.18",
- "confidence": "1.000",
- "text": "robots.",
- "offset": 84,
- "length": 7,
- "key": expect.any(String)//"3s6tw8e"
- }
- ]
- },
- {
- "text": "We're already seeing some great use cases for example robots working with autistic children to engage them in ways that we haven't seen previously or robots working with teachers to engage kids in learning with new results.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "364.19",
- "end": "364.34",
- "confidence": "0.990",
- "word": "we're",
- "punct": "We're",
- "index": 914
- },
- {
- "start": "364.34",
- "end": "364.64",
- "confidence": "1.000",
- "word": "already",
- "punct": "already",
- "index": 915
- },
- {
- "start": "364.64",
- "end": "364.96999999999997",
- "confidence": "1.000",
- "word": "seeing",
- "punct": "seeing",
- "index": 916
- },
- {
- "start": "364.97",
- "end": "365.15000000000003",
- "confidence": "1.000",
- "word": "some",
- "punct": "some",
- "index": 917
- },
- {
- "start": "365.15",
- "end": "365.47999999999996",
- "confidence": "1.000",
- "word": "great",
- "punct": "great",
- "index": 918
- },
- {
- "start": "365.48",
- "end": "365.75",
- "confidence": "1.000",
- "word": "use",
- "punct": "use",
- "index": 919
- },
- {
- "start": "365.75",
- "end": "366.26",
- "confidence": "1.000",
- "word": "cases",
- "punct": "cases",
- "index": 920
- },
- {
- "start": "366.26",
- "end": "366.40999999999997",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 921
- },
- {
- "start": "366.41",
- "end": "366.83000000000004",
- "confidence": "1.000",
- "word": "example",
- "punct": "example",
- "index": 922
- },
- {
- "start": "366.83",
- "end": "367.28",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 923
- },
- {
- "start": "367.28",
- "end": "367.60999999999996",
- "confidence": "1.000",
- "word": "working",
- "punct": "working",
- "index": 924
- },
- {
- "start": "367.61",
- "end": "367.79",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 925
- },
- {
- "start": "367.82",
- "end": "368.42",
- "confidence": "1.000",
- "word": "autistic",
- "punct": "autistic",
- "index": 926
- },
- {
- "start": "368.42",
- "end": "368.93",
- "confidence": "1.000",
- "word": "children",
- "punct": "children",
- "index": 927
- },
- {
- "start": "368.93",
- "end": "369.11",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 928
- },
- {
- "start": "369.11",
- "end": "369.65000000000003",
- "confidence": "1.000",
- "word": "engage",
- "punct": "engage",
- "index": 929
- },
- {
- "start": "369.65",
- "end": "369.95",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 930
- },
- {
- "start": "369.95",
- "end": "370.07",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 931
- },
- {
- "start": "370.07",
- "end": "370.37",
- "confidence": "1.000",
- "word": "ways",
- "punct": "ways",
- "index": 932
- },
- {
- "start": "370.40",
- "end": "370.48999999999995",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 933
- },
- {
- "start": "370.49",
- "end": "370.58",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 934
- },
- {
- "start": "370.58",
- "end": "370.94",
- "confidence": "1.000",
- "word": "haven't",
- "punct": "haven't",
- "index": 935
- },
- {
- "start": "370.94",
- "end": "371.18",
- "confidence": "1.000",
- "word": "seen",
- "punct": "seen",
- "index": 936
- },
- {
- "start": "371.18",
- "end": "371.99",
- "confidence": "1.000",
- "word": "previously",
- "punct": "previously",
- "index": 937
- },
- {
- "start": "372.65",
- "end": "372.77",
- "confidence": "1.000",
- "word": "or",
- "punct": "or",
- "index": 938
- },
- {
- "start": "372.77",
- "end": "373.15999999999997",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 939
- },
- {
- "start": "373.16",
- "end": "373.52000000000004",
- "confidence": "1.000",
- "word": "working",
- "punct": "working",
- "index": 940
- },
- {
- "start": "373.52",
- "end": "373.64",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 941
- },
- {
- "start": "373.64",
- "end": "374.21",
- "confidence": "1.000",
- "word": "teachers",
- "punct": "teachers",
- "index": 942
- },
- {
- "start": "374.21",
- "end": "374.35999999999996",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 943
- },
- {
- "start": "374.36",
- "end": "374.72",
- "confidence": "1.000",
- "word": "engage",
- "punct": "engage",
- "index": 944
- },
- {
- "start": "374.72",
- "end": "375.05",
- "confidence": "1.000",
- "word": "kids",
- "punct": "kids",
- "index": 945
- },
- {
- "start": "375.05",
- "end": "375.17",
- "confidence": "0.980",
- "word": "in",
- "punct": "in",
- "index": 946
- },
- {
- "start": "375.17",
- "end": "375.59000000000003",
- "confidence": "1.000",
- "word": "learning",
- "punct": "learning",
- "index": 947
- },
- {
- "start": "375.59",
- "end": "375.73999999999995",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 948
- },
- {
- "start": "375.74",
- "end": "375.92",
- "confidence": "1.000",
- "word": "new",
- "punct": "new",
- "index": 949
- },
- {
- "start": "375.92",
- "end": "377.45",
- "confidence": "1.000",
- "word": "results",
- "punct": "results.",
- "index": 950
- }
- ],
- "start": "364.19"
- },
- "entityRanges": [
- {
- "start": "364.19",
- "end": "364.34",
- "confidence": "0.990",
- "text": "We're",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"pdxd7p37"
- },
- {
- "start": "364.34",
- "end": "364.64",
- "confidence": "1.000",
- "text": "already",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)//"hdy2ah9"
- },
- {
- "start": "364.64",
- "end": "364.96999999999997",
- "confidence": "1.000",
- "text": "seeing",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)//"whdg1ia"
- },
- {
- "start": "364.97",
- "end": "365.15000000000003",
- "confidence": "1.000",
- "text": "some",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"vfosrsv"
- },
- {
- "start": "365.15",
- "end": "365.47999999999996",
- "confidence": "1.000",
- "text": "great",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"1awwt4"
- },
- {
- "start": "365.48",
- "end": "365.75",
- "confidence": "1.000",
- "text": "use",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)//"miayg4"
- },
- {
- "start": "365.75",
- "end": "366.26",
- "confidence": "1.000",
- "text": "cases",
- "offset": 36,
- "length": 5,
- "key": expect.any(String)//"r5hury"
- },
- {
- "start": "366.26",
- "end": "366.40999999999997",
- "confidence": "1.000",
- "text": "for",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"fps39j"
- },
- {
- "start": "366.41",
- "end": "366.83000000000004",
- "confidence": "1.000",
- "text": "example",
- "offset": 46,
- "length": 7,
- "key": expect.any(String)//"7zcv8h"
- },
- {
- "start": "366.83",
- "end": "367.28",
- "confidence": "1.000",
- "text": "robots",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"uu2d9l"
- },
- {
- "start": "367.28",
- "end": "367.60999999999996",
- "confidence": "1.000",
- "text": "working",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"iv9619"
- },
- {
- "start": "367.61",
- "end": "367.79",
- "confidence": "1.000",
- "text": "with",
- "offset": 69,
- "length": 4,
- "key": expect.any(String)//"x05939q"
- },
- {
- "start": "367.82",
- "end": "368.42",
- "confidence": "1.000",
- "text": "autistic",
- "offset": 74,
- "length": 8,
- "key": expect.any(String)//"3vw8yxf"
- },
- {
- "start": "368.42",
- "end": "368.93",
- "confidence": "1.000",
- "text": "children",
- "offset": 83,
- "length": 8,
- "key": expect.any(String)//"vaejevc"
- },
- {
- "start": "368.93",
- "end": "369.11",
- "confidence": "1.000",
- "text": "to",
- "offset": 92,
- "length": 2,
- "key": expect.any(String)//"zbtzbh"
- },
- {
- "start": "369.11",
- "end": "369.65000000000003",
- "confidence": "1.000",
- "text": "engage",
- "offset": 95,
- "length": 6,
- "key": expect.any(String)//"191mjn"
- },
- {
- "start": "369.65",
- "end": "369.95",
- "confidence": "1.000",
- "text": "them",
- "offset": 102,
- "length": 4,
- "key": expect.any(String)//"juslfxr"
- },
- {
- "start": "369.95",
- "end": "370.07",
- "confidence": "1.000",
- "text": "in",
- "offset": 107,
- "length": 2,
- "key": expect.any(String)//"qo61v8i"
- },
- {
- "start": "370.07",
- "end": "370.37",
- "confidence": "1.000",
- "text": "ways",
- "offset": 110,
- "length": 4,
- "key": expect.any(String)//"8a560dm"
- },
- {
- "start": "370.40",
- "end": "370.48999999999995",
- "confidence": "1.000",
- "text": "that",
- "offset": 115,
- "length": 4,
- "key": expect.any(String)//"f3xr03l"
- },
- {
- "start": "370.49",
- "end": "370.58",
- "confidence": "1.000",
- "text": "we",
- "offset": 120,
- "length": 2,
- "key": expect.any(String)//"a0z4ap"
- },
- {
- "start": "370.58",
- "end": "370.94",
- "confidence": "1.000",
- "text": "haven't",
- "offset": 123,
- "length": 7,
- "key": expect.any(String)//"x39mj5"
- },
- {
- "start": "370.94",
- "end": "371.18",
- "confidence": "1.000",
- "text": "seen",
- "offset": 131,
- "length": 4,
- "key": expect.any(String)//"6upr3z"
- },
- {
- "start": "371.18",
- "end": "371.99",
- "confidence": "1.000",
- "text": "previously",
- "offset": 136,
- "length": 10,
- "key": expect.any(String)//"ulssco"
- },
- {
- "start": "372.65",
- "end": "372.77",
- "confidence": "1.000",
- "text": "or",
- "offset": 147,
- "length": 2,
- "key": expect.any(String)//"ei2f33a"
- },
- {
- "start": "372.77",
- "end": "373.15999999999997",
- "confidence": "1.000",
- "text": "robots",
- "offset": 150,
- "length": 6,
- "key": expect.any(String)//"eamvtoa"
- },
- {
- "start": "373.16",
- "end": "373.52000000000004",
- "confidence": "1.000",
- "text": "working",
- "offset": 157,
- "length": 7,
- "key": expect.any(String)//"18x6fpm"
- },
- {
- "start": "373.52",
- "end": "373.64",
- "confidence": "1.000",
- "text": "with",
- "offset": 165,
- "length": 4,
- "key": expect.any(String)//"0lhese9"
- },
- {
- "start": "373.64",
- "end": "374.21",
- "confidence": "1.000",
- "text": "teachers",
- "offset": 170,
- "length": 8,
- "key": expect.any(String)//"0tuce5m"
- },
- {
- "start": "374.21",
- "end": "374.35999999999996",
- "confidence": "1.000",
- "text": "to",
- "offset": 179,
- "length": 2,
- "key": expect.any(String)//"9v1f7mt"
- },
- {
- "start": "374.36",
- "end": "374.72",
- "confidence": "1.000",
- "text": "engage",
- "offset": 182,
- "length": 6,
- "key": expect.any(String)//"vgcc4e"
- },
- {
- "start": "374.72",
- "end": "375.05",
- "confidence": "1.000",
- "text": "kids",
- "offset": 189,
- "length": 4,
- "key": expect.any(String)//"rsw7vh"
- },
- {
- "start": "375.05",
- "end": "375.17",
- "confidence": "0.980",
- "text": "in",
- "offset": 194,
- "length": 2,
- "key": expect.any(String)//"zwprfla"
- },
- {
- "start": "375.17",
- "end": "375.59000000000003",
- "confidence": "1.000",
- "text": "learning",
- "offset": 197,
- "length": 8,
- "key": expect.any(String)//"dc7s9sg"
- },
- {
- "start": "375.59",
- "end": "375.73999999999995",
- "confidence": "1.000",
- "text": "with",
- "offset": 206,
- "length": 4,
- "key": expect.any(String)//"uki3sb"
- },
- {
- "start": "375.74",
- "end": "375.92",
- "confidence": "1.000",
- "text": "new",
- "offset": 211,
- "length": 3,
- "key": expect.any(String)//"gc43f0a"
- },
- {
- "start": "375.92",
- "end": "377.45",
- "confidence": "1.000",
- "text": "results.",
- "offset": 215,
- "length": 8,
- "key": expect.any(String)//"iwx9dp"
- }
- ]
- },
- {
- "text": "And it's not just for kids.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "377.45",
- "end": "377.57",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 951
- },
- {
- "start": "377.57",
- "end": "377.69",
- "confidence": "1.000",
- "word": "it's",
- "punct": "it's",
- "index": 952
- },
- {
- "start": "377.69",
- "end": "377.9",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 953
- },
- {
- "start": "377.90",
- "end": "378.04999999999995",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 954
- },
- {
- "start": "378.05",
- "end": "378.2",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 955
- },
- {
- "start": "378.20",
- "end": "379.31",
- "confidence": "1.000",
- "word": "kids",
- "punct": "kids.",
- "index": 956
- }
- ],
- "start": "377.45"
- },
- "entityRanges": [
- {
- "start": "377.45",
- "end": "377.57",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"axv3nca"
- },
- {
- "start": "377.57",
- "end": "377.69",
- "confidence": "1.000",
- "text": "it's",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"m7kf8i8"
- },
- {
- "start": "377.69",
- "end": "377.9",
- "confidence": "1.000",
- "text": "not",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"4p03se"
- },
- {
- "start": "377.90",
- "end": "378.04999999999995",
- "confidence": "1.000",
- "text": "just",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"gha03j7"
- },
- {
- "start": "378.05",
- "end": "378.2",
- "confidence": "1.000",
- "text": "for",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"066nzt"
- },
- {
- "start": "378.20",
- "end": "379.31",
- "confidence": "1.000",
- "text": "kids.",
- "offset": 22,
- "length": 5,
- "key": expect.any(String)//"kxp700n"
- }
- ]
- },
- {
- "text": "Early studies show that robots can help doctors and patients in health care settings.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "379.76",
- "end": "380.03",
- "confidence": "1.000",
- "word": "early",
- "punct": "Early",
- "index": 957
- },
- {
- "start": "380.03",
- "end": "380.39",
- "confidence": "1.000",
- "word": "studies",
- "punct": "studies",
- "index": 958
- },
- {
- "start": "380.39",
- "end": "380.75",
- "confidence": "1.000",
- "word": "show",
- "punct": "show",
- "index": 959
- },
- {
- "start": "380.75",
- "end": "381.02",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 960
- },
- {
- "start": "381.08",
- "end": "381.40999999999997",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 961
- },
- {
- "start": "381.41",
- "end": "381.56",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 962
- },
- {
- "start": "381.56",
- "end": "381.74",
- "confidence": "1.000",
- "word": "help",
- "punct": "help",
- "index": 963
- },
- {
- "start": "381.74",
- "end": "382.28000000000003",
- "confidence": "1.000",
- "word": "doctors",
- "punct": "doctors",
- "index": 964
- },
- {
- "start": "382.28",
- "end": "382.36999999999995",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 965
- },
- {
- "start": "382.37",
- "end": "383.03000000000003",
- "confidence": "1.000",
- "word": "patients",
- "punct": "patients",
- "index": 966
- },
- {
- "start": "383.03",
- "end": "383.11999999999995",
- "confidence": "0.850",
- "word": "in",
- "punct": "in",
- "index": 967
- },
- {
- "start": "383.12",
- "end": "383.39",
- "confidence": "0.820",
- "word": "health",
- "punct": "health",
- "index": 968
- },
- {
- "start": "383.39",
- "end": "383.65999999999997",
- "confidence": "0.820",
- "word": "care",
- "punct": "care",
- "index": 969
- },
- {
- "start": "383.66",
- "end": "385.54",
- "confidence": "1.000",
- "word": "settings",
- "punct": "settings.",
- "index": 970
- }
- ],
- "start": "379.76"
- },
- "entityRanges": [
- {
- "start": "379.76",
- "end": "380.03",
- "confidence": "1.000",
- "text": "Early",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"5si8n4i"
- },
- {
- "start": "380.03",
- "end": "380.39",
- "confidence": "1.000",
- "text": "studies",
- "offset": 6,
- "length": 7,
- "key": expect.any(String)//"knaetvi"
- },
- {
- "start": "380.39",
- "end": "380.75",
- "confidence": "1.000",
- "text": "show",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"55lq57h"
- },
- {
- "start": "380.75",
- "end": "381.02",
- "confidence": "1.000",
- "text": "that",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"j6b7ete"
- },
- {
- "start": "381.08",
- "end": "381.40999999999997",
- "confidence": "1.000",
- "text": "robots",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)//"scm6k3"
- },
- {
- "start": "381.41",
- "end": "381.56",
- "confidence": "1.000",
- "text": "can",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"gfpy2rl"
- },
- {
- "start": "381.56",
- "end": "381.74",
- "confidence": "1.000",
- "text": "help",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"4qbm6d9"
- },
- {
- "start": "381.74",
- "end": "382.28000000000003",
- "confidence": "1.000",
- "text": "doctors",
- "offset": 40,
- "length": 7,
- "key": expect.any(String)//"aq1c62a"
- },
- {
- "start": "382.28",
- "end": "382.36999999999995",
- "confidence": "1.000",
- "text": "and",
- "offset": 48,
- "length": 3,
- "key": expect.any(String)//"f7cw385"
- },
- {
- "start": "382.37",
- "end": "383.03000000000003",
- "confidence": "1.000",
- "text": "patients",
- "offset": 52,
- "length": 8,
- "key": expect.any(String)//"fivmqd2"
- },
- {
- "start": "383.03",
- "end": "383.11999999999995",
- "confidence": "0.850",
- "text": "in",
- "offset": 61,
- "length": 2,
- "key": expect.any(String)//"xs3jotu"
- },
- {
- "start": "383.12",
- "end": "383.39",
- "confidence": "0.820",
- "text": "health",
- "offset": 64,
- "length": 6,
- "key": expect.any(String)//"xakzgw"
- },
- {
- "start": "383.39",
- "end": "383.65999999999997",
- "confidence": "0.820",
- "text": "care",
- "offset": 71,
- "length": 4,
- "key": expect.any(String)//"pjtdt4b"
- },
- {
- "start": "383.66",
- "end": "385.54",
- "confidence": "1.000",
- "text": "settings.",
- "offset": 76,
- "length": 9,
- "key": expect.any(String)//"a4bnekl"
- }
- ]
- },
- {
- "text": "This is the pro baby seal robot.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "385.55",
- "end": "385.76",
- "confidence": "1.000",
- "word": "this",
- "punct": "This",
- "index": 971
- },
- {
- "start": "385.76",
- "end": "385.88",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 972
- },
- {
- "start": "385.88",
- "end": "386",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 973
- },
- {
- "start": "386.00",
- "end": "386.41",
- "confidence": "0.340",
- "word": "pro",
- "punct": "pro",
- "index": 974
- },
- {
- "start": "386.41",
- "end": "386.66",
- "confidence": "1.000",
- "word": "baby",
- "punct": "baby",
- "index": 975
- },
- {
- "start": "386.66",
- "end": "386.93",
- "confidence": "0.990",
- "word": "seal",
- "punct": "seal",
- "index": 976
- },
- {
- "start": "386.93",
- "end": "387.35",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot.",
- "index": 977
- }
- ],
- "start": "385.55"
- },
- "entityRanges": [
- {
- "start": "385.55",
- "end": "385.76",
- "confidence": "1.000",
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"kp6y93"
- },
- {
- "start": "385.76",
- "end": "385.88",
- "confidence": "1.000",
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"zjpvgro"
- },
- {
- "start": "385.88",
- "end": "386",
- "confidence": "1.000",
- "text": "the",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"5bxur4b"
- },
- {
- "start": "386.00",
- "end": "386.41",
- "confidence": "0.340",
- "text": "pro",
- "offset": 12,
- "length": 3,
- "key": expect.any(String)//"x338vqb"
- },
- {
- "start": "386.41",
- "end": "386.66",
- "confidence": "1.000",
- "text": "baby",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"0bst326"
- },
- {
- "start": "386.66",
- "end": "386.93",
- "confidence": "0.990",
- "text": "seal",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"6nnfgvk"
- },
- {
- "start": "386.93",
- "end": "387.35",
- "confidence": "1.000",
- "text": "robot.",
- "offset": 26,
- "length": 6,
- "key": expect.any(String)//"v80l0ro"
- }
- ]
- },
- {
- "text": "It's used in nursing homes and with dementia patients.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "387.38",
- "end": "387.56",
- "confidence": "0.990",
- "word": "it's",
- "punct": "It's",
- "index": 978
- },
- {
- "start": "387.56",
- "end": "387.92",
- "confidence": "1.000",
- "word": "used",
- "punct": "used",
- "index": 979
- },
- {
- "start": "387.92",
- "end": "388.07",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 980
- },
- {
- "start": "388.07",
- "end": "388.49",
- "confidence": "1.000",
- "word": "nursing",
- "punct": "nursing",
- "index": 981
- },
- {
- "start": "388.49",
- "end": "388.94",
- "confidence": "1.000",
- "word": "homes",
- "punct": "homes",
- "index": 982
- },
- {
- "start": "388.94",
- "end": "389.03",
- "confidence": "0.990",
- "word": "and",
- "punct": "and",
- "index": 983
- },
- {
- "start": "389.03",
- "end": "389.15",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 984
- },
- {
- "start": "389.15",
- "end": "389.63",
- "confidence": "1.000",
- "word": "dementia",
- "punct": "dementia",
- "index": 985
- },
- {
- "start": "389.63",
- "end": "390.52",
- "confidence": "1.000",
- "word": "patients",
- "punct": "patients.",
- "index": 986
- }
- ],
- "start": "387.38"
- },
- "entityRanges": [
- {
- "start": "387.38",
- "end": "387.56",
- "confidence": "0.990",
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"oyn4j2k"
- },
- {
- "start": "387.56",
- "end": "387.92",
- "confidence": "1.000",
- "text": "used",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"a1ebrht"
- },
- {
- "start": "387.92",
- "end": "388.07",
- "confidence": "1.000",
- "text": "in",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"yxe1ahl"
- },
- {
- "start": "388.07",
- "end": "388.49",
- "confidence": "1.000",
- "text": "nursing",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"p87gxck"
- },
- {
- "start": "388.49",
- "end": "388.94",
- "confidence": "1.000",
- "text": "homes",
- "offset": 21,
- "length": 5,
- "key": expect.any(String)//"m3czyn8"
- },
- {
- "start": "388.94",
- "end": "389.03",
- "confidence": "0.990",
- "text": "and",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"l57dl5p"
- },
- {
- "start": "389.03",
- "end": "389.15",
- "confidence": "1.000",
- "text": "with",
- "offset": 31,
- "length": 4,
- "key": expect.any(String)//"6x983zc"
- },
- {
- "start": "389.15",
- "end": "389.63",
- "confidence": "1.000",
- "text": "dementia",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)//"7zeo4pr"
- },
- {
- "start": "389.63",
- "end": "390.52",
- "confidence": "1.000",
- "text": "patients.",
- "offset": 45,
- "length": 9,
- "key": expect.any(String)//"48rvq6o"
- }
- ]
- },
- {
- "text": "It's been around for a while and I remember years ago being at a party and telling someone about this robot and her response was.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "390.53",
- "end": "390.65",
- "confidence": "0.990",
- "word": "it's",
- "punct": "It's",
- "index": 987
- },
- {
- "start": "390.65",
- "end": "390.79999999999995",
- "confidence": "1.000",
- "word": "been",
- "punct": "been",
- "index": 988
- },
- {
- "start": "390.80",
- "end": "391.07",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 989
- },
- {
- "start": "391.07",
- "end": "391.25",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 990
- },
- {
- "start": "391.25",
- "end": "391.28",
- "confidence": "0.990",
- "word": "a",
- "punct": "a",
- "index": 991
- },
- {
- "start": "391.28",
- "end": "391.78999999999996",
- "confidence": "0.990",
- "word": "while",
- "punct": "while",
- "index": 992
- },
- {
- "start": "392.27",
- "end": "392.39",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 993
- },
- {
- "start": "392.39",
- "end": "392.47999999999996",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 994
- },
- {
- "start": "392.48",
- "end": "393.05",
- "confidence": "1.000",
- "word": "remember",
- "punct": "remember",
- "index": 995
- },
- {
- "start": "393.41",
- "end": "393.83000000000004",
- "confidence": "1.000",
- "word": "years",
- "punct": "years",
- "index": 996
- },
- {
- "start": "393.83",
- "end": "394.07",
- "confidence": "1.000",
- "word": "ago",
- "punct": "ago",
- "index": 997
- },
- {
- "start": "394.07",
- "end": "394.25",
- "confidence": "1.000",
- "word": "being",
- "punct": "being",
- "index": 998
- },
- {
- "start": "394.25",
- "end": "394.34",
- "confidence": "1.000",
- "word": "at",
- "punct": "at",
- "index": 999
- },
- {
- "start": "394.34",
- "end": "394.4",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1000
- },
- {
- "start": "394.40",
- "end": "395.09",
- "confidence": "1.000",
- "word": "party",
- "punct": "party",
- "index": 1001
- },
- {
- "start": "395.66",
- "end": "395.75",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1002
- },
- {
- "start": "395.75",
- "end": "396.2",
- "confidence": "1.000",
- "word": "telling",
- "punct": "telling",
- "index": 1003
- },
- {
- "start": "396.20",
- "end": "396.46999999999997",
- "confidence": "1.000",
- "word": "someone",
- "punct": "someone",
- "index": 1004
- },
- {
- "start": "396.47",
- "end": "396.71000000000004",
- "confidence": "1.000",
- "word": "about",
- "punct": "about",
- "index": 1005
- },
- {
- "start": "396.71",
- "end": "396.85999999999996",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1006
- },
- {
- "start": "396.86",
- "end": "397.40000000000003",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1007
- },
- {
- "start": "398.24",
- "end": "398.36",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1008
- },
- {
- "start": "398.36",
- "end": "398.54",
- "confidence": "1.000",
- "word": "her",
- "punct": "her",
- "index": 1009
- },
- {
- "start": "398.54",
- "end": "399.05",
- "confidence": "1.000",
- "word": "response",
- "punct": "response",
- "index": 1010
- },
- {
- "start": "399.05",
- "end": "399.56",
- "confidence": "1.000",
- "word": "was",
- "punct": "was.",
- "index": 1011
- }
- ],
- "start": "390.53"
- },
- "entityRanges": [
- {
- "start": "390.53",
- "end": "390.65",
- "confidence": "0.990",
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"05pzhbs"
- },
- {
- "start": "390.65",
- "end": "390.79999999999995",
- "confidence": "1.000",
- "text": "been",
- "offset": 5,
- "length": 4,
- "key": expect.any(String)//"uaf27q"
- },
- {
- "start": "390.80",
- "end": "391.07",
- "confidence": "1.000",
- "text": "around",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)//"0hmvgur"
- },
- {
- "start": "391.07",
- "end": "391.25",
- "confidence": "1.000",
- "text": "for",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"dr5xgb7"
- },
- {
- "start": "391.25",
- "end": "391.28",
- "confidence": "0.990",
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)//"ra3hwb"
- },
- {
- "start": "391.28",
- "end": "391.78999999999996",
- "confidence": "0.990",
- "text": "while",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"jgmjbt8"
- },
- {
- "start": "392.27",
- "end": "392.39",
- "confidence": "1.000",
- "text": "and",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"ljngalr"
- },
- {
- "start": "392.39",
- "end": "392.47999999999996",
- "confidence": "1.000",
- "text": "I",
- "offset": 33,
- "length": 1,
- "key": expect.any(String)//"o3vc5d"
- },
- {
- "start": "392.48",
- "end": "393.05",
- "confidence": "1.000",
- "text": "remember",
- "offset": 35,
- "length": 8,
- "key": expect.any(String)//"0y51ot8"
- },
- {
- "start": "393.41",
- "end": "393.83000000000004",
- "confidence": "1.000",
- "text": "years",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"tvqlhxt"
- },
- {
- "start": "393.83",
- "end": "394.07",
- "confidence": "1.000",
- "text": "ago",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"v731frq"
- },
- {
- "start": "394.07",
- "end": "394.25",
- "confidence": "1.000",
- "text": "being",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"clo5ty"
- },
- {
- "start": "394.25",
- "end": "394.34",
- "confidence": "1.000",
- "text": "at",
- "offset": 60,
- "length": 2,
- "key": expect.any(String)//"o8gak5q"
- },
- {
- "start": "394.34",
- "end": "394.4",
- "confidence": "1.000",
- "text": "a",
- "offset": 63,
- "length": 1,
- "key": expect.any(String)//"lmtbst"
- },
- {
- "start": "394.40",
- "end": "395.09",
- "confidence": "1.000",
- "text": "party",
- "offset": 65,
- "length": 5,
- "key": expect.any(String)//"ie0ikf"
- },
- {
- "start": "395.66",
- "end": "395.75",
- "confidence": "1.000",
- "text": "and",
- "offset": 71,
- "length": 3,
- "key": expect.any(String)//"ng88x99"
- },
- {
- "start": "395.75",
- "end": "396.2",
- "confidence": "1.000",
- "text": "telling",
- "offset": 75,
- "length": 7,
- "key": expect.any(String)//"q6ccwq"
- },
- {
- "start": "396.20",
- "end": "396.46999999999997",
- "confidence": "1.000",
- "text": "someone",
- "offset": 83,
- "length": 7,
- "key": expect.any(String)//"gl6401u"
- },
- {
- "start": "396.47",
- "end": "396.71000000000004",
- "confidence": "1.000",
- "text": "about",
- "offset": 91,
- "length": 5,
- "key": expect.any(String)//"t2bxxwo"
- },
- {
- "start": "396.71",
- "end": "396.85999999999996",
- "confidence": "1.000",
- "text": "this",
- "offset": 97,
- "length": 4,
- "key": expect.any(String)//"uphhvg6"
- },
- {
- "start": "396.86",
- "end": "397.40000000000003",
- "confidence": "1.000",
- "text": "robot",
- "offset": 102,
- "length": 5,
- "key": expect.any(String)//"lbk425"
- },
- {
- "start": "398.24",
- "end": "398.36",
- "confidence": "1.000",
- "text": "and",
- "offset": 108,
- "length": 3,
- "key": expect.any(String)//"qeycd8m"
- },
- {
- "start": "398.36",
- "end": "398.54",
- "confidence": "1.000",
- "text": "her",
- "offset": 112,
- "length": 3,
- "key": expect.any(String)//"pj4tso"
- },
- {
- "start": "398.54",
- "end": "399.05",
- "confidence": "1.000",
- "text": "response",
- "offset": 116,
- "length": 8,
- "key": expect.any(String)//"x1vrmr"
- },
- {
- "start": "399.05",
- "end": "399.56",
- "confidence": "1.000",
- "text": "was.",
- "offset": 125,
- "length": 4,
- "key": expect.any(String)//"grt4b6"
- }
- ]
- },
- {
- "text": "Oh my gosh.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "400.40",
- "end": "400.48999999999995",
- "confidence": "1.000",
- "word": "oh",
- "punct": "Oh",
- "index": 1012
- },
- {
- "start": "400.49",
- "end": "400.64",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 1013
- },
- {
- "start": "400.64",
- "end": "401.3",
- "confidence": "1.000",
- "word": "gosh",
- "punct": "gosh.",
- "index": 1014
- }
- ],
- "start": "400.40"
- },
- "entityRanges": [
- {
- "start": "400.40",
- "end": "400.48999999999995",
- "confidence": "1.000",
- "text": "Oh",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"btjs8n9"
- },
- {
- "start": "400.49",
- "end": "400.64",
- "confidence": "1.000",
- "text": "my",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)//"8ac1b18"
- },
- {
- "start": "400.64",
- "end": "401.3",
- "confidence": "1.000",
- "text": "gosh.",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)//"ea8w3j4"
- }
- ]
- },
- {
- "text": "That's horrible.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "402.55",
- "end": "402.79",
- "confidence": "1.000",
- "word": "that's",
- "punct": "That's",
- "index": 1015
- },
- {
- "start": "402.79",
- "end": "403.89000000000004",
- "confidence": "1.000",
- "word": "horrible",
- "punct": "horrible.",
- "index": 1016
- }
- ],
- "start": "402.55"
- },
- "entityRanges": [
- {
- "start": "402.55",
- "end": "402.79",
- "confidence": "1.000",
- "text": "That's",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"762c0b"
- },
- {
- "start": "402.79",
- "end": "403.89000000000004",
- "confidence": "1.000",
- "text": "horrible.",
- "offset": 7,
- "length": 9,
- "key": expect.any(String)//"nzzf80b"
- }
- ]
- },
- {
- "text": "I can't believe we're giving people robots instead of human care.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "405.09",
- "end": "405.15",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 1017
- },
- {
- "start": "405.15",
- "end": "405.45",
- "confidence": "1.000",
- "word": "can't",
- "punct": "can't",
- "index": 1018
- },
- {
- "start": "405.45",
- "end": "405.78",
- "confidence": "1.000",
- "word": "believe",
- "punct": "believe",
- "index": 1019
- },
- {
- "start": "405.78",
- "end": "405.9",
- "confidence": "1.000",
- "word": "we're",
- "punct": "we're",
- "index": 1020
- },
- {
- "start": "405.90",
- "end": "406.16999999999996",
- "confidence": "1.000",
- "word": "giving",
- "punct": "giving",
- "index": 1021
- },
- {
- "start": "406.17",
- "end": "406.53000000000003",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 1022
- },
- {
- "start": "406.53",
- "end": "407.09999999999997",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1023
- },
- {
- "start": "407.13",
- "end": "407.46",
- "confidence": "1.000",
- "word": "instead",
- "punct": "instead",
- "index": 1024
- },
- {
- "start": "407.46",
- "end": "407.54999999999995",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1025
- },
- {
- "start": "407.55",
- "end": "407.91",
- "confidence": "1.000",
- "word": "human",
- "punct": "human",
- "index": 1026
- },
- {
- "start": "407.91",
- "end": "408.42",
- "confidence": "1.000",
- "word": "care",
- "punct": "care.",
- "index": 1027
- }
- ],
- "start": "405.09"
- },
- "entityRanges": [
- {
- "start": "405.09",
- "end": "405.15",
- "confidence": "1.000",
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"dyhb1"
- },
- {
- "start": "405.15",
- "end": "405.45",
- "confidence": "1.000",
- "text": "can't",
- "offset": 2,
- "length": 5,
- "key": expect.any(String)//"a2ju2ml"
- },
- {
- "start": "405.45",
- "end": "405.78",
- "confidence": "1.000",
- "text": "believe",
- "offset": 8,
- "length": 7,
- "key": expect.any(String)//"5hrd36s"
- },
- {
- "start": "405.78",
- "end": "405.9",
- "confidence": "1.000",
- "text": "we're",
- "offset": 16,
- "length": 5,
- "key": expect.any(String)//"r8glm1"
- },
- {
- "start": "405.90",
- "end": "406.16999999999996",
- "confidence": "1.000",
- "text": "giving",
- "offset": 22,
- "length": 6,
- "key": expect.any(String)//"j7q2wl"
- },
- {
- "start": "406.17",
- "end": "406.53000000000003",
- "confidence": "1.000",
- "text": "people",
- "offset": 29,
- "length": 6,
- "key": expect.any(String)//"bmtdnwc"
- },
- {
- "start": "406.53",
- "end": "407.09999999999997",
- "confidence": "1.000",
- "text": "robots",
- "offset": 36,
- "length": 6,
- "key": expect.any(String)//"40c6mzo"
- },
- {
- "start": "407.13",
- "end": "407.46",
- "confidence": "1.000",
- "text": "instead",
- "offset": 43,
- "length": 7,
- "key": expect.any(String)//"wdm4eu8"
- },
- {
- "start": "407.46",
- "end": "407.54999999999995",
- "confidence": "1.000",
- "text": "of",
- "offset": 51,
- "length": 2,
- "key": expect.any(String)//"3k6f2s"
- },
- {
- "start": "407.55",
- "end": "407.91",
- "confidence": "1.000",
- "text": "human",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"seyxgkl"
- },
- {
- "start": "407.91",
- "end": "408.42",
- "confidence": "1.000",
- "text": "care.",
- "offset": 60,
- "length": 5,
- "key": expect.any(String)//"jbxuvzr"
- }
- ]
- },
- {
- "text": "And this is a really common response.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "410.57",
- "end": "410.69",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1028
- },
- {
- "start": "410.69",
- "end": "410.84",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1029
- },
- {
- "start": "410.84",
- "end": "410.96",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1030
- },
- {
- "start": "410.96",
- "end": "411.02",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1031
- },
- {
- "start": "411.02",
- "end": "411.38",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 1032
- },
- {
- "start": "411.38",
- "end": "411.68",
- "confidence": "1.000",
- "word": "common",
- "punct": "common",
- "index": 1033
- },
- {
- "start": "411.68",
- "end": "412.42",
- "confidence": "1.000",
- "word": "response",
- "punct": "response.",
- "index": 1034
- }
- ],
- "start": "410.57"
- },
- "entityRanges": [
- {
- "start": "410.57",
- "end": "410.69",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"meem5yf"
- },
- {
- "start": "410.69",
- "end": "410.84",
- "confidence": "1.000",
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"yjd6agw"
- },
- {
- "start": "410.84",
- "end": "410.96",
- "confidence": "1.000",
- "text": "is",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"i4xe4jf"
- },
- {
- "start": "410.96",
- "end": "411.02",
- "confidence": "1.000",
- "text": "a",
- "offset": 12,
- "length": 1,
- "key": expect.any(String)//"rs6apzb"
- },
- {
- "start": "411.02",
- "end": "411.38",
- "confidence": "1.000",
- "text": "really",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)//"ig3b1al"
- },
- {
- "start": "411.38",
- "end": "411.68",
- "confidence": "1.000",
- "text": "common",
- "offset": 21,
- "length": 6,
- "key": expect.any(String)//"q7w48l8"
- },
- {
- "start": "411.68",
- "end": "412.42",
- "confidence": "1.000",
- "text": "response.",
- "offset": 28,
- "length": 9,
- "key": expect.any(String)//"c0g8ad"
- }
- ]
- },
- {
- "text": "And I think it's absolutely correct because that would be terrible but in this case it's not what this robot replaces with this robot replaces is animal therapy in contexts where we can't use real animals but we can use robots because people will consistently treat them like more like more like an animal than a device acknowledging this emotional connection to robots can also help us anticipate challenges as these devices move into more intimate areas of people's lives.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "412.46",
- "end": "412.66999999999996",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1035
- },
- {
- "start": "412.73",
- "end": "412.82",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 1036
- },
- {
- "start": "412.82",
- "end": "413.03",
- "confidence": "1.000",
- "word": "think",
- "punct": "think",
- "index": 1037
- },
- {
- "start": "413.03",
- "end": "413.15",
- "confidence": "0.990",
- "word": "it's",
- "punct": "it's",
- "index": 1038
- },
- {
- "start": "413.30",
- "end": "414.05",
- "confidence": "1.000",
- "word": "absolutely",
- "punct": "absolutely",
- "index": 1039
- },
- {
- "start": "414.05",
- "end": "414.68",
- "confidence": "1.000",
- "word": "correct",
- "punct": "correct",
- "index": 1040
- },
- {
- "start": "414.92",
- "end": "415.28000000000003",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 1041
- },
- {
- "start": "415.28",
- "end": "415.54999999999995",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1042
- },
- {
- "start": "415.55",
- "end": "415.85",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 1043
- },
- {
- "start": "415.85",
- "end": "416.15000000000003",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 1044
- },
- {
- "start": "416.15",
- "end": "416.92999999999995",
- "confidence": "1.000",
- "word": "terrible",
- "punct": "terrible",
- "index": 1045
- },
- {
- "start": "417.77",
- "end": "417.95",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 1046
- },
- {
- "start": "417.95",
- "end": "418.07",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 1047
- },
- {
- "start": "418.07",
- "end": "418.25",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1048
- },
- {
- "start": "418.25",
- "end": "418.46",
- "confidence": "1.000",
- "word": "case",
- "punct": "case",
- "index": 1049
- },
- {
- "start": "418.46",
- "end": "418.60999999999996",
- "confidence": "0.990",
- "word": "it's",
- "punct": "it's",
- "index": 1050
- },
- {
- "start": "418.61",
- "end": "418.82",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 1051
- },
- {
- "start": "418.82",
- "end": "418.94",
- "confidence": "0.970",
- "word": "what",
- "punct": "what",
- "index": 1052
- },
- {
- "start": "418.94",
- "end": "419.06",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1053
- },
- {
- "start": "419.06",
- "end": "419.42",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1054
- },
- {
- "start": "419.42",
- "end": "420.2",
- "confidence": "1.000",
- "word": "replaces",
- "punct": "replaces",
- "index": 1055
- },
- {
- "start": "420.74",
- "end": "420.98",
- "confidence": "0.660",
- "word": "with",
- "punct": "with",
- "index": 1056
- },
- {
- "start": "421.01",
- "end": "421.15999999999997",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1057
- },
- {
- "start": "421.16",
- "end": "421.55",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1058
- },
- {
- "start": "421.55",
- "end": "422.24",
- "confidence": "1.000",
- "word": "replaces",
- "punct": "replaces",
- "index": 1059
- },
- {
- "start": "422.30",
- "end": "422.48",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1060
- },
- {
- "start": "422.51",
- "end": "422.93",
- "confidence": "1.000",
- "word": "animal",
- "punct": "animal",
- "index": 1061
- },
- {
- "start": "422.93",
- "end": "423.56",
- "confidence": "1.000",
- "word": "therapy",
- "punct": "therapy",
- "index": 1062
- },
- {
- "start": "424.04",
- "end": "424.16",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 1063
- },
- {
- "start": "424.16",
- "end": "424.73",
- "confidence": "1.000",
- "word": "contexts",
- "punct": "contexts",
- "index": 1064
- },
- {
- "start": "424.76",
- "end": "424.88",
- "confidence": "1.000",
- "word": "where",
- "punct": "where",
- "index": 1065
- },
- {
- "start": "424.88",
- "end": "425.03",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1066
- },
- {
- "start": "425.03",
- "end": "425.47999999999996",
- "confidence": "1.000",
- "word": "can't",
- "punct": "can't",
- "index": 1067
- },
- {
- "start": "425.48",
- "end": "425.81",
- "confidence": "1.000",
- "word": "use",
- "punct": "use",
- "index": 1068
- },
- {
- "start": "425.81",
- "end": "426.08",
- "confidence": "1.000",
- "word": "real",
- "punct": "real",
- "index": 1069
- },
- {
- "start": "426.08",
- "end": "426.83",
- "confidence": "1.000",
- "word": "animals",
- "punct": "animals",
- "index": 1070
- },
- {
- "start": "427.16",
- "end": "427.31",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 1071
- },
- {
- "start": "427.31",
- "end": "427.46",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1072
- },
- {
- "start": "427.46",
- "end": "427.78999999999996",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 1073
- },
- {
- "start": "427.79",
- "end": "427.94",
- "confidence": "1.000",
- "word": "use",
- "punct": "use",
- "index": 1074
- },
- {
- "start": "427.94",
- "end": "428.36",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1075
- },
- {
- "start": "428.39",
- "end": "428.65999999999997",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 1076
- },
- {
- "start": "428.66",
- "end": "428.93",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 1077
- },
- {
- "start": "428.93",
- "end": "429.05",
- "confidence": "1.000",
- "word": "will",
- "punct": "will",
- "index": 1078
- },
- {
- "start": "429.05",
- "end": "429.95",
- "confidence": "1.000",
- "word": "consistently",
- "punct": "consistently",
- "index": 1079
- },
- {
- "start": "429.95",
- "end": "430.31",
- "confidence": "1.000",
- "word": "treat",
- "punct": "treat",
- "index": 1080
- },
- {
- "start": "430.31",
- "end": "430.61",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1081
- },
- {
- "start": "430.64",
- "end": "430.84999999999997",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 1082
- },
- {
- "start": "430.85",
- "end": "431.33000000000004",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1083
- },
- {
- "start": "431.59",
- "end": "431.65999999999997",
- "confidence": "0.550",
- "word": "like",
- "punct": "like",
- "index": 1084
- },
- {
- "start": "431.84",
- "end": "432.04999999999995",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1085
- },
- {
- "start": "432.05",
- "end": "432.23",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 1086
- },
- {
- "start": "432.23",
- "end": "432.32",
- "confidence": "1.000",
- "word": "an",
- "punct": "an",
- "index": 1087
- },
- {
- "start": "432.32",
- "end": "432.86",
- "confidence": "1.000",
- "word": "animal",
- "punct": "animal",
- "index": 1088
- },
- {
- "start": "432.89",
- "end": "433.07",
- "confidence": "1.000",
- "word": "than",
- "punct": "than",
- "index": 1089
- },
- {
- "start": "433.07",
- "end": "433.09999999999997",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1090
- },
- {
- "start": "433.10",
- "end": "433.61",
- "confidence": "1.000",
- "word": "device",
- "punct": "device",
- "index": 1091
- },
- {
- "start": "435.55",
- "end": "436.21000000000004",
- "confidence": "1.000",
- "word": "acknowledging",
- "punct": "acknowledging",
- "index": 1092
- },
- {
- "start": "436.21",
- "end": "436.39",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1093
- },
- {
- "start": "436.39",
- "end": "436.78",
- "confidence": "1.000",
- "word": "emotional",
- "punct": "emotional",
- "index": 1094
- },
- {
- "start": "436.78",
- "end": "437.2",
- "confidence": "1.000",
- "word": "connection",
- "punct": "connection",
- "index": 1095
- },
- {
- "start": "437.20",
- "end": "437.28999999999996",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1096
- },
- {
- "start": "437.29",
- "end": "437.59000000000003",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1097
- },
- {
- "start": "437.59",
- "end": "437.77",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 1098
- },
- {
- "start": "437.77",
- "end": "438.03999999999996",
- "confidence": "1.000",
- "word": "also",
- "punct": "also",
- "index": 1099
- },
- {
- "start": "438.04",
- "end": "438.25",
- "confidence": "1.000",
- "word": "help",
- "punct": "help",
- "index": 1100
- },
- {
- "start": "438.25",
- "end": "438.4",
- "confidence": "1.000",
- "word": "us",
- "punct": "us",
- "index": 1101
- },
- {
- "start": "438.40",
- "end": "438.90999999999997",
- "confidence": "1.000",
- "word": "anticipate",
- "punct": "anticipate",
- "index": 1102
- },
- {
- "start": "438.91",
- "end": "439.81",
- "confidence": "1.000",
- "word": "challenges",
- "punct": "challenges",
- "index": 1103
- },
- {
- "start": "439.93",
- "end": "440.14",
- "confidence": "1.000",
- "word": "as",
- "punct": "as",
- "index": 1104
- },
- {
- "start": "440.14",
- "end": "440.28999999999996",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 1105
- },
- {
- "start": "440.29",
- "end": "440.86",
- "confidence": "1.000",
- "word": "devices",
- "punct": "devices",
- "index": 1106
- },
- {
- "start": "440.86",
- "end": "441.22",
- "confidence": "1.000",
- "word": "move",
- "punct": "move",
- "index": 1107
- },
- {
- "start": "441.22",
- "end": "441.43",
- "confidence": "1.000",
- "word": "into",
- "punct": "into",
- "index": 1108
- },
- {
- "start": "441.43",
- "end": "441.58",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1109
- },
- {
- "start": "441.61",
- "end": "442",
- "confidence": "1.000",
- "word": "intimate",
- "punct": "intimate",
- "index": 1110
- },
- {
- "start": "442.00",
- "end": "442.36",
- "confidence": "1.000",
- "word": "areas",
- "punct": "areas",
- "index": 1111
- },
- {
- "start": "442.36",
- "end": "442.45",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1112
- },
- {
- "start": "442.45",
- "end": "442.78",
- "confidence": "1.000",
- "word": "people's",
- "punct": "people's",
- "index": 1113
- },
- {
- "start": "442.78",
- "end": "443.85999999999996",
- "confidence": "1.000",
- "word": "lives",
- "punct": "lives.",
- "index": 1114
- }
- ],
- "start": "412.46"
- },
- "entityRanges": [
- {
- "start": "412.46",
- "end": "412.66999999999996",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"7y7o5ho"
- },
- {
- "start": "412.73",
- "end": "412.82",
- "confidence": "1.000",
- "text": "I",
- "offset": 4,
- "length": 1,
- "key": expect.any(String)//"sy80pxq"
- },
- {
- "start": "412.82",
- "end": "413.03",
- "confidence": "1.000",
- "text": "think",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)//"qjqxuw"
- },
- {
- "start": "413.03",
- "end": "413.15",
- "confidence": "0.990",
- "text": "it's",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"uc28s1v"
- },
- {
- "start": "413.30",
- "end": "414.05",
- "confidence": "1.000",
- "text": "absolutely",
- "offset": 17,
- "length": 10,
- "key": expect.any(String)//"lphfxci"
- },
- {
- "start": "414.05",
- "end": "414.68",
- "confidence": "1.000",
- "text": "correct",
- "offset": 28,
- "length": 7,
- "key": expect.any(String)//"v7x2idn"
- },
- {
- "start": "414.92",
- "end": "415.28000000000003",
- "confidence": "1.000",
- "text": "because",
- "offset": 36,
- "length": 7,
- "key": expect.any(String)//"gx0pn8"
- },
- {
- "start": "415.28",
- "end": "415.54999999999995",
- "confidence": "1.000",
- "text": "that",
- "offset": 44,
- "length": 4,
- "key": expect.any(String)//"4189ey"
- },
- {
- "start": "415.55",
- "end": "415.85",
- "confidence": "1.000",
- "text": "would",
- "offset": 49,
- "length": 5,
- "key": expect.any(String)//"4jt4xah"
- },
- {
- "start": "415.85",
- "end": "416.15000000000003",
- "confidence": "1.000",
- "text": "be",
- "offset": 55,
- "length": 2,
- "key": expect.any(String)//"3vrsm3g"
- },
- {
- "start": "416.15",
- "end": "416.92999999999995",
- "confidence": "1.000",
- "text": "terrible",
- "offset": 58,
- "length": 8,
- "key": expect.any(String)//"5zjbies"
- },
- {
- "start": "417.77",
- "end": "417.95",
- "confidence": "1.000",
- "text": "but",
- "offset": 67,
- "length": 3,
- "key": expect.any(String)//"eyja0gs"
- },
- {
- "start": "417.95",
- "end": "418.07",
- "confidence": "1.000",
- "text": "in",
- "offset": 71,
- "length": 2,
- "key": expect.any(String)//"1jpbw"
- },
- {
- "start": "418.07",
- "end": "418.25",
- "confidence": "1.000",
- "text": "this",
- "offset": 74,
- "length": 4,
- "key": expect.any(String)//"5pi8hvv"
- },
- {
- "start": "418.25",
- "end": "418.46",
- "confidence": "1.000",
- "text": "case",
- "offset": 79,
- "length": 4,
- "key": expect.any(String)//"yefwhhv"
- },
- {
- "start": "418.46",
- "end": "418.60999999999996",
- "confidence": "0.990",
- "text": "it's",
- "offset": 84,
- "length": 4,
- "key": expect.any(String)//"hqvp2pb"
- },
- {
- "start": "418.61",
- "end": "418.82",
- "confidence": "1.000",
- "text": "not",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)//"ox17wpb"
- },
- {
- "start": "418.82",
- "end": "418.94",
- "confidence": "0.970",
- "text": "what",
- "offset": 93,
- "length": 4,
- "key": expect.any(String)//"m3ycbzl"
- },
- {
- "start": "418.94",
- "end": "419.06",
- "confidence": "1.000",
- "text": "this",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"39zgcv"
- },
- {
- "start": "419.06",
- "end": "419.42",
- "confidence": "1.000",
- "text": "robot",
- "offset": 103,
- "length": 5,
- "key": expect.any(String)//"6kivcrq"
- },
- {
- "start": "419.42",
- "end": "420.2",
- "confidence": "1.000",
- "text": "replaces",
- "offset": 109,
- "length": 8,
- "key": expect.any(String)//"26417q"
- },
- {
- "start": "420.74",
- "end": "420.98",
- "confidence": "0.660",
- "text": "with",
- "offset": 118,
- "length": 4,
- "key": expect.any(String)//"i7jt7b"
- },
- {
- "start": "421.01",
- "end": "421.15999999999997",
- "confidence": "1.000",
- "text": "this",
- "offset": 123,
- "length": 4,
- "key": expect.any(String)//"yxtto6q"
- },
- {
- "start": "421.16",
- "end": "421.55",
- "confidence": "1.000",
- "text": "robot",
- "offset": 128,
- "length": 5,
- "key": expect.any(String)//"5qffcnh"
- },
- {
- "start": "421.55",
- "end": "422.24",
- "confidence": "1.000",
- "text": "replaces",
- "offset": 134,
- "length": 8,
- "key": expect.any(String)//"0ue11p"
- },
- {
- "start": "422.30",
- "end": "422.48",
- "confidence": "1.000",
- "text": "is",
- "offset": 143,
- "length": 2,
- "key": expect.any(String)//"kwovtuv"
- },
- {
- "start": "422.51",
- "end": "422.93",
- "confidence": "1.000",
- "text": "animal",
- "offset": 146,
- "length": 6,
- "key": expect.any(String)//"jvmz5dw"
- },
- {
- "start": "422.93",
- "end": "423.56",
- "confidence": "1.000",
- "text": "therapy",
- "offset": 153,
- "length": 7,
- "key": expect.any(String)//"z3yx4d7"
- },
- {
- "start": "424.04",
- "end": "424.16",
- "confidence": "1.000",
- "text": "in",
- "offset": 161,
- "length": 2,
- "key": expect.any(String)//"8kh1vlr"
- },
- {
- "start": "424.16",
- "end": "424.73",
- "confidence": "1.000",
- "text": "contexts",
- "offset": 164,
- "length": 8,
- "key": expect.any(String)//"3cmiviq"
- },
- {
- "start": "424.76",
- "end": "424.88",
- "confidence": "1.000",
- "text": "where",
- "offset": 173,
- "length": 5,
- "key": expect.any(String)//"jo5f8sl"
- },
- {
- "start": "424.88",
- "end": "425.03",
- "confidence": "1.000",
- "text": "we",
- "offset": 179,
- "length": 2,
- "key": expect.any(String)//"9msbaz"
- },
- {
- "start": "425.03",
- "end": "425.47999999999996",
- "confidence": "1.000",
- "text": "can't",
- "offset": 182,
- "length": 5,
- "key": expect.any(String)//"ilpji9"
- },
- {
- "start": "425.48",
- "end": "425.81",
- "confidence": "1.000",
- "text": "use",
- "offset": 188,
- "length": 3,
- "key": expect.any(String)//"27v1uzi"
- },
- {
- "start": "425.81",
- "end": "426.08",
- "confidence": "1.000",
- "text": "real",
- "offset": 192,
- "length": 4,
- "key": expect.any(String)//"r5t6zcn"
- },
- {
- "start": "426.08",
- "end": "426.83",
- "confidence": "1.000",
- "text": "animals",
- "offset": 197,
- "length": 7,
- "key": expect.any(String)//"pnhxy0d"
- },
- {
- "start": "427.16",
- "end": "427.31",
- "confidence": "1.000",
- "text": "but",
- "offset": 205,
- "length": 3,
- "key": expect.any(String)//"g200rh"
- },
- {
- "start": "427.31",
- "end": "427.46",
- "confidence": "1.000",
- "text": "we",
- "offset": 209,
- "length": 2,
- "key": expect.any(String)//"q8t9jlf"
- },
- {
- "start": "427.46",
- "end": "427.78999999999996",
- "confidence": "1.000",
- "text": "can",
- "offset": 212,
- "length": 3,
- "key": expect.any(String)//"v853mrm"
- },
- {
- "start": "427.79",
- "end": "427.94",
- "confidence": "1.000",
- "text": "use",
- "offset": 216,
- "length": 3,
- "key": expect.any(String)//"g24i4ig"
- },
- {
- "start": "427.94",
- "end": "428.36",
- "confidence": "1.000",
- "text": "robots",
- "offset": 220,
- "length": 6,
- "key": expect.any(String)//"enz01bd"
- },
- {
- "start": "428.39",
- "end": "428.65999999999997",
- "confidence": "1.000",
- "text": "because",
- "offset": 227,
- "length": 7,
- "key": expect.any(String)//"sj7ni6q"
- },
- {
- "start": "428.66",
- "end": "428.93",
- "confidence": "1.000",
- "text": "people",
- "offset": 235,
- "length": 6,
- "key": expect.any(String)//"bps2a7"
- },
- {
- "start": "428.93",
- "end": "429.05",
- "confidence": "1.000",
- "text": "will",
- "offset": 242,
- "length": 4,
- "key": expect.any(String)//"7n4s0m3"
- },
- {
- "start": "429.05",
- "end": "429.95",
- "confidence": "1.000",
- "text": "consistently",
- "offset": 247,
- "length": 12,
- "key": expect.any(String)//"jgg8ad"
- },
- {
- "start": "429.95",
- "end": "430.31",
- "confidence": "1.000",
- "text": "treat",
- "offset": 260,
- "length": 5,
- "key": expect.any(String)//"t9hak6n"
- },
- {
- "start": "430.31",
- "end": "430.61",
- "confidence": "1.000",
- "text": "them",
- "offset": 266,
- "length": 4,
- "key": expect.any(String)//"n4b1vlw"
- },
- {
- "start": "430.64",
- "end": "430.84999999999997",
- "confidence": "1.000",
- "text": "like",
- "offset": 271,
- "length": 4,
- "key": expect.any(String)//"sngfodj"
- },
- {
- "start": "430.85",
- "end": "431.33000000000004",
- "confidence": "1.000",
- "text": "more",
- "offset": 276,
- "length": 4,
- "key": expect.any(String)//"87oma4t"
- },
- {
- "start": "431.59",
- "end": "431.65999999999997",
- "confidence": "0.550",
- "text": "like",
- "offset": 281,
- "length": 4,
- "key": expect.any(String)//"v3we8k"
- },
- {
- "start": "431.84",
- "end": "432.04999999999995",
- "confidence": "1.000",
- "text": "more",
- "offset": 286,
- "length": 4,
- "key": expect.any(String)//"0x3imtx"
- },
- {
- "start": "432.05",
- "end": "432.23",
- "confidence": "1.000",
- "text": "like",
- "offset": 291,
- "length": 4,
- "key": expect.any(String)//"qj5vzy9"
- },
- {
- "start": "432.23",
- "end": "432.32",
- "confidence": "1.000",
- "text": "an",
- "offset": 296,
- "length": 2,
- "key": expect.any(String)//"qkrhtw"
- },
- {
- "start": "432.32",
- "end": "432.86",
- "confidence": "1.000",
- "text": "animal",
- "offset": 299,
- "length": 6,
- "key": expect.any(String)//"zmunip6"
- },
- {
- "start": "432.89",
- "end": "433.07",
- "confidence": "1.000",
- "text": "than",
- "offset": 306,
- "length": 4,
- "key": expect.any(String)//"agjgvhi"
- },
- {
- "start": "433.07",
- "end": "433.09999999999997",
- "confidence": "1.000",
- "text": "a",
- "offset": 311,
- "length": 1,
- "key": expect.any(String)//"944xusu"
- },
- {
- "start": "433.10",
- "end": "433.61",
- "confidence": "1.000",
- "text": "device",
- "offset": 313,
- "length": 6,
- "key": expect.any(String)//"c6wcows"
- },
- {
- "start": "435.55",
- "end": "436.21000000000004",
- "confidence": "1.000",
- "text": "acknowledging",
- "offset": 320,
- "length": 13,
- "key": expect.any(String)//"76jiqv"
- },
- {
- "start": "436.21",
- "end": "436.39",
- "confidence": "1.000",
- "text": "this",
- "offset": 334,
- "length": 4,
- "key": expect.any(String)//"r5276w7"
- },
- {
- "start": "436.39",
- "end": "436.78",
- "confidence": "1.000",
- "text": "emotional",
- "offset": 339,
- "length": 9,
- "key": expect.any(String)//"uln534f"
- },
- {
- "start": "436.78",
- "end": "437.2",
- "confidence": "1.000",
- "text": "connection",
- "offset": 349,
- "length": 10,
- "key": expect.any(String)//"r866zmi"
- },
- {
- "start": "437.20",
- "end": "437.28999999999996",
- "confidence": "1.000",
- "text": "to",
- "offset": 360,
- "length": 2,
- "key": expect.any(String)//"46proll"
- },
- {
- "start": "437.29",
- "end": "437.59000000000003",
- "confidence": "1.000",
- "text": "robots",
- "offset": 363,
- "length": 6,
- "key": expect.any(String)//"18k9wa"
- },
- {
- "start": "437.59",
- "end": "437.77",
- "confidence": "1.000",
- "text": "can",
- "offset": 370,
- "length": 3,
- "key": expect.any(String)//"x9m8qmj"
- },
- {
- "start": "437.77",
- "end": "438.03999999999996",
- "confidence": "1.000",
- "text": "also",
- "offset": 374,
- "length": 4,
- "key": expect.any(String)//"ar6p5l"
- },
- {
- "start": "438.04",
- "end": "438.25",
- "confidence": "1.000",
- "text": "help",
- "offset": 379,
- "length": 4,
- "key": expect.any(String)//"11aqi44"
- },
- {
- "start": "438.25",
- "end": "438.4",
- "confidence": "1.000",
- "text": "us",
- "offset": 384,
- "length": 2,
- "key": expect.any(String)//"8j1kw"
- },
- {
- "start": "438.40",
- "end": "438.90999999999997",
- "confidence": "1.000",
- "text": "anticipate",
- "offset": 387,
- "length": 10,
- "key": expect.any(String)//"3xyvkza"
- },
- {
- "start": "438.91",
- "end": "439.81",
- "confidence": "1.000",
- "text": "challenges",
- "offset": 398,
- "length": 10,
- "key": expect.any(String)//"snon4h"
- },
- {
- "start": "439.93",
- "end": "440.14",
- "confidence": "1.000",
- "text": "as",
- "offset": 409,
- "length": 2,
- "key": expect.any(String)//"u14bxko"
- },
- {
- "start": "440.14",
- "end": "440.28999999999996",
- "confidence": "1.000",
- "text": "these",
- "offset": 412,
- "length": 5,
- "key": expect.any(String)//"kl14z5"
- },
- {
- "start": "440.29",
- "end": "440.86",
- "confidence": "1.000",
- "text": "devices",
- "offset": 418,
- "length": 7,
- "key": expect.any(String)//"1x8w94q"
- },
- {
- "start": "440.86",
- "end": "441.22",
- "confidence": "1.000",
- "text": "move",
- "offset": 426,
- "length": 4,
- "key": expect.any(String)//"0m8kqrw"
- },
- {
- "start": "441.22",
- "end": "441.43",
- "confidence": "1.000",
- "text": "into",
- "offset": 431,
- "length": 4,
- "key": expect.any(String)//"yf3t8sq"
- },
- {
- "start": "441.43",
- "end": "441.58",
- "confidence": "1.000",
- "text": "more",
- "offset": 436,
- "length": 4,
- "key": expect.any(String)//"c82htsk"
- },
- {
- "start": "441.61",
- "end": "442",
- "confidence": "1.000",
- "text": "intimate",
- "offset": 441,
- "length": 8,
- "key": expect.any(String)//"nfkrvv3"
- },
- {
- "start": "442.00",
- "end": "442.36",
- "confidence": "1.000",
- "text": "areas",
- "offset": 450,
- "length": 5,
- "key": expect.any(String)//"0bj5m1r"
- },
- {
- "start": "442.36",
- "end": "442.45",
- "confidence": "1.000",
- "text": "of",
- "offset": 456,
- "length": 2,
- "key": expect.any(String)//"nsc5jyk"
- },
- {
- "start": "442.45",
- "end": "442.78",
- "confidence": "1.000",
- "text": "people's",
- "offset": 459,
- "length": 8,
- "key": expect.any(String)//"f27eo5"
- },
- {
- "start": "442.78",
- "end": "443.85999999999996",
- "confidence": "1.000",
- "text": "lives.",
- "offset": 468,
- "length": 6,
- "key": expect.any(String)//"xvnpsp7"
- }
- ]
- },
- {
- "text": "For example Is it okay if your child's teddy bear robot records private conversations.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "444.13",
- "end": "444.25",
- "confidence": "1.000",
- "word": "for",
- "punct": "For",
- "index": 1115
- },
- {
- "start": "444.25",
- "end": "444.79",
- "confidence": "1.000",
- "word": "example",
- "punct": "example",
- "index": 1116
- },
- {
- "start": "444.85",
- "end": "445",
- "confidence": "1.000",
- "word": "is",
- "punct": "Is",
- "index": 1117
- },
- {
- "start": "445.00",
- "end": "445.09",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 1118
- },
- {
- "start": "445.09",
- "end": "445.5",
- "confidence": "0.610",
- "word": "okay",
- "punct": "okay",
- "index": 1119
- },
- {
- "start": "445.51",
- "end": "445.63",
- "confidence": "0.980",
- "word": "if",
- "punct": "if",
- "index": 1120
- },
- {
- "start": "445.63",
- "end": "445.75",
- "confidence": "1.000",
- "word": "your",
- "punct": "your",
- "index": 1121
- },
- {
- "start": "445.75",
- "end": "446.35",
- "confidence": "1.000",
- "word": "child's",
- "punct": "child's",
- "index": 1122
- },
- {
- "start": "446.68",
- "end": "447.01",
- "confidence": "1.000",
- "word": "teddy",
- "punct": "teddy",
- "index": 1123
- },
- {
- "start": "447.01",
- "end": "447.19",
- "confidence": "1.000",
- "word": "bear",
- "punct": "bear",
- "index": 1124
- },
- {
- "start": "447.19",
- "end": "447.55",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1125
- },
- {
- "start": "447.55",
- "end": "447.88",
- "confidence": "1.000",
- "word": "records",
- "punct": "records",
- "index": 1126
- },
- {
- "start": "447.88",
- "end": "448.21",
- "confidence": "1.000",
- "word": "private",
- "punct": "private",
- "index": 1127
- },
- {
- "start": "448.21",
- "end": "449.7",
- "confidence": "1.000",
- "word": "conversations",
- "punct": "conversations.",
- "index": 1128
- }
- ],
- "start": "444.13"
- },
- "entityRanges": [
- {
- "start": "444.13",
- "end": "444.25",
- "confidence": "1.000",
- "text": "For",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"iqli4rl"
- },
- {
- "start": "444.25",
- "end": "444.79",
- "confidence": "1.000",
- "text": "example",
- "offset": 4,
- "length": 7,
- "key": expect.any(String)//"9czmv3k"
- },
- {
- "start": "444.85",
- "end": "445",
- "confidence": "1.000",
- "text": "Is",
- "offset": 12,
- "length": 2,
- "key": expect.any(String)//"4jz28qm"
- },
- {
- "start": "445.00",
- "end": "445.09",
- "confidence": "1.000",
- "text": "it",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"k00d219"
- },
- {
- "start": "445.09",
- "end": "445.5",
- "confidence": "0.610",
- "text": "okay",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"2oalpwc"
- },
- {
- "start": "445.51",
- "end": "445.63",
- "confidence": "0.980",
- "text": "if",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"z4abxpm"
- },
- {
- "start": "445.63",
- "end": "445.75",
- "confidence": "1.000",
- "text": "your",
- "offset": 26,
- "length": 4,
- "key": expect.any(String)//"nq05dp5"
- },
- {
- "start": "445.75",
- "end": "446.35",
- "confidence": "1.000",
- "text": "child's",
- "offset": 31,
- "length": 7,
- "key": expect.any(String)//"ipnp8p"
- },
- {
- "start": "446.68",
- "end": "447.01",
- "confidence": "1.000",
- "text": "teddy",
- "offset": 39,
- "length": 5,
- "key": expect.any(String)//"gp6hb9"
- },
- {
- "start": "447.01",
- "end": "447.19",
- "confidence": "1.000",
- "text": "bear",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"4n3j4a"
- },
- {
- "start": "447.19",
- "end": "447.55",
- "confidence": "1.000",
- "text": "robot",
- "offset": 50,
- "length": 5,
- "key": expect.any(String)//"ke9rv9o"
- },
- {
- "start": "447.55",
- "end": "447.88",
- "confidence": "1.000",
- "text": "records",
- "offset": 56,
- "length": 7,
- "key": expect.any(String)//"cifez6"
- },
- {
- "start": "447.88",
- "end": "448.21",
- "confidence": "1.000",
- "text": "private",
- "offset": 64,
- "length": 7,
- "key": expect.any(String)//"2l8h2tn"
- },
- {
- "start": "448.21",
- "end": "449.7",
- "confidence": "1.000",
- "text": "conversations.",
- "offset": 72,
- "length": 14,
- "key": expect.any(String)//"h1itcx9"
- }
- ]
- },
- {
- "text": "Is it okay if your sex robot has compelling in app purchases because robots plus Capitalism equals questions around consumer protection and privacy.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "449.80",
- "end": "449.92",
- "confidence": "1.000",
- "word": "is",
- "punct": "Is",
- "index": 1129
- },
- {
- "start": "449.92",
- "end": "450.01",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 1130
- },
- {
- "start": "450.01",
- "end": "450.28",
- "confidence": "0.840",
- "word": "okay",
- "punct": "okay",
- "index": 1131
- },
- {
- "start": "450.31",
- "end": "450.4",
- "confidence": "1.000",
- "word": "if",
- "punct": "if",
- "index": 1132
- },
- {
- "start": "450.40",
- "end": "450.53999999999996",
- "confidence": "0.720",
- "word": "your",
- "punct": "your",
- "index": 1133
- },
- {
- "start": "450.55",
- "end": "451.03000000000003",
- "confidence": "1.000",
- "word": "sex",
- "punct": "sex",
- "index": 1134
- },
- {
- "start": "451.03",
- "end": "451.41999999999996",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1135
- },
- {
- "start": "451.45",
- "end": "451.65999999999997",
- "confidence": "1.000",
- "word": "has",
- "punct": "has",
- "index": 1136
- },
- {
- "start": "451.66",
- "end": "452.32000000000005",
- "confidence": "1.000",
- "word": "compelling",
- "punct": "compelling",
- "index": 1137
- },
- {
- "start": "452.32",
- "end": "452.56",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 1138
- },
- {
- "start": "452.56",
- "end": "452.8",
- "confidence": "1.000",
- "word": "app",
- "punct": "app",
- "index": 1139
- },
- {
- "start": "452.80",
- "end": "453.73",
- "confidence": "1.000",
- "word": "purchases",
- "punct": "purchases",
- "index": 1140
- },
- {
- "start": "455.29",
- "end": "455.68",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 1141
- },
- {
- "start": "455.68",
- "end": "456.31",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1142
- },
- {
- "start": "456.31",
- "end": "456.64",
- "confidence": "0.850",
- "word": "plus",
- "punct": "plus",
- "index": 1143
- },
- {
- "start": "456.64",
- "end": "457.75",
- "confidence": "1.000",
- "word": "capitalism",
- "punct": "Capitalism",
- "index": 1144
- },
- {
- "start": "457.84",
- "end": "458.16999999999996",
- "confidence": "1.000",
- "word": "equals",
- "punct": "equals",
- "index": 1145
- },
- {
- "start": "458.17",
- "end": "458.89000000000004",
- "confidence": "1.000",
- "word": "questions",
- "punct": "questions",
- "index": 1146
- },
- {
- "start": "458.95",
- "end": "459.46",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 1147
- },
- {
- "start": "459.73",
- "end": "460.18",
- "confidence": "1.000",
- "word": "consumer",
- "punct": "consumer",
- "index": 1148
- },
- {
- "start": "460.18",
- "end": "460.81",
- "confidence": "1.000",
- "word": "protection",
- "punct": "protection",
- "index": 1149
- },
- {
- "start": "460.81",
- "end": "460.9",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1150
- },
- {
- "start": "460.90",
- "end": "462.13",
- "confidence": "1.000",
- "word": "privacy",
- "punct": "privacy.",
- "index": 1151
- }
- ],
- "start": "449.80"
- },
- "entityRanges": [
- {
- "start": "449.80",
- "end": "449.92",
- "confidence": "1.000",
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"e7qft3k"
- },
- {
- "start": "449.92",
- "end": "450.01",
- "confidence": "1.000",
- "text": "it",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)//"nw5vpw5"
- },
- {
- "start": "450.01",
- "end": "450.28",
- "confidence": "0.840",
- "text": "okay",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"onmy64"
- },
- {
- "start": "450.31",
- "end": "450.4",
- "confidence": "1.000",
- "text": "if",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"xmzby9"
- },
- {
- "start": "450.40",
- "end": "450.53999999999996",
- "confidence": "0.720",
- "text": "your",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"7wxrppq"
- },
- {
- "start": "450.55",
- "end": "451.03000000000003",
- "confidence": "1.000",
- "text": "sex",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"uipkaql"
- },
- {
- "start": "451.03",
- "end": "451.41999999999996",
- "confidence": "1.000",
- "text": "robot",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"5y6prp5"
- },
- {
- "start": "451.45",
- "end": "451.65999999999997",
- "confidence": "1.000",
- "text": "has",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"t0xsjoa"
- },
- {
- "start": "451.66",
- "end": "452.32000000000005",
- "confidence": "1.000",
- "text": "compelling",
- "offset": 33,
- "length": 10,
- "key": expect.any(String)//"zq9odx7"
- },
- {
- "start": "452.32",
- "end": "452.56",
- "confidence": "1.000",
- "text": "in",
- "offset": 44,
- "length": 2,
- "key": expect.any(String)//"8w55si"
- },
- {
- "start": "452.56",
- "end": "452.8",
- "confidence": "1.000",
- "text": "app",
- "offset": 47,
- "length": 3,
- "key": expect.any(String)//"nvx6wf"
- },
- {
- "start": "452.80",
- "end": "453.73",
- "confidence": "1.000",
- "text": "purchases",
- "offset": 51,
- "length": 9,
- "key": expect.any(String)//"k22hjab"
- },
- {
- "start": "455.29",
- "end": "455.68",
- "confidence": "1.000",
- "text": "because",
- "offset": 61,
- "length": 7,
- "key": expect.any(String)//"8yniapo"
- },
- {
- "start": "455.68",
- "end": "456.31",
- "confidence": "1.000",
- "text": "robots",
- "offset": 69,
- "length": 6,
- "key": expect.any(String)//"pew8047"
- },
- {
- "start": "456.31",
- "end": "456.64",
- "confidence": "0.850",
- "text": "plus",
- "offset": 76,
- "length": 4,
- "key": expect.any(String)//"554l89"
- },
- {
- "start": "456.64",
- "end": "457.75",
- "confidence": "1.000",
- "text": "Capitalism",
- "offset": 81,
- "length": 10,
- "key": expect.any(String)//"0675rnv"
- },
- {
- "start": "457.84",
- "end": "458.16999999999996",
- "confidence": "1.000",
- "text": "equals",
- "offset": 92,
- "length": 6,
- "key": expect.any(String)//"tkuint"
- },
- {
- "start": "458.17",
- "end": "458.89000000000004",
- "confidence": "1.000",
- "text": "questions",
- "offset": 99,
- "length": 9,
- "key": expect.any(String)//"lziesru"
- },
- {
- "start": "458.95",
- "end": "459.46",
- "confidence": "1.000",
- "text": "around",
- "offset": 109,
- "length": 6,
- "key": expect.any(String)//"ihfy43m"
- },
- {
- "start": "459.73",
- "end": "460.18",
- "confidence": "1.000",
- "text": "consumer",
- "offset": 116,
- "length": 8,
- "key": expect.any(String)//"mds263e"
- },
- {
- "start": "460.18",
- "end": "460.81",
- "confidence": "1.000",
- "text": "protection",
- "offset": 125,
- "length": 10,
- "key": expect.any(String)//"zo46a09"
- },
- {
- "start": "460.81",
- "end": "460.9",
- "confidence": "1.000",
- "text": "and",
- "offset": 136,
- "length": 3,
- "key": expect.any(String)//"08rmbt"
- },
- {
- "start": "460.90",
- "end": "462.13",
- "confidence": "1.000",
- "text": "privacy.",
- "offset": 140,
- "length": 8,
- "key": expect.any(String)//"xdis1gc"
- }
- ]
- },
- {
- "text": "And those aren't the only reasons that our behavior around these machines could matter.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "462.61",
- "end": "462.7",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1152
- },
- {
- "start": "462.70",
- "end": "462.90999999999997",
- "confidence": "1.000",
- "word": "those",
- "punct": "those",
- "index": 1153
- },
- {
- "start": "462.91",
- "end": "463.12",
- "confidence": "1.000",
- "word": "aren't",
- "punct": "aren't",
- "index": 1154
- },
- {
- "start": "463.12",
- "end": "463.27",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1155
- },
- {
- "start": "463.27",
- "end": "463.53999999999996",
- "confidence": "1.000",
- "word": "only",
- "punct": "only",
- "index": 1156
- },
- {
- "start": "463.54",
- "end": "463.96000000000004",
- "confidence": "1.000",
- "word": "reasons",
- "punct": "reasons",
- "index": 1157
- },
- {
- "start": "463.96",
- "end": "464.08",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1158
- },
- {
- "start": "464.08",
- "end": "464.16999999999996",
- "confidence": "0.940",
- "word": "our",
- "punct": "our",
- "index": 1159
- },
- {
- "start": "464.17",
- "end": "464.8",
- "confidence": "0.870",
- "word": "behavior",
- "punct": "behavior",
- "index": 1160
- },
- {
- "start": "464.80",
- "end": "465.04",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 1161
- },
- {
- "start": "465.04",
- "end": "465.19",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 1162
- },
- {
- "start": "465.19",
- "end": "465.64",
- "confidence": "1.000",
- "word": "machines",
- "punct": "machines",
- "index": 1163
- },
- {
- "start": "465.64",
- "end": "465.82",
- "confidence": "1.000",
- "word": "could",
- "punct": "could",
- "index": 1164
- },
- {
- "start": "465.82",
- "end": "466.24",
- "confidence": "1.000",
- "word": "matter",
- "punct": "matter.",
- "index": 1165
- }
- ],
- "start": "462.61"
- },
- "entityRanges": [
- {
- "start": "462.61",
- "end": "462.7",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"qs0dcwm"
- },
- {
- "start": "462.70",
- "end": "462.90999999999997",
- "confidence": "1.000",
- "text": "those",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)//"2aib8om"
- },
- {
- "start": "462.91",
- "end": "463.12",
- "confidence": "1.000",
- "text": "aren't",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)//"139od5e"
- },
- {
- "start": "463.12",
- "end": "463.27",
- "confidence": "1.000",
- "text": "the",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"2kzp1m"
- },
- {
- "start": "463.27",
- "end": "463.53999999999996",
- "confidence": "1.000",
- "text": "only",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"kwf564m"
- },
- {
- "start": "463.54",
- "end": "463.96000000000004",
- "confidence": "1.000",
- "text": "reasons",
- "offset": 26,
- "length": 7,
- "key": expect.any(String)//"94x84ih"
- },
- {
- "start": "463.96",
- "end": "464.08",
- "confidence": "1.000",
- "text": "that",
- "offset": 34,
- "length": 4,
- "key": expect.any(String)//"1tzuun"
- },
- {
- "start": "464.08",
- "end": "464.16999999999996",
- "confidence": "0.940",
- "text": "our",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"wk67anf"
- },
- {
- "start": "464.17",
- "end": "464.8",
- "confidence": "0.870",
- "text": "behavior",
- "offset": 43,
- "length": 8,
- "key": expect.any(String)//"kwjs4y"
- },
- {
- "start": "464.80",
- "end": "465.04",
- "confidence": "1.000",
- "text": "around",
- "offset": 52,
- "length": 6,
- "key": expect.any(String)//"mb5zoj8"
- },
- {
- "start": "465.04",
- "end": "465.19",
- "confidence": "1.000",
- "text": "these",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)//"uv6c0r9"
- },
- {
- "start": "465.19",
- "end": "465.64",
- "confidence": "1.000",
- "text": "machines",
- "offset": 65,
- "length": 8,
- "key": expect.any(String)//"4elmxq2"
- },
- {
- "start": "465.64",
- "end": "465.82",
- "confidence": "1.000",
- "text": "could",
- "offset": 74,
- "length": 5,
- "key": expect.any(String)//"72e1oa"
- },
- {
- "start": "465.82",
- "end": "466.24",
- "confidence": "1.000",
- "text": "matter.",
- "offset": 80,
- "length": 7,
- "key": expect.any(String)//"zgmnob"
- }
- ]
- },
- {
- "text": "A few years after that first initial experience I had with this baby dinosaur robot.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "468.79",
- "end": "468.85",
- "confidence": "0.990",
- "word": "a",
- "punct": "A",
- "index": 1166
- },
- {
- "start": "468.85",
- "end": "469.09000000000003",
- "confidence": "1.000",
- "word": "few",
- "punct": "few",
- "index": 1167
- },
- {
- "start": "469.09",
- "end": "469.35999999999996",
- "confidence": "1.000",
- "word": "years",
- "punct": "years",
- "index": 1168
- },
- {
- "start": "469.36",
- "end": "470.05",
- "confidence": "1.000",
- "word": "after",
- "punct": "after",
- "index": 1169
- },
- {
- "start": "470.17",
- "end": "470.35",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1170
- },
- {
- "start": "470.35",
- "end": "470.71000000000004",
- "confidence": "1.000",
- "word": "first",
- "punct": "first",
- "index": 1171
- },
- {
- "start": "470.71",
- "end": "471.09999999999997",
- "confidence": "1.000",
- "word": "initial",
- "punct": "initial",
- "index": 1172
- },
- {
- "start": "471.10",
- "end": "471.73",
- "confidence": "1.000",
- "word": "experience",
- "punct": "experience",
- "index": 1173
- },
- {
- "start": "471.73",
- "end": "471.79",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 1174
- },
- {
- "start": "471.79",
- "end": "472.06",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 1175
- },
- {
- "start": "472.06",
- "end": "472.21",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1176
- },
- {
- "start": "472.21",
- "end": "472.41999999999996",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1177
- },
- {
- "start": "472.42",
- "end": "472.69",
- "confidence": "1.000",
- "word": "baby",
- "punct": "baby",
- "index": 1178
- },
- {
- "start": "472.69",
- "end": "473.11",
- "confidence": "1.000",
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 1179
- },
- {
- "start": "473.11",
- "end": "474.43",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot.",
- "index": 1180
- }
- ],
- "start": "468.79"
- },
- "entityRanges": [
- {
- "start": "468.79",
- "end": "468.85",
- "confidence": "0.990",
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"w71nlik"
- },
- {
- "start": "468.85",
- "end": "469.09000000000003",
- "confidence": "1.000",
- "text": "few",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)//"j040dbu"
- },
- {
- "start": "469.09",
- "end": "469.35999999999996",
- "confidence": "1.000",
- "text": "years",
- "offset": 6,
- "length": 5,
- "key": expect.any(String)//"apo9gd8"
- },
- {
- "start": "469.36",
- "end": "470.05",
- "confidence": "1.000",
- "text": "after",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"1qul2zn"
- },
- {
- "start": "470.17",
- "end": "470.35",
- "confidence": "1.000",
- "text": "that",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"hc11o1s"
- },
- {
- "start": "470.35",
- "end": "470.71000000000004",
- "confidence": "1.000",
- "text": "first",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"m518vw"
- },
- {
- "start": "470.71",
- "end": "471.09999999999997",
- "confidence": "1.000",
- "text": "initial",
- "offset": 29,
- "length": 7,
- "key": expect.any(String)//"rxvc05n"
- },
- {
- "start": "471.10",
- "end": "471.73",
- "confidence": "1.000",
- "text": "experience",
- "offset": 37,
- "length": 10,
- "key": expect.any(String)//"hjvlkm"
- },
- {
- "start": "471.73",
- "end": "471.79",
- "confidence": "1.000",
- "text": "I",
- "offset": 48,
- "length": 1,
- "key": expect.any(String)//"xr9fs8b"
- },
- {
- "start": "471.79",
- "end": "472.06",
- "confidence": "1.000",
- "text": "had",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"gbhri9"
- },
- {
- "start": "472.06",
- "end": "472.21",
- "confidence": "1.000",
- "text": "with",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"1ck1clc"
- },
- {
- "start": "472.21",
- "end": "472.41999999999996",
- "confidence": "1.000",
- "text": "this",
- "offset": 59,
- "length": 4,
- "key": expect.any(String)//"ii4x6l"
- },
- {
- "start": "472.42",
- "end": "472.69",
- "confidence": "1.000",
- "text": "baby",
- "offset": 64,
- "length": 4,
- "key": expect.any(String)//"bsbd9e"
- },
- {
- "start": "472.69",
- "end": "473.11",
- "confidence": "1.000",
- "text": "dinosaur",
- "offset": 69,
- "length": 8,
- "key": expect.any(String)//"w3ob8mq"
- },
- {
- "start": "473.11",
- "end": "474.43",
- "confidence": "1.000",
- "text": "robot.",
- "offset": 78,
- "length": 6,
- "key": expect.any(String)//"5czkys"
- }
- ]
- },
- {
- "text": "I did a workshop with my friend Honus Gossett and we took five of these baby dinosaur robots and we gave them to five teams of people.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "474.43",
- "end": "474.52",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 1181
- },
- {
- "start": "474.52",
- "end": "474.66999999999996",
- "confidence": "1.000",
- "word": "did",
- "punct": "did",
- "index": 1182
- },
- {
- "start": "474.67",
- "end": "474.7",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1183
- },
- {
- "start": "474.70",
- "end": "475.18",
- "confidence": "1.000",
- "word": "workshop",
- "punct": "workshop",
- "index": 1184
- },
- {
- "start": "475.18",
- "end": "475.3",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1185
- },
- {
- "start": "475.30",
- "end": "475.42",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 1186
- },
- {
- "start": "475.42",
- "end": "475.69",
- "confidence": "1.000",
- "word": "friend",
- "punct": "friend",
- "index": 1187
- },
- {
- "start": "475.69",
- "end": "476.05",
- "confidence": "0.590",
- "word": "honus",
- "punct": "Honus",
- "index": 1188
- },
- {
- "start": "476.05",
- "end": "476.62",
- "confidence": "0.930",
- "word": "gossett",
- "punct": "Gossett",
- "index": 1189
- },
- {
- "start": "476.95",
- "end": "477.28",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1190
- },
- {
- "start": "477.58",
- "end": "477.7",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1191
- },
- {
- "start": "477.70",
- "end": "477.88",
- "confidence": "1.000",
- "word": "took",
- "punct": "took",
- "index": 1192
- },
- {
- "start": "477.88",
- "end": "478.27",
- "confidence": "1.000",
- "word": "five",
- "punct": "five",
- "index": 1193
- },
- {
- "start": "478.27",
- "end": "478.35999999999996",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1194
- },
- {
- "start": "478.36",
- "end": "478.66",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 1195
- },
- {
- "start": "478.66",
- "end": "478.93",
- "confidence": "0.990",
- "word": "baby",
- "punct": "baby",
- "index": 1196
- },
- {
- "start": "478.93",
- "end": "479.35",
- "confidence": "1.000",
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 1197
- },
- {
- "start": "479.35",
- "end": "479.77000000000004",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1198
- },
- {
- "start": "479.80",
- "end": "479.92",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1199
- },
- {
- "start": "479.92",
- "end": "480.01",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1200
- },
- {
- "start": "480.01",
- "end": "480.21999999999997",
- "confidence": "1.000",
- "word": "gave",
- "punct": "gave",
- "index": 1201
- },
- {
- "start": "480.22",
- "end": "480.34000000000003",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1202
- },
- {
- "start": "480.34",
- "end": "480.42999999999995",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1203
- },
- {
- "start": "480.43",
- "end": "480.76",
- "confidence": "0.990",
- "word": "five",
- "punct": "five",
- "index": 1204
- },
- {
- "start": "480.76",
- "end": "481.09",
- "confidence": "1.000",
- "word": "teams",
- "punct": "teams",
- "index": 1205
- },
- {
- "start": "481.09",
- "end": "481.17999999999995",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1206
- },
- {
- "start": "481.18",
- "end": "481.69",
- "confidence": "1.000",
- "word": "people",
- "punct": "people.",
- "index": 1207
- }
- ],
- "start": "474.43"
- },
- "entityRanges": [
- {
- "start": "474.43",
- "end": "474.52",
- "confidence": "1.000",
- "text": "I",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"k22bkef"
- },
- {
- "start": "474.52",
- "end": "474.66999999999996",
- "confidence": "1.000",
- "text": "did",
- "offset": 2,
- "length": 3,
- "key": expect.any(String)//"g5wck3l"
- },
- {
- "start": "474.67",
- "end": "474.7",
- "confidence": "1.000",
- "text": "a",
- "offset": 6,
- "length": 1,
- "key": expect.any(String)//"hv211q5"
- },
- {
- "start": "474.70",
- "end": "475.18",
- "confidence": "1.000",
- "text": "workshop",
- "offset": 8,
- "length": 8,
- "key": expect.any(String)//"jluodt"
- },
- {
- "start": "475.18",
- "end": "475.3",
- "confidence": "1.000",
- "text": "with",
- "offset": 17,
- "length": 4,
- "key": expect.any(String)//"hzmv708"
- },
- {
- "start": "475.30",
- "end": "475.42",
- "confidence": "1.000",
- "text": "my",
- "offset": 22,
- "length": 2,
- "key": expect.any(String)//"t1yzqsm"
- },
- {
- "start": "475.42",
- "end": "475.69",
- "confidence": "1.000",
- "text": "friend",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)//"rvo6uof"
- },
- {
- "start": "475.69",
- "end": "476.05",
- "confidence": "0.590",
- "text": "Honus",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"7myxkr6"
- },
- {
- "start": "476.05",
- "end": "476.62",
- "confidence": "0.930",
- "text": "Gossett",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"sd8qmko"
- },
- {
- "start": "476.95",
- "end": "477.28",
- "confidence": "1.000",
- "text": "and",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"9px0ut4"
- },
- {
- "start": "477.58",
- "end": "477.7",
- "confidence": "1.000",
- "text": "we",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"vagu2bk"
- },
- {
- "start": "477.70",
- "end": "477.88",
- "confidence": "1.000",
- "text": "took",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)//"cjni249"
- },
- {
- "start": "477.88",
- "end": "478.27",
- "confidence": "1.000",
- "text": "five",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"d4mumy6"
- },
- {
- "start": "478.27",
- "end": "478.35999999999996",
- "confidence": "1.000",
- "text": "of",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)//"bwxkd9c"
- },
- {
- "start": "478.36",
- "end": "478.66",
- "confidence": "1.000",
- "text": "these",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)//"i2cybnm"
- },
- {
- "start": "478.66",
- "end": "478.93",
- "confidence": "0.990",
- "text": "baby",
- "offset": 72,
- "length": 4,
- "key": expect.any(String)//"dzjcrs7"
- },
- {
- "start": "478.93",
- "end": "479.35",
- "confidence": "1.000",
- "text": "dinosaur",
- "offset": 77,
- "length": 8,
- "key": expect.any(String)//"84kh4uv"
- },
- {
- "start": "479.35",
- "end": "479.77000000000004",
- "confidence": "1.000",
- "text": "robots",
- "offset": 86,
- "length": 6,
- "key": expect.any(String)//"dvdth0i"
- },
- {
- "start": "479.80",
- "end": "479.92",
- "confidence": "1.000",
- "text": "and",
- "offset": 93,
- "length": 3,
- "key": expect.any(String)//"3dyemx"
- },
- {
- "start": "479.92",
- "end": "480.01",
- "confidence": "1.000",
- "text": "we",
- "offset": 97,
- "length": 2,
- "key": expect.any(String)//"ibahjxo"
- },
- {
- "start": "480.01",
- "end": "480.21999999999997",
- "confidence": "1.000",
- "text": "gave",
- "offset": 100,
- "length": 4,
- "key": expect.any(String)//"4vxz22"
- },
- {
- "start": "480.22",
- "end": "480.34000000000003",
- "confidence": "1.000",
- "text": "them",
- "offset": 105,
- "length": 4,
- "key": expect.any(String)//"x1wfogl"
- },
- {
- "start": "480.34",
- "end": "480.42999999999995",
- "confidence": "1.000",
- "text": "to",
- "offset": 110,
- "length": 2,
- "key": expect.any(String)//"gtgah8e"
- },
- {
- "start": "480.43",
- "end": "480.76",
- "confidence": "0.990",
- "text": "five",
- "offset": 113,
- "length": 4,
- "key": expect.any(String)//"mkge1mp"
- },
- {
- "start": "480.76",
- "end": "481.09",
- "confidence": "1.000",
- "text": "teams",
- "offset": 118,
- "length": 5,
- "key": expect.any(String)//"yyvcdif"
- },
- {
- "start": "481.09",
- "end": "481.17999999999995",
- "confidence": "1.000",
- "text": "of",
- "offset": 124,
- "length": 2,
- "key": expect.any(String)//"yyqgq"
- },
- {
- "start": "481.18",
- "end": "481.69",
- "confidence": "1.000",
- "text": "people.",
- "offset": 127,
- "length": 7,
- "key": expect.any(String)//"b9n9hv"
- }
- ]
- },
- {
- "text": "And we had them name them and play with them and interact with them for about an hour.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "482.32",
- "end": "482.40999999999997",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1208
- },
- {
- "start": "482.41",
- "end": "482.5",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1209
- },
- {
- "start": "482.50",
- "end": "482.68",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 1210
- },
- {
- "start": "482.68",
- "end": "482.86",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1211
- },
- {
- "start": "482.86",
- "end": "483.19",
- "confidence": "1.000",
- "word": "name",
- "punct": "name",
- "index": 1212
- },
- {
- "start": "483.19",
- "end": "483.64",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1213
- },
- {
- "start": "484.03",
- "end": "484.15",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1214
- },
- {
- "start": "484.15",
- "end": "484.45",
- "confidence": "1.000",
- "word": "play",
- "punct": "play",
- "index": 1215
- },
- {
- "start": "484.45",
- "end": "484.63",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1216
- },
- {
- "start": "484.63",
- "end": "485.08",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1217
- },
- {
- "start": "485.14",
- "end": "485.28999999999996",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1218
- },
- {
- "start": "485.29",
- "end": "485.77000000000004",
- "confidence": "1.000",
- "word": "interact",
- "punct": "interact",
- "index": 1219
- },
- {
- "start": "485.77",
- "end": "485.91999999999996",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1220
- },
- {
- "start": "485.92",
- "end": "486.28000000000003",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1221
- },
- {
- "start": "486.31",
- "end": "486.7",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1222
- },
- {
- "start": "486.88",
- "end": "487.18",
- "confidence": "1.000",
- "word": "about",
- "punct": "about",
- "index": 1223
- },
- {
- "start": "487.18",
- "end": "487.3",
- "confidence": "1.000",
- "word": "an",
- "punct": "an",
- "index": 1224
- },
- {
- "start": "487.30",
- "end": "487.69",
- "confidence": "1.000",
- "word": "hour",
- "punct": "hour.",
- "index": 1225
- }
- ],
- "start": "482.32"
- },
- "entityRanges": [
- {
- "start": "482.32",
- "end": "482.40999999999997",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"ly4esao"
- },
- {
- "start": "482.41",
- "end": "482.5",
- "confidence": "1.000",
- "text": "we",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"3a1f3wx"
- },
- {
- "start": "482.50",
- "end": "482.68",
- "confidence": "1.000",
- "text": "had",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"td659sn"
- },
- {
- "start": "482.68",
- "end": "482.86",
- "confidence": "1.000",
- "text": "them",
- "offset": 11,
- "length": 4,
- "key": expect.any(String)//"553negs"
- },
- {
- "start": "482.86",
- "end": "483.19",
- "confidence": "1.000",
- "text": "name",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"vuv9n4f"
- },
- {
- "start": "483.19",
- "end": "483.64",
- "confidence": "1.000",
- "text": "them",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"kml3jbi"
- },
- {
- "start": "484.03",
- "end": "484.15",
- "confidence": "1.000",
- "text": "and",
- "offset": 26,
- "length": 3,
- "key": expect.any(String)//"ntj6gm"
- },
- {
- "start": "484.15",
- "end": "484.45",
- "confidence": "1.000",
- "text": "play",
- "offset": 30,
- "length": 4,
- "key": expect.any(String)//"mrxsibi"
- },
- {
- "start": "484.45",
- "end": "484.63",
- "confidence": "1.000",
- "text": "with",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"rw9s6t8"
- },
- {
- "start": "484.63",
- "end": "485.08",
- "confidence": "1.000",
- "text": "them",
- "offset": 40,
- "length": 4,
- "key": expect.any(String)//"dtinkx8"
- },
- {
- "start": "485.14",
- "end": "485.28999999999996",
- "confidence": "1.000",
- "text": "and",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)//"ga2xk0l"
- },
- {
- "start": "485.29",
- "end": "485.77000000000004",
- "confidence": "1.000",
- "text": "interact",
- "offset": 49,
- "length": 8,
- "key": expect.any(String)//"ss5q80b"
- },
- {
- "start": "485.77",
- "end": "485.91999999999996",
- "confidence": "1.000",
- "text": "with",
- "offset": 58,
- "length": 4,
- "key": expect.any(String)//"2j7hhii"
- },
- {
- "start": "485.92",
- "end": "486.28000000000003",
- "confidence": "1.000",
- "text": "them",
- "offset": 63,
- "length": 4,
- "key": expect.any(String)//"vkl97c2"
- },
- {
- "start": "486.31",
- "end": "486.7",
- "confidence": "1.000",
- "text": "for",
- "offset": 68,
- "length": 3,
- "key": expect.any(String)//"uonr1l8"
- },
- {
- "start": "486.88",
- "end": "487.18",
- "confidence": "1.000",
- "text": "about",
- "offset": 72,
- "length": 5,
- "key": expect.any(String)//"mxsvaz9"
- },
- {
- "start": "487.18",
- "end": "487.3",
- "confidence": "1.000",
- "text": "an",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"wsumgg"
- },
- {
- "start": "487.30",
- "end": "487.69",
- "confidence": "1.000",
- "text": "hour.",
- "offset": 81,
- "length": 5,
- "key": expect.any(String)//"83nekjn"
- }
- ]
- },
- {
- "text": "And then we unveiled a hammer and a hatchet.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "488.75",
- "end": "488.87",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1226
- },
- {
- "start": "488.87",
- "end": "489.08",
- "confidence": "1.000",
- "word": "then",
- "punct": "then",
- "index": 1227
- },
- {
- "start": "489.08",
- "end": "489.2",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1228
- },
- {
- "start": "489.20",
- "end": "489.68",
- "confidence": "1.000",
- "word": "unveiled",
- "punct": "unveiled",
- "index": 1229
- },
- {
- "start": "489.77",
- "end": "489.83",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1230
- },
- {
- "start": "489.83",
- "end": "490.21999999999997",
- "confidence": "1.000",
- "word": "hammer",
- "punct": "hammer",
- "index": 1231
- },
- {
- "start": "490.22",
- "end": "490.31",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1232
- },
- {
- "start": "490.31",
- "end": "490.37",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1233
- },
- {
- "start": "490.37",
- "end": "490.92",
- "confidence": "1.000",
- "word": "hatchet",
- "punct": "hatchet.",
- "index": 1234
- }
- ],
- "start": "488.75"
- },
- "entityRanges": [
- {
- "start": "488.75",
- "end": "488.87",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"0s1b3yu"
- },
- {
- "start": "488.87",
- "end": "489.08",
- "confidence": "1.000",
- "text": "then",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"7l3pzss"
- },
- {
- "start": "489.08",
- "end": "489.2",
- "confidence": "1.000",
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"otno3a"
- },
- {
- "start": "489.20",
- "end": "489.68",
- "confidence": "1.000",
- "text": "unveiled",
- "offset": 12,
- "length": 8,
- "key": expect.any(String)//"libejzh"
- },
- {
- "start": "489.77",
- "end": "489.83",
- "confidence": "1.000",
- "text": "a",
- "offset": 21,
- "length": 1,
- "key": expect.any(String)//"ckqtxs8"
- },
- {
- "start": "489.83",
- "end": "490.21999999999997",
- "confidence": "1.000",
- "text": "hammer",
- "offset": 23,
- "length": 6,
- "key": expect.any(String)//"f9854x"
- },
- {
- "start": "490.22",
- "end": "490.31",
- "confidence": "1.000",
- "text": "and",
- "offset": 30,
- "length": 3,
- "key": expect.any(String)//"3tgu7wj"
- },
- {
- "start": "490.31",
- "end": "490.37",
- "confidence": "1.000",
- "text": "a",
- "offset": 34,
- "length": 1,
- "key": expect.any(String)//"7d4l05"
- },
- {
- "start": "490.37",
- "end": "490.92",
- "confidence": "1.000",
- "text": "hatchet.",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)//"gkykdxd"
- }
- ]
- },
- {
- "text": "And we told them to torture and kill the robots.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "490.94",
- "end": "491.06",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1235
- },
- {
- "start": "491.06",
- "end": "491.15",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1236
- },
- {
- "start": "491.15",
- "end": "491.39",
- "confidence": "1.000",
- "word": "told",
- "punct": "told",
- "index": 1237
- },
- {
- "start": "491.39",
- "end": "491.51",
- "confidence": "0.990",
- "word": "them",
- "punct": "them",
- "index": 1238
- },
- {
- "start": "491.51",
- "end": "491.63",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1239
- },
- {
- "start": "491.63",
- "end": "492.02",
- "confidence": "1.000",
- "word": "torture",
- "punct": "torture",
- "index": 1240
- },
- {
- "start": "492.02",
- "end": "492.10999999999996",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1241
- },
- {
- "start": "492.11",
- "end": "492.41",
- "confidence": "1.000",
- "word": "kill",
- "punct": "kill",
- "index": 1242
- },
- {
- "start": "492.41",
- "end": "492.53000000000003",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1243
- },
- {
- "start": "492.53",
- "end": "493.96999999999997",
- "confidence": "0.980",
- "word": "robots",
- "punct": "robots.",
- "index": 1244
- }
- ],
- "start": "490.94"
- },
- "entityRanges": [
- {
- "start": "490.94",
- "end": "491.06",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"udk4qpw"
- },
- {
- "start": "491.06",
- "end": "491.15",
- "confidence": "1.000",
- "text": "we",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"rd6q9uf"
- },
- {
- "start": "491.15",
- "end": "491.39",
- "confidence": "1.000",
- "text": "told",
- "offset": 7,
- "length": 4,
- "key": expect.any(String)//"a2ove1o"
- },
- {
- "start": "491.39",
- "end": "491.51",
- "confidence": "0.990",
- "text": "them",
- "offset": 12,
- "length": 4,
- "key": expect.any(String)//"lg6pje1n"
- },
- {
- "start": "491.51",
- "end": "491.63",
- "confidence": "1.000",
- "text": "to",
- "offset": 17,
- "length": 2,
- "key": expect.any(String)//"cjq769"
- },
- {
- "start": "491.63",
- "end": "492.02",
- "confidence": "1.000",
- "text": "torture",
- "offset": 20,
- "length": 7,
- "key": expect.any(String)//"bvy1kd"
- },
- {
- "start": "492.02",
- "end": "492.10999999999996",
- "confidence": "1.000",
- "text": "and",
- "offset": 28,
- "length": 3,
- "key": expect.any(String)//"xsjbn8e"
- },
- {
- "start": "492.11",
- "end": "492.41",
- "confidence": "1.000",
- "text": "kill",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)//"vxxe51f"
- },
- {
- "start": "492.41",
- "end": "492.53000000000003",
- "confidence": "1.000",
- "text": "the",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"qs5amm"
- },
- {
- "start": "492.53",
- "end": "493.96999999999997",
- "confidence": "0.980",
- "text": "robots.",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"34hg0r"
- }
- ]
- },
- {
- "text": "And this turned out to be a little more dramatic than we expected it to be because none of the participants would even so much a strike these baby dinosaur robots.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "496.90",
- "end": "497.14",
- "confidence": "0.990",
- "word": "and",
- "punct": "And",
- "index": 1245
- },
- {
- "start": "497.23",
- "end": "497.44",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1246
- },
- {
- "start": "497.44",
- "end": "497.68",
- "confidence": "1.000",
- "word": "turned",
- "punct": "turned",
- "index": 1247
- },
- {
- "start": "497.68",
- "end": "497.77",
- "confidence": "1.000",
- "word": "out",
- "punct": "out",
- "index": 1248
- },
- {
- "start": "497.77",
- "end": "497.91999999999996",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1249
- },
- {
- "start": "497.92",
- "end": "498.04",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 1250
- },
- {
- "start": "498.04",
- "end": "498.1",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1251
- },
- {
- "start": "498.10",
- "end": "498.31",
- "confidence": "1.000",
- "word": "little",
- "punct": "little",
- "index": 1252
- },
- {
- "start": "498.31",
- "end": "498.46",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1253
- },
- {
- "start": "498.46",
- "end": "498.96999999999997",
- "confidence": "1.000",
- "word": "dramatic",
- "punct": "dramatic",
- "index": 1254
- },
- {
- "start": "499.00",
- "end": "499.15",
- "confidence": "1.000",
- "word": "than",
- "punct": "than",
- "index": 1255
- },
- {
- "start": "499.15",
- "end": "499.27",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1256
- },
- {
- "start": "499.27",
- "end": "499.93",
- "confidence": "1.000",
- "word": "expected",
- "punct": "expected",
- "index": 1257
- },
- {
- "start": "499.93",
- "end": "499.99",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 1258
- },
- {
- "start": "499.99",
- "end": "500.11",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1259
- },
- {
- "start": "500.11",
- "end": "500.32",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 1260
- },
- {
- "start": "500.32",
- "end": "500.62",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 1261
- },
- {
- "start": "500.62",
- "end": "500.92",
- "confidence": "1.000",
- "word": "none",
- "punct": "none",
- "index": 1262
- },
- {
- "start": "500.92",
- "end": "501.01",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1263
- },
- {
- "start": "501.01",
- "end": "501.09999999999997",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1264
- },
- {
- "start": "501.10",
- "end": "501.85",
- "confidence": "1.000",
- "word": "participants",
- "punct": "participants",
- "index": 1265
- },
- {
- "start": "501.85",
- "end": "502.18",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 1266
- },
- {
- "start": "502.48",
- "end": "502.72",
- "confidence": "1.000",
- "word": "even",
- "punct": "even",
- "index": 1267
- },
- {
- "start": "502.72",
- "end": "502.84000000000003",
- "confidence": "1.000",
- "word": "so",
- "punct": "so",
- "index": 1268
- },
- {
- "start": "502.84",
- "end": "503.02",
- "confidence": "1.000",
- "word": "much",
- "punct": "much",
- "index": 1269
- },
- {
- "start": "503.02",
- "end": "503.09",
- "confidence": "0.490",
- "word": "a",
- "punct": "a",
- "index": 1270
- },
- {
- "start": "503.09",
- "end": "503.54999999999995",
- "confidence": "1.000",
- "word": "strike",
- "punct": "strike",
- "index": 1271
- },
- {
- "start": "503.56",
- "end": "503.8",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 1272
- },
- {
- "start": "503.80",
- "end": "503.98",
- "confidence": "1.000",
- "word": "baby",
- "punct": "baby",
- "index": 1273
- },
- {
- "start": "503.98",
- "end": "504.37",
- "confidence": "1.000",
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 1274
- },
- {
- "start": "504.37",
- "end": "504.76",
- "confidence": "0.970",
- "word": "robots",
- "punct": "robots.",
- "index": 1275
- }
- ],
- "start": "496.90"
- },
- "entityRanges": [
- {
- "start": "496.90",
- "end": "497.14",
- "confidence": "0.990",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"kcx4s4o"
- },
- {
- "start": "497.23",
- "end": "497.44",
- "confidence": "1.000",
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"8ggvvdq"
- },
- {
- "start": "497.44",
- "end": "497.68",
- "confidence": "1.000",
- "text": "turned",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"8bwroqm"
- },
- {
- "start": "497.68",
- "end": "497.77",
- "confidence": "1.000",
- "text": "out",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"nhd8p1n"
- },
- {
- "start": "497.77",
- "end": "497.91999999999996",
- "confidence": "1.000",
- "text": "to",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"4z308n"
- },
- {
- "start": "497.92",
- "end": "498.04",
- "confidence": "1.000",
- "text": "be",
- "offset": 23,
- "length": 2,
- "key": expect.any(String)//"siezj4"
- },
- {
- "start": "498.04",
- "end": "498.1",
- "confidence": "1.000",
- "text": "a",
- "offset": 26,
- "length": 1,
- "key": expect.any(String)//"3nvn6y8"
- },
- {
- "start": "498.10",
- "end": "498.31",
- "confidence": "1.000",
- "text": "little",
- "offset": 28,
- "length": 6,
- "key": expect.any(String)//"1elodp9"
- },
- {
- "start": "498.31",
- "end": "498.46",
- "confidence": "1.000",
- "text": "more",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"j3d4s8"
- },
- {
- "start": "498.46",
- "end": "498.96999999999997",
- "confidence": "1.000",
- "text": "dramatic",
- "offset": 40,
- "length": 8,
- "key": expect.any(String)//"gn7xwhw"
- },
- {
- "start": "499.00",
- "end": "499.15",
- "confidence": "1.000",
- "text": "than",
- "offset": 49,
- "length": 4,
- "key": expect.any(String)//"kkq5i0t"
- },
- {
- "start": "499.15",
- "end": "499.27",
- "confidence": "1.000",
- "text": "we",
- "offset": 54,
- "length": 2,
- "key": expect.any(String)//"vncmti"
- },
- {
- "start": "499.27",
- "end": "499.93",
- "confidence": "1.000",
- "text": "expected",
- "offset": 57,
- "length": 8,
- "key": expect.any(String)//"ogo0o9r"
- },
- {
- "start": "499.93",
- "end": "499.99",
- "confidence": "1.000",
- "text": "it",
- "offset": 66,
- "length": 2,
- "key": expect.any(String)//"7nx2ejk"
- },
- {
- "start": "499.99",
- "end": "500.11",
- "confidence": "1.000",
- "text": "to",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)//"izi0qs"
- },
- {
- "start": "500.11",
- "end": "500.32",
- "confidence": "1.000",
- "text": "be",
- "offset": 72,
- "length": 2,
- "key": expect.any(String)//"0gdt7dt"
- },
- {
- "start": "500.32",
- "end": "500.62",
- "confidence": "1.000",
- "text": "because",
- "offset": 75,
- "length": 7,
- "key": expect.any(String)//"mxzhh5s"
- },
- {
- "start": "500.62",
- "end": "500.92",
- "confidence": "1.000",
- "text": "none",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)//"358a3mf"
- },
- {
- "start": "500.92",
- "end": "501.01",
- "confidence": "1.000",
- "text": "of",
- "offset": 88,
- "length": 2,
- "key": expect.any(String)//"gfdv7uk"
- },
- {
- "start": "501.01",
- "end": "501.09999999999997",
- "confidence": "1.000",
- "text": "the",
- "offset": 91,
- "length": 3,
- "key": expect.any(String)//"ophrlhk"
- },
- {
- "start": "501.10",
- "end": "501.85",
- "confidence": "1.000",
- "text": "participants",
- "offset": 95,
- "length": 12,
- "key": expect.any(String)//"01io4c"
- },
- {
- "start": "501.85",
- "end": "502.18",
- "confidence": "1.000",
- "text": "would",
- "offset": 108,
- "length": 5,
- "key": expect.any(String)//"czd7t1n"
- },
- {
- "start": "502.48",
- "end": "502.72",
- "confidence": "1.000",
- "text": "even",
- "offset": 114,
- "length": 4,
- "key": expect.any(String)//"pqjv2t9"
- },
- {
- "start": "502.72",
- "end": "502.84000000000003",
- "confidence": "1.000",
- "text": "so",
- "offset": 119,
- "length": 2,
- "key": expect.any(String)//"kb7pzmk"
- },
- {
- "start": "502.84",
- "end": "503.02",
- "confidence": "1.000",
- "text": "much",
- "offset": 122,
- "length": 4,
- "key": expect.any(String)//"9648ub"
- },
- {
- "start": "503.02",
- "end": "503.09",
- "confidence": "0.490",
- "text": "a",
- "offset": 127,
- "length": 1,
- "key": expect.any(String)//"rol1507"
- },
- {
- "start": "503.09",
- "end": "503.54999999999995",
- "confidence": "1.000",
- "text": "strike",
- "offset": 129,
- "length": 6,
- "key": expect.any(String)//"oz6s8s8"
- },
- {
- "start": "503.56",
- "end": "503.8",
- "confidence": "1.000",
- "text": "these",
- "offset": 136,
- "length": 5,
- "key": expect.any(String)//"nszcu4s"
- },
- {
- "start": "503.80",
- "end": "503.98",
- "confidence": "1.000",
- "text": "baby",
- "offset": 142,
- "length": 4,
- "key": expect.any(String)//"x04geeh"
- },
- {
- "start": "503.98",
- "end": "504.37",
- "confidence": "1.000",
- "text": "dinosaur",
- "offset": 147,
- "length": 8,
- "key": expect.any(String)//"bublmei"
- },
- {
- "start": "504.37",
- "end": "504.76",
- "confidence": "0.970",
- "text": "robots.",
- "offset": 156,
- "length": 7,
- "key": expect.any(String)//"d1j0v4k"
- }
- ]
- },
- {
- "text": "So we had to improvise a little and at some point we said OK.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "504.76",
- "end": "505.09",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 1276
- },
- {
- "start": "505.45",
- "end": "505.57",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1277
- },
- {
- "start": "505.57",
- "end": "505.65999999999997",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 1278
- },
- {
- "start": "505.66",
- "end": "505.75",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1279
- },
- {
- "start": "505.75",
- "end": "506.23",
- "confidence": "1.000",
- "word": "improvise",
- "punct": "improvise",
- "index": 1280
- },
- {
- "start": "506.23",
- "end": "506.29",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1281
- },
- {
- "start": "506.29",
- "end": "506.68",
- "confidence": "1.000",
- "word": "little",
- "punct": "little",
- "index": 1282
- },
- {
- "start": "507.40",
- "end": "507.76",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1283
- },
- {
- "start": "507.85",
- "end": "507.97",
- "confidence": "1.000",
- "word": "at",
- "punct": "at",
- "index": 1284
- },
- {
- "start": "507.97",
- "end": "508.15000000000003",
- "confidence": "1.000",
- "word": "some",
- "punct": "some",
- "index": 1285
- },
- {
- "start": "508.15",
- "end": "508.33",
- "confidence": "1.000",
- "word": "point",
- "punct": "point",
- "index": 1286
- },
- {
- "start": "508.33",
- "end": "508.41999999999996",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1287
- },
- {
- "start": "508.42",
- "end": "508.72",
- "confidence": "1.000",
- "word": "said",
- "punct": "said",
- "index": 1288
- },
- {
- "start": "508.75",
- "end": "509.32",
- "confidence": "0.990",
- "word": "ok",
- "punct": "OK.",
- "index": 1289
- }
- ],
- "start": "504.76"
- },
- "entityRanges": [
- {
- "start": "504.76",
- "end": "505.09",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"km2fink"
- },
- {
- "start": "505.45",
- "end": "505.57",
- "confidence": "1.000",
- "text": "we",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)//"fvn73j9"
- },
- {
- "start": "505.57",
- "end": "505.65999999999997",
- "confidence": "1.000",
- "text": "had",
- "offset": 6,
- "length": 3,
- "key": expect.any(String)//"cf1ra"
- },
- {
- "start": "505.66",
- "end": "505.75",
- "confidence": "1.000",
- "text": "to",
- "offset": 10,
- "length": 2,
- "key": expect.any(String)//"pxhkpku"
- },
- {
- "start": "505.75",
- "end": "506.23",
- "confidence": "1.000",
- "text": "improvise",
- "offset": 13,
- "length": 9,
- "key": expect.any(String)//"qv4q9ge"
- },
- {
- "start": "506.23",
- "end": "506.29",
- "confidence": "1.000",
- "text": "a",
- "offset": 23,
- "length": 1,
- "key": expect.any(String)//"lc7t814"
- },
- {
- "start": "506.29",
- "end": "506.68",
- "confidence": "1.000",
- "text": "little",
- "offset": 25,
- "length": 6,
- "key": expect.any(String)//"js3d9sd"
- },
- {
- "start": "507.40",
- "end": "507.76",
- "confidence": "1.000",
- "text": "and",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)//"pmbmx6r"
- },
- {
- "start": "507.85",
- "end": "507.97",
- "confidence": "1.000",
- "text": "at",
- "offset": 36,
- "length": 2,
- "key": expect.any(String)//"nsqm25"
- },
- {
- "start": "507.97",
- "end": "508.15000000000003",
- "confidence": "1.000",
- "text": "some",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"w62ncbk"
- },
- {
- "start": "508.15",
- "end": "508.33",
- "confidence": "1.000",
- "text": "point",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"dhzoqf"
- },
- {
- "start": "508.33",
- "end": "508.41999999999996",
- "confidence": "1.000",
- "text": "we",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"ogiuhi4"
- },
- {
- "start": "508.42",
- "end": "508.72",
- "confidence": "1.000",
- "text": "said",
- "offset": 53,
- "length": 4,
- "key": expect.any(String)//"yslgrb"
- },
- {
- "start": "508.75",
- "end": "509.32",
- "confidence": "0.990",
- "text": "OK.",
- "offset": 58,
- "length": 3,
- "key": expect.any(String)//"uzdmyo6"
- }
- ]
- },
- {
- "text": "You can save your team's robot if you destroy another team's robot.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "510.10",
- "end": "510.37",
- "confidence": "1.000",
- "word": "you",
- "punct": "You",
- "index": 1290
- },
- {
- "start": "510.37",
- "end": "510.52",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 1291
- },
- {
- "start": "510.52",
- "end": "510.88",
- "confidence": "1.000",
- "word": "save",
- "punct": "save",
- "index": 1292
- },
- {
- "start": "510.88",
- "end": "511.15",
- "confidence": "1.000",
- "word": "your",
- "punct": "your",
- "index": 1293
- },
- {
- "start": "511.15",
- "end": "511.59999999999997",
- "confidence": "0.990",
- "word": "team's",
- "punct": "team's",
- "index": 1294
- },
- {
- "start": "511.60",
- "end": "512.08",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1295
- },
- {
- "start": "512.14",
- "end": "512.3199999999999",
- "confidence": "1.000",
- "word": "if",
- "punct": "if",
- "index": 1296
- },
- {
- "start": "512.32",
- "end": "512.47",
- "confidence": "1.000",
- "word": "you",
- "punct": "you",
- "index": 1297
- },
- {
- "start": "512.47",
- "end": "513.01",
- "confidence": "1.000",
- "word": "destroy",
- "punct": "destroy",
- "index": 1298
- },
- {
- "start": "513.07",
- "end": "513.6400000000001",
- "confidence": "1.000",
- "word": "another",
- "punct": "another",
- "index": 1299
- },
- {
- "start": "513.64",
- "end": "514.03",
- "confidence": "1.000",
- "word": "team's",
- "punct": "team's",
- "index": 1300
- },
- {
- "start": "514.03",
- "end": "514.5699999999999",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot.",
- "index": 1301
- }
- ],
- "start": "510.10"
- },
- "entityRanges": [
- {
- "start": "510.10",
- "end": "510.37",
- "confidence": "1.000",
- "text": "You",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"sckzxwl"
- },
- {
- "start": "510.37",
- "end": "510.52",
- "confidence": "1.000",
- "text": "can",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"o1g2v"
- },
- {
- "start": "510.52",
- "end": "510.88",
- "confidence": "1.000",
- "text": "save",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"7rq1x7"
- },
- {
- "start": "510.88",
- "end": "511.15",
- "confidence": "1.000",
- "text": "your",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"gnx270m"
- },
- {
- "start": "511.15",
- "end": "511.59999999999997",
- "confidence": "0.990",
- "text": "team's",
- "offset": 18,
- "length": 6,
- "key": expect.any(String)//"il8y316"
- },
- {
- "start": "511.60",
- "end": "512.08",
- "confidence": "1.000",
- "text": "robot",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"f5k47cu"
- },
- {
- "start": "512.14",
- "end": "512.3199999999999",
- "confidence": "1.000",
- "text": "if",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"n8dymt"
- },
- {
- "start": "512.32",
- "end": "512.47",
- "confidence": "1.000",
- "text": "you",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"t7o6c9k"
- },
- {
- "start": "512.47",
- "end": "513.01",
- "confidence": "1.000",
- "text": "destroy",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"wuzj81n"
- },
- {
- "start": "513.07",
- "end": "513.6400000000001",
- "confidence": "1.000",
- "text": "another",
- "offset": 46,
- "length": 7,
- "key": expect.any(String)//"ctvgaa3"
- },
- {
- "start": "513.64",
- "end": "514.03",
- "confidence": "1.000",
- "text": "team's",
- "offset": 54,
- "length": 6,
- "key": expect.any(String)//"dgcqu87"
- },
- {
- "start": "514.03",
- "end": "514.5699999999999",
- "confidence": "1.000",
- "text": "robot.",
- "offset": 61,
- "length": 6,
- "key": expect.any(String)//"55v0ztt"
- }
- ]
- },
- {
- "text": "And even that didn't work they couldn't do it.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "516.87",
- "end": "516.99",
- "confidence": "0.990",
- "word": "and",
- "punct": "And",
- "index": 1302
- },
- {
- "start": "517.00",
- "end": "517.21",
- "confidence": "1.000",
- "word": "even",
- "punct": "even",
- "index": 1303
- },
- {
- "start": "517.21",
- "end": "517.36",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1304
- },
- {
- "start": "517.36",
- "end": "517.57",
- "confidence": "1.000",
- "word": "didn't",
- "punct": "didn't",
- "index": 1305
- },
- {
- "start": "517.57",
- "end": "517.8100000000001",
- "confidence": "1.000",
- "word": "work",
- "punct": "work",
- "index": 1306
- },
- {
- "start": "517.84",
- "end": "517.96",
- "confidence": "1.000",
- "word": "they",
- "punct": "they",
- "index": 1307
- },
- {
- "start": "517.96",
- "end": "518.23",
- "confidence": "1.000",
- "word": "couldn't",
- "punct": "couldn't",
- "index": 1308
- },
- {
- "start": "518.23",
- "end": "518.38",
- "confidence": "1.000",
- "word": "do",
- "punct": "do",
- "index": 1309
- },
- {
- "start": "518.38",
- "end": "518.68",
- "confidence": "1.000",
- "word": "it",
- "punct": "it.",
- "index": 1310
- }
- ],
- "start": "516.87"
- },
- "entityRanges": [
- {
- "start": "516.87",
- "end": "516.99",
- "confidence": "0.990",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"simi8f"
- },
- {
- "start": "517.00",
- "end": "517.21",
- "confidence": "1.000",
- "text": "even",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"m1m5lxs"
- },
- {
- "start": "517.21",
- "end": "517.36",
- "confidence": "1.000",
- "text": "that",
- "offset": 9,
- "length": 4,
- "key": expect.any(String)//"tjm0ygd"
- },
- {
- "start": "517.36",
- "end": "517.57",
- "confidence": "1.000",
- "text": "didn't",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)//"5pewtz"
- },
- {
- "start": "517.57",
- "end": "517.8100000000001",
- "confidence": "1.000",
- "text": "work",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"dn0f7y"
- },
- {
- "start": "517.84",
- "end": "517.96",
- "confidence": "1.000",
- "text": "they",
- "offset": 26,
- "length": 4,
- "key": expect.any(String)//"quog60d"
- },
- {
- "start": "517.96",
- "end": "518.23",
- "confidence": "1.000",
- "text": "couldn't",
- "offset": 31,
- "length": 8,
- "key": expect.any(String)//"eprg01f"
- },
- {
- "start": "518.23",
- "end": "518.38",
- "confidence": "1.000",
- "text": "do",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)//"9qe0rbu"
- },
- {
- "start": "518.38",
- "end": "518.68",
- "confidence": "1.000",
- "text": "it.",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"08aw4tn"
- }
- ]
- },
- {
- "text": "So finally we said we're going to destroy all of the robots unless someone takes a hatchet to one of them.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "518.68",
- "end": "518.8599999999999",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 1311
- },
- {
- "start": "518.86",
- "end": "519.25",
- "confidence": "1.000",
- "word": "finally",
- "punct": "finally",
- "index": 1312
- },
- {
- "start": "519.25",
- "end": "519.34",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1313
- },
- {
- "start": "519.34",
- "end": "519.73",
- "confidence": "1.000",
- "word": "said",
- "punct": "said",
- "index": 1314
- },
- {
- "start": "520.09",
- "end": "520.24",
- "confidence": "1.000",
- "word": "we're",
- "punct": "we're",
- "index": 1315
- },
- {
- "start": "520.24",
- "end": "520.36",
- "confidence": "0.970",
- "word": "going",
- "punct": "going",
- "index": 1316
- },
- {
- "start": "520.36",
- "end": "520.42",
- "confidence": "0.970",
- "word": "to",
- "punct": "to",
- "index": 1317
- },
- {
- "start": "520.42",
- "end": "520.87",
- "confidence": "1.000",
- "word": "destroy",
- "punct": "destroy",
- "index": 1318
- },
- {
- "start": "520.90",
- "end": "521.1999999999999",
- "confidence": "1.000",
- "word": "all",
- "punct": "all",
- "index": 1319
- },
- {
- "start": "521.20",
- "end": "521.2900000000001",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1320
- },
- {
- "start": "521.29",
- "end": "521.38",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1321
- },
- {
- "start": "521.38",
- "end": "521.92",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1322
- },
- {
- "start": "521.95",
- "end": "522.22",
- "confidence": "1.000",
- "word": "unless",
- "punct": "unless",
- "index": 1323
- },
- {
- "start": "522.22",
- "end": "522.52",
- "confidence": "1.000",
- "word": "someone",
- "punct": "someone",
- "index": 1324
- },
- {
- "start": "522.52",
- "end": "522.73",
- "confidence": "1.000",
- "word": "takes",
- "punct": "takes",
- "index": 1325
- },
- {
- "start": "522.73",
- "end": "522.79",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1326
- },
- {
- "start": "522.79",
- "end": "523.2099999999999",
- "confidence": "1.000",
- "word": "hatchet",
- "punct": "hatchet",
- "index": 1327
- },
- {
- "start": "523.21",
- "end": "523.36",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1328
- },
- {
- "start": "523.36",
- "end": "523.57",
- "confidence": "1.000",
- "word": "one",
- "punct": "one",
- "index": 1329
- },
- {
- "start": "523.57",
- "end": "523.72",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1330
- },
- {
- "start": "523.72",
- "end": "523.96",
- "confidence": "1.000",
- "word": "them",
- "punct": "them.",
- "index": 1331
- }
- ],
- "start": "518.68"
- },
- "entityRanges": [
- {
- "start": "518.68",
- "end": "518.8599999999999",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"s409xr"
- },
- {
- "start": "518.86",
- "end": "519.25",
- "confidence": "1.000",
- "text": "finally",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"t8ji3ka"
- },
- {
- "start": "519.25",
- "end": "519.34",
- "confidence": "1.000",
- "text": "we",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"cu9m87"
- },
- {
- "start": "519.34",
- "end": "519.73",
- "confidence": "1.000",
- "text": "said",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"3o211p"
- },
- {
- "start": "520.09",
- "end": "520.24",
- "confidence": "1.000",
- "text": "we're",
- "offset": 19,
- "length": 5,
- "key": expect.any(String)//"srmircs"
- },
- {
- "start": "520.24",
- "end": "520.36",
- "confidence": "0.970",
- "text": "going",
- "offset": 25,
- "length": 5,
- "key": expect.any(String)//"dd0ftz"
- },
- {
- "start": "520.36",
- "end": "520.42",
- "confidence": "0.970",
- "text": "to",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"g6qbnym"
- },
- {
- "start": "520.42",
- "end": "520.87",
- "confidence": "1.000",
- "text": "destroy",
- "offset": 34,
- "length": 7,
- "key": expect.any(String)//"si7ijoj"
- },
- {
- "start": "520.90",
- "end": "521.1999999999999",
- "confidence": "1.000",
- "text": "all",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"d07sz7j"
- },
- {
- "start": "521.20",
- "end": "521.2900000000001",
- "confidence": "1.000",
- "text": "of",
- "offset": 46,
- "length": 2,
- "key": expect.any(String)//"qth22x"
- },
- {
- "start": "521.29",
- "end": "521.38",
- "confidence": "1.000",
- "text": "the",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"q8idsa"
- },
- {
- "start": "521.38",
- "end": "521.92",
- "confidence": "1.000",
- "text": "robots",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"41jvil9"
- },
- {
- "start": "521.95",
- "end": "522.22",
- "confidence": "1.000",
- "text": "unless",
- "offset": 60,
- "length": 6,
- "key": expect.any(String)//"j7g9sxv"
- },
- {
- "start": "522.22",
- "end": "522.52",
- "confidence": "1.000",
- "text": "someone",
- "offset": 67,
- "length": 7,
- "key": expect.any(String)//"fnak6fi"
- },
- {
- "start": "522.52",
- "end": "522.73",
- "confidence": "1.000",
- "text": "takes",
- "offset": 75,
- "length": 5,
- "key": expect.any(String)//"xu6ao8h"
- },
- {
- "start": "522.73",
- "end": "522.79",
- "confidence": "1.000",
- "text": "a",
- "offset": 81,
- "length": 1,
- "key": expect.any(String)//"wrtq6fc"
- },
- {
- "start": "522.79",
- "end": "523.2099999999999",
- "confidence": "1.000",
- "text": "hatchet",
- "offset": 83,
- "length": 7,
- "key": expect.any(String)//"5ipv5wn"
- },
- {
- "start": "523.21",
- "end": "523.36",
- "confidence": "1.000",
- "text": "to",
- "offset": 91,
- "length": 2,
- "key": expect.any(String)//"e12i2rq"
- },
- {
- "start": "523.36",
- "end": "523.57",
- "confidence": "1.000",
- "text": "one",
- "offset": 94,
- "length": 3,
- "key": expect.any(String)//"6zljc5d"
- },
- {
- "start": "523.57",
- "end": "523.72",
- "confidence": "1.000",
- "text": "of",
- "offset": 98,
- "length": 2,
- "key": expect.any(String)//"8352ezp"
- },
- {
- "start": "523.72",
- "end": "523.96",
- "confidence": "1.000",
- "text": "them.",
- "offset": 101,
- "length": 5,
- "key": expect.any(String)//"amgf2s"
- }
- ]
- },
- {
- "text": "And this guy stood up and he took the hatchet and the whole room winced as he brought the hatchet down on the robot's neck.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "525.60",
- "end": "525.78",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1332
- },
- {
- "start": "525.78",
- "end": "525.99",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1333
- },
- {
- "start": "525.99",
- "end": "526.23",
- "confidence": "0.990",
- "word": "guy",
- "punct": "guy",
- "index": 1334
- },
- {
- "start": "526.23",
- "end": "526.5",
- "confidence": "1.000",
- "word": "stood",
- "punct": "stood",
- "index": 1335
- },
- {
- "start": "526.50",
- "end": "526.77",
- "confidence": "1.000",
- "word": "up",
- "punct": "up",
- "index": 1336
- },
- {
- "start": "526.83",
- "end": "527.07",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1337
- },
- {
- "start": "527.07",
- "end": "527.3100000000001",
- "confidence": "1.000",
- "word": "he",
- "punct": "he",
- "index": 1338
- },
- {
- "start": "527.31",
- "end": "527.64",
- "confidence": "1.000",
- "word": "took",
- "punct": "took",
- "index": 1339
- },
- {
- "start": "527.64",
- "end": "527.73",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1340
- },
- {
- "start": "527.73",
- "end": "528.33",
- "confidence": "1.000",
- "word": "hatchet",
- "punct": "hatchet",
- "index": 1341
- },
- {
- "start": "529.23",
- "end": "529.38",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1342
- },
- {
- "start": "529.38",
- "end": "529.47",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1343
- },
- {
- "start": "529.47",
- "end": "529.71",
- "confidence": "1.000",
- "word": "whole",
- "punct": "whole",
- "index": 1344
- },
- {
- "start": "529.71",
- "end": "530.01",
- "confidence": "1.000",
- "word": "room",
- "punct": "room",
- "index": 1345
- },
- {
- "start": "530.01",
- "end": "530.55",
- "confidence": "1.000",
- "word": "winced",
- "punct": "winced",
- "index": 1346
- },
- {
- "start": "530.58",
- "end": "530.7",
- "confidence": "1.000",
- "word": "as",
- "punct": "as",
- "index": 1347
- },
- {
- "start": "530.70",
- "end": "530.7900000000001",
- "confidence": "1.000",
- "word": "he",
- "punct": "he",
- "index": 1348
- },
- {
- "start": "530.79",
- "end": "531.03",
- "confidence": "1.000",
- "word": "brought",
- "punct": "brought",
- "index": 1349
- },
- {
- "start": "531.03",
- "end": "531.12",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1350
- },
- {
- "start": "531.12",
- "end": "531.48",
- "confidence": "1.000",
- "word": "hatchet",
- "punct": "hatchet",
- "index": 1351
- },
- {
- "start": "531.48",
- "end": "531.75",
- "confidence": "1.000",
- "word": "down",
- "punct": "down",
- "index": 1352
- },
- {
- "start": "531.75",
- "end": "531.84",
- "confidence": "1.000",
- "word": "on",
- "punct": "on",
- "index": 1353
- },
- {
- "start": "531.84",
- "end": "531.9300000000001",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1354
- },
- {
- "start": "531.93",
- "end": "532.4399999999999",
- "confidence": "0.980",
- "word": "robot's",
- "punct": "robot's",
- "index": 1355
- },
- {
- "start": "532.44",
- "end": "533.4100000000001",
- "confidence": "1.000",
- "word": "neck",
- "punct": "neck.",
- "index": 1356
- }
- ],
- "start": "525.60"
- },
- "entityRanges": [
- {
- "start": "525.60",
- "end": "525.78",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"30pals6"
- },
- {
- "start": "525.78",
- "end": "525.99",
- "confidence": "1.000",
- "text": "this",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"csr5kpj"
- },
- {
- "start": "525.99",
- "end": "526.23",
- "confidence": "0.990",
- "text": "guy",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"rqb60g"
- },
- {
- "start": "526.23",
- "end": "526.5",
- "confidence": "1.000",
- "text": "stood",
- "offset": 13,
- "length": 5,
- "key": expect.any(String)//"2eey9et"
- },
- {
- "start": "526.50",
- "end": "526.77",
- "confidence": "1.000",
- "text": "up",
- "offset": 19,
- "length": 2,
- "key": expect.any(String)//"u8sd7m"
- },
- {
- "start": "526.83",
- "end": "527.07",
- "confidence": "1.000",
- "text": "and",
- "offset": 22,
- "length": 3,
- "key": expect.any(String)//"y3mtdca"
- },
- {
- "start": "527.07",
- "end": "527.3100000000001",
- "confidence": "1.000",
- "text": "he",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)//"x7425d"
- },
- {
- "start": "527.31",
- "end": "527.64",
- "confidence": "1.000",
- "text": "took",
- "offset": 29,
- "length": 4,
- "key": expect.any(String)//"psblgm7o"
- },
- {
- "start": "527.64",
- "end": "527.73",
- "confidence": "1.000",
- "text": "the",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"nkava"
- },
- {
- "start": "527.73",
- "end": "528.33",
- "confidence": "1.000",
- "text": "hatchet",
- "offset": 38,
- "length": 7,
- "key": expect.any(String)//"nz9fezg"
- },
- {
- "start": "529.23",
- "end": "529.38",
- "confidence": "1.000",
- "text": "and",
- "offset": 46,
- "length": 3,
- "key": expect.any(String)//"ulyxm7p"
- },
- {
- "start": "529.38",
- "end": "529.47",
- "confidence": "1.000",
- "text": "the",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"4g7o0m"
- },
- {
- "start": "529.47",
- "end": "529.71",
- "confidence": "1.000",
- "text": "whole",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"67nhvx"
- },
- {
- "start": "529.71",
- "end": "530.01",
- "confidence": "1.000",
- "text": "room",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"hhxkerv"
- },
- {
- "start": "530.01",
- "end": "530.55",
- "confidence": "1.000",
- "text": "winced",
- "offset": 65,
- "length": 6,
- "key": expect.any(String)//"6w4cvj9"
- },
- {
- "start": "530.58",
- "end": "530.7",
- "confidence": "1.000",
- "text": "as",
- "offset": 72,
- "length": 2,
- "key": expect.any(String)//"b75z46t"
- },
- {
- "start": "530.70",
- "end": "530.7900000000001",
- "confidence": "1.000",
- "text": "he",
- "offset": 75,
- "length": 2,
- "key": expect.any(String)//"i68ecvh"
- },
- {
- "start": "530.79",
- "end": "531.03",
- "confidence": "1.000",
- "text": "brought",
- "offset": 78,
- "length": 7,
- "key": expect.any(String)//"lauwfy"
- },
- {
- "start": "531.03",
- "end": "531.12",
- "confidence": "1.000",
- "text": "the",
- "offset": 86,
- "length": 3,
- "key": expect.any(String)//"0z5x6ce"
- },
- {
- "start": "531.12",
- "end": "531.48",
- "confidence": "1.000",
- "text": "hatchet",
- "offset": 90,
- "length": 7,
- "key": expect.any(String)//"gh5tcoh"
- },
- {
- "start": "531.48",
- "end": "531.75",
- "confidence": "1.000",
- "text": "down",
- "offset": 98,
- "length": 4,
- "key": expect.any(String)//"mmfmjeb"
- },
- {
- "start": "531.75",
- "end": "531.84",
- "confidence": "1.000",
- "text": "on",
- "offset": 103,
- "length": 2,
- "key": expect.any(String)//"igpokkb"
- },
- {
- "start": "531.84",
- "end": "531.9300000000001",
- "confidence": "1.000",
- "text": "the",
- "offset": 106,
- "length": 3,
- "key": expect.any(String)//"0gryrs"
- },
- {
- "start": "531.93",
- "end": "532.4399999999999",
- "confidence": "0.980",
- "text": "robot's",
- "offset": 110,
- "length": 7,
- "key": expect.any(String)//"27piif4"
- },
- {
- "start": "532.44",
- "end": "533.4100000000001",
- "confidence": "1.000",
- "text": "neck.",
- "offset": 118,
- "length": 5,
- "key": expect.any(String)//"ecqxxo"
- }
- ]
- },
- {
- "text": "And there was this half joking.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "533.73",
- "end": "534.03",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1357
- },
- {
- "start": "534.09",
- "end": "534.36",
- "confidence": "1.000",
- "word": "there",
- "punct": "there",
- "index": 1358
- },
- {
- "start": "534.36",
- "end": "534.51",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 1359
- },
- {
- "start": "534.51",
- "end": "534.6899999999999",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1360
- },
- {
- "start": "534.69",
- "end": "535.1400000000001",
- "confidence": "1.000",
- "word": "half",
- "punct": "half",
- "index": 1361
- },
- {
- "start": "535.14",
- "end": "535.83",
- "confidence": "1.000",
- "word": "joking",
- "punct": "joking.",
- "index": 1362
- }
- ],
- "start": "533.73"
- },
- "entityRanges": [
- {
- "start": "533.73",
- "end": "534.03",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"zois5h"
- },
- {
- "start": "534.09",
- "end": "534.36",
- "confidence": "1.000",
- "text": "there",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)//"vuf6td"
- },
- {
- "start": "534.36",
- "end": "534.51",
- "confidence": "1.000",
- "text": "was",
- "offset": 10,
- "length": 3,
- "key": expect.any(String)//"gn7g0id"
- },
- {
- "start": "534.51",
- "end": "534.6899999999999",
- "confidence": "1.000",
- "text": "this",
- "offset": 14,
- "length": 4,
- "key": expect.any(String)//"tw6jooh"
- },
- {
- "start": "534.69",
- "end": "535.1400000000001",
- "confidence": "1.000",
- "text": "half",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"5cu8jd8"
- },
- {
- "start": "535.14",
- "end": "535.83",
- "confidence": "1.000",
- "text": "joking.",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"ydpfgt9"
- }
- ]
- },
- {
- "text": "Half serious moment of silence in the room for this fallen robot.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "536.07",
- "end": "536.61",
- "confidence": "1.000",
- "word": "half",
- "punct": "Half",
- "index": 1363
- },
- {
- "start": "536.70",
- "end": "537.4200000000001",
- "confidence": "1.000",
- "word": "serious",
- "punct": "serious",
- "index": 1364
- },
- {
- "start": "537.42",
- "end": "537.81",
- "confidence": "1.000",
- "word": "moment",
- "punct": "moment",
- "index": 1365
- },
- {
- "start": "537.81",
- "end": "537.9",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1366
- },
- {
- "start": "537.90",
- "end": "538.59",
- "confidence": "1.000",
- "word": "silence",
- "punct": "silence",
- "index": 1367
- },
- {
- "start": "538.59",
- "end": "538.8000000000001",
- "confidence": "1.000",
- "word": "in",
- "punct": "in",
- "index": 1368
- },
- {
- "start": "538.80",
- "end": "538.89",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1369
- },
- {
- "start": "538.89",
- "end": "539.49",
- "confidence": "1.000",
- "word": "room",
- "punct": "room",
- "index": 1370
- },
- {
- "start": "540.09",
- "end": "540.27",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1371
- },
- {
- "start": "540.27",
- "end": "540.48",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1372
- },
- {
- "start": "540.48",
- "end": "540.99",
- "confidence": "0.980",
- "word": "fallen",
- "punct": "fallen",
- "index": 1373
- },
- {
- "start": "540.99",
- "end": "542.96",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot.",
- "index": 1374
- }
- ],
- "start": "536.07"
- },
- "entityRanges": [
- {
- "start": "536.07",
- "end": "536.61",
- "confidence": "1.000",
- "text": "Half",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"tsomu9t"
- },
- {
- "start": "536.70",
- "end": "537.4200000000001",
- "confidence": "1.000",
- "text": "serious",
- "offset": 5,
- "length": 7,
- "key": expect.any(String)//"05fda4j"
- },
- {
- "start": "537.42",
- "end": "537.81",
- "confidence": "1.000",
- "text": "moment",
- "offset": 13,
- "length": 6,
- "key": expect.any(String)//"sfzro0b"
- },
- {
- "start": "537.81",
- "end": "537.9",
- "confidence": "1.000",
- "text": "of",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"7go6w08"
- },
- {
- "start": "537.90",
- "end": "538.59",
- "confidence": "1.000",
- "text": "silence",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"4oimxy"
- },
- {
- "start": "538.59",
- "end": "538.8000000000001",
- "confidence": "1.000",
- "text": "in",
- "offset": 31,
- "length": 2,
- "key": expect.any(String)//"z3yn7sb"
- },
- {
- "start": "538.80",
- "end": "538.89",
- "confidence": "1.000",
- "text": "the",
- "offset": 34,
- "length": 3,
- "key": expect.any(String)//"ommmfvc"
- },
- {
- "start": "538.89",
- "end": "539.49",
- "confidence": "1.000",
- "text": "room",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"jv96n0ab"
- },
- {
- "start": "540.09",
- "end": "540.27",
- "confidence": "1.000",
- "text": "for",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"4almaws"
- },
- {
- "start": "540.27",
- "end": "540.48",
- "confidence": "1.000",
- "text": "this",
- "offset": 47,
- "length": 4,
- "key": expect.any(String)//"juy4u4p"
- },
- {
- "start": "540.48",
- "end": "540.99",
- "confidence": "0.980",
- "text": "fallen",
- "offset": 52,
- "length": 6,
- "key": expect.any(String)//"9lwsb4j"
- },
- {
- "start": "540.99",
- "end": "542.96",
- "confidence": "1.000",
- "text": "robot.",
- "offset": 59,
- "length": 6,
- "key": expect.any(String)//"z4px2e"
- }
- ]
- },
- {
- "text": "So that was a really interesting experience.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "543.24",
- "end": "543.54",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 1375
- },
- {
- "start": "543.66",
- "end": "543.8399999999999",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1376
- },
- {
- "start": "543.84",
- "end": "544.0500000000001",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 1377
- },
- {
- "start": "544.05",
- "end": "544.14",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1378
- },
- {
- "start": "544.14",
- "end": "544.53",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 1379
- },
- {
- "start": "544.59",
- "end": "545.4",
- "confidence": "1.000",
- "word": "interesting",
- "punct": "interesting",
- "index": 1380
- },
- {
- "start": "545.43",
- "end": "546.91",
- "confidence": "1.000",
- "word": "experience",
- "punct": "experience.",
- "index": 1381
- }
- ],
- "start": "543.24"
- },
- "entityRanges": [
- {
- "start": "543.24",
- "end": "543.54",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"v9816ro"
- },
- {
- "start": "543.66",
- "end": "543.8399999999999",
- "confidence": "1.000",
- "text": "that",
- "offset": 3,
- "length": 4,
- "key": expect.any(String)//"gjl7vus"
- },
- {
- "start": "543.84",
- "end": "544.0500000000001",
- "confidence": "1.000",
- "text": "was",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"v2s9tp"
- },
- {
- "start": "544.05",
- "end": "544.14",
- "confidence": "1.000",
- "text": "a",
- "offset": 12,
- "length": 1,
- "key": expect.any(String)//"z511col"
- },
- {
- "start": "544.14",
- "end": "544.53",
- "confidence": "1.000",
- "text": "really",
- "offset": 14,
- "length": 6,
- "key": expect.any(String)//"7strlrp"
- },
- {
- "start": "544.59",
- "end": "545.4",
- "confidence": "1.000",
- "text": "interesting",
- "offset": 21,
- "length": 11,
- "key": expect.any(String)//"ywepdtk"
- },
- {
- "start": "545.43",
- "end": "546.91",
- "confidence": "1.000",
- "text": "experience.",
- "offset": 33,
- "length": 11,
- "key": expect.any(String)//"nhw0thj"
- }
- ]
- },
- {
- "text": "Now it wasn't a controlled study obviously but it did lead to some later research that I did at my tea with plush Nanda and Cynthia Brazil where we had people come into the lab and smash these hex bugs that move around in a really lifelike way like insects.",
- "type": "paragraph",
- "data": {
- "speaker": "F4",
- "words": [
- {
- "start": "546.93",
- "end": "547.14",
- "confidence": "0.990",
- "word": "now",
- "punct": "Now",
- "index": 1382
- },
- {
- "start": "547.14",
- "end": "547.26",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 1383
- },
- {
- "start": "547.26",
- "end": "547.56",
- "confidence": "1.000",
- "word": "wasn't",
- "punct": "wasn't",
- "index": 1384
- },
- {
- "start": "547.56",
- "end": "547.6199999999999",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1385
- },
- {
- "start": "547.62",
- "end": "548.25",
- "confidence": "1.000",
- "word": "controlled",
- "punct": "controlled",
- "index": 1386
- },
- {
- "start": "548.25",
- "end": "548.73",
- "confidence": "1.000",
- "word": "study",
- "punct": "study",
- "index": 1387
- },
- {
- "start": "548.73",
- "end": "549.36",
- "confidence": "1.000",
- "word": "obviously",
- "punct": "obviously",
- "index": 1388
- },
- {
- "start": "549.39",
- "end": "549.6",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 1389
- },
- {
- "start": "549.60",
- "end": "549.69",
- "confidence": "1.000",
- "word": "it",
- "punct": "it",
- "index": 1390
- },
- {
- "start": "549.69",
- "end": "549.9300000000001",
- "confidence": "1.000",
- "word": "did",
- "punct": "did",
- "index": 1391
- },
- {
- "start": "549.93",
- "end": "550.14",
- "confidence": "1.000",
- "word": "lead",
- "punct": "lead",
- "index": 1392
- },
- {
- "start": "550.14",
- "end": "550.23",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1393
- },
- {
- "start": "550.23",
- "end": "550.41",
- "confidence": "1.000",
- "word": "some",
- "punct": "some",
- "index": 1394
- },
- {
- "start": "550.41",
- "end": "550.7099999999999",
- "confidence": "1.000",
- "word": "later",
- "punct": "later",
- "index": 1395
- },
- {
- "start": "550.71",
- "end": "551.19",
- "confidence": "1.000",
- "word": "research",
- "punct": "research",
- "index": 1396
- },
- {
- "start": "551.19",
- "end": "551.37",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1397
- },
- {
- "start": "551.37",
- "end": "551.46",
- "confidence": "1.000",
- "word": "i",
- "punct": "I",
- "index": 1398
- },
- {
- "start": "551.46",
- "end": "551.7",
- "confidence": "1.000",
- "word": "did",
- "punct": "did",
- "index": 1399
- },
- {
- "start": "551.71",
- "end": "551.8000000000001",
- "confidence": "0.640",
- "word": "at",
- "punct": "at",
- "index": 1400
- },
- {
- "start": "551.88",
- "end": "552.03",
- "confidence": "0.920",
- "word": "my",
- "punct": "my",
- "index": 1401
- },
- {
- "start": "552.03",
- "end": "552.27",
- "confidence": "0.810",
- "word": "tea",
- "punct": "tea",
- "index": 1402
- },
- {
- "start": "552.27",
- "end": "552.48",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1403
- },
- {
- "start": "552.48",
- "end": "552.85",
- "confidence": "0.930",
- "word": "plush",
- "punct": "plush",
- "index": 1404
- },
- {
- "start": "552.85",
- "end": "553.14",
- "confidence": "0.590",
- "word": "nanda",
- "punct": "Nanda",
- "index": 1405
- },
- {
- "start": "553.14",
- "end": "553.29",
- "confidence": "0.800",
- "word": "and",
- "punct": "and",
- "index": 1406
- },
- {
- "start": "553.29",
- "end": "553.62",
- "confidence": "1.000",
- "word": "cynthia",
- "punct": "Cynthia",
- "index": 1407
- },
- {
- "start": "553.62",
- "end": "554.19",
- "confidence": "1.000",
- "word": "brazil",
- "punct": "Brazil",
- "index": 1408
- },
- {
- "start": "554.55",
- "end": "554.8499999999999",
- "confidence": "1.000",
- "word": "where",
- "punct": "where",
- "index": 1409
- },
- {
- "start": "554.85",
- "end": "555",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1410
- },
- {
- "start": "555.00",
- "end": "555.12",
- "confidence": "1.000",
- "word": "had",
- "punct": "had",
- "index": 1411
- },
- {
- "start": "555.12",
- "end": "555.36",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 1412
- },
- {
- "start": "555.36",
- "end": "555.54",
- "confidence": "1.000",
- "word": "come",
- "punct": "come",
- "index": 1413
- },
- {
- "start": "555.54",
- "end": "555.7199999999999",
- "confidence": "0.990",
- "word": "into",
- "punct": "into",
- "index": 1414
- },
- {
- "start": "555.72",
- "end": "555.8100000000001",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1415
- },
- {
- "start": "555.81",
- "end": "556.29",
- "confidence": "1.000",
- "word": "lab",
- "punct": "lab",
- "index": 1416
- },
- {
- "start": "556.71",
- "end": "556.89",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1417
- },
- {
- "start": "556.89",
- "end": "557.25",
- "confidence": "0.980",
- "word": "smash",
- "punct": "smash",
- "index": 1418
- },
- {
- "start": "557.25",
- "end": "557.46",
- "confidence": "1.000",
- "word": "these",
- "punct": "these",
- "index": 1419
- },
- {
- "start": "557.46",
- "end": "557.85",
- "confidence": "0.990",
- "word": "hex",
- "punct": "hex",
- "index": 1420
- },
- {
- "start": "557.85",
- "end": "558.21",
- "confidence": "1.000",
- "word": "bugs",
- "punct": "bugs",
- "index": 1421
- },
- {
- "start": "558.21",
- "end": "558.33",
- "confidence": "0.910",
- "word": "that",
- "punct": "that",
- "index": 1422
- },
- {
- "start": "558.33",
- "end": "558.63",
- "confidence": "1.000",
- "word": "move",
- "punct": "move",
- "index": 1423
- },
- {
- "start": "558.63",
- "end": "559.14",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 1424
- },
- {
- "start": "559.14",
- "end": "559.26",
- "confidence": "0.970",
- "word": "in",
- "punct": "in",
- "index": 1425
- },
- {
- "start": "559.26",
- "end": "559.29",
- "confidence": "0.980",
- "word": "a",
- "punct": "a",
- "index": 1426
- },
- {
- "start": "559.29",
- "end": "559.53",
- "confidence": "1.000",
- "word": "really",
- "punct": "really",
- "index": 1427
- },
- {
- "start": "559.53",
- "end": "559.92",
- "confidence": "1.000",
- "word": "lifelike",
- "punct": "lifelike",
- "index": 1428
- },
- {
- "start": "559.92",
- "end": "560.0999999999999",
- "confidence": "1.000",
- "word": "way",
- "punct": "way",
- "index": 1429
- },
- {
- "start": "560.10",
- "end": "560.3100000000001",
- "confidence": "1.000",
- "word": "like",
- "punct": "like",
- "index": 1430
- },
- {
- "start": "560.31",
- "end": "561.3299999999999",
- "confidence": "1.000",
- "word": "insects",
- "punct": "insects.",
- "index": 1431
- }
- ],
- "start": "546.93"
- },
- "entityRanges": [
- {
- "start": "546.93",
- "end": "547.14",
- "confidence": "0.990",
- "text": "Now",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"u46on85"
- },
- {
- "start": "547.14",
- "end": "547.26",
- "confidence": "1.000",
- "text": "it",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"f297zbh"
- },
- {
- "start": "547.26",
- "end": "547.56",
- "confidence": "1.000",
- "text": "wasn't",
- "offset": 7,
- "length": 6,
- "key": expect.any(String)//"3avpclg"
- },
- {
- "start": "547.56",
- "end": "547.6199999999999",
- "confidence": "1.000",
- "text": "a",
- "offset": 14,
- "length": 1,
- "key": expect.any(String)//"2hvh7r5"
- },
- {
- "start": "547.62",
- "end": "548.25",
- "confidence": "1.000",
- "text": "controlled",
- "offset": 16,
- "length": 10,
- "key": expect.any(String)//"xy13f1"
- },
- {
- "start": "548.25",
- "end": "548.73",
- "confidence": "1.000",
- "text": "study",
- "offset": 27,
- "length": 5,
- "key": expect.any(String)//"tvhkfv7"
- },
- {
- "start": "548.73",
- "end": "549.36",
- "confidence": "1.000",
- "text": "obviously",
- "offset": 33,
- "length": 9,
- "key": expect.any(String)//"vpy7r9q"
- },
- {
- "start": "549.39",
- "end": "549.6",
- "confidence": "1.000",
- "text": "but",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"kj438g"
- },
- {
- "start": "549.60",
- "end": "549.69",
- "confidence": "1.000",
- "text": "it",
- "offset": 47,
- "length": 2,
- "key": expect.any(String)//"2hvs82"
- },
- {
- "start": "549.69",
- "end": "549.9300000000001",
- "confidence": "1.000",
- "text": "did",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"6okk3ot"
- },
- {
- "start": "549.93",
- "end": "550.14",
- "confidence": "1.000",
- "text": "lead",
- "offset": 54,
- "length": 4,
- "key": expect.any(String)//"yt6b1yxl"
- },
- {
- "start": "550.14",
- "end": "550.23",
- "confidence": "1.000",
- "text": "to",
- "offset": 59,
- "length": 2,
- "key": expect.any(String)//"1rftzir"
- },
- {
- "start": "550.23",
- "end": "550.41",
- "confidence": "1.000",
- "text": "some",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)//"gk75zz"
- },
- {
- "start": "550.41",
- "end": "550.7099999999999",
- "confidence": "1.000",
- "text": "later",
- "offset": 67,
- "length": 5,
- "key": expect.any(String)//"p3q18m"
- },
- {
- "start": "550.71",
- "end": "551.19",
- "confidence": "1.000",
- "text": "research",
- "offset": 73,
- "length": 8,
- "key": expect.any(String)//"ygweko"
- },
- {
- "start": "551.19",
- "end": "551.37",
- "confidence": "1.000",
- "text": "that",
- "offset": 82,
- "length": 4,
- "key": expect.any(String)//"tihdrnh"
- },
- {
- "start": "551.37",
- "end": "551.46",
- "confidence": "1.000",
- "text": "I",
- "offset": 87,
- "length": 1,
- "key": expect.any(String)//"eor41jo"
- },
- {
- "start": "551.46",
- "end": "551.7",
- "confidence": "1.000",
- "text": "did",
- "offset": 89,
- "length": 3,
- "key": expect.any(String)//"4c7yb3e"
- },
- {
- "start": "551.71",
- "end": "551.8000000000001",
- "confidence": "0.640",
- "text": "at",
- "offset": 93,
- "length": 2,
- "key": expect.any(String)//"l6uh9np"
- },
- {
- "start": "551.88",
- "end": "552.03",
- "confidence": "0.920",
- "text": "my",
- "offset": 96,
- "length": 2,
- "key": expect.any(String)//"epwbn0m"
- },
- {
- "start": "552.03",
- "end": "552.27",
- "confidence": "0.810",
- "text": "tea",
- "offset": 99,
- "length": 3,
- "key": expect.any(String)//"zjzlh6"
- },
- {
- "start": "552.27",
- "end": "552.48",
- "confidence": "1.000",
- "text": "with",
- "offset": 103,
- "length": 4,
- "key": expect.any(String)//"uxcr89i"
- },
- {
- "start": "552.48",
- "end": "552.85",
- "confidence": "0.930",
- "text": "plush",
- "offset": 108,
- "length": 5,
- "key": expect.any(String)//"oadco2n"
- },
- {
- "start": "552.85",
- "end": "553.14",
- "confidence": "0.590",
- "text": "Nanda",
- "offset": 114,
- "length": 5,
- "key": expect.any(String)//"jfbjh5o"
- },
- {
- "start": "553.14",
- "end": "553.29",
- "confidence": "0.800",
- "text": "and",
- "offset": 120,
- "length": 3,
- "key": expect.any(String)//"kgyh5p9"
- },
- {
- "start": "553.29",
- "end": "553.62",
- "confidence": "1.000",
- "text": "Cynthia",
- "offset": 124,
- "length": 7,
- "key": expect.any(String)//"oas4iye"
- },
- {
- "start": "553.62",
- "end": "554.19",
- "confidence": "1.000",
- "text": "Brazil",
- "offset": 132,
- "length": 6,
- "key": expect.any(String)//"94zks8b"
- },
- {
- "start": "554.55",
- "end": "554.8499999999999",
- "confidence": "1.000",
- "text": "where",
- "offset": 139,
- "length": 5,
- "key": expect.any(String)//"d785qz"
- },
- {
- "start": "554.85",
- "end": "555",
- "confidence": "1.000",
- "text": "we",
- "offset": 145,
- "length": 2,
- "key": expect.any(String)//"g8v01dp"
- },
- {
- "start": "555.00",
- "end": "555.12",
- "confidence": "1.000",
- "text": "had",
- "offset": 148,
- "length": 3,
- "key": expect.any(String)//"2dd9hg"
- },
- {
- "start": "555.12",
- "end": "555.36",
- "confidence": "1.000",
- "text": "people",
- "offset": 152,
- "length": 6,
- "key": expect.any(String)//"kp3mxsk"
- },
- {
- "start": "555.36",
- "end": "555.54",
- "confidence": "1.000",
- "text": "come",
- "offset": 159,
- "length": 4,
- "key": expect.any(String)//"zfqerg"
- },
- {
- "start": "555.54",
- "end": "555.7199999999999",
- "confidence": "0.990",
- "text": "into",
- "offset": 164,
- "length": 4,
- "key": expect.any(String)//"synttps"
- },
- {
- "start": "555.72",
- "end": "555.8100000000001",
- "confidence": "1.000",
- "text": "the",
- "offset": 169,
- "length": 3,
- "key": expect.any(String)//"b5e5lig"
- },
- {
- "start": "555.81",
- "end": "556.29",
- "confidence": "1.000",
- "text": "lab",
- "offset": 173,
- "length": 3,
- "key": expect.any(String)//"9cosmf7"
- },
- {
- "start": "556.71",
- "end": "556.89",
- "confidence": "1.000",
- "text": "and",
- "offset": 177,
- "length": 3,
- "key": expect.any(String)//"sffs01k"
- },
- {
- "start": "556.89",
- "end": "557.25",
- "confidence": "0.980",
- "text": "smash",
- "offset": 181,
- "length": 5,
- "key": expect.any(String)//"dh4xza7"
- },
- {
- "start": "557.25",
- "end": "557.46",
- "confidence": "1.000",
- "text": "these",
- "offset": 187,
- "length": 5,
- "key": expect.any(String)//"q764ekl"
- },
- {
- "start": "557.46",
- "end": "557.85",
- "confidence": "0.990",
- "text": "hex",
- "offset": 193,
- "length": 3,
- "key": expect.any(String)//"jil3osq"
- },
- {
- "start": "557.85",
- "end": "558.21",
- "confidence": "1.000",
- "text": "bugs",
- "offset": 197,
- "length": 4,
- "key": expect.any(String)//"cz9kxd7"
- },
- {
- "start": "558.21",
- "end": "558.33",
- "confidence": "0.910",
- "text": "that",
- "offset": 202,
- "length": 4,
- "key": expect.any(String)//"c5v2t7r"
- },
- {
- "start": "558.33",
- "end": "558.63",
- "confidence": "1.000",
- "text": "move",
- "offset": 207,
- "length": 4,
- "key": expect.any(String)//"vprr07q"
- },
- {
- "start": "558.63",
- "end": "559.14",
- "confidence": "1.000",
- "text": "around",
- "offset": 212,
- "length": 6,
- "key": expect.any(String)//"ipe3o96"
- },
- {
- "start": "559.14",
- "end": "559.26",
- "confidence": "0.970",
- "text": "in",
- "offset": 219,
- "length": 2,
- "key": expect.any(String)//"i9meak"
- },
- {
- "start": "559.26",
- "end": "559.29",
- "confidence": "0.980",
- "text": "a",
- "offset": 222,
- "length": 1,
- "key": expect.any(String)//"4r2vh7"
- },
- {
- "start": "559.29",
- "end": "559.53",
- "confidence": "1.000",
- "text": "really",
- "offset": 224,
- "length": 6,
- "key": expect.any(String)//"4oc34f6"
- },
- {
- "start": "559.53",
- "end": "559.92",
- "confidence": "1.000",
- "text": "lifelike",
- "offset": 231,
- "length": 8,
- "key": expect.any(String)//"eherby"
- },
- {
- "start": "559.92",
- "end": "560.0999999999999",
- "confidence": "1.000",
- "text": "way",
- "offset": 240,
- "length": 3,
- "key": expect.any(String)//"0ydhkta"
- },
- {
- "start": "560.10",
- "end": "560.3100000000001",
- "confidence": "1.000",
- "text": "like",
- "offset": 244,
- "length": 4,
- "key": expect.any(String)//"3u968a2"
- },
- {
- "start": "560.31",
- "end": "561.3299999999999",
- "confidence": "1.000",
- "text": "insects.",
- "offset": 249,
- "length": 8,
- "key": expect.any(String)//"wcuy8bc"
- }
- ]
- },
- {
- "text": "So instead of choosing something cute that people are drawn to we chose something more basic.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "561.33",
- "end": "561.51",
- "confidence": "1.000",
- "word": "so",
- "punct": "So",
- "index": 1432
- },
- {
- "start": "561.51",
- "end": "561.72",
- "confidence": "1.000",
- "word": "instead",
- "punct": "instead",
- "index": 1433
- },
- {
- "start": "561.72",
- "end": "561.8100000000001",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1434
- },
- {
- "start": "561.81",
- "end": "562.1099999999999",
- "confidence": "1.000",
- "word": "choosing",
- "punct": "choosing",
- "index": 1435
- },
- {
- "start": "562.11",
- "end": "562.35",
- "confidence": "1.000",
- "word": "something",
- "punct": "something",
- "index": 1436
- },
- {
- "start": "562.35",
- "end": "562.74",
- "confidence": "1.000",
- "word": "cute",
- "punct": "cute",
- "index": 1437
- },
- {
- "start": "562.74",
- "end": "562.86",
- "confidence": "0.930",
- "word": "that",
- "punct": "that",
- "index": 1438
- },
- {
- "start": "562.86",
- "end": "563.3100000000001",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 1439
- },
- {
- "start": "563.76",
- "end": "563.88",
- "confidence": "1.000",
- "word": "are",
- "punct": "are",
- "index": 1440
- },
- {
- "start": "563.88",
- "end": "564.24",
- "confidence": "1.000",
- "word": "drawn",
- "punct": "drawn",
- "index": 1441
- },
- {
- "start": "564.24",
- "end": "564.48",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1442
- },
- {
- "start": "564.48",
- "end": "564.6",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1443
- },
- {
- "start": "564.60",
- "end": "564.78",
- "confidence": "1.000",
- "word": "chose",
- "punct": "chose",
- "index": 1444
- },
- {
- "start": "564.78",
- "end": "565.0799999999999",
- "confidence": "1.000",
- "word": "something",
- "punct": "something",
- "index": 1445
- },
- {
- "start": "565.08",
- "end": "565.23",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1446
- },
- {
- "start": "565.23",
- "end": "566.34",
- "confidence": "1.000",
- "word": "basic",
- "punct": "basic.",
- "index": 1447
- }
- ],
- "start": "561.33"
- },
- "entityRanges": [
- {
- "start": "561.33",
- "end": "561.51",
- "confidence": "1.000",
- "text": "So",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"jfw1j3s"
- },
- {
- "start": "561.51",
- "end": "561.72",
- "confidence": "1.000",
- "text": "instead",
- "offset": 3,
- "length": 7,
- "key": expect.any(String)//"xie01t"
- },
- {
- "start": "561.72",
- "end": "561.8100000000001",
- "confidence": "1.000",
- "text": "of",
- "offset": 11,
- "length": 2,
- "key": expect.any(String)//"th4rbj"
- },
- {
- "start": "561.81",
- "end": "562.1099999999999",
- "confidence": "1.000",
- "text": "choosing",
- "offset": 14,
- "length": 8,
- "key": expect.any(String)//"16ucg8g"
- },
- {
- "start": "562.11",
- "end": "562.35",
- "confidence": "1.000",
- "text": "something",
- "offset": 23,
- "length": 9,
- "key": expect.any(String)//"uv6kyu"
- },
- {
- "start": "562.35",
- "end": "562.74",
- "confidence": "1.000",
- "text": "cute",
- "offset": 33,
- "length": 4,
- "key": expect.any(String)//"y07ps7a"
- },
- {
- "start": "562.74",
- "end": "562.86",
- "confidence": "0.930",
- "text": "that",
- "offset": 38,
- "length": 4,
- "key": expect.any(String)//"vexoqpc"
- },
- {
- "start": "562.86",
- "end": "563.3100000000001",
- "confidence": "1.000",
- "text": "people",
- "offset": 43,
- "length": 6,
- "key": expect.any(String)//"n1b4wp"
- },
- {
- "start": "563.76",
- "end": "563.88",
- "confidence": "1.000",
- "text": "are",
- "offset": 50,
- "length": 3,
- "key": expect.any(String)//"lymen39"
- },
- {
- "start": "563.88",
- "end": "564.24",
- "confidence": "1.000",
- "text": "drawn",
- "offset": 54,
- "length": 5,
- "key": expect.any(String)//"izwf1y"
- },
- {
- "start": "564.24",
- "end": "564.48",
- "confidence": "1.000",
- "text": "to",
- "offset": 60,
- "length": 2,
- "key": expect.any(String)//"3e03bnj"
- },
- {
- "start": "564.48",
- "end": "564.6",
- "confidence": "1.000",
- "text": "we",
- "offset": 63,
- "length": 2,
- "key": expect.any(String)//"wizf5vp"
- },
- {
- "start": "564.60",
- "end": "564.78",
- "confidence": "1.000",
- "text": "chose",
- "offset": 66,
- "length": 5,
- "key": expect.any(String)//"ftj1tz"
- },
- {
- "start": "564.78",
- "end": "565.0799999999999",
- "confidence": "1.000",
- "text": "something",
- "offset": 72,
- "length": 9,
- "key": expect.any(String)//"jfc3ydr"
- },
- {
- "start": "565.08",
- "end": "565.23",
- "confidence": "1.000",
- "text": "more",
- "offset": 82,
- "length": 4,
- "key": expect.any(String)//"ouvan15"
- },
- {
- "start": "565.23",
- "end": "566.34",
- "confidence": "1.000",
- "text": "basic.",
- "offset": 87,
- "length": 6,
- "key": expect.any(String)//"0u691vt"
- }
- ]
- },
- {
- "text": "And what we found was that high empathy people would hesitate more to hit the hex bugs now this is just a little study but it's part of a larger body of research that is starting to indicate that there may be a connection between people's tendencies for empathy and their behavior around robots.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "566.61",
- "end": "567",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1448
- },
- {
- "start": "567.27",
- "end": "567.42",
- "confidence": "1.000",
- "word": "what",
- "punct": "what",
- "index": 1449
- },
- {
- "start": "567.42",
- "end": "567.54",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1450
- },
- {
- "start": "567.54",
- "end": "568.11",
- "confidence": "1.000",
- "word": "found",
- "punct": "found",
- "index": 1451
- },
- {
- "start": "568.17",
- "end": "568.53",
- "confidence": "1.000",
- "word": "was",
- "punct": "was",
- "index": 1452
- },
- {
- "start": "568.53",
- "end": "568.8299999999999",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1453
- },
- {
- "start": "568.83",
- "end": "569.22",
- "confidence": "1.000",
- "word": "high",
- "punct": "high",
- "index": 1454
- },
- {
- "start": "569.22",
- "end": "569.6700000000001",
- "confidence": "1.000",
- "word": "empathy",
- "punct": "empathy",
- "index": 1455
- },
- {
- "start": "569.67",
- "end": "570.0899999999999",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 1456
- },
- {
- "start": "570.09",
- "end": "570.27",
- "confidence": "1.000",
- "word": "would",
- "punct": "would",
- "index": 1457
- },
- {
- "start": "570.27",
- "end": "570.81",
- "confidence": "1.000",
- "word": "hesitate",
- "punct": "hesitate",
- "index": 1458
- },
- {
- "start": "570.81",
- "end": "570.9899999999999",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1459
- },
- {
- "start": "570.99",
- "end": "571.11",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1460
- },
- {
- "start": "571.11",
- "end": "571.29",
- "confidence": "1.000",
- "word": "hit",
- "punct": "hit",
- "index": 1461
- },
- {
- "start": "571.29",
- "end": "571.38",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1462
- },
- {
- "start": "571.38",
- "end": "571.68",
- "confidence": "0.900",
- "word": "hex",
- "punct": "hex",
- "index": 1463
- },
- {
- "start": "571.68",
- "end": "572.15",
- "confidence": "0.990",
- "word": "bugs",
- "punct": "bugs",
- "index": 1464
- },
- {
- "start": "573.60",
- "end": "573.69",
- "confidence": "0.990",
- "word": "now",
- "punct": "now",
- "index": 1465
- },
- {
- "start": "573.69",
- "end": "573.84",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1466
- },
- {
- "start": "573.84",
- "end": "573.9300000000001",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1467
- },
- {
- "start": "573.93",
- "end": "574.14",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 1468
- },
- {
- "start": "574.14",
- "end": "574.17",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1469
- },
- {
- "start": "574.17",
- "end": "574.41",
- "confidence": "1.000",
- "word": "little",
- "punct": "little",
- "index": 1470
- },
- {
- "start": "574.41",
- "end": "574.89",
- "confidence": "1.000",
- "word": "study",
- "punct": "study",
- "index": 1471
- },
- {
- "start": "574.92",
- "end": "575.25",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 1472
- },
- {
- "start": "575.55",
- "end": "575.7299999999999",
- "confidence": "0.990",
- "word": "it's",
- "punct": "it's",
- "index": 1473
- },
- {
- "start": "575.73",
- "end": "576",
- "confidence": "1.000",
- "word": "part",
- "punct": "part",
- "index": 1474
- },
- {
- "start": "576.00",
- "end": "576.09",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1475
- },
- {
- "start": "576.09",
- "end": "576.15",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1476
- },
- {
- "start": "576.15",
- "end": "576.51",
- "confidence": "1.000",
- "word": "larger",
- "punct": "larger",
- "index": 1477
- },
- {
- "start": "576.51",
- "end": "576.78",
- "confidence": "1.000",
- "word": "body",
- "punct": "body",
- "index": 1478
- },
- {
- "start": "576.78",
- "end": "576.9",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1479
- },
- {
- "start": "576.90",
- "end": "577.5",
- "confidence": "1.000",
- "word": "research",
- "punct": "research",
- "index": 1480
- },
- {
- "start": "577.50",
- "end": "577.92",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1481
- },
- {
- "start": "578.07",
- "end": "578.22",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1482
- },
- {
- "start": "578.22",
- "end": "578.61",
- "confidence": "1.000",
- "word": "starting",
- "punct": "starting",
- "index": 1483
- },
- {
- "start": "578.61",
- "end": "578.76",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1484
- },
- {
- "start": "578.76",
- "end": "579.21",
- "confidence": "1.000",
- "word": "indicate",
- "punct": "indicate",
- "index": 1485
- },
- {
- "start": "579.21",
- "end": "579.33",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1486
- },
- {
- "start": "579.33",
- "end": "579.4200000000001",
- "confidence": "1.000",
- "word": "there",
- "punct": "there",
- "index": 1487
- },
- {
- "start": "579.42",
- "end": "579.63",
- "confidence": "1.000",
- "word": "may",
- "punct": "may",
- "index": 1488
- },
- {
- "start": "579.63",
- "end": "579.87",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 1489
- },
- {
- "start": "579.87",
- "end": "579.96",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1490
- },
- {
- "start": "579.96",
- "end": "580.5300000000001",
- "confidence": "1.000",
- "word": "connection",
- "punct": "connection",
- "index": 1491
- },
- {
- "start": "580.53",
- "end": "580.86",
- "confidence": "1.000",
- "word": "between",
- "punct": "between",
- "index": 1492
- },
- {
- "start": "580.86",
- "end": "581.3100000000001",
- "confidence": "0.710",
- "word": "people's",
- "punct": "people's",
- "index": 1493
- },
- {
- "start": "581.31",
- "end": "581.8199999999999",
- "confidence": "1.000",
- "word": "tendencies",
- "punct": "tendencies",
- "index": 1494
- },
- {
- "start": "581.82",
- "end": "581.94",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1495
- },
- {
- "start": "581.94",
- "end": "582.57",
- "confidence": "1.000",
- "word": "empathy",
- "punct": "empathy",
- "index": 1496
- },
- {
- "start": "582.93",
- "end": "583.05",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1497
- },
- {
- "start": "583.05",
- "end": "583.17",
- "confidence": "1.000",
- "word": "their",
- "punct": "their",
- "index": 1498
- },
- {
- "start": "583.17",
- "end": "583.86",
- "confidence": "0.810",
- "word": "behavior",
- "punct": "behavior",
- "index": 1499
- },
- {
- "start": "583.86",
- "end": "584.16",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 1500
- },
- {
- "start": "584.16",
- "end": "585.6899999999999",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots.",
- "index": 1501
- }
- ],
- "start": "566.61"
- },
- "entityRanges": [
- {
- "start": "566.61",
- "end": "567",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"0uzq1r6"
- },
- {
- "start": "567.27",
- "end": "567.42",
- "confidence": "1.000",
- "text": "what",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"5xs5ysn"
- },
- {
- "start": "567.42",
- "end": "567.54",
- "confidence": "1.000",
- "text": "we",
- "offset": 9,
- "length": 2,
- "key": expect.any(String)//"x8vspz4"
- },
- {
- "start": "567.54",
- "end": "568.11",
- "confidence": "1.000",
- "text": "found",
- "offset": 12,
- "length": 5,
- "key": expect.any(String)//"gqoea9c"
- },
- {
- "start": "568.17",
- "end": "568.53",
- "confidence": "1.000",
- "text": "was",
- "offset": 18,
- "length": 3,
- "key": expect.any(String)//"kms18e8"
- },
- {
- "start": "568.53",
- "end": "568.8299999999999",
- "confidence": "1.000",
- "text": "that",
- "offset": 22,
- "length": 4,
- "key": expect.any(String)//"lvtn6g"
- },
- {
- "start": "568.83",
- "end": "569.22",
- "confidence": "1.000",
- "text": "high",
- "offset": 27,
- "length": 4,
- "key": expect.any(String)//"2jpk2zj"
- },
- {
- "start": "569.22",
- "end": "569.6700000000001",
- "confidence": "1.000",
- "text": "empathy",
- "offset": 32,
- "length": 7,
- "key": expect.any(String)//"i1hqwvj"
- },
- {
- "start": "569.67",
- "end": "570.0899999999999",
- "confidence": "1.000",
- "text": "people",
- "offset": 40,
- "length": 6,
- "key": expect.any(String)//"miofxt6"
- },
- {
- "start": "570.09",
- "end": "570.27",
- "confidence": "1.000",
- "text": "would",
- "offset": 47,
- "length": 5,
- "key": expect.any(String)//"0cpaaho"
- },
- {
- "start": "570.27",
- "end": "570.81",
- "confidence": "1.000",
- "text": "hesitate",
- "offset": 53,
- "length": 8,
- "key": expect.any(String)//"p1fk8fl"
- },
- {
- "start": "570.81",
- "end": "570.9899999999999",
- "confidence": "1.000",
- "text": "more",
- "offset": 62,
- "length": 4,
- "key": expect.any(String)//"rwe3ith"
- },
- {
- "start": "570.99",
- "end": "571.11",
- "confidence": "1.000",
- "text": "to",
- "offset": 67,
- "length": 2,
- "key": expect.any(String)//"zovq"
- },
- {
- "start": "571.11",
- "end": "571.29",
- "confidence": "1.000",
- "text": "hit",
- "offset": 70,
- "length": 3,
- "key": expect.any(String)//"pjmc43j"
- },
- {
- "start": "571.29",
- "end": "571.38",
- "confidence": "1.000",
- "text": "the",
- "offset": 74,
- "length": 3,
- "key": expect.any(String)//"41mevi"
- },
- {
- "start": "571.38",
- "end": "571.68",
- "confidence": "0.900",
- "text": "hex",
- "offset": 78,
- "length": 3,
- "key": expect.any(String)//"zqvtx"
- },
- {
- "start": "571.68",
- "end": "572.15",
- "confidence": "0.990",
- "text": "bugs",
- "offset": 82,
- "length": 4,
- "key": expect.any(String)//"t76vuec"
- },
- {
- "start": "573.60",
- "end": "573.69",
- "confidence": "0.990",
- "text": "now",
- "offset": 87,
- "length": 3,
- "key": expect.any(String)//"pgkwtyr"
- },
- {
- "start": "573.69",
- "end": "573.84",
- "confidence": "1.000",
- "text": "this",
- "offset": 91,
- "length": 4,
- "key": expect.any(String)//"a02wpr"
- },
- {
- "start": "573.84",
- "end": "573.9300000000001",
- "confidence": "1.000",
- "text": "is",
- "offset": 96,
- "length": 2,
- "key": expect.any(String)//"afbcem"
- },
- {
- "start": "573.93",
- "end": "574.14",
- "confidence": "1.000",
- "text": "just",
- "offset": 99,
- "length": 4,
- "key": expect.any(String)//"94l7a1"
- },
- {
- "start": "574.14",
- "end": "574.17",
- "confidence": "1.000",
- "text": "a",
- "offset": 104,
- "length": 1,
- "key": expect.any(String)//"7my5tl"
- },
- {
- "start": "574.17",
- "end": "574.41",
- "confidence": "1.000",
- "text": "little",
- "offset": 106,
- "length": 6,
- "key": expect.any(String)//"x4ojawg"
- },
- {
- "start": "574.41",
- "end": "574.89",
- "confidence": "1.000",
- "text": "study",
- "offset": 113,
- "length": 5,
- "key": expect.any(String)//"bjqdir"
- },
- {
- "start": "574.92",
- "end": "575.25",
- "confidence": "1.000",
- "text": "but",
- "offset": 119,
- "length": 3,
- "key": expect.any(String)//"8x86xjs"
- },
- {
- "start": "575.55",
- "end": "575.7299999999999",
- "confidence": "0.990",
- "text": "it's",
- "offset": 123,
- "length": 4,
- "key": expect.any(String)//"nao5n5d"
- },
- {
- "start": "575.73",
- "end": "576",
- "confidence": "1.000",
- "text": "part",
- "offset": 128,
- "length": 4,
- "key": expect.any(String)//"sf9kmkn"
- },
- {
- "start": "576.00",
- "end": "576.09",
- "confidence": "1.000",
- "text": "of",
- "offset": 133,
- "length": 2,
- "key": expect.any(String)//"bj0ypqi"
- },
- {
- "start": "576.09",
- "end": "576.15",
- "confidence": "1.000",
- "text": "a",
- "offset": 136,
- "length": 1,
- "key": expect.any(String)//"a3mqyza"
- },
- {
- "start": "576.15",
- "end": "576.51",
- "confidence": "1.000",
- "text": "larger",
- "offset": 138,
- "length": 6,
- "key": expect.any(String)//"eiooaad"
- },
- {
- "start": "576.51",
- "end": "576.78",
- "confidence": "1.000",
- "text": "body",
- "offset": 145,
- "length": 4,
- "key": expect.any(String)//"cpn0lvp"
- },
- {
- "start": "576.78",
- "end": "576.9",
- "confidence": "1.000",
- "text": "of",
- "offset": 150,
- "length": 2,
- "key": expect.any(String)//"9w9zvvq"
- },
- {
- "start": "576.90",
- "end": "577.5",
- "confidence": "1.000",
- "text": "research",
- "offset": 153,
- "length": 8,
- "key": expect.any(String)//"zn7p575"
- },
- {
- "start": "577.50",
- "end": "577.92",
- "confidence": "1.000",
- "text": "that",
- "offset": 162,
- "length": 4,
- "key": expect.any(String)//"meeb3oq"
- },
- {
- "start": "578.07",
- "end": "578.22",
- "confidence": "1.000",
- "text": "is",
- "offset": 167,
- "length": 2,
- "key": expect.any(String)//"ge47b4fe"
- },
- {
- "start": "578.22",
- "end": "578.61",
- "confidence": "1.000",
- "text": "starting",
- "offset": 170,
- "length": 8,
- "key": expect.any(String)//"laalj9"
- },
- {
- "start": "578.61",
- "end": "578.76",
- "confidence": "1.000",
- "text": "to",
- "offset": 179,
- "length": 2,
- "key": expect.any(String)//"y07upg5"
- },
- {
- "start": "578.76",
- "end": "579.21",
- "confidence": "1.000",
- "text": "indicate",
- "offset": 182,
- "length": 8,
- "key": expect.any(String)//"jz2f6g"
- },
- {
- "start": "579.21",
- "end": "579.33",
- "confidence": "1.000",
- "text": "that",
- "offset": 191,
- "length": 4,
- "key": expect.any(String)//"km9f31t"
- },
- {
- "start": "579.33",
- "end": "579.4200000000001",
- "confidence": "1.000",
- "text": "there",
- "offset": 196,
- "length": 5,
- "key": expect.any(String)//"l809gzi"
- },
- {
- "start": "579.42",
- "end": "579.63",
- "confidence": "1.000",
- "text": "may",
- "offset": 202,
- "length": 3,
- "key": expect.any(String)//"a6q1s3h"
- },
- {
- "start": "579.63",
- "end": "579.87",
- "confidence": "1.000",
- "text": "be",
- "offset": 206,
- "length": 2,
- "key": expect.any(String)//"aaf4iw"
- },
- {
- "start": "579.87",
- "end": "579.96",
- "confidence": "1.000",
- "text": "a",
- "offset": 209,
- "length": 1,
- "key": expect.any(String)//"iqshbep"
- },
- {
- "start": "579.96",
- "end": "580.5300000000001",
- "confidence": "1.000",
- "text": "connection",
- "offset": 211,
- "length": 10,
- "key": expect.any(String)//"hbu17lj"
- },
- {
- "start": "580.53",
- "end": "580.86",
- "confidence": "1.000",
- "text": "between",
- "offset": 222,
- "length": 7,
- "key": expect.any(String)//"h576kx"
- },
- {
- "start": "580.86",
- "end": "581.3100000000001",
- "confidence": "0.710",
- "text": "people's",
- "offset": 230,
- "length": 8,
- "key": expect.any(String)//"lv6sao"
- },
- {
- "start": "581.31",
- "end": "581.8199999999999",
- "confidence": "1.000",
- "text": "tendencies",
- "offset": 239,
- "length": 10,
- "key": expect.any(String)//"emc1st"
- },
- {
- "start": "581.82",
- "end": "581.94",
- "confidence": "1.000",
- "text": "for",
- "offset": 250,
- "length": 3,
- "key": expect.any(String)//"1jvo9nh"
- },
- {
- "start": "581.94",
- "end": "582.57",
- "confidence": "1.000",
- "text": "empathy",
- "offset": 254,
- "length": 7,
- "key": expect.any(String)//"1pfje0b"
- },
- {
- "start": "582.93",
- "end": "583.05",
- "confidence": "1.000",
- "text": "and",
- "offset": 262,
- "length": 3,
- "key": expect.any(String)//"agvs375"
- },
- {
- "start": "583.05",
- "end": "583.17",
- "confidence": "1.000",
- "text": "their",
- "offset": 266,
- "length": 5,
- "key": expect.any(String)//"rbid0jr"
- },
- {
- "start": "583.17",
- "end": "583.86",
- "confidence": "0.810",
- "text": "behavior",
- "offset": 272,
- "length": 8,
- "key": expect.any(String)//"0352hqa"
- },
- {
- "start": "583.86",
- "end": "584.16",
- "confidence": "1.000",
- "text": "around",
- "offset": 281,
- "length": 6,
- "key": expect.any(String)//"t3pqbln"
- },
- {
- "start": "584.16",
- "end": "585.6899999999999",
- "confidence": "1.000",
- "text": "robots.",
- "offset": 288,
- "length": 7,
- "key": expect.any(String)//"in9kdwvq"
- }
- ]
- },
- {
- "text": "But my question for the coming era of human robot interaction is not Do we empathize with robots.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "585.69",
- "end": "585.87",
- "confidence": "1.000",
- "word": "but",
- "punct": "But",
- "index": 1502
- },
- {
- "start": "585.87",
- "end": "586.11",
- "confidence": "1.000",
- "word": "my",
- "punct": "my",
- "index": 1503
- },
- {
- "start": "586.11",
- "end": "586.83",
- "confidence": "1.000",
- "word": "question",
- "punct": "question",
- "index": 1504
- },
- {
- "start": "586.83",
- "end": "587.01",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1505
- },
- {
- "start": "587.01",
- "end": "587.1",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1506
- },
- {
- "start": "587.10",
- "end": "587.5500000000001",
- "confidence": "1.000",
- "word": "coming",
- "punct": "coming",
- "index": 1507
- },
- {
- "start": "587.55",
- "end": "587.9399999999999",
- "confidence": "1.000",
- "word": "era",
- "punct": "era",
- "index": 1508
- },
- {
- "start": "587.97",
- "end": "588.12",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1509
- },
- {
- "start": "588.12",
- "end": "588.42",
- "confidence": "1.000",
- "word": "human",
- "punct": "human",
- "index": 1510
- },
- {
- "start": "588.42",
- "end": "588.6899999999999",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1511
- },
- {
- "start": "588.69",
- "end": "589.3800000000001",
- "confidence": "1.000",
- "word": "interaction",
- "punct": "interaction",
- "index": 1512
- },
- {
- "start": "589.41",
- "end": "589.56",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1513
- },
- {
- "start": "589.56",
- "end": "590.01",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 1514
- },
- {
- "start": "590.46",
- "end": "590.61",
- "confidence": "0.990",
- "word": "do",
- "punct": "Do",
- "index": 1515
- },
- {
- "start": "590.61",
- "end": "590.76",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1516
- },
- {
- "start": "590.76",
- "end": "591.42",
- "confidence": "1.000",
- "word": "empathize",
- "punct": "empathize",
- "index": 1517
- },
- {
- "start": "591.42",
- "end": "591.5999999999999",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1518
- },
- {
- "start": "591.60",
- "end": "593.02",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots.",
- "index": 1519
- }
- ],
- "start": "585.69"
- },
- "entityRanges": [
- {
- "start": "585.69",
- "end": "585.87",
- "confidence": "1.000",
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"tzns5vu"
- },
- {
- "start": "585.87",
- "end": "586.11",
- "confidence": "1.000",
- "text": "my",
- "offset": 4,
- "length": 2,
- "key": expect.any(String)//"vkv6ni"
- },
- {
- "start": "586.11",
- "end": "586.83",
- "confidence": "1.000",
- "text": "question",
- "offset": 7,
- "length": 8,
- "key": expect.any(String)//"t637ka5"
- },
- {
- "start": "586.83",
- "end": "587.01",
- "confidence": "1.000",
- "text": "for",
- "offset": 16,
- "length": 3,
- "key": expect.any(String)//"bzpz2ho"
- },
- {
- "start": "587.01",
- "end": "587.1",
- "confidence": "1.000",
- "text": "the",
- "offset": 20,
- "length": 3,
- "key": expect.any(String)//"y12t6ik"
- },
- {
- "start": "587.10",
- "end": "587.5500000000001",
- "confidence": "1.000",
- "text": "coming",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)//"rbfdxef"
- },
- {
- "start": "587.55",
- "end": "587.9399999999999",
- "confidence": "1.000",
- "text": "era",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"07jyrld"
- },
- {
- "start": "587.97",
- "end": "588.12",
- "confidence": "1.000",
- "text": "of",
- "offset": 35,
- "length": 2,
- "key": expect.any(String)//"korsikc"
- },
- {
- "start": "588.12",
- "end": "588.42",
- "confidence": "1.000",
- "text": "human",
- "offset": 38,
- "length": 5,
- "key": expect.any(String)//"yp7ltic"
- },
- {
- "start": "588.42",
- "end": "588.6899999999999",
- "confidence": "1.000",
- "text": "robot",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"i5ioa93"
- },
- {
- "start": "588.69",
- "end": "589.3800000000001",
- "confidence": "1.000",
- "text": "interaction",
- "offset": 50,
- "length": 11,
- "key": expect.any(String)//"lrfxd3g"
- },
- {
- "start": "589.41",
- "end": "589.56",
- "confidence": "1.000",
- "text": "is",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"44b3wr4"
- },
- {
- "start": "589.56",
- "end": "590.01",
- "confidence": "1.000",
- "text": "not",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"wxmw6ke"
- },
- {
- "start": "590.46",
- "end": "590.61",
- "confidence": "0.990",
- "text": "Do",
- "offset": 69,
- "length": 2,
- "key": expect.any(String)//"p2m1ku"
- },
- {
- "start": "590.61",
- "end": "590.76",
- "confidence": "1.000",
- "text": "we",
- "offset": 72,
- "length": 2,
- "key": expect.any(String)//"ae03us8"
- },
- {
- "start": "590.76",
- "end": "591.42",
- "confidence": "1.000",
- "text": "empathize",
- "offset": 75,
- "length": 9,
- "key": expect.any(String)//"ov7yvll"
- },
- {
- "start": "591.42",
- "end": "591.5999999999999",
- "confidence": "1.000",
- "text": "with",
- "offset": 85,
- "length": 4,
- "key": expect.any(String)//"ss6efvj"
- },
- {
- "start": "591.60",
- "end": "593.02",
- "confidence": "1.000",
- "text": "robots.",
- "offset": 90,
- "length": 7,
- "key": expect.any(String)//"fxa4ibs"
- }
- ]
- },
- {
- "text": "It's can robots change people's empathy.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "593.21",
- "end": "593.4200000000001",
- "confidence": "0.960",
- "word": "it's",
- "punct": "It's",
- "index": 1520
- },
- {
- "start": "593.43",
- "end": "593.8199999999999",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 1521
- },
- {
- "start": "593.82",
- "end": "594.3000000000001",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1522
- },
- {
- "start": "594.33",
- "end": "594.99",
- "confidence": "1.000",
- "word": "change",
- "punct": "change",
- "index": 1523
- },
- {
- "start": "594.99",
- "end": "595.41",
- "confidence": "1.000",
- "word": "people's",
- "punct": "people's",
- "index": 1524
- },
- {
- "start": "595.41",
- "end": "597.2099999999999",
- "confidence": "1.000",
- "word": "empathy",
- "punct": "empathy.",
- "index": 1525
- }
- ],
- "start": "593.21"
- },
- "entityRanges": [
- {
- "start": "593.21",
- "end": "593.4200000000001",
- "confidence": "0.960",
- "text": "It's",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"kypi4i9"
- },
- {
- "start": "593.43",
- "end": "593.8199999999999",
- "confidence": "1.000",
- "text": "can",
- "offset": 5,
- "length": 3,
- "key": expect.any(String)//"fuji03n"
- },
- {
- "start": "593.82",
- "end": "594.3000000000001",
- "confidence": "1.000",
- "text": "robots",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"6a7aj07"
- },
- {
- "start": "594.33",
- "end": "594.99",
- "confidence": "1.000",
- "text": "change",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"zafotf"
- },
- {
- "start": "594.99",
- "end": "595.41",
- "confidence": "1.000",
- "text": "people's",
- "offset": 23,
- "length": 8,
- "key": expect.any(String)//"o6919yj"
- },
- {
- "start": "595.41",
- "end": "597.2099999999999",
- "confidence": "1.000",
- "text": "empathy.",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"8ndi6ofq"
- }
- ]
- },
- {
- "text": "Is there reason to for example prevent your child from kicking a robotic dog.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "597.54",
- "end": "597.6899999999999",
- "confidence": "1.000",
- "word": "is",
- "punct": "Is",
- "index": 1526
- },
- {
- "start": "597.69",
- "end": "597.84",
- "confidence": "0.890",
- "word": "there",
- "punct": "there",
- "index": 1527
- },
- {
- "start": "597.84",
- "end": "598.26",
- "confidence": "1.000",
- "word": "reason",
- "punct": "reason",
- "index": 1528
- },
- {
- "start": "598.26",
- "end": "598.5",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1529
- },
- {
- "start": "598.50",
- "end": "598.71",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1530
- },
- {
- "start": "598.71",
- "end": "599.46",
- "confidence": "1.000",
- "word": "example",
- "punct": "example",
- "index": 1531
- },
- {
- "start": "599.79",
- "end": "600.15",
- "confidence": "1.000",
- "word": "prevent",
- "punct": "prevent",
- "index": 1532
- },
- {
- "start": "600.15",
- "end": "600.24",
- "confidence": "1.000",
- "word": "your",
- "punct": "your",
- "index": 1533
- },
- {
- "start": "600.24",
- "end": "600.72",
- "confidence": "1.000",
- "word": "child",
- "punct": "child",
- "index": 1534
- },
- {
- "start": "600.72",
- "end": "600.87",
- "confidence": "1.000",
- "word": "from",
- "punct": "from",
- "index": 1535
- },
- {
- "start": "600.87",
- "end": "601.26",
- "confidence": "1.000",
- "word": "kicking",
- "punct": "kicking",
- "index": 1536
- },
- {
- "start": "601.26",
- "end": "601.3199999999999",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1537
- },
- {
- "start": "601.32",
- "end": "601.71",
- "confidence": "1.000",
- "word": "robotic",
- "punct": "robotic",
- "index": 1538
- },
- {
- "start": "601.71",
- "end": "602.0400000000001",
- "confidence": "1.000",
- "word": "dog",
- "punct": "dog.",
- "index": 1539
- }
- ],
- "start": "597.54"
- },
- "entityRanges": [
- {
- "start": "597.54",
- "end": "597.6899999999999",
- "confidence": "1.000",
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"sgy1arj"
- },
- {
- "start": "597.69",
- "end": "597.84",
- "confidence": "0.890",
- "text": "there",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"mui56h6"
- },
- {
- "start": "597.84",
- "end": "598.26",
- "confidence": "1.000",
- "text": "reason",
- "offset": 9,
- "length": 6,
- "key": expect.any(String)//"zycgmg"
- },
- {
- "start": "598.26",
- "end": "598.5",
- "confidence": "1.000",
- "text": "to",
- "offset": 16,
- "length": 2,
- "key": expect.any(String)//"yc5ghf9"
- },
- {
- "start": "598.50",
- "end": "598.71",
- "confidence": "1.000",
- "text": "for",
- "offset": 19,
- "length": 3,
- "key": expect.any(String)//"9fhhx2b"
- },
- {
- "start": "598.71",
- "end": "599.46",
- "confidence": "1.000",
- "text": "example",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"crhqpxk"
- },
- {
- "start": "599.79",
- "end": "600.15",
- "confidence": "1.000",
- "text": "prevent",
- "offset": 31,
- "length": 7,
- "key": expect.any(String)//"hyudswa"
- },
- {
- "start": "600.15",
- "end": "600.24",
- "confidence": "1.000",
- "text": "your",
- "offset": 39,
- "length": 4,
- "key": expect.any(String)//"41vfbu"
- },
- {
- "start": "600.24",
- "end": "600.72",
- "confidence": "1.000",
- "text": "child",
- "offset": 44,
- "length": 5,
- "key": expect.any(String)//"fu3956w"
- },
- {
- "start": "600.72",
- "end": "600.87",
- "confidence": "1.000",
- "text": "from",
- "offset": 50,
- "length": 4,
- "key": expect.any(String)//"9b8kxet"
- },
- {
- "start": "600.87",
- "end": "601.26",
- "confidence": "1.000",
- "text": "kicking",
- "offset": 55,
- "length": 7,
- "key": expect.any(String)//"f9oklr9"
- },
- {
- "start": "601.26",
- "end": "601.3199999999999",
- "confidence": "1.000",
- "text": "a",
- "offset": 63,
- "length": 1,
- "key": expect.any(String)//"1zydax8"
- },
- {
- "start": "601.32",
- "end": "601.71",
- "confidence": "1.000",
- "text": "robotic",
- "offset": 65,
- "length": 7,
- "key": expect.any(String)//"uv8cpai"
- },
- {
- "start": "601.71",
- "end": "602.0400000000001",
- "confidence": "1.000",
- "text": "dog.",
- "offset": 73,
- "length": 4,
- "key": expect.any(String)//"nbhtsak"
- }
- ]
- },
- {
- "text": "Not just out of respect for property but because the child might be more likely to kick a real dog.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "603.24",
- "end": "603.54",
- "confidence": "1.000",
- "word": "not",
- "punct": "Not",
- "index": 1540
- },
- {
- "start": "603.54",
- "end": "603.9599999999999",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 1541
- },
- {
- "start": "603.96",
- "end": "604.08",
- "confidence": "1.000",
- "word": "out",
- "punct": "out",
- "index": 1542
- },
- {
- "start": "604.08",
- "end": "604.1700000000001",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1543
- },
- {
- "start": "604.17",
- "end": "604.65",
- "confidence": "1.000",
- "word": "respect",
- "punct": "respect",
- "index": 1544
- },
- {
- "start": "604.65",
- "end": "604.8",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1545
- },
- {
- "start": "604.80",
- "end": "605.49",
- "confidence": "1.000",
- "word": "property",
- "punct": "property",
- "index": 1546
- },
- {
- "start": "606.18",
- "end": "606.3",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 1547
- },
- {
- "start": "606.30",
- "end": "606.81",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 1548
- },
- {
- "start": "606.81",
- "end": "606.93",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1549
- },
- {
- "start": "606.93",
- "end": "607.2299999999999",
- "confidence": "1.000",
- "word": "child",
- "punct": "child",
- "index": 1550
- },
- {
- "start": "607.23",
- "end": "607.38",
- "confidence": "0.950",
- "word": "might",
- "punct": "might",
- "index": 1551
- },
- {
- "start": "607.38",
- "end": "607.5",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 1552
- },
- {
- "start": "607.50",
- "end": "607.65",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1553
- },
- {
- "start": "607.65",
- "end": "607.98",
- "confidence": "1.000",
- "word": "likely",
- "punct": "likely",
- "index": 1554
- },
- {
- "start": "607.98",
- "end": "608.07",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1555
- },
- {
- "start": "608.07",
- "end": "608.2800000000001",
- "confidence": "0.610",
- "word": "kick",
- "punct": "kick",
- "index": 1556
- },
- {
- "start": "608.28",
- "end": "608.3399999999999",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1557
- },
- {
- "start": "608.34",
- "end": "608.5500000000001",
- "confidence": "1.000",
- "word": "real",
- "punct": "real",
- "index": 1558
- },
- {
- "start": "608.55",
- "end": "608.9699999999999",
- "confidence": "1.000",
- "word": "dog",
- "punct": "dog.",
- "index": 1559
- }
- ],
- "start": "603.24"
- },
- "entityRanges": [
- {
- "start": "603.24",
- "end": "603.54",
- "confidence": "1.000",
- "text": "Not",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"q1cilo"
- },
- {
- "start": "603.54",
- "end": "603.9599999999999",
- "confidence": "1.000",
- "text": "just",
- "offset": 4,
- "length": 4,
- "key": expect.any(String)//"qb25mg"
- },
- {
- "start": "603.96",
- "end": "604.08",
- "confidence": "1.000",
- "text": "out",
- "offset": 9,
- "length": 3,
- "key": expect.any(String)//"stexyzh"
- },
- {
- "start": "604.08",
- "end": "604.1700000000001",
- "confidence": "1.000",
- "text": "of",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)//"i3emvb"
- },
- {
- "start": "604.17",
- "end": "604.65",
- "confidence": "1.000",
- "text": "respect",
- "offset": 16,
- "length": 7,
- "key": expect.any(String)//"0etn2s4"
- },
- {
- "start": "604.65",
- "end": "604.8",
- "confidence": "1.000",
- "text": "for",
- "offset": 24,
- "length": 3,
- "key": expect.any(String)//"fga4b7l"
- },
- {
- "start": "604.80",
- "end": "605.49",
- "confidence": "1.000",
- "text": "property",
- "offset": 28,
- "length": 8,
- "key": expect.any(String)//"enb1ovf"
- },
- {
- "start": "606.18",
- "end": "606.3",
- "confidence": "1.000",
- "text": "but",
- "offset": 37,
- "length": 3,
- "key": expect.any(String)//"obuw64g"
- },
- {
- "start": "606.30",
- "end": "606.81",
- "confidence": "1.000",
- "text": "because",
- "offset": 41,
- "length": 7,
- "key": expect.any(String)//"6ca0c7d"
- },
- {
- "start": "606.81",
- "end": "606.93",
- "confidence": "1.000",
- "text": "the",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ps04sbg"
- },
- {
- "start": "606.93",
- "end": "607.2299999999999",
- "confidence": "1.000",
- "text": "child",
- "offset": 53,
- "length": 5,
- "key": expect.any(String)//"7g77wvw"
- },
- {
- "start": "607.23",
- "end": "607.38",
- "confidence": "0.950",
- "text": "might",
- "offset": 59,
- "length": 5,
- "key": expect.any(String)//"tjk35m8"
- },
- {
- "start": "607.38",
- "end": "607.5",
- "confidence": "1.000",
- "text": "be",
- "offset": 65,
- "length": 2,
- "key": expect.any(String)//"o8m7ja"
- },
- {
- "start": "607.50",
- "end": "607.65",
- "confidence": "1.000",
- "text": "more",
- "offset": 68,
- "length": 4,
- "key": expect.any(String)//"9i6ipjn"
- },
- {
- "start": "607.65",
- "end": "607.98",
- "confidence": "1.000",
- "text": "likely",
- "offset": 73,
- "length": 6,
- "key": expect.any(String)//"wqtmea2"
- },
- {
- "start": "607.98",
- "end": "608.07",
- "confidence": "1.000",
- "text": "to",
- "offset": 80,
- "length": 2,
- "key": expect.any(String)//"ok919ts"
- },
- {
- "start": "608.07",
- "end": "608.2800000000001",
- "confidence": "0.610",
- "text": "kick",
- "offset": 83,
- "length": 4,
- "key": expect.any(String)//"talv2jd"
- },
- {
- "start": "608.28",
- "end": "608.3399999999999",
- "confidence": "1.000",
- "text": "a",
- "offset": 88,
- "length": 1,
- "key": expect.any(String)//"iscrus"
- },
- {
- "start": "608.34",
- "end": "608.5500000000001",
- "confidence": "1.000",
- "text": "real",
- "offset": 90,
- "length": 4,
- "key": expect.any(String)//"ndberx"
- },
- {
- "start": "608.55",
- "end": "608.9699999999999",
- "confidence": "1.000",
- "text": "dog.",
- "offset": 95,
- "length": 4,
- "key": expect.any(String)//"rmlf0qd"
- }
- ]
- },
- {
- "text": "And again it's not just kids.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "610.54",
- "end": "610.6899999999999",
- "confidence": "1.000",
- "word": "and",
- "punct": "And",
- "index": 1560
- },
- {
- "start": "610.69",
- "end": "610.99",
- "confidence": "1.000",
- "word": "again",
- "punct": "again",
- "index": 1561
- },
- {
- "start": "610.99",
- "end": "611.17",
- "confidence": "1.000",
- "word": "it's",
- "punct": "it's",
- "index": 1562
- },
- {
- "start": "611.17",
- "end": "611.4699999999999",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 1563
- },
- {
- "start": "611.47",
- "end": "611.71",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 1564
- },
- {
- "start": "611.71",
- "end": "613.33",
- "confidence": "1.000",
- "word": "kids",
- "punct": "kids.",
- "index": 1565
- }
- ],
- "start": "610.54"
- },
- "entityRanges": [
- {
- "start": "610.54",
- "end": "610.6899999999999",
- "confidence": "1.000",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"dwet6aj"
- },
- {
- "start": "610.69",
- "end": "610.99",
- "confidence": "1.000",
- "text": "again",
- "offset": 4,
- "length": 5,
- "key": expect.any(String)//"timu87e"
- },
- {
- "start": "610.99",
- "end": "611.17",
- "confidence": "1.000",
- "text": "it's",
- "offset": 10,
- "length": 4,
- "key": expect.any(String)//"y04sd38"
- },
- {
- "start": "611.17",
- "end": "611.4699999999999",
- "confidence": "1.000",
- "text": "not",
- "offset": 15,
- "length": 3,
- "key": expect.any(String)//"sl6x5tu"
- },
- {
- "start": "611.47",
- "end": "611.71",
- "confidence": "1.000",
- "text": "just",
- "offset": 19,
- "length": 4,
- "key": expect.any(String)//"0bxjrvj"
- },
- {
- "start": "611.71",
- "end": "613.33",
- "confidence": "1.000",
- "text": "kids.",
- "offset": 24,
- "length": 5,
- "key": expect.any(String)//"y8qkoi"
- }
- ]
- },
- {
- "text": "This is the violent video games question but it's on a completely new level because of this visceral physicality that we respond more intensely to than to images on a screen.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "613.54",
- "end": "613.78",
- "confidence": "1.000",
- "word": "this",
- "punct": "This",
- "index": 1566
- },
- {
- "start": "613.78",
- "end": "613.93",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1567
- },
- {
- "start": "613.93",
- "end": "614.3199999999999",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1568
- },
- {
- "start": "614.44",
- "end": "615.0100000000001",
- "confidence": "1.000",
- "word": "violent",
- "punct": "violent",
- "index": 1569
- },
- {
- "start": "615.10",
- "end": "615.4",
- "confidence": "1.000",
- "word": "video",
- "punct": "video",
- "index": 1570
- },
- {
- "start": "615.40",
- "end": "615.6999999999999",
- "confidence": "1.000",
- "word": "games",
- "punct": "games",
- "index": 1571
- },
- {
- "start": "615.70",
- "end": "616.12",
- "confidence": "1.000",
- "word": "question",
- "punct": "question",
- "index": 1572
- },
- {
- "start": "616.15",
- "end": "616.3",
- "confidence": "1.000",
- "word": "but",
- "punct": "but",
- "index": 1573
- },
- {
- "start": "616.30",
- "end": "616.42",
- "confidence": "0.990",
- "word": "it's",
- "punct": "it's",
- "index": 1574
- },
- {
- "start": "616.42",
- "end": "616.51",
- "confidence": "0.950",
- "word": "on",
- "punct": "on",
- "index": 1575
- },
- {
- "start": "616.51",
- "end": "616.54",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1576
- },
- {
- "start": "616.54",
- "end": "617.17",
- "confidence": "1.000",
- "word": "completely",
- "punct": "completely",
- "index": 1577
- },
- {
- "start": "617.17",
- "end": "617.29",
- "confidence": "1.000",
- "word": "new",
- "punct": "new",
- "index": 1578
- },
- {
- "start": "617.29",
- "end": "617.5899999999999",
- "confidence": "1.000",
- "word": "level",
- "punct": "level",
- "index": 1579
- },
- {
- "start": "617.62",
- "end": "617.86",
- "confidence": "1.000",
- "word": "because",
- "punct": "because",
- "index": 1580
- },
- {
- "start": "617.86",
- "end": "617.95",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1581
- },
- {
- "start": "617.95",
- "end": "618.1600000000001",
- "confidence": "1.000",
- "word": "this",
- "punct": "this",
- "index": 1582
- },
- {
- "start": "618.16",
- "end": "618.8199999999999",
- "confidence": "1.000",
- "word": "visceral",
- "punct": "visceral",
- "index": 1583
- },
- {
- "start": "618.82",
- "end": "619.75",
- "confidence": "1.000",
- "word": "physicality",
- "punct": "physicality",
- "index": 1584
- },
- {
- "start": "619.75",
- "end": "619.93",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1585
- },
- {
- "start": "619.93",
- "end": "620.05",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1586
- },
- {
- "start": "620.05",
- "end": "620.7099999999999",
- "confidence": "1.000",
- "word": "respond",
- "punct": "respond",
- "index": 1587
- },
- {
- "start": "620.71",
- "end": "621.1",
- "confidence": "1.000",
- "word": "more",
- "punct": "more",
- "index": 1588
- },
- {
- "start": "621.10",
- "end": "621.76",
- "confidence": "1.000",
- "word": "intensely",
- "punct": "intensely",
- "index": 1589
- },
- {
- "start": "621.76",
- "end": "622.18",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1590
- },
- {
- "start": "622.45",
- "end": "622.6",
- "confidence": "0.990",
- "word": "than",
- "punct": "than",
- "index": 1591
- },
- {
- "start": "622.60",
- "end": "622.72",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1592
- },
- {
- "start": "622.72",
- "end": "623.14",
- "confidence": "1.000",
- "word": "images",
- "punct": "images",
- "index": 1593
- },
- {
- "start": "623.14",
- "end": "623.26",
- "confidence": "1.000",
- "word": "on",
- "punct": "on",
- "index": 1594
- },
- {
- "start": "623.26",
- "end": "623.3199999999999",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1595
- },
- {
- "start": "623.32",
- "end": "623.8900000000001",
- "confidence": "1.000",
- "word": "screen",
- "punct": "screen.",
- "index": 1596
- }
- ],
- "start": "613.54"
- },
- "entityRanges": [
- {
- "start": "613.54",
- "end": "613.78",
- "confidence": "1.000",
- "text": "This",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"w5omwe"
- },
- {
- "start": "613.78",
- "end": "613.93",
- "confidence": "1.000",
- "text": "is",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"18a160b"
- },
- {
- "start": "613.93",
- "end": "614.3199999999999",
- "confidence": "1.000",
- "text": "the",
- "offset": 8,
- "length": 3,
- "key": expect.any(String)//"na9jsad"
- },
- {
- "start": "614.44",
- "end": "615.0100000000001",
- "confidence": "1.000",
- "text": "violent",
- "offset": 12,
- "length": 7,
- "key": expect.any(String)//"mb00f6"
- },
- {
- "start": "615.10",
- "end": "615.4",
- "confidence": "1.000",
- "text": "video",
- "offset": 20,
- "length": 5,
- "key": expect.any(String)//"4oy85kp"
- },
- {
- "start": "615.40",
- "end": "615.6999999999999",
- "confidence": "1.000",
- "text": "games",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"galhhhe"
- },
- {
- "start": "615.70",
- "end": "616.12",
- "confidence": "1.000",
- "text": "question",
- "offset": 32,
- "length": 8,
- "key": expect.any(String)//"9aqixus"
- },
- {
- "start": "616.15",
- "end": "616.3",
- "confidence": "1.000",
- "text": "but",
- "offset": 41,
- "length": 3,
- "key": expect.any(String)//"8imtamr"
- },
- {
- "start": "616.30",
- "end": "616.42",
- "confidence": "0.990",
- "text": "it's",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"yot25f"
- },
- {
- "start": "616.42",
- "end": "616.51",
- "confidence": "0.950",
- "text": "on",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"syim299"
- },
- {
- "start": "616.51",
- "end": "616.54",
- "confidence": "1.000",
- "text": "a",
- "offset": 53,
- "length": 1,
- "key": expect.any(String)//"oolhcr"
- },
- {
- "start": "616.54",
- "end": "617.17",
- "confidence": "1.000",
- "text": "completely",
- "offset": 55,
- "length": 10,
- "key": expect.any(String)//"sp2aqmf"
- },
- {
- "start": "617.17",
- "end": "617.29",
- "confidence": "1.000",
- "text": "new",
- "offset": 66,
- "length": 3,
- "key": expect.any(String)//"v46691j"
- },
- {
- "start": "617.29",
- "end": "617.5899999999999",
- "confidence": "1.000",
- "text": "level",
- "offset": 70,
- "length": 5,
- "key": expect.any(String)//"rtvnedo"
- },
- {
- "start": "617.62",
- "end": "617.86",
- "confidence": "1.000",
- "text": "because",
- "offset": 76,
- "length": 7,
- "key": expect.any(String)//"a8o01ga"
- },
- {
- "start": "617.86",
- "end": "617.95",
- "confidence": "1.000",
- "text": "of",
- "offset": 84,
- "length": 2,
- "key": expect.any(String)//"rxprp1"
- },
- {
- "start": "617.95",
- "end": "618.1600000000001",
- "confidence": "1.000",
- "text": "this",
- "offset": 87,
- "length": 4,
- "key": expect.any(String)//"t3giab"
- },
- {
- "start": "618.16",
- "end": "618.8199999999999",
- "confidence": "1.000",
- "text": "visceral",
- "offset": 92,
- "length": 8,
- "key": expect.any(String)//"h8zokqg"
- },
- {
- "start": "618.82",
- "end": "619.75",
- "confidence": "1.000",
- "text": "physicality",
- "offset": 101,
- "length": 11,
- "key": expect.any(String)//"wafozxr"
- },
- {
- "start": "619.75",
- "end": "619.93",
- "confidence": "1.000",
- "text": "that",
- "offset": 113,
- "length": 4,
- "key": expect.any(String)//"uvoysw"
- },
- {
- "start": "619.93",
- "end": "620.05",
- "confidence": "1.000",
- "text": "we",
- "offset": 118,
- "length": 2,
- "key": expect.any(String)//"u6qgknq"
- },
- {
- "start": "620.05",
- "end": "620.7099999999999",
- "confidence": "1.000",
- "text": "respond",
- "offset": 121,
- "length": 7,
- "key": expect.any(String)//"s5rtso8"
- },
- {
- "start": "620.71",
- "end": "621.1",
- "confidence": "1.000",
- "text": "more",
- "offset": 129,
- "length": 4,
- "key": expect.any(String)//"ximrwg5"
- },
- {
- "start": "621.10",
- "end": "621.76",
- "confidence": "1.000",
- "text": "intensely",
- "offset": 134,
- "length": 9,
- "key": expect.any(String)//"o3zfe4"
- },
- {
- "start": "621.76",
- "end": "622.18",
- "confidence": "1.000",
- "text": "to",
- "offset": 144,
- "length": 2,
- "key": expect.any(String)//"j7uniyc"
- },
- {
- "start": "622.45",
- "end": "622.6",
- "confidence": "0.990",
- "text": "than",
- "offset": 147,
- "length": 4,
- "key": expect.any(String)//"0xtdccl"
- },
- {
- "start": "622.60",
- "end": "622.72",
- "confidence": "1.000",
- "text": "to",
- "offset": 152,
- "length": 2,
- "key": expect.any(String)//"kgxc7e"
- },
- {
- "start": "622.72",
- "end": "623.14",
- "confidence": "1.000",
- "text": "images",
- "offset": 155,
- "length": 6,
- "key": expect.any(String)//"pos54idg"
- },
- {
- "start": "623.14",
- "end": "623.26",
- "confidence": "1.000",
- "text": "on",
- "offset": 162,
- "length": 2,
- "key": expect.any(String)//"quis58"
- },
- {
- "start": "623.26",
- "end": "623.3199999999999",
- "confidence": "1.000",
- "text": "a",
- "offset": 165,
- "length": 1,
- "key": expect.any(String)//"j3sgl4q"
- },
- {
- "start": "623.32",
- "end": "623.8900000000001",
- "confidence": "1.000",
- "text": "screen.",
- "offset": 167,
- "length": 7,
- "key": expect.any(String)//"h85tntj"
- }
- ]
- },
- {
- "text": "When we behave violently towards robots specifically robots that are designed to mimic life.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "625.70",
- "end": "625.85",
- "confidence": "1.000",
- "word": "when",
- "punct": "When",
- "index": 1597
- },
- {
- "start": "625.85",
- "end": "625.97",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1598
- },
- {
- "start": "625.97",
- "end": "626.24",
- "confidence": "1.000",
- "word": "behave",
- "punct": "behave",
- "index": 1599
- },
- {
- "start": "626.24",
- "end": "626.9",
- "confidence": "1.000",
- "word": "violently",
- "punct": "violently",
- "index": 1600
- },
- {
- "start": "626.90",
- "end": "627.41",
- "confidence": "1.000",
- "word": "towards",
- "punct": "towards",
- "index": 1601
- },
- {
- "start": "627.41",
- "end": "628.0699999999999",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1602
- },
- {
- "start": "628.13",
- "end": "628.85",
- "confidence": "1.000",
- "word": "specifically",
- "punct": "specifically",
- "index": 1603
- },
- {
- "start": "628.85",
- "end": "629.21",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1604
- },
- {
- "start": "629.21",
- "end": "629.39",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1605
- },
- {
- "start": "629.39",
- "end": "629.48",
- "confidence": "1.000",
- "word": "are",
- "punct": "are",
- "index": 1606
- },
- {
- "start": "629.48",
- "end": "629.9300000000001",
- "confidence": "1.000",
- "word": "designed",
- "punct": "designed",
- "index": 1607
- },
- {
- "start": "629.93",
- "end": "630.0799999999999",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1608
- },
- {
- "start": "630.08",
- "end": "630.4100000000001",
- "confidence": "1.000",
- "word": "mimic",
- "punct": "mimic",
- "index": 1609
- },
- {
- "start": "630.41",
- "end": "631.42",
- "confidence": "1.000",
- "word": "life",
- "punct": "life.",
- "index": 1610
- }
- ],
- "start": "625.70"
- },
- "entityRanges": [
- {
- "start": "625.70",
- "end": "625.85",
- "confidence": "1.000",
- "text": "When",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"g25oj1m"
- },
- {
- "start": "625.85",
- "end": "625.97",
- "confidence": "1.000",
- "text": "we",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"650uyu"
- },
- {
- "start": "625.97",
- "end": "626.24",
- "confidence": "1.000",
- "text": "behave",
- "offset": 8,
- "length": 6,
- "key": expect.any(String)//"xg6c1lj"
- },
- {
- "start": "626.24",
- "end": "626.9",
- "confidence": "1.000",
- "text": "violently",
- "offset": 15,
- "length": 9,
- "key": expect.any(String)//"5d563th"
- },
- {
- "start": "626.90",
- "end": "627.41",
- "confidence": "1.000",
- "text": "towards",
- "offset": 25,
- "length": 7,
- "key": expect.any(String)//"0ljfz6l"
- },
- {
- "start": "627.41",
- "end": "628.0699999999999",
- "confidence": "1.000",
- "text": "robots",
- "offset": 33,
- "length": 6,
- "key": expect.any(String)//"xvskwj4"
- },
- {
- "start": "628.13",
- "end": "628.85",
- "confidence": "1.000",
- "text": "specifically",
- "offset": 40,
- "length": 12,
- "key": expect.any(String)//"0gpkftq"
- },
- {
- "start": "628.85",
- "end": "629.21",
- "confidence": "1.000",
- "text": "robots",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"tl5lga"
- },
- {
- "start": "629.21",
- "end": "629.39",
- "confidence": "1.000",
- "text": "that",
- "offset": 60,
- "length": 4,
- "key": expect.any(String)//"t7pcia"
- },
- {
- "start": "629.39",
- "end": "629.48",
- "confidence": "1.000",
- "text": "are",
- "offset": 65,
- "length": 3,
- "key": expect.any(String)//"3a7kpft"
- },
- {
- "start": "629.48",
- "end": "629.9300000000001",
- "confidence": "1.000",
- "text": "designed",
- "offset": 69,
- "length": 8,
- "key": expect.any(String)//"ahbdujw"
- },
- {
- "start": "629.93",
- "end": "630.0799999999999",
- "confidence": "1.000",
- "text": "to",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"r69i1ch"
- },
- {
- "start": "630.08",
- "end": "630.4100000000001",
- "confidence": "1.000",
- "text": "mimic",
- "offset": 81,
- "length": 5,
- "key": expect.any(String)//"12edg6f"
- },
- {
- "start": "630.41",
- "end": "631.42",
- "confidence": "1.000",
- "text": "life.",
- "offset": 87,
- "length": 5,
- "key": expect.any(String)//"x8052uq"
- }
- ]
- },
- {
- "text": "Is that.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "631.43",
- "end": "631.5799999999999",
- "confidence": "1.000",
- "word": "is",
- "punct": "Is",
- "index": 1611
- },
- {
- "start": "631.58",
- "end": "631.88",
- "confidence": "1.000",
- "word": "that",
- "punct": "that.",
- "index": 1612
- }
- ],
- "start": "631.43"
- },
- "entityRanges": [
- {
- "start": "631.43",
- "end": "631.5799999999999",
- "confidence": "1.000",
- "text": "Is",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"cn0u33r"
- },
- {
- "start": "631.58",
- "end": "631.88",
- "confidence": "1.000",
- "text": "that.",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"qqbhvvm"
- }
- ]
- },
- {
- "text": "A healthy outlet for violent behavior.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "632.60",
- "end": "632.66",
- "confidence": "1.000",
- "word": "a",
- "punct": "A",
- "index": 1613
- },
- {
- "start": "632.66",
- "end": "633.05",
- "confidence": "1.000",
- "word": "healthy",
- "punct": "healthy",
- "index": 1614
- },
- {
- "start": "633.05",
- "end": "633.4699999999999",
- "confidence": "1.000",
- "word": "outlet",
- "punct": "outlet",
- "index": 1615
- },
- {
- "start": "633.47",
- "end": "633.65",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1616
- },
- {
- "start": "633.65",
- "end": "633.9499999999999",
- "confidence": "1.000",
- "word": "violent",
- "punct": "violent",
- "index": 1617
- },
- {
- "start": "633.95",
- "end": "634.5500000000001",
- "confidence": "0.910",
- "word": "behavior",
- "punct": "behavior.",
- "index": 1618
- }
- ],
- "start": "632.60"
- },
- "entityRanges": [
- {
- "start": "632.60",
- "end": "632.66",
- "confidence": "1.000",
- "text": "A",
- "offset": 0,
- "length": 1,
- "key": expect.any(String)//"jwe39y"
- },
- {
- "start": "632.66",
- "end": "633.05",
- "confidence": "1.000",
- "text": "healthy",
- "offset": 2,
- "length": 7,
- "key": expect.any(String)//"5oj49cpg"
- },
- {
- "start": "633.05",
- "end": "633.4699999999999",
- "confidence": "1.000",
- "text": "outlet",
- "offset": 10,
- "length": 6,
- "key": expect.any(String)//"cap0md"
- },
- {
- "start": "633.47",
- "end": "633.65",
- "confidence": "1.000",
- "text": "for",
- "offset": 17,
- "length": 3,
- "key": expect.any(String)//"w8agbvh"
- },
- {
- "start": "633.65",
- "end": "633.9499999999999",
- "confidence": "1.000",
- "text": "violent",
- "offset": 21,
- "length": 7,
- "key": expect.any(String)//"2x5byik"
- },
- {
- "start": "633.95",
- "end": "634.5500000000001",
- "confidence": "0.910",
- "text": "behavior.",
- "offset": 29,
- "length": 9,
- "key": expect.any(String)//"rd7qjvc"
- }
- ]
- },
- {
- "text": "Or is that training or cruelty muscles.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "635.36",
- "end": "635.48",
- "confidence": "1.000",
- "word": "or",
- "punct": "Or",
- "index": 1619
- },
- {
- "start": "635.48",
- "end": "635.6",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1620
- },
- {
- "start": "635.60",
- "end": "635.87",
- "confidence": "1.000",
- "word": "that",
- "punct": "that",
- "index": 1621
- },
- {
- "start": "635.93",
- "end": "636.4399999999999",
- "confidence": "1.000",
- "word": "training",
- "punct": "training",
- "index": 1622
- },
- {
- "start": "636.44",
- "end": "636.5300000000001",
- "confidence": "1.000",
- "word": "or",
- "punct": "or",
- "index": 1623
- },
- {
- "start": "636.53",
- "end": "637.04",
- "confidence": "1.000",
- "word": "cruelty",
- "punct": "cruelty",
- "index": 1624
- },
- {
- "start": "637.04",
- "end": "637.9399999999999",
- "confidence": "0.950",
- "word": "muscles",
- "punct": "muscles.",
- "index": 1625
- }
- ],
- "start": "635.36"
- },
- "entityRanges": [
- {
- "start": "635.36",
- "end": "635.48",
- "confidence": "1.000",
- "text": "Or",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"0mckhlq"
- },
- {
- "start": "635.48",
- "end": "635.6",
- "confidence": "1.000",
- "text": "is",
- "offset": 3,
- "length": 2,
- "key": expect.any(String)//"hd1av6"
- },
- {
- "start": "635.60",
- "end": "635.87",
- "confidence": "1.000",
- "text": "that",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"s58dlw"
- },
- {
- "start": "635.93",
- "end": "636.4399999999999",
- "confidence": "1.000",
- "text": "training",
- "offset": 11,
- "length": 8,
- "key": expect.any(String)//"6glug9"
- },
- {
- "start": "636.44",
- "end": "636.5300000000001",
- "confidence": "1.000",
- "text": "or",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"d1dbfde"
- },
- {
- "start": "636.53",
- "end": "637.04",
- "confidence": "1.000",
- "text": "cruelty",
- "offset": 23,
- "length": 7,
- "key": expect.any(String)//"kji6lx"
- },
- {
- "start": "637.04",
- "end": "637.9399999999999",
- "confidence": "0.950",
- "text": "muscles.",
- "offset": 31,
- "length": 8,
- "key": expect.any(String)//"gx48ip4"
- }
- ]
- },
- {
- "text": "We don't know.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "639.53",
- "end": "639.68",
- "confidence": "1.000",
- "word": "we",
- "punct": "We",
- "index": 1626
- },
- {
- "start": "639.68",
- "end": "639.8599999999999",
- "confidence": "1.000",
- "word": "don't",
- "punct": "don't",
- "index": 1627
- },
- {
- "start": "639.86",
- "end": "640.13",
- "confidence": "1.000",
- "word": "know",
- "punct": "know.",
- "index": 1628
- }
- ],
- "start": "639.53"
- },
- "entityRanges": [
- {
- "start": "639.53",
- "end": "639.68",
- "confidence": "1.000",
- "text": "We",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"g056277"
- },
- {
- "start": "639.68",
- "end": "639.8599999999999",
- "confidence": "1.000",
- "text": "don't",
- "offset": 3,
- "length": 5,
- "key": expect.any(String)//"na4o3mk"
- },
- {
- "start": "639.86",
- "end": "640.13",
- "confidence": "1.000",
- "text": "know.",
- "offset": 9,
- "length": 5,
- "key": expect.any(String)//"18hb45n"
- }
- ]
- },
- {
- "text": "But the answer to this question has the potential to impact human behavior.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "642.62",
- "end": "642.74",
- "confidence": "1.000",
- "word": "but",
- "punct": "But",
- "index": 1629
- },
- {
- "start": "642.74",
- "end": "642.89",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1630
- },
- {
- "start": "642.89",
- "end": "643.28",
- "confidence": "1.000",
- "word": "answer",
- "punct": "answer",
- "index": 1631
- },
- {
- "start": "643.28",
- "end": "643.37",
- "confidence": "0.970",
- "word": "to",
- "punct": "to",
- "index": 1632
- },
- {
- "start": "643.37",
- "end": "643.49",
- "confidence": "0.990",
- "word": "this",
- "punct": "this",
- "index": 1633
- },
- {
- "start": "643.49",
- "end": "644.12",
- "confidence": "1.000",
- "word": "question",
- "punct": "question",
- "index": 1634
- },
- {
- "start": "644.12",
- "end": "644.36",
- "confidence": "1.000",
- "word": "has",
- "punct": "has",
- "index": 1635
- },
- {
- "start": "644.36",
- "end": "644.42",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1636
- },
- {
- "start": "644.42",
- "end": "644.9",
- "confidence": "1.000",
- "word": "potential",
- "punct": "potential",
- "index": 1637
- },
- {
- "start": "644.90",
- "end": "645.02",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1638
- },
- {
- "start": "645.02",
- "end": "645.47",
- "confidence": "1.000",
- "word": "impact",
- "punct": "impact",
- "index": 1639
- },
- {
- "start": "645.47",
- "end": "645.74",
- "confidence": "1.000",
- "word": "human",
- "punct": "human",
- "index": 1640
- },
- {
- "start": "645.74",
- "end": "646.62",
- "confidence": "0.950",
- "word": "behavior",
- "punct": "behavior.",
- "index": 1641
- }
- ],
- "start": "642.62"
- },
- "entityRanges": [
- {
- "start": "642.62",
- "end": "642.74",
- "confidence": "1.000",
- "text": "But",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"w5o8isi"
- },
- {
- "start": "642.74",
- "end": "642.89",
- "confidence": "1.000",
- "text": "the",
- "offset": 4,
- "length": 3,
- "key": expect.any(String)//"lf7grc"
- },
- {
- "start": "642.89",
- "end": "643.28",
- "confidence": "1.000",
- "text": "answer",
- "offset": 8,
- "length": 6,
- "key": expect.any(String)//"42em08m"
- },
- {
- "start": "643.28",
- "end": "643.37",
- "confidence": "0.970",
- "text": "to",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"czw4y7"
- },
- {
- "start": "643.37",
- "end": "643.49",
- "confidence": "0.990",
- "text": "this",
- "offset": 18,
- "length": 4,
- "key": expect.any(String)//"zdisap"
- },
- {
- "start": "643.49",
- "end": "644.12",
- "confidence": "1.000",
- "text": "question",
- "offset": 23,
- "length": 8,
- "key": expect.any(String)//"vf8vjhb"
- },
- {
- "start": "644.12",
- "end": "644.36",
- "confidence": "1.000",
- "text": "has",
- "offset": 32,
- "length": 3,
- "key": expect.any(String)//"k0d08aa"
- },
- {
- "start": "644.36",
- "end": "644.42",
- "confidence": "1.000",
- "text": "the",
- "offset": 36,
- "length": 3,
- "key": expect.any(String)//"bb5aklm"
- },
- {
- "start": "644.42",
- "end": "644.9",
- "confidence": "1.000",
- "text": "potential",
- "offset": 40,
- "length": 9,
- "key": expect.any(String)//"8u6i3ja"
- },
- {
- "start": "644.90",
- "end": "645.02",
- "confidence": "1.000",
- "text": "to",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"ifwzlcna"
- },
- {
- "start": "645.02",
- "end": "645.47",
- "confidence": "1.000",
- "text": "impact",
- "offset": 53,
- "length": 6,
- "key": expect.any(String)//"gtfm0jr"
- },
- {
- "start": "645.47",
- "end": "645.74",
- "confidence": "1.000",
- "text": "human",
- "offset": 60,
- "length": 5,
- "key": expect.any(String)//"0xz6f2f"
- },
- {
- "start": "645.74",
- "end": "646.62",
- "confidence": "0.950",
- "text": "behavior.",
- "offset": 66,
- "length": 9,
- "key": expect.any(String)//"h5jg6j"
- }
- ]
- },
- {
- "text": "It has the potential to impact social norms.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "646.64",
- "end": "646.73",
- "confidence": "0.990",
- "word": "it",
- "punct": "It",
- "index": 1642
- },
- {
- "start": "646.73",
- "end": "646.91",
- "confidence": "1.000",
- "word": "has",
- "punct": "has",
- "index": 1643
- },
- {
- "start": "646.91",
- "end": "647",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1644
- },
- {
- "start": "647.00",
- "end": "647.45",
- "confidence": "1.000",
- "word": "potential",
- "punct": "potential",
- "index": 1645
- },
- {
- "start": "647.45",
- "end": "647.5400000000001",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1646
- },
- {
- "start": "647.54",
- "end": "647.93",
- "confidence": "1.000",
- "word": "impact",
- "punct": "impact",
- "index": 1647
- },
- {
- "start": "647.93",
- "end": "648.3199999999999",
- "confidence": "1.000",
- "word": "social",
- "punct": "social",
- "index": 1648
- },
- {
- "start": "648.32",
- "end": "649.3000000000001",
- "confidence": "1.000",
- "word": "norms",
- "punct": "norms.",
- "index": 1649
- }
- ],
- "start": "646.64"
- },
- "entityRanges": [
- {
- "start": "646.64",
- "end": "646.73",
- "confidence": "0.990",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"n9lsow"
- },
- {
- "start": "646.73",
- "end": "646.91",
- "confidence": "1.000",
- "text": "has",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"5kwoa0v"
- },
- {
- "start": "646.91",
- "end": "647",
- "confidence": "1.000",
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"8ii0xys"
- },
- {
- "start": "647.00",
- "end": "647.45",
- "confidence": "1.000",
- "text": "potential",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)//"5zxivkv"
- },
- {
- "start": "647.45",
- "end": "647.5400000000001",
- "confidence": "1.000",
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"nfecc4q"
- },
- {
- "start": "647.54",
- "end": "647.93",
- "confidence": "1.000",
- "text": "impact",
- "offset": 24,
- "length": 6,
- "key": expect.any(String)//"vomtjmk"
- },
- {
- "start": "647.93",
- "end": "648.3199999999999",
- "confidence": "1.000",
- "text": "social",
- "offset": 31,
- "length": 6,
- "key": expect.any(String)//"afqlxo7"
- },
- {
- "start": "648.32",
- "end": "649.3000000000001",
- "confidence": "1.000",
- "text": "norms.",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"0nyrus"
- }
- ]
- },
- {
- "text": "It has the potential to inspire rules around what we can and can't do with certain robots similar to our animal cruelty laws.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "649.37",
- "end": "649.49",
- "confidence": "1.000",
- "word": "it",
- "punct": "It",
- "index": 1650
- },
- {
- "start": "649.49",
- "end": "649.67",
- "confidence": "1.000",
- "word": "has",
- "punct": "has",
- "index": 1651
- },
- {
- "start": "649.67",
- "end": "649.76",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1652
- },
- {
- "start": "649.76",
- "end": "650.24",
- "confidence": "1.000",
- "word": "potential",
- "punct": "potential",
- "index": 1653
- },
- {
- "start": "650.24",
- "end": "650.39",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1654
- },
- {
- "start": "650.39",
- "end": "650.84",
- "confidence": "1.000",
- "word": "inspire",
- "punct": "inspire",
- "index": 1655
- },
- {
- "start": "650.84",
- "end": "651.44",
- "confidence": "1.000",
- "word": "rules",
- "punct": "rules",
- "index": 1656
- },
- {
- "start": "651.47",
- "end": "651.77",
- "confidence": "1.000",
- "word": "around",
- "punct": "around",
- "index": 1657
- },
- {
- "start": "651.77",
- "end": "651.92",
- "confidence": "1.000",
- "word": "what",
- "punct": "what",
- "index": 1658
- },
- {
- "start": "651.92",
- "end": "652.2199999999999",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1659
- },
- {
- "start": "652.31",
- "end": "652.67",
- "confidence": "1.000",
- "word": "can",
- "punct": "can",
- "index": 1660
- },
- {
- "start": "652.67",
- "end": "652.76",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1661
- },
- {
- "start": "652.76",
- "end": "653.03",
- "confidence": "1.000",
- "word": "can't",
- "punct": "can't",
- "index": 1662
- },
- {
- "start": "653.03",
- "end": "653.24",
- "confidence": "1.000",
- "word": "do",
- "punct": "do",
- "index": 1663
- },
- {
- "start": "653.24",
- "end": "653.36",
- "confidence": "1.000",
- "word": "with",
- "punct": "with",
- "index": 1664
- },
- {
- "start": "653.36",
- "end": "653.6",
- "confidence": "1.000",
- "word": "certain",
- "punct": "certain",
- "index": 1665
- },
- {
- "start": "653.60",
- "end": "654.23",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1666
- },
- {
- "start": "654.26",
- "end": "654.68",
- "confidence": "1.000",
- "word": "similar",
- "punct": "similar",
- "index": 1667
- },
- {
- "start": "654.68",
- "end": "654.8",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1668
- },
- {
- "start": "654.80",
- "end": "654.92",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 1669
- },
- {
- "start": "655.01",
- "end": "655.34",
- "confidence": "1.000",
- "word": "animal",
- "punct": "animal",
- "index": 1670
- },
- {
- "start": "655.34",
- "end": "655.73",
- "confidence": "1.000",
- "word": "cruelty",
- "punct": "cruelty",
- "index": 1671
- },
- {
- "start": "655.73",
- "end": "656.74",
- "confidence": "1.000",
- "word": "laws",
- "punct": "laws.",
- "index": 1672
- }
- ],
- "start": "649.37"
- },
- "entityRanges": [
- {
- "start": "649.37",
- "end": "649.49",
- "confidence": "1.000",
- "text": "It",
- "offset": 0,
- "length": 2,
- "key": expect.any(String)//"by1b6q"
- },
- {
- "start": "649.49",
- "end": "649.67",
- "confidence": "1.000",
- "text": "has",
- "offset": 3,
- "length": 3,
- "key": expect.any(String)//"9hi673o"
- },
- {
- "start": "649.67",
- "end": "649.76",
- "confidence": "1.000",
- "text": "the",
- "offset": 7,
- "length": 3,
- "key": expect.any(String)//"h6gcgzs"
- },
- {
- "start": "649.76",
- "end": "650.24",
- "confidence": "1.000",
- "text": "potential",
- "offset": 11,
- "length": 9,
- "key": expect.any(String)//"k9zyuz"
- },
- {
- "start": "650.24",
- "end": "650.39",
- "confidence": "1.000",
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"1mq85jp"
- },
- {
- "start": "650.39",
- "end": "650.84",
- "confidence": "1.000",
- "text": "inspire",
- "offset": 24,
- "length": 7,
- "key": expect.any(String)//"86ceq3c"
- },
- {
- "start": "650.84",
- "end": "651.44",
- "confidence": "1.000",
- "text": "rules",
- "offset": 32,
- "length": 5,
- "key": expect.any(String)//"1bggw8i"
- },
- {
- "start": "651.47",
- "end": "651.77",
- "confidence": "1.000",
- "text": "around",
- "offset": 38,
- "length": 6,
- "key": expect.any(String)//"n5azmc7"
- },
- {
- "start": "651.77",
- "end": "651.92",
- "confidence": "1.000",
- "text": "what",
- "offset": 45,
- "length": 4,
- "key": expect.any(String)//"y0wrdf4"
- },
- {
- "start": "651.92",
- "end": "652.2199999999999",
- "confidence": "1.000",
- "text": "we",
- "offset": 50,
- "length": 2,
- "key": expect.any(String)//"k5n9hjo"
- },
- {
- "start": "652.31",
- "end": "652.67",
- "confidence": "1.000",
- "text": "can",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)//"pjd8s3"
- },
- {
- "start": "652.67",
- "end": "652.76",
- "confidence": "1.000",
- "text": "and",
- "offset": 57,
- "length": 3,
- "key": expect.any(String)//"wiy3kvh"
- },
- {
- "start": "652.76",
- "end": "653.03",
- "confidence": "1.000",
- "text": "can't",
- "offset": 61,
- "length": 5,
- "key": expect.any(String)//"x5xpfzy"
- },
- {
- "start": "653.03",
- "end": "653.24",
- "confidence": "1.000",
- "text": "do",
- "offset": 67,
- "length": 2,
- "key": expect.any(String)//"6efavb"
- },
- {
- "start": "653.24",
- "end": "653.36",
- "confidence": "1.000",
- "text": "with",
- "offset": 70,
- "length": 4,
- "key": expect.any(String)//"p1irwcw"
- },
- {
- "start": "653.36",
- "end": "653.6",
- "confidence": "1.000",
- "text": "certain",
- "offset": 75,
- "length": 7,
- "key": expect.any(String)//"2x1ow0h"
- },
- {
- "start": "653.60",
- "end": "654.23",
- "confidence": "1.000",
- "text": "robots",
- "offset": 83,
- "length": 6,
- "key": expect.any(String)//"bogqx1n"
- },
- {
- "start": "654.26",
- "end": "654.68",
- "confidence": "1.000",
- "text": "similar",
- "offset": 90,
- "length": 7,
- "key": expect.any(String)//"abg9tbp"
- },
- {
- "start": "654.68",
- "end": "654.8",
- "confidence": "1.000",
- "text": "to",
- "offset": 98,
- "length": 2,
- "key": expect.any(String)//"deejf1"
- },
- {
- "start": "654.80",
- "end": "654.92",
- "confidence": "1.000",
- "text": "our",
- "offset": 101,
- "length": 3,
- "key": expect.any(String)//"o7wz8mb"
- },
- {
- "start": "655.01",
- "end": "655.34",
- "confidence": "1.000",
- "text": "animal",
- "offset": 105,
- "length": 6,
- "key": expect.any(String)//"jz2hy8h"
- },
- {
- "start": "655.34",
- "end": "655.73",
- "confidence": "1.000",
- "text": "cruelty",
- "offset": 112,
- "length": 7,
- "key": expect.any(String)//"7s9b0x"
- },
- {
- "start": "655.73",
- "end": "656.74",
- "confidence": "1.000",
- "text": "laws.",
- "offset": 120,
- "length": 5,
- "key": expect.any(String)//"7506nx5"
- }
- ]
- },
- {
- "text": "Because even if robots can't feel.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "657.23",
- "end": "657.59",
- "confidence": "1.000",
- "word": "because",
- "punct": "Because",
- "index": 1673
- },
- {
- "start": "657.59",
- "end": "657.89",
- "confidence": "1.000",
- "word": "even",
- "punct": "even",
- "index": 1674
- },
- {
- "start": "657.89",
- "end": "658.01",
- "confidence": "1.000",
- "word": "if",
- "punct": "if",
- "index": 1675
- },
- {
- "start": "658.01",
- "end": "658.43",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1676
- },
- {
- "start": "658.43",
- "end": "658.7299999999999",
- "confidence": "1.000",
- "word": "can't",
- "punct": "can't",
- "index": 1677
- },
- {
- "start": "658.73",
- "end": "659.33",
- "confidence": "1.000",
- "word": "feel",
- "punct": "feel.",
- "index": 1678
- }
- ],
- "start": "657.23"
- },
- "entityRanges": [
- {
- "start": "657.23",
- "end": "657.59",
- "confidence": "1.000",
- "text": "Because",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"t7a189w"
- },
- {
- "start": "657.59",
- "end": "657.89",
- "confidence": "1.000",
- "text": "even",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"div705t"
- },
- {
- "start": "657.89",
- "end": "658.01",
- "confidence": "1.000",
- "text": "if",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)//"nhew0k"
- },
- {
- "start": "658.01",
- "end": "658.43",
- "confidence": "1.000",
- "text": "robots",
- "offset": 16,
- "length": 6,
- "key": expect.any(String)//"xshwuxb"
- },
- {
- "start": "658.43",
- "end": "658.7299999999999",
- "confidence": "1.000",
- "text": "can't",
- "offset": 23,
- "length": 5,
- "key": expect.any(String)//"wiqzs3j"
- },
- {
- "start": "658.73",
- "end": "659.33",
- "confidence": "1.000",
- "text": "feel.",
- "offset": 29,
- "length": 5,
- "key": expect.any(String)//"0ndka3"
- }
- ]
- },
- {
- "text": "Our behavior towards them might matter for us.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "660.14",
- "end": "660.26",
- "confidence": "1.000",
- "word": "our",
- "punct": "Our",
- "index": 1679
- },
- {
- "start": "660.26",
- "end": "660.89",
- "confidence": "0.810",
- "word": "behavior",
- "punct": "behavior",
- "index": 1680
- },
- {
- "start": "660.89",
- "end": "661.22",
- "confidence": "1.000",
- "word": "towards",
- "punct": "towards",
- "index": 1681
- },
- {
- "start": "661.22",
- "end": "661.4",
- "confidence": "1.000",
- "word": "them",
- "punct": "them",
- "index": 1682
- },
- {
- "start": "661.40",
- "end": "661.64",
- "confidence": "1.000",
- "word": "might",
- "punct": "might",
- "index": 1683
- },
- {
- "start": "661.64",
- "end": "662.21",
- "confidence": "1.000",
- "word": "matter",
- "punct": "matter",
- "index": 1684
- },
- {
- "start": "662.45",
- "end": "662.6600000000001",
- "confidence": "1.000",
- "word": "for",
- "punct": "for",
- "index": 1685
- },
- {
- "start": "662.66",
- "end": "663.0799999999999",
- "confidence": "1.000",
- "word": "us",
- "punct": "us.",
- "index": 1686
- }
- ],
- "start": "660.14"
- },
- "entityRanges": [
- {
- "start": "660.14",
- "end": "660.26",
- "confidence": "1.000",
- "text": "Our",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"5r3gcq"
- },
- {
- "start": "660.26",
- "end": "660.89",
- "confidence": "0.810",
- "text": "behavior",
- "offset": 4,
- "length": 8,
- "key": expect.any(String)//"yuus68"
- },
- {
- "start": "660.89",
- "end": "661.22",
- "confidence": "1.000",
- "text": "towards",
- "offset": 13,
- "length": 7,
- "key": expect.any(String)//"4q6xi9s"
- },
- {
- "start": "661.22",
- "end": "661.4",
- "confidence": "1.000",
- "text": "them",
- "offset": 21,
- "length": 4,
- "key": expect.any(String)//"au4mmma"
- },
- {
- "start": "661.40",
- "end": "661.64",
- "confidence": "1.000",
- "text": "might",
- "offset": 26,
- "length": 5,
- "key": expect.any(String)//"r4b4a4f"
- },
- {
- "start": "661.64",
- "end": "662.21",
- "confidence": "1.000",
- "text": "matter",
- "offset": 32,
- "length": 6,
- "key": expect.any(String)//"baun307"
- },
- {
- "start": "662.45",
- "end": "662.6600000000001",
- "confidence": "1.000",
- "text": "for",
- "offset": 39,
- "length": 3,
- "key": expect.any(String)//"ree5mdb"
- },
- {
- "start": "662.66",
- "end": "663.0799999999999",
- "confidence": "1.000",
- "text": "us.",
- "offset": 43,
- "length": 3,
- "key": expect.any(String)//"e95bkd"
- }
- ]
- },
- {
- "text": "And regardless of whether we end up changing our rules.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "664.94",
- "end": "665.0600000000001",
- "confidence": "0.990",
- "word": "and",
- "punct": "And",
- "index": 1687
- },
- {
- "start": "665.06",
- "end": "665.5999999999999",
- "confidence": "1.000",
- "word": "regardless",
- "punct": "regardless",
- "index": 1688
- },
- {
- "start": "665.60",
- "end": "665.69",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1689
- },
- {
- "start": "665.69",
- "end": "665.9300000000001",
- "confidence": "1.000",
- "word": "whether",
- "punct": "whether",
- "index": 1690
- },
- {
- "start": "665.93",
- "end": "666.0799999999999",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1691
- },
- {
- "start": "666.08",
- "end": "666.23",
- "confidence": "1.000",
- "word": "end",
- "punct": "end",
- "index": 1692
- },
- {
- "start": "666.23",
- "end": "666.32",
- "confidence": "1.000",
- "word": "up",
- "punct": "up",
- "index": 1693
- },
- {
- "start": "666.32",
- "end": "666.8900000000001",
- "confidence": "1.000",
- "word": "changing",
- "punct": "changing",
- "index": 1694
- },
- {
- "start": "666.89",
- "end": "666.98",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 1695
- },
- {
- "start": "666.98",
- "end": "667.58",
- "confidence": "0.990",
- "word": "rules",
- "punct": "rules.",
- "index": 1696
- }
- ],
- "start": "664.94"
- },
- "entityRanges": [
- {
- "start": "664.94",
- "end": "665.0600000000001",
- "confidence": "0.990",
- "text": "And",
- "offset": 0,
- "length": 3,
- "key": expect.any(String)//"domhkfy"
- },
- {
- "start": "665.06",
- "end": "665.5999999999999",
- "confidence": "1.000",
- "text": "regardless",
- "offset": 4,
- "length": 10,
- "key": expect.any(String)//"1tiefjn"
- },
- {
- "start": "665.60",
- "end": "665.69",
- "confidence": "1.000",
- "text": "of",
- "offset": 15,
- "length": 2,
- "key": expect.any(String)//"c473j8"
- },
- {
- "start": "665.69",
- "end": "665.9300000000001",
- "confidence": "1.000",
- "text": "whether",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"mo4kwyd"
- },
- {
- "start": "665.93",
- "end": "666.0799999999999",
- "confidence": "1.000",
- "text": "we",
- "offset": 26,
- "length": 2,
- "key": expect.any(String)//"zlpql"
- },
- {
- "start": "666.08",
- "end": "666.23",
- "confidence": "1.000",
- "text": "end",
- "offset": 29,
- "length": 3,
- "key": expect.any(String)//"5tcmsx"
- },
- {
- "start": "666.23",
- "end": "666.32",
- "confidence": "1.000",
- "text": "up",
- "offset": 33,
- "length": 2,
- "key": expect.any(String)//"mv7pg8f"
- },
- {
- "start": "666.32",
- "end": "666.8900000000001",
- "confidence": "1.000",
- "text": "changing",
- "offset": 36,
- "length": 8,
- "key": expect.any(String)//"tgxtxpi"
- },
- {
- "start": "666.89",
- "end": "666.98",
- "confidence": "1.000",
- "text": "our",
- "offset": 45,
- "length": 3,
- "key": expect.any(String)//"ubkpo5c"
- },
- {
- "start": "666.98",
- "end": "667.58",
- "confidence": "0.990",
- "text": "rules.",
- "offset": 49,
- "length": 6,
- "key": expect.any(String)//"agoivh"
- }
- ]
- },
- {
- "text": "Robots might be able to help us come to a new understanding of ourselves.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "668.91",
- "end": "669.3299999999999",
- "confidence": "1.000",
- "word": "robots",
- "punct": "Robots",
- "index": 1697
- },
- {
- "start": "669.33",
- "end": "669.6",
- "confidence": "1.000",
- "word": "might",
- "punct": "might",
- "index": 1698
- },
- {
- "start": "669.60",
- "end": "669.75",
- "confidence": "1.000",
- "word": "be",
- "punct": "be",
- "index": 1699
- },
- {
- "start": "669.75",
- "end": "669.96",
- "confidence": "1.000",
- "word": "able",
- "punct": "able",
- "index": 1700
- },
- {
- "start": "669.96",
- "end": "670.0500000000001",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1701
- },
- {
- "start": "670.05",
- "end": "670.26",
- "confidence": "1.000",
- "word": "help",
- "punct": "help",
- "index": 1702
- },
- {
- "start": "670.26",
- "end": "670.38",
- "confidence": "1.000",
- "word": "us",
- "punct": "us",
- "index": 1703
- },
- {
- "start": "670.38",
- "end": "670.59",
- "confidence": "1.000",
- "word": "come",
- "punct": "come",
- "index": 1704
- },
- {
- "start": "670.59",
- "end": "670.74",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1705
- },
- {
- "start": "670.74",
- "end": "670.8",
- "confidence": "0.990",
- "word": "a",
- "punct": "a",
- "index": 1706
- },
- {
- "start": "670.80",
- "end": "671.04",
- "confidence": "1.000",
- "word": "new",
- "punct": "new",
- "index": 1707
- },
- {
- "start": "671.04",
- "end": "671.61",
- "confidence": "1.000",
- "word": "understanding",
- "punct": "understanding",
- "index": 1708
- },
- {
- "start": "671.61",
- "end": "671.7",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1709
- },
- {
- "start": "671.70",
- "end": "672.45",
- "confidence": "0.990",
- "word": "ourselves",
- "punct": "ourselves.",
- "index": 1710
- }
- ],
- "start": "668.91"
- },
- "entityRanges": [
- {
- "start": "668.91",
- "end": "669.3299999999999",
- "confidence": "1.000",
- "text": "Robots",
- "offset": 0,
- "length": 6,
- "key": expect.any(String)//"kg7rbk9"
- },
- {
- "start": "669.33",
- "end": "669.6",
- "confidence": "1.000",
- "text": "might",
- "offset": 7,
- "length": 5,
- "key": expect.any(String)//"7z21yaf"
- },
- {
- "start": "669.60",
- "end": "669.75",
- "confidence": "1.000",
- "text": "be",
- "offset": 13,
- "length": 2,
- "key": expect.any(String)//"i000aba"
- },
- {
- "start": "669.75",
- "end": "669.96",
- "confidence": "1.000",
- "text": "able",
- "offset": 16,
- "length": 4,
- "key": expect.any(String)//"k05yx3"
- },
- {
- "start": "669.96",
- "end": "670.0500000000001",
- "confidence": "1.000",
- "text": "to",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"vodki"
- },
- {
- "start": "670.05",
- "end": "670.26",
- "confidence": "1.000",
- "text": "help",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"ja5ielg"
- },
- {
- "start": "670.26",
- "end": "670.38",
- "confidence": "1.000",
- "text": "us",
- "offset": 29,
- "length": 2,
- "key": expect.any(String)//"fdxq66a"
- },
- {
- "start": "670.38",
- "end": "670.59",
- "confidence": "1.000",
- "text": "come",
- "offset": 32,
- "length": 4,
- "key": expect.any(String)//"24et35"
- },
- {
- "start": "670.59",
- "end": "670.74",
- "confidence": "1.000",
- "text": "to",
- "offset": 37,
- "length": 2,
- "key": expect.any(String)//"y1idcl"
- },
- {
- "start": "670.74",
- "end": "670.8",
- "confidence": "0.990",
- "text": "a",
- "offset": 40,
- "length": 1,
- "key": expect.any(String)//"jvkpgk"
- },
- {
- "start": "670.80",
- "end": "671.04",
- "confidence": "1.000",
- "text": "new",
- "offset": 42,
- "length": 3,
- "key": expect.any(String)//"s367h6h"
- },
- {
- "start": "671.04",
- "end": "671.61",
- "confidence": "1.000",
- "text": "understanding",
- "offset": 46,
- "length": 13,
- "key": expect.any(String)//"7jtujoj"
- },
- {
- "start": "671.61",
- "end": "671.7",
- "confidence": "1.000",
- "text": "of",
- "offset": 60,
- "length": 2,
- "key": expect.any(String)//"egqh3n"
- },
- {
- "start": "671.70",
- "end": "672.45",
- "confidence": "0.990",
- "text": "ourselves.",
- "offset": 63,
- "length": 10,
- "key": expect.any(String)//"k8c5jg"
- }
- ]
- },
- {
- "text": "Most of what I've learned over the past 10 years has not been about technology at all it's been about human psychology and empathy and how we relate to others.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "674.26",
- "end": "674.5",
- "confidence": "1.000",
- "word": "most",
- "punct": "Most",
- "index": 1711
- },
- {
- "start": "674.50",
- "end": "674.56",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1712
- },
- {
- "start": "674.56",
- "end": "674.68",
- "confidence": "1.000",
- "word": "what",
- "punct": "what",
- "index": 1713
- },
- {
- "start": "674.68",
- "end": "674.8",
- "confidence": "0.890",
- "word": "i've",
- "punct": "I've",
- "index": 1714
- },
- {
- "start": "674.80",
- "end": "675.0699999999999",
- "confidence": "1.000",
- "word": "learned",
- "punct": "learned",
- "index": 1715
- },
- {
- "start": "675.07",
- "end": "675.19",
- "confidence": "1.000",
- "word": "over",
- "punct": "over",
- "index": 1716
- },
- {
- "start": "675.19",
- "end": "675.25",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1717
- },
- {
- "start": "675.25",
- "end": "675.52",
- "confidence": "1.000",
- "word": "past",
- "punct": "past",
- "index": 1718
- },
- {
- "start": "675.52",
- "end": "675.73",
- "confidence": "0.540",
- "word": "10",
- "punct": "10",
- "index": 1719
- },
- {
- "start": "675.73",
- "end": "676.27",
- "confidence": "1.000",
- "word": "years",
- "punct": "years",
- "index": 1720
- },
- {
- "start": "676.48",
- "end": "676.63",
- "confidence": "0.720",
- "word": "has",
- "punct": "has",
- "index": 1721
- },
- {
- "start": "676.63",
- "end": "676.87",
- "confidence": "1.000",
- "word": "not",
- "punct": "not",
- "index": 1722
- },
- {
- "start": "676.87",
- "end": "677.02",
- "confidence": "1.000",
- "word": "been",
- "punct": "been",
- "index": 1723
- },
- {
- "start": "677.02",
- "end": "677.1999999999999",
- "confidence": "1.000",
- "word": "about",
- "punct": "about",
- "index": 1724
- },
- {
- "start": "677.20",
- "end": "677.74",
- "confidence": "1.000",
- "word": "technology",
- "punct": "technology",
- "index": 1725
- },
- {
- "start": "677.74",
- "end": "677.83",
- "confidence": "1.000",
- "word": "at",
- "punct": "at",
- "index": 1726
- },
- {
- "start": "677.83",
- "end": "678.1",
- "confidence": "1.000",
- "word": "all",
- "punct": "all",
- "index": 1727
- },
- {
- "start": "678.91",
- "end": "679.0899999999999",
- "confidence": "1.000",
- "word": "it's",
- "punct": "it's",
- "index": 1728
- },
- {
- "start": "679.09",
- "end": "679.24",
- "confidence": "1.000",
- "word": "been",
- "punct": "been",
- "index": 1729
- },
- {
- "start": "679.24",
- "end": "679.48",
- "confidence": "1.000",
- "word": "about",
- "punct": "about",
- "index": 1730
- },
- {
- "start": "679.48",
- "end": "679.78",
- "confidence": "1.000",
- "word": "human",
- "punct": "human",
- "index": 1731
- },
- {
- "start": "679.78",
- "end": "680.65",
- "confidence": "1.000",
- "word": "psychology",
- "punct": "psychology",
- "index": 1732
- },
- {
- "start": "681.43",
- "end": "681.5799999999999",
- "confidence": "0.990",
- "word": "and",
- "punct": "and",
- "index": 1733
- },
- {
- "start": "681.58",
- "end": "682.2700000000001",
- "confidence": "1.000",
- "word": "empathy",
- "punct": "empathy",
- "index": 1734
- },
- {
- "start": "682.33",
- "end": "682.45",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1735
- },
- {
- "start": "682.45",
- "end": "682.6600000000001",
- "confidence": "1.000",
- "word": "how",
- "punct": "how",
- "index": 1736
- },
- {
- "start": "682.66",
- "end": "682.81",
- "confidence": "1.000",
- "word": "we",
- "punct": "we",
- "index": 1737
- },
- {
- "start": "682.81",
- "end": "683.1099999999999",
- "confidence": "1.000",
- "word": "relate",
- "punct": "relate",
- "index": 1738
- },
- {
- "start": "683.11",
- "end": "683.26",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1739
- },
- {
- "start": "683.26",
- "end": "683.98",
- "confidence": "1.000",
- "word": "others",
- "punct": "others.",
- "index": 1740
- }
- ],
- "start": "674.26"
- },
- "entityRanges": [
- {
- "start": "674.26",
- "end": "674.5",
- "confidence": "1.000",
- "text": "Most",
- "offset": 0,
- "length": 4,
- "key": expect.any(String)//"dvncp4ah"
- },
- {
- "start": "674.50",
- "end": "674.56",
- "confidence": "1.000",
- "text": "of",
- "offset": 5,
- "length": 2,
- "key": expect.any(String)//"lnfrtis"
- },
- {
- "start": "674.56",
- "end": "674.68",
- "confidence": "1.000",
- "text": "what",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"drx4ftg"
- },
- {
- "start": "674.68",
- "end": "674.8",
- "confidence": "0.890",
- "text": "I've",
- "offset": 13,
- "length": 4,
- "key": expect.any(String)//"8z2h7d8"
- },
- {
- "start": "674.80",
- "end": "675.0699999999999",
- "confidence": "1.000",
- "text": "learned",
- "offset": 18,
- "length": 7,
- "key": expect.any(String)//"gcrbvh"
- },
- {
- "start": "675.07",
- "end": "675.19",
- "confidence": "1.000",
- "text": "over",
- "offset": 26,
- "length": 4,
- "key": expect.any(String)//"brjpgu"
- },
- {
- "start": "675.19",
- "end": "675.25",
- "confidence": "1.000",
- "text": "the",
- "offset": 31,
- "length": 3,
- "key": expect.any(String)//"65wozg08"
- },
- {
- "start": "675.25",
- "end": "675.52",
- "confidence": "1.000",
- "text": "past",
- "offset": 35,
- "length": 4,
- "key": expect.any(String)//"6x22mxp"
- },
- {
- "start": "675.52",
- "end": "675.73",
- "confidence": "0.540",
- "text": "10",
- "offset": 40,
- "length": 2,
- "key": expect.any(String)//"vgy1oc"
- },
- {
- "start": "675.73",
- "end": "676.27",
- "confidence": "1.000",
- "text": "years",
- "offset": 43,
- "length": 5,
- "key": expect.any(String)//"yorl91t"
- },
- {
- "start": "676.48",
- "end": "676.63",
- "confidence": "0.720",
- "text": "has",
- "offset": 49,
- "length": 3,
- "key": expect.any(String)//"ot09d96"
- },
- {
- "start": "676.63",
- "end": "676.87",
- "confidence": "1.000",
- "text": "not",
- "offset": 53,
- "length": 3,
- "key": expect.any(String)//"avluq2"
- },
- {
- "start": "676.87",
- "end": "677.02",
- "confidence": "1.000",
- "text": "been",
- "offset": 57,
- "length": 4,
- "key": expect.any(String)//"q3txctv"
- },
- {
- "start": "677.02",
- "end": "677.1999999999999",
- "confidence": "1.000",
- "text": "about",
- "offset": 62,
- "length": 5,
- "key": expect.any(String)//"4e58vm"
- },
- {
- "start": "677.20",
- "end": "677.74",
- "confidence": "1.000",
- "text": "technology",
- "offset": 68,
- "length": 10,
- "key": expect.any(String)//"wstsoxb"
- },
- {
- "start": "677.74",
- "end": "677.83",
- "confidence": "1.000",
- "text": "at",
- "offset": 79,
- "length": 2,
- "key": expect.any(String)//"vnhcrtk"
- },
- {
- "start": "677.83",
- "end": "678.1",
- "confidence": "1.000",
- "text": "all",
- "offset": 82,
- "length": 3,
- "key": expect.any(String)//"4n5yotg"
- },
- {
- "start": "678.91",
- "end": "679.0899999999999",
- "confidence": "1.000",
- "text": "it's",
- "offset": 86,
- "length": 4,
- "key": expect.any(String)//"m5bz47e"
- },
- {
- "start": "679.09",
- "end": "679.24",
- "confidence": "1.000",
- "text": "been",
- "offset": 91,
- "length": 4,
- "key": expect.any(String)//"yjvvqq"
- },
- {
- "start": "679.24",
- "end": "679.48",
- "confidence": "1.000",
- "text": "about",
- "offset": 96,
- "length": 5,
- "key": expect.any(String)//"xcd1bx"
- },
- {
- "start": "679.48",
- "end": "679.78",
- "confidence": "1.000",
- "text": "human",
- "offset": 102,
- "length": 5,
- "key": expect.any(String)//"wb2tklh"
- },
- {
- "start": "679.78",
- "end": "680.65",
- "confidence": "1.000",
- "text": "psychology",
- "offset": 108,
- "length": 10,
- "key": expect.any(String)//"54coqyhi"
- },
- {
- "start": "681.43",
- "end": "681.5799999999999",
- "confidence": "0.990",
- "text": "and",
- "offset": 119,
- "length": 3,
- "key": expect.any(String)//"mu33rl"
- },
- {
- "start": "681.58",
- "end": "682.2700000000001",
- "confidence": "1.000",
- "text": "empathy",
- "offset": 123,
- "length": 7,
- "key": expect.any(String)//"w0ip55h"
- },
- {
- "start": "682.33",
- "end": "682.45",
- "confidence": "1.000",
- "text": "and",
- "offset": 131,
- "length": 3,
- "key": expect.any(String)//"y7al8ge"
- },
- {
- "start": "682.45",
- "end": "682.6600000000001",
- "confidence": "1.000",
- "text": "how",
- "offset": 135,
- "length": 3,
- "key": expect.any(String)//"1g0mkhm"
- },
- {
- "start": "682.66",
- "end": "682.81",
- "confidence": "1.000",
- "text": "we",
- "offset": 139,
- "length": 2,
- "key": expect.any(String)//"s5aswl"
- },
- {
- "start": "682.81",
- "end": "683.1099999999999",
- "confidence": "1.000",
- "text": "relate",
- "offset": 142,
- "length": 6,
- "key": expect.any(String)//"gjzewe"
- },
- {
- "start": "683.11",
- "end": "683.26",
- "confidence": "1.000",
- "text": "to",
- "offset": 149,
- "length": 2,
- "key": expect.any(String)//"rv1dcro"
- },
- {
- "start": "683.26",
- "end": "683.98",
- "confidence": "1.000",
- "text": "others.",
- "offset": 152,
- "length": 7,
- "key": expect.any(String)//"udq3wb"
- }
- ]
- },
- {
- "text": "Because when a child is kind to a Roomba when a soldier tries to save a robot on the battlefield or when a group of people refuses to harm a robotic baby dinosaur those robots aren't just motors and gears and algorithms.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "685.51",
- "end": "685.84",
- "confidence": "1.000",
- "word": "because",
- "punct": "Because",
- "index": 1741
- },
- {
- "start": "685.84",
- "end": "685.99",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 1742
- },
- {
- "start": "685.99",
- "end": "686.05",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1743
- },
- {
- "start": "686.05",
- "end": "686.5",
- "confidence": "1.000",
- "word": "child",
- "punct": "child",
- "index": 1744
- },
- {
- "start": "686.50",
- "end": "686.62",
- "confidence": "1.000",
- "word": "is",
- "punct": "is",
- "index": 1745
- },
- {
- "start": "686.62",
- "end": "686.98",
- "confidence": "1.000",
- "word": "kind",
- "punct": "kind",
- "index": 1746
- },
- {
- "start": "686.98",
- "end": "687.13",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1747
- },
- {
- "start": "687.13",
- "end": "687.1899999999999",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1748
- },
- {
- "start": "687.19",
- "end": "687.82",
- "confidence": "1.000",
- "word": "roomba",
- "punct": "Roomba",
- "index": 1749
- },
- {
- "start": "689.27",
- "end": "689.42",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 1750
- },
- {
- "start": "689.42",
- "end": "689.51",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1751
- },
- {
- "start": "689.51",
- "end": "689.96",
- "confidence": "1.000",
- "word": "soldier",
- "punct": "soldier",
- "index": 1752
- },
- {
- "start": "689.99",
- "end": "690.35",
- "confidence": "1.000",
- "word": "tries",
- "punct": "tries",
- "index": 1753
- },
- {
- "start": "690.35",
- "end": "690.44",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1754
- },
- {
- "start": "690.44",
- "end": "690.8000000000001",
- "confidence": "1.000",
- "word": "save",
- "punct": "save",
- "index": 1755
- },
- {
- "start": "690.80",
- "end": "690.8599999999999",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1756
- },
- {
- "start": "690.86",
- "end": "691.25",
- "confidence": "1.000",
- "word": "robot",
- "punct": "robot",
- "index": 1757
- },
- {
- "start": "691.25",
- "end": "691.37",
- "confidence": "1.000",
- "word": "on",
- "punct": "on",
- "index": 1758
- },
- {
- "start": "691.37",
- "end": "691.43",
- "confidence": "1.000",
- "word": "the",
- "punct": "the",
- "index": 1759
- },
- {
- "start": "691.43",
- "end": "692.2399999999999",
- "confidence": "1.000",
- "word": "battlefield",
- "punct": "battlefield",
- "index": 1760
- },
- {
- "start": "693.35",
- "end": "693.44",
- "confidence": "1.000",
- "word": "or",
- "punct": "or",
- "index": 1761
- },
- {
- "start": "693.44",
- "end": "693.59",
- "confidence": "1.000",
- "word": "when",
- "punct": "when",
- "index": 1762
- },
- {
- "start": "693.59",
- "end": "693.65",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1763
- },
- {
- "start": "693.65",
- "end": "693.86",
- "confidence": "1.000",
- "word": "group",
- "punct": "group",
- "index": 1764
- },
- {
- "start": "693.86",
- "end": "693.95",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1765
- },
- {
- "start": "693.95",
- "end": "694.34",
- "confidence": "1.000",
- "word": "people",
- "punct": "people",
- "index": 1766
- },
- {
- "start": "694.34",
- "end": "694.9100000000001",
- "confidence": "1.000",
- "word": "refuses",
- "punct": "refuses",
- "index": 1767
- },
- {
- "start": "694.91",
- "end": "695",
- "confidence": "1.000",
- "word": "to",
- "punct": "to",
- "index": 1768
- },
- {
- "start": "695.00",
- "end": "695.45",
- "confidence": "1.000",
- "word": "harm",
- "punct": "harm",
- "index": 1769
- },
- {
- "start": "695.45",
- "end": "695.5400000000001",
- "confidence": "1.000",
- "word": "a",
- "punct": "a",
- "index": 1770
- },
- {
- "start": "695.54",
- "end": "695.93",
- "confidence": "1.000",
- "word": "robotic",
- "punct": "robotic",
- "index": 1771
- },
- {
- "start": "695.93",
- "end": "696.17",
- "confidence": "1.000",
- "word": "baby",
- "punct": "baby",
- "index": 1772
- },
- {
- "start": "696.17",
- "end": "696.86",
- "confidence": "1.000",
- "word": "dinosaur",
- "punct": "dinosaur",
- "index": 1773
- },
- {
- "start": "698.24",
- "end": "698.45",
- "confidence": "1.000",
- "word": "those",
- "punct": "those",
- "index": 1774
- },
- {
- "start": "698.45",
- "end": "698.87",
- "confidence": "1.000",
- "word": "robots",
- "punct": "robots",
- "index": 1775
- },
- {
- "start": "698.90",
- "end": "699.11",
- "confidence": "1.000",
- "word": "aren't",
- "punct": "aren't",
- "index": 1776
- },
- {
- "start": "699.11",
- "end": "699.47",
- "confidence": "1.000",
- "word": "just",
- "punct": "just",
- "index": 1777
- },
- {
- "start": "699.47",
- "end": "699.95",
- "confidence": "1.000",
- "word": "motors",
- "punct": "motors",
- "index": 1778
- },
- {
- "start": "699.95",
- "end": "700.0400000000001",
- "confidence": "0.990",
- "word": "and",
- "punct": "and",
- "index": 1779
- },
- {
- "start": "700.04",
- "end": "700.37",
- "confidence": "1.000",
- "word": "gears",
- "punct": "gears",
- "index": 1780
- },
- {
- "start": "700.37",
- "end": "700.49",
- "confidence": "1.000",
- "word": "and",
- "punct": "and",
- "index": 1781
- },
- {
- "start": "700.49",
- "end": "701.36",
- "confidence": "1.000",
- "word": "algorithms",
- "punct": "algorithms.",
- "index": 1782
- }
- ],
- "start": "685.51"
- },
- "entityRanges": [
- {
- "start": "685.51",
- "end": "685.84",
- "confidence": "1.000",
- "text": "Because",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"lbfbqin"
- },
- {
- "start": "685.84",
- "end": "685.99",
- "confidence": "1.000",
- "text": "when",
- "offset": 8,
- "length": 4,
- "key": expect.any(String)//"kacebba"
- },
- {
- "start": "685.99",
- "end": "686.05",
- "confidence": "1.000",
- "text": "a",
- "offset": 13,
- "length": 1,
- "key": expect.any(String)//"7s0f5t"
- },
- {
- "start": "686.05",
- "end": "686.5",
- "confidence": "1.000",
- "text": "child",
- "offset": 15,
- "length": 5,
- "key": expect.any(String)//"r633abl"
- },
- {
- "start": "686.50",
- "end": "686.62",
- "confidence": "1.000",
- "text": "is",
- "offset": 21,
- "length": 2,
- "key": expect.any(String)//"yfgpki"
- },
- {
- "start": "686.62",
- "end": "686.98",
- "confidence": "1.000",
- "text": "kind",
- "offset": 24,
- "length": 4,
- "key": expect.any(String)//"s7g38fg"
- },
- {
- "start": "686.98",
- "end": "687.13",
- "confidence": "1.000",
- "text": "to",
- "offset": 29,
- "length": 2,
- "key": expect.any(String)//"cysupm"
- },
- {
- "start": "687.13",
- "end": "687.1899999999999",
- "confidence": "1.000",
- "text": "a",
- "offset": 32,
- "length": 1,
- "key": expect.any(String)//"jlq6cbt"
- },
- {
- "start": "687.19",
- "end": "687.82",
- "confidence": "1.000",
- "text": "Roomba",
- "offset": 34,
- "length": 6,
- "key": expect.any(String)//"k39kdzb"
- },
- {
- "start": "689.27",
- "end": "689.42",
- "confidence": "1.000",
- "text": "when",
- "offset": 41,
- "length": 4,
- "key": expect.any(String)//"vf4c1z"
- },
- {
- "start": "689.42",
- "end": "689.51",
- "confidence": "1.000",
- "text": "a",
- "offset": 46,
- "length": 1,
- "key": expect.any(String)//"zdrmorf"
- },
- {
- "start": "689.51",
- "end": "689.96",
- "confidence": "1.000",
- "text": "soldier",
- "offset": 48,
- "length": 7,
- "key": expect.any(String)//"to9ptrk"
- },
- {
- "start": "689.99",
- "end": "690.35",
- "confidence": "1.000",
- "text": "tries",
- "offset": 56,
- "length": 5,
- "key": expect.any(String)//"w9nau5t"
- },
- {
- "start": "690.35",
- "end": "690.44",
- "confidence": "1.000",
- "text": "to",
- "offset": 62,
- "length": 2,
- "key": expect.any(String)//"7fn3z3"
- },
- {
- "start": "690.44",
- "end": "690.8000000000001",
- "confidence": "1.000",
- "text": "save",
- "offset": 65,
- "length": 4,
- "key": expect.any(String)//"4d1vlk"
- },
- {
- "start": "690.80",
- "end": "690.8599999999999",
- "confidence": "1.000",
- "text": "a",
- "offset": 70,
- "length": 1,
- "key": expect.any(String)//"rbnn8nl"
- },
- {
- "start": "690.86",
- "end": "691.25",
- "confidence": "1.000",
- "text": "robot",
- "offset": 72,
- "length": 5,
- "key": expect.any(String)//"o37j55s"
- },
- {
- "start": "691.25",
- "end": "691.37",
- "confidence": "1.000",
- "text": "on",
- "offset": 78,
- "length": 2,
- "key": expect.any(String)//"qy430cm"
- },
- {
- "start": "691.37",
- "end": "691.43",
- "confidence": "1.000",
- "text": "the",
- "offset": 81,
- "length": 3,
- "key": expect.any(String)//"6u2960e"
- },
- {
- "start": "691.43",
- "end": "692.2399999999999",
- "confidence": "1.000",
- "text": "battlefield",
- "offset": 85,
- "length": 11,
- "key": expect.any(String)//"r6wcf0e"
- },
- {
- "start": "693.35",
- "end": "693.44",
- "confidence": "1.000",
- "text": "or",
- "offset": 97,
- "length": 2,
- "key": expect.any(String)//"z7zyve"
- },
- {
- "start": "693.44",
- "end": "693.59",
- "confidence": "1.000",
- "text": "when",
- "offset": 100,
- "length": 4,
- "key": expect.any(String)//"tlhv9a"
- },
- {
- "start": "693.59",
- "end": "693.65",
- "confidence": "1.000",
- "text": "a",
- "offset": 105,
- "length": 1,
- "key": expect.any(String)//"ji7za2n"
- },
- {
- "start": "693.65",
- "end": "693.86",
- "confidence": "1.000",
- "text": "group",
- "offset": 107,
- "length": 5,
- "key": expect.any(String)//"hwuqks"
- },
- {
- "start": "693.86",
- "end": "693.95",
- "confidence": "1.000",
- "text": "of",
- "offset": 113,
- "length": 2,
- "key": expect.any(String)//"jfcv0dr"
- },
- {
- "start": "693.95",
- "end": "694.34",
- "confidence": "1.000",
- "text": "people",
- "offset": 116,
- "length": 6,
- "key": expect.any(String)//"vz64anr"
- },
- {
- "start": "694.34",
- "end": "694.9100000000001",
- "confidence": "1.000",
- "text": "refuses",
- "offset": 123,
- "length": 7,
- "key": expect.any(String)//"7050qlr"
- },
- {
- "start": "694.91",
- "end": "695",
- "confidence": "1.000",
- "text": "to",
- "offset": 131,
- "length": 2,
- "key": expect.any(String)//"fl6datb"
- },
- {
- "start": "695.00",
- "end": "695.45",
- "confidence": "1.000",
- "text": "harm",
- "offset": 134,
- "length": 4,
- "key": expect.any(String)//"bahj98m"
- },
- {
- "start": "695.45",
- "end": "695.5400000000001",
- "confidence": "1.000",
- "text": "a",
- "offset": 139,
- "length": 1,
- "key": expect.any(String)//"cy6cgia"
- },
- {
- "start": "695.54",
- "end": "695.93",
- "confidence": "1.000",
- "text": "robotic",
- "offset": 141,
- "length": 7,
- "key": expect.any(String)//"ynw6sl8"
- },
- {
- "start": "695.93",
- "end": "696.17",
- "confidence": "1.000",
- "text": "baby",
- "offset": 149,
- "length": 4,
- "key": expect.any(String)//"nh6pzrk"
- },
- {
- "start": "696.17",
- "end": "696.86",
- "confidence": "1.000",
- "text": "dinosaur",
- "offset": 154,
- "length": 8,
- "key": expect.any(String)//"wwr1up"
- },
- {
- "start": "698.24",
- "end": "698.45",
- "confidence": "1.000",
- "text": "those",
- "offset": 163,
- "length": 5,
- "key": expect.any(String)//"bugdsg"
- },
- {
- "start": "698.45",
- "end": "698.87",
- "confidence": "1.000",
- "text": "robots",
- "offset": 169,
- "length": 6,
- "key": expect.any(String)//"p93xje"
- },
- {
- "start": "698.90",
- "end": "699.11",
- "confidence": "1.000",
- "text": "aren't",
- "offset": 176,
- "length": 6,
- "key": expect.any(String)//"hrhm1jw"
- },
- {
- "start": "699.11",
- "end": "699.47",
- "confidence": "1.000",
- "text": "just",
- "offset": 183,
- "length": 4,
- "key": expect.any(String)//"eajbnx8"
- },
- {
- "start": "699.47",
- "end": "699.95",
- "confidence": "1.000",
- "text": "motors",
- "offset": 188,
- "length": 6,
- "key": expect.any(String)//"1cbysbn"
- },
- {
- "start": "699.95",
- "end": "700.0400000000001",
- "confidence": "0.990",
- "text": "and",
- "offset": 195,
- "length": 3,
- "key": expect.any(String)//"1khevis"
- },
- {
- "start": "700.04",
- "end": "700.37",
- "confidence": "1.000",
- "text": "gears",
- "offset": 199,
- "length": 5,
- "key": expect.any(String)//"5dgjx"
- },
- {
- "start": "700.37",
- "end": "700.49",
- "confidence": "1.000",
- "text": "and",
- "offset": 205,
- "length": 3,
- "key": expect.any(String)//"v7bppot"
- },
- {
- "start": "700.49",
- "end": "701.36",
- "confidence": "1.000",
- "text": "algorithms.",
- "offset": 209,
- "length": 11,
- "key": expect.any(String)//"vk6e2pj"
- }
- ]
- },
- {
- "text": "They're reflections of our own humanity.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "702.51",
- "end": "702.66",
- "confidence": "1.000",
- "word": "they're",
- "punct": "They're",
- "index": 1783
- },
- {
- "start": "702.66",
- "end": "703.26",
- "confidence": "1.000",
- "word": "reflections",
- "punct": "reflections",
- "index": 1784
- },
- {
- "start": "703.26",
- "end": "703.38",
- "confidence": "1.000",
- "word": "of",
- "punct": "of",
- "index": 1785
- },
- {
- "start": "703.38",
- "end": "703.47",
- "confidence": "1.000",
- "word": "our",
- "punct": "our",
- "index": 1786
- },
- {
- "start": "703.47",
- "end": "703.6800000000001",
- "confidence": "1.000",
- "word": "own",
- "punct": "own",
- "index": 1787
- },
- {
- "start": "703.68",
- "end": "704.7099999999999",
- "confidence": "1.000",
- "word": "humanity",
- "punct": "humanity.",
- "index": 1788
- }
- ],
- "start": "702.51"
- },
- "entityRanges": [
- {
- "start": "702.51",
- "end": "702.66",
- "confidence": "1.000",
- "text": "They're",
- "offset": 0,
- "length": 7,
- "key": expect.any(String)//"6nqa52"
- },
- {
- "start": "702.66",
- "end": "703.26",
- "confidence": "1.000",
- "text": "reflections",
- "offset": 8,
- "length": 11,
- "key": expect.any(String)//"e6o2xl"
- },
- {
- "start": "703.26",
- "end": "703.38",
- "confidence": "1.000",
- "text": "of",
- "offset": 20,
- "length": 2,
- "key": expect.any(String)//"nyif7ku"
- },
- {
- "start": "703.38",
- "end": "703.47",
- "confidence": "1.000",
- "text": "our",
- "offset": 23,
- "length": 3,
- "key": expect.any(String)//"k3pams5"
- },
- {
- "start": "703.47",
- "end": "703.6800000000001",
- "confidence": "1.000",
- "text": "own",
- "offset": 27,
- "length": 3,
- "key": expect.any(String)//"b1c8mq"
- },
- {
- "start": "703.68",
- "end": "704.7099999999999",
- "confidence": "1.000",
- "text": "humanity.",
- "offset": 31,
- "length": 9,
- "key": expect.any(String)//"vyd0f2h"
- }
- ]
- },
- {
- "text": "Thank you.",
- "type": "paragraph",
- "data": {
- "speaker": "F3",
- "words": [
- {
- "start": "705.53",
- "end": "705.8",
- "confidence": "1.000",
- "word": "thank",
- "punct": "Thank",
- "index": 1789
- },
- {
- "start": "705.80",
- "end": "705.9499999999999",
- "confidence": "1.000",
- "word": "you",
- "punct": "you.",
- "index": 1790
- }
- ],
- "start": "705.53"
- },
- "entityRanges": [
- {
- "start": "705.53",
- "end": "705.8",
- "confidence": "1.000",
- "text": "Thank",
- "offset": 0,
- "length": 5,
- "key": expect.any(String)//"b462rb"
- },
- {
- "start": "705.80",
- "end": "705.9499999999999",
- "confidence": "1.000",
- "text": "you.",
- "offset": 6,
- "length": 4,
- "key": expect.any(String)//"r3zmxk"
- }
- ]
- }
-]
-
-export default draftTranscriptExample;
\ No newline at end of file
diff --git a/src/lib/Util/export-adapters/README.md b/src/lib/Util/export-adapters/README.md
deleted file mode 100644
index 21f6c4ce..00000000
--- a/src/lib/Util/export-adapters/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Export Adapters
-
-To convert draft.js code block into downloadable files.
diff --git a/src/lib/Util/export-adapters/index.js b/src/lib/Util/export-adapters/index.js
deleted file mode 100644
index 70709ee9..00000000
--- a/src/lib/Util/export-adapters/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import draftToTxt from './txt/index';
-/**
- * Adapters for Draft.js conversion
- * @param {json} blockData - Draft.js blocks
- * @param {string} exportFormat - the type of file supported by the available adapters
- */
-
-const exportAdapter = (blockData, exportFormat) => {
- switch (exportFormat) {
- case 'draftjs':
- return { data: JSON.stringify(blockData, null, 2), ext: 'json' };
- case 'txt':
- return { data: draftToTxt(blockData), ext: 'txt' };
- default:
- // code block
- console.error('Did not recognise the export format');
- }
-};
-
-export default exportAdapter;
diff --git a/src/lib/Util/export-adapters/txt/index.js b/src/lib/Util/export-adapters/txt/index.js
deleted file mode 100644
index e0d45ddf..00000000
--- a/src/lib/Util/export-adapters/txt/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-export default (blockData) => {
- const lines = blockData.blocks.map(x => x.text);
-
- return lines.join('\n\n');
-};
diff --git a/src/lib/Util/timecode-converter/padTimeToTimecode.js b/src/lib/Util/timecode-converter/padTimeToTimecode.js
deleted file mode 100644
index 3f4f0518..00000000
--- a/src/lib/Util/timecode-converter/padTimeToTimecode.js
+++ /dev/null
@@ -1,50 +0,0 @@
-const countColon = timecode => timecode.split(':').length;
-
-const includesFullStop = timecode => timecode.includes('.');
-
-const isOneDigit = str => str.length === 1;
-
-const padTimeToTimecode = (time) => {
- if (typeof time === 'string') {
- switch (countColon(time)) {
- case 4:
- // is already in timecode format
- // hh:mm:ss:ff
- return time;
- case 2:
- // m:ss
- if (isOneDigit(time.split(':')[0])) {
- return `00:0${ time }:00`;
- }
-
- return `00:${ time }:00`;
- case 3:
- // hh:mm:ss
- return `${ time }:00`;
- default:
- // mm.ss
- if (includesFullStop(time)) {
- // m.ss
- if (isOneDigit(time.split('.')[0])) {
- return `00:0${ time.split('.')[0] }:${ time.split('.')[1] }:00`;
- }
-
- return `00:${ time.replace('.', ':') }:00`;
- }
-
- // if just int, then it's seconds
- // s
- if (isOneDigit(time)) {
- return `00:00:0${ time }:00`;
- }
-
- return `00:00:${ time }:00`;
- }
- // edge case if it's number return a number coz cannot refactor
- // TODO: might need to refactor and move this elsewhere
- } else {
- return time;
- }
-};
-
-export default padTimeToTimecode;
diff --git a/src/lib/Util/timecode-converter/padTimeToTimecode.test.js b/src/lib/Util/timecode-converter/padTimeToTimecode.test.js
deleted file mode 100644
index a4b9ff49..00000000
--- a/src/lib/Util/timecode-converter/padTimeToTimecode.test.js
+++ /dev/null
@@ -1,43 +0,0 @@
-import padTimeToTimecode from './padTimeToTimecode';
-
-describe('Timecode conversion TC- convertToSeconds', () => {
- it('Should be defined', ( ) => {
- const demoTimecode = '12:34:56:78';
- const result = padTimeToTimecode(demoTimecode);
- expect(result).toBeDefined();
- });
-
- it('hh:mm:ss:ff --> hh:mm:ss:ff ', ( ) => {
- const demoTimecode = '12:34:56:78';
- const result = padTimeToTimecode(demoTimecode);
- expect(result).toEqual(demoTimecode);
- });
-
- it('mm:ss --> convert to hh:mm:ss:ms', ( ) => {
- const demoTime = '34:56';
- const expectedTimecode = '00:34:56:00';
- const result = padTimeToTimecode(demoTime);
- expect(result).toEqual(expectedTimecode);
- });
-
- xit('hh:mm:ss --> convert to hh:mm:ss:ms', ( ) => {
- const demoTime = '34:56:78';
- const expectedTimecode = '00:34:56:78';
- const result = padTimeToTimecode(demoTime);
- expect(result).toEqual(expectedTimecode);
- });
-
- it('mm.ss--> convert to hh:mm:ss:ms', ( ) => {
- const demoTime = '34.56';
- const expectedTimecode = '00:34:56:00';
- const result = padTimeToTimecode(demoTime);
- expect(result).toEqual(expectedTimecode);
- });
-
- it('120 sec --> 120', ( ) => {
- const demoTime = 120;
- const expectedTimecode = 120;
- const result = padTimeToTimecode(demoTime);
- expect(result).toEqual(expectedTimecode);
- });
-});
diff --git a/src/lib/Util/timecode-converter/secondsToTimecode.js b/src/lib/Util/timecode-converter/secondsToTimecode.js
deleted file mode 100644
index f5a68bdb..00000000
--- a/src/lib/Util/timecode-converter/secondsToTimecode.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
-* Raised in this comment https://github.com/bbc/react-transcript-editor/pull/9
-* abstracted from https://github.com/bbc/newslabs-cdn/blob/master/js/20-bbcnpf.utils.js
-* In broadcast VIDEO, timecode is NOT hh:mm:ss:ms, it's hh:mm:ss:ff where ff is frames,
-* dependent on the framerate of the media concerned.
-* `hh:mm:ss:ff`
-*/
-
-/**
- * Helper function
- * Rounds to the 14milliseconds boundaries
- * Time in video can only "exist in" 14milliseconds boundaries.
- * This makes it possible for the HTML5 player to be frame accurate.
- * @param {*} seconds
- * @param {*} fps
- */
-const normalisePlayerTime = function (seconds, fps) {
- return Number((1.0 / fps * Math.floor(Number((fps * seconds).toPrecision(12)))).toFixed(2));
-};
-
-/*
-* @param {*} seconds
-* @param {*} fps
-*/
-const secondsToTimecode = function (seconds, framePerSeconds) {
- // written for PAL non-drop timecode
- let fps = 25;
- if (framePerSeconds !== undefined) {
- fps = framePerSeconds;
- }
-
- const normalisedSeconds = normalisePlayerTime(seconds, fps);
-
- const wholeSeconds = Math.floor(normalisedSeconds);
- const frames = ((normalisedSeconds - wholeSeconds) * fps).toFixed(2);
-
- // prepends zero - example pads 3 to 03
- function _padZero(n) {
- if (n < 10) return `0${ parseInt(n) }`;
-
- return parseInt(n);
- }
-
- return `${ _padZero((wholeSeconds / 60 / 60) % 60)
- }:${
- _padZero((wholeSeconds / 60) % 60)
- }:${
- _padZero(wholeSeconds % 60)
- }:${
- _padZero(frames) }`;
-};
-
-export default secondsToTimecode;
diff --git a/src/lib/Util/timecode-converter/timecodeToSeconds.test.js b/src/lib/Util/timecode-converter/timecodeToSeconds.test.js
deleted file mode 100644
index 842ddcba..00000000
--- a/src/lib/Util/timecode-converter/timecodeToSeconds.test.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import timecodeToSecondsHelper from './timecodeToSeconds';
-
-describe('Timecode conversion TC- convertToSeconds', () => {
- it('Should be defined', ( ) => {
- const demoTcValue = '00:10:00:00';
- const result = timecodeToSecondsHelper(demoTcValue);
- expect(result).toBeDefined();
- });
-
- it('Should be able to convert from: hh:mm:ss:ff ', ( ) => {
- const demoTcValue = '00:10:00:00';
- const demoExpectedResultInSeconds = 600;
- const result = timecodeToSecondsHelper(demoTcValue);
- expect(result).toEqual(demoExpectedResultInSeconds);
- });
-});
diff --git a/src/lib/index.js b/src/lib/index.js
deleted file mode 100644
index 4939e602..00000000
--- a/src/lib/index.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import TranscriptEditor from './TranscriptEditor/index.js';
-
-export { TranscriptEditor };
diff --git a/src/select-export-format.js b/src/select-export-format.js
deleted file mode 100644
index ea5bfee0..00000000
--- a/src/select-export-format.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-const ExportFormatSelect = props => (
- Draft Js
- Text file
- HTML
- MS Word
- );
-
-ExportFormatSelect.propTypes = {
- name: PropTypes.string,
- value: PropTypes.string,
- handleChange: PropTypes.func
-};
-
-export default ExportFormatSelect;
diff --git a/src/select-stt-json-type.js b/src/select-stt-json-type.js
deleted file mode 100644
index d9334db2..00000000
--- a/src/select-stt-json-type.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-const SttTypeSelect = props => (
- BBC Kaldi
- Draft Js
- Gentle Transcript
- Gentle Alignement
- IIIF
- autoEdit 2
- IBM Watson STT
- Speechmatics
- AssemblyAI
- Rev
- Srt
- VTT
- Youtube VTT
- Amazon Transcribe
- );
-
-SttTypeSelect.propTypes = {
- name: PropTypes.string,
- value: PropTypes.string,
- handleChange: PropTypes.func
-};
-
-export default SttTypeSelect;
diff --git a/yarn.lock b/yarn.lock
index 5b6474b2..0679f991 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -46,7 +46,7 @@
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/core@^7.1.2", "@babel/core@^7.1.6":
+"@babel/core@^7.1.0", "@babel/core@^7.1.2", "@babel/core@^7.1.6", "@babel/core@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b"
integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==
@@ -66,7 +66,7 @@
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/generator@^7.2.2", "@babel/generator@^7.3.4":
+"@babel/generator@^7.0.0", "@babel/generator@^7.2.2", "@babel/generator@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e"
integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==
@@ -270,7 +270,7 @@
esutils "^2.0.2"
js-tokens "^4.0.0"
-"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.3.4":
+"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.1.3", "@babel/parser@^7.2.2", "@babel/parser@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c"
integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==
@@ -292,7 +292,7 @@
"@babel/helper-create-class-features-plugin" "^7.3.0"
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-proposal-class-properties@^7.1.0":
+"@babel/plugin-proposal-class-properties@^7.1.0", "@babel/plugin-proposal-class-properties@^7.3.0", "@babel/plugin-proposal-class-properties@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.4.tgz#410f5173b3dc45939f9ab30ca26684d72901405e"
integrity sha512-lUf8D3HLs4yYlAo8zjuneLvfxN7qfKv1Yzbj5vjqaqMJxgJA3Ipwp4VUJ+OrOdz53Wbww6ahwB8UhB2HQyLotA==
@@ -325,7 +325,7 @@
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
-"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.3.1", "@babel/plugin-proposal-object-rest-spread@^7.3.4":
+"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.3.1", "@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.4.tgz#47f73cf7f2a721aad5c0261205405c642e424654"
integrity sha512-j7VQmbbkA+qrzNqbKHrBsW3ddFnOeva6wzSe/zB7T+xaxGc+RCpwo44wCmRixAIGRoIpmVgvzFzNJqQcO3/9RA==
@@ -364,7 +364,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-syntax-dynamic-import@7.2.0":
+"@babel/plugin-syntax-dynamic-import@7.2.0", "@babel/plugin-syntax-dynamic-import@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612"
integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==
@@ -392,7 +392,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-syntax-object-rest-spread@^7.2.0":
+"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==
@@ -518,6 +518,14 @@
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-flow" "^7.2.0"
+"@babel/plugin-transform-flow-strip-types@^7.0.0":
+ version "7.3.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.3.4.tgz#00156236defb7dedddc2d3c9477dcc01a4494327"
+ integrity sha512-PmQC9R7DwpBFA+7ATKMyzViz3zCaMNouzZMPZN2K5PnbBbtL3AXFYTkDk+Hey5crQq2A90UG5Uthz0mel+XZrA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-syntax-flow" "^7.2.0"
+
"@babel/plugin-transform-for-of@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9"
@@ -604,7 +612,7 @@
"@babel/helper-get-function-arity" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-react-constant-elements@7.2.0", "@babel/plugin-transform-react-constant-elements@^7.0.0":
+"@babel/plugin-transform-react-constant-elements@7.2.0", "@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.2.0.tgz#ed602dc2d8bff2f0cb1a5ce29263dbdec40779f7"
integrity sha512-YYQFg6giRFMsZPKUM9v+VcHOdfSQdz9jHCx3akAi3UYgyjndmdYGSXylQ/V+HswQt4fL8IklchD9HTsaOCrWQQ==
@@ -764,7 +772,7 @@
js-levenshtein "^1.1.3"
semver "^5.3.0"
-"@babel/preset-env@^7.1.6", "@babel/preset-env@^7.2.3":
+"@babel/preset-env@^7.1.6", "@babel/preset-env@^7.2.3", "@babel/preset-env@^7.3.1", "@babel/preset-env@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.3.4.tgz#887cf38b6d23c82f19b5135298bdb160062e33e1"
integrity sha512-2mwqfYMK8weA0g0uBKOt4FE3iEodiHy9/CW0b+nWXcbL+pGzLx8ESYc+j9IIxr6LTDHWKgPm71i9smo02bw+gA==
@@ -813,6 +821,14 @@
js-levenshtein "^1.1.3"
semver "^5.3.0"
+"@babel/preset-flow@^7.0.0":
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2"
+ integrity sha512-bJOHrYOPqJZCkPVbG1Lot2r5OSsB+iUOaxiHdlOeB1yPWS6evswVHwvkDLZ54WTaTRIk89ds0iHmGZSnxlPejQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-transform-flow-strip-types" "^7.0.0"
+
"@babel/preset-react@7.0.0", "@babel/preset-react@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
@@ -839,14 +855,14 @@
dependencies:
regenerator-runtime "^0.12.0"
-"@babel/runtime@^7.1.5", "@babel/runtime@^7.3.1":
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.3.4":
version "7.3.4"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.4.tgz#73d12ba819e365fcf7fd152aed56d6df97d21c83"
integrity sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g==
dependencies:
regenerator-runtime "^0.12.0"
-"@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2":
+"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2":
version "7.2.2"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==
@@ -879,12 +895,55 @@
lodash "^4.17.11"
to-fast-properties "^2.0.0"
+"@cnakazawa/watch@^1.0.3":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
+ integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==
+ dependencies:
+ exec-sh "^0.3.2"
+ minimist "^1.2.0"
+
"@csstools/convert-colors@^1.4.0":
version "1.4.0"
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
-"@emotion/is-prop-valid@^0.7.3":
+"@emotion/cache@^10.0.9":
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.9.tgz#e0c7b7a289f7530edcfad4dcf3858bd2e5700a6f"
+ integrity sha512-f7MblpE2xoimC4fCMZ9pivmsIn7hyWRIvY75owMDi8pdOSeh+w5tH3r4hBJv/LLrwiMM7cTQURqTPcYoL5pWnw==
+ dependencies:
+ "@emotion/sheet" "0.9.2"
+ "@emotion/stylis" "0.8.3"
+ "@emotion/utils" "0.11.1"
+ "@emotion/weak-memoize" "0.2.2"
+
+"@emotion/core@^10.0.7":
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.9.tgz#f8afbccb0011100680f5dc94657b410c6aa1350e"
+ integrity sha512-v5a77dV+uWGoy9w6R3MXZG01lqHcXgoy/jGmJqPDGhPjmpWg26LWXAphYZxpZffFUwDUlDdYDiX5HtaKphvJnQ==
+ dependencies:
+ "@emotion/cache" "^10.0.9"
+ "@emotion/css" "^10.0.9"
+ "@emotion/serialize" "^0.11.6"
+ "@emotion/sheet" "0.9.2"
+ "@emotion/utils" "0.11.1"
+
+"@emotion/css@^10.0.9":
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.9.tgz#ea0df431965a308f6cb1d61386df8ad61e5befb5"
+ integrity sha512-jtHhUSWw+L7yxYgNtC+KJ3Ory90/jiAtpG1qT+gTQQ/RR5AMiigs9/lDHu/vnwljaq2S48FoKb/FZZMlJcC4bw==
+ dependencies:
+ "@emotion/serialize" "^0.11.6"
+ "@emotion/utils" "0.11.1"
+ babel-plugin-emotion "^10.0.9"
+
+"@emotion/hash@0.7.1":
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.7.1.tgz#9833722341379fb7d67f06a4b00ab3c37913da53"
+ integrity sha512-OYpa/Sg+2GDX+jibUfpZVn1YqSVRpYmTLF2eyAfrFTIJSbwyIrc+YscayoykvaOME/wV4BV0Sa0yqdMrgse6mA==
+
+"@emotion/is-prop-valid@0.7.3", "@emotion/is-prop-valid@^0.7.3":
version "0.7.3"
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.7.3.tgz#a6bf4fa5387cbba59d44e698a4680f481a8da6cc"
integrity sha512-uxJqm/sqwXw3YPA5GXX365OBcJGFtxUVkB6WyezqFHlNe9jqUWH5ur2O2M8dGBz61kn1g3ZBlzUunFQXQIClhA==
@@ -896,11 +955,60 @@
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.1.tgz#e93c13942592cf5ef01aa8297444dc192beee52f"
integrity sha512-Qv4LTqO11jepd5Qmlp3M1YEjBumoTHcHFdgPTQ+sFlIL5myi/7xu/POwP7IRu6odBdmLXdtIs1D6TuW6kbwbbg==
-"@emotion/unitless@^0.7.0":
+"@emotion/serialize@^0.11.6":
+ version "0.11.6"
+ resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.6.tgz#78be8b9ee9ff49e0196233ba6ec1c1768ba1e1fc"
+ integrity sha512-n4zVv2qGLmspF99jaEUwnMV0fnEGsyUMsC/8KZKUSUTZMYljHE+j+B6rSD8PIFtaUIhHaxCG2JawN6L+OgLN0Q==
+ dependencies:
+ "@emotion/hash" "0.7.1"
+ "@emotion/memoize" "0.7.1"
+ "@emotion/unitless" "0.7.3"
+ "@emotion/utils" "0.11.1"
+ csstype "^2.5.7"
+
+"@emotion/sheet@0.9.2":
+ version "0.9.2"
+ resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.2.tgz#74e5c6b5e489a1ba30ab246ab5eedd96916487c4"
+ integrity sha512-pVBLzIbC/QCHDKJF2E82V2H/W/B004mDFQZiyo/MSR+VC4pV5JLG0TF/zgQDFvP3fZL/5RTPGEmXlYJBMUuJ+A==
+
+"@emotion/styled-base@^10.0.9":
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.9.tgz#634b43d1f0309c35c5b342c775b01610517d2529"
+ integrity sha512-uXOPP2V7g8lYWsqBfYGmEOXHMUPleOujFWusQyXezxe1VGlZjGJIQj+YmzkwzGBmFx2nAun0OKMYCBJMeGKojw==
+ dependencies:
+ "@emotion/is-prop-valid" "0.7.3"
+ "@emotion/serialize" "^0.11.6"
+ "@emotion/utils" "0.11.1"
+ object-assign "^4.1.1"
+
+"@emotion/styled@^10.0.7":
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.9.tgz#3d940ec8b989853fd422dab6278a2803e1c4a608"
+ integrity sha512-V+BT+KE4NKCANS18TL0yGueIyVbL5qXbgKarLcIhxmz0/dEk2k6kA18sKguJpHYa0RpgkggdhUPWWohTu3DRPw==
+ dependencies:
+ "@emotion/styled-base" "^10.0.9"
+ babel-plugin-emotion "^10.0.9"
+
+"@emotion/stylis@0.8.3":
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.3.tgz#3ca7e9bcb31b3cb4afbaeb66156d86ee85e23246"
+ integrity sha512-M3nMfJ6ndJMYloSIbYEBq6G3eqoYD41BpDOxreE8j0cb4fzz/5qvmqU9Mb2hzsXcCnIlGlWhS03PCzVGvTAe0Q==
+
+"@emotion/unitless@0.7.3", "@emotion/unitless@^0.7.0":
version "0.7.3"
resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.3.tgz#6310a047f12d21a1036fb031317219892440416f"
integrity sha512-4zAPlpDEh2VwXswwr/t8xGNDGg8RQiPxtxZ3qQEXyQsBV39ptTdESCjuBvGze1nLMVrxmTIKmnO/nAV8Tqjjzg==
+"@emotion/utils@0.11.1":
+ version "0.11.1"
+ resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.1.tgz#8529b7412a6eb4b48bdf6e720cc1b8e6e1e17628"
+ integrity sha512-8M3VN0hetwhsJ8dH8VkVy7xo5/1VoBsDOk/T4SJOeXwTO1c4uIqVNx2qyecLFnnUWD5vvUqHQ1gASSeUN6zcTg==
+
+"@emotion/weak-memoize@0.2.2":
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.2.tgz#63985d3d8b02530e0869962f4da09142ee8e200e"
+ integrity sha512-n/VQ4mbfr81aqkx/XmVicOLjviMuy02eenSdJY33SVA7S2J42EU0P1H0mOogfYedb3wXA0d/LVtBrgTSm04WEA==
+
"@fortawesome/fontawesome-common-types@^0.2.15":
version "0.2.15"
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.15.tgz#16af950653083d1e3064061de9f8e5e3b579f688"
@@ -928,14 +1036,763 @@
humps "^2.0.1"
prop-types "^15.5.10"
-"@jest/types@^24.3.0":
+"@jest/console@^24.3.0":
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.3.0.tgz#7bd920d250988ba0bf1352c4493a48e1cb97671e"
+ integrity sha512-NaCty/OOei6rSDcbPdMiCbYCI0KGFGPgGO6B09lwWt5QTxnkuhKYET9El5u5z1GAcSxkQmSMtM63e24YabCWqA==
+ dependencies:
+ "@jest/source-map" "^24.3.0"
+ "@types/node" "*"
+ chalk "^2.0.1"
+ slash "^2.0.0"
+
+"@jest/core@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.5.0.tgz#2cefc6a69e9ebcae1da8f7c75f8a257152ba1ec0"
+ integrity sha512-RDZArRzAs51YS7dXG1pbXbWGxK53rvUu8mCDYsgqqqQ6uSOaTjcVyBl2Jce0exT2rSLk38ca7az7t2f3b0/oYQ==
+ dependencies:
+ "@jest/console" "^24.3.0"
+ "@jest/reporters" "^24.5.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/transform" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.1"
+ exit "^0.1.2"
+ graceful-fs "^4.1.15"
+ jest-changed-files "^24.5.0"
+ jest-config "^24.5.0"
+ jest-haste-map "^24.5.0"
+ jest-message-util "^24.5.0"
+ jest-regex-util "^24.3.0"
+ jest-resolve-dependencies "^24.5.0"
+ jest-runner "^24.5.0"
+ jest-runtime "^24.5.0"
+ jest-snapshot "^24.5.0"
+ jest-util "^24.5.0"
+ jest-validate "^24.5.0"
+ jest-watcher "^24.5.0"
+ micromatch "^3.1.10"
+ p-each-series "^1.0.0"
+ pirates "^4.0.1"
+ realpath-native "^1.1.0"
+ rimraf "^2.5.4"
+ strip-ansi "^5.0.0"
+
+"@jest/environment@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.5.0.tgz#a2557f7808767abea3f9e4cc43a172122a63aca8"
+ integrity sha512-tzUHR9SHjMXwM8QmfHb/EJNbF0fjbH4ieefJBvtwO8YErLTrecc1ROj0uo2VnIT6SlpEGZnvdCK6VgKYBo8LsA==
+ dependencies:
+ "@jest/fake-timers" "^24.5.0"
+ "@jest/transform" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ "@types/node" "*"
+ jest-mock "^24.5.0"
+
+"@jest/fake-timers@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.5.0.tgz#4a29678b91fd0876144a58f8d46e6c62de0266f0"
+ integrity sha512-i59KVt3QBz9d+4Qr4QxsKgsIg+NjfuCjSOWj3RQhjF5JNy+eVJDhANQ4WzulzNCHd72srMAykwtRn5NYDGVraw==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ "@types/node" "*"
+ jest-message-util "^24.5.0"
+ jest-mock "^24.5.0"
+
+"@jest/reporters@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.5.0.tgz#9363a210d0daa74696886d9cb294eb8b3ad9b4d9"
+ integrity sha512-vfpceiaKtGgnuC3ss5czWOihKOUSyjJA4M4udm6nH8xgqsuQYcyDCi4nMMcBKsHXWgz9/V5G7iisnZGfOh1w6Q==
+ dependencies:
+ "@jest/environment" "^24.5.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/transform" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ chalk "^2.0.1"
+ exit "^0.1.2"
+ glob "^7.1.2"
+ istanbul-api "^2.1.1"
+ istanbul-lib-coverage "^2.0.2"
+ istanbul-lib-instrument "^3.0.1"
+ istanbul-lib-source-maps "^3.0.1"
+ jest-haste-map "^24.5.0"
+ jest-resolve "^24.5.0"
+ jest-runtime "^24.5.0"
+ jest-util "^24.5.0"
+ jest-worker "^24.4.0"
+ node-notifier "^5.2.1"
+ slash "^2.0.0"
+ source-map "^0.6.0"
+ string-length "^2.0.0"
+
+"@jest/source-map@^24.3.0":
version "24.3.0"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.3.0.tgz#3f6e117e47248a9a6b5f1357ec645bd364f7ad23"
- integrity sha512-VoO1F5tU2n/93QN/zaZ7Q8SeV/Rj+9JJOgbvKbBwy4lenvmdj1iDaQEPXGTKrO6OSvDeb2drTFipZJYxgo6kIQ==
+ resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28"
+ integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==
+ dependencies:
+ callsites "^3.0.0"
+ graceful-fs "^4.1.15"
+ source-map "^0.6.0"
+
+"@jest/test-result@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.5.0.tgz#ab66fb7741a04af3363443084e72ea84861a53f2"
+ integrity sha512-u66j2vBfa8Bli1+o3rCaVnVYa9O8CAFZeqiqLVhnarXtreSXG33YQ6vNYBogT7+nYiFNOohTU21BKiHlgmxD5A==
+ dependencies:
+ "@jest/console" "^24.3.0"
+ "@jest/types" "^24.5.0"
+ "@types/istanbul-lib-coverage" "^1.1.0"
+
+"@jest/transform@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.5.0.tgz#6709fc26db918e6af63a985f2cc3c464b4cf99d9"
+ integrity sha512-XSsDz1gdR/QMmB8UCKlweAReQsZrD/DK7FuDlNo/pE8EcKMrfi2kqLRk8h8Gy/PDzgqJj64jNEzOce9pR8oj1w==
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^24.5.0"
+ babel-plugin-istanbul "^5.1.0"
+ chalk "^2.0.1"
+ convert-source-map "^1.4.0"
+ fast-json-stable-stringify "^2.0.0"
+ graceful-fs "^4.1.15"
+ jest-haste-map "^24.5.0"
+ jest-regex-util "^24.3.0"
+ jest-util "^24.5.0"
+ micromatch "^3.1.10"
+ realpath-native "^1.1.0"
+ slash "^2.0.0"
+ source-map "^0.6.1"
+ write-file-atomic "2.4.1"
+
+"@jest/types@^24.5.0":
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.5.0.tgz#feee214a4d0167b0ca447284e95a57aa10b3ee95"
+ integrity sha512-kN7RFzNMf2R8UDadPOl6ReyI+MT8xfqRuAnuVL+i4gwjv/zubdDK+EDeLHYwq1j0CSSR2W/MmgaRlMZJzXdmVA==
dependencies:
"@types/istanbul-lib-coverage" "^1.1.0"
"@types/yargs" "^12.0.9"
+"@lerna/add@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.13.1.tgz#2cd7838857edb3b43ed73e3c21f69a20beb9b702"
+ integrity sha512-cXk42YbuhzEnADCK8Qte5laC9Qo03eJLVnr0qKY85jQUM/T4URe3IIUemqpg0CpVATrB+Vz+iNdeqw9ng1iALw==
+ dependencies:
+ "@lerna/bootstrap" "3.13.1"
+ "@lerna/command" "3.13.1"
+ "@lerna/filter-options" "3.13.0"
+ "@lerna/npm-conf" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ dedent "^0.7.0"
+ npm-package-arg "^6.1.0"
+ p-map "^1.2.0"
+ pacote "^9.5.0"
+ semver "^5.5.0"
+
+"@lerna/batch-packages@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/batch-packages/-/batch-packages-3.13.0.tgz#697fde5be28822af9d9dca2f750250b90a89a000"
+ integrity sha512-TgLBTZ7ZlqilGnzJ3xh1KdAHcySfHytgNRTdG9YomfriTU6kVfp1HrXxKJYVGs7ClPUNt2CTFEOkw0tMBronjw==
+ dependencies:
+ "@lerna/package-graph" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ npmlog "^4.1.2"
+
+"@lerna/bootstrap@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-3.13.1.tgz#f2edd7c8093c8b139e78b0ca5f845f23efd01f08"
+ integrity sha512-mKdi5Ds5f82PZwEFyB9/W60I3iELobi1i87sTeVrbJh/um7GvqpSPy7kG/JPxyOdMpB2njX6LiJgw+7b6BEPWw==
+ dependencies:
+ "@lerna/batch-packages" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/filter-options" "3.13.0"
+ "@lerna/has-npm-version" "3.13.0"
+ "@lerna/npm-install" "3.13.0"
+ "@lerna/package-graph" "3.13.0"
+ "@lerna/pulse-till-done" "3.13.0"
+ "@lerna/rimraf-dir" "3.13.0"
+ "@lerna/run-lifecycle" "3.13.0"
+ "@lerna/run-parallel-batches" "3.13.0"
+ "@lerna/symlink-binary" "3.13.0"
+ "@lerna/symlink-dependencies" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ dedent "^0.7.0"
+ get-port "^3.2.0"
+ multimatch "^2.1.0"
+ npm-package-arg "^6.1.0"
+ npmlog "^4.1.2"
+ p-finally "^1.0.0"
+ p-map "^1.2.0"
+ p-map-series "^1.0.0"
+ p-waterfall "^1.0.0"
+ read-package-tree "^5.1.6"
+ semver "^5.5.0"
+
+"@lerna/changed@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-3.13.1.tgz#dc92476aad43c932fe741969bbd0bcf6146a4c52"
+ integrity sha512-BRXitEJGOkoudbxEewW7WhjkLxFD+tTk4PrYpHLyCBk63pNTWtQLRE6dc1hqwh4emwyGncoyW6RgXfLgMZgryw==
+ dependencies:
+ "@lerna/collect-updates" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/listable" "3.13.0"
+ "@lerna/output" "3.13.0"
+ "@lerna/version" "3.13.1"
+
+"@lerna/check-working-tree@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-3.13.0.tgz#1ddcd4d9b1aceb65efaaa4cd1333a66706d67c9c"
+ integrity sha512-dsdO15NXX5To+Q53SYeCrBEpiqv4m5VkaPZxbGQZNwoRen1MloXuqxSymJANQn+ZLEqarv5V56gydebeROPH5A==
+ dependencies:
+ "@lerna/describe-ref" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+
+"@lerna/child-process@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-3.13.0.tgz#84e35adf3217a6983edd28080657b9596a052674"
+ integrity sha512-0iDS8y2jiEucD4fJHEzKoc8aQJgm7s+hG+0RmDNtfT0MM3n17pZnf5JOMtS1FJp+SEXOjMKQndyyaDIPFsnp6A==
+ dependencies:
+ chalk "^2.3.1"
+ execa "^1.0.0"
+ strong-log-transformer "^2.0.0"
+
+"@lerna/clean@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-3.13.1.tgz#9a7432efceccd720a51da5c76f849fc59c5a14ce"
+ integrity sha512-myGIaXv7RUO2qCFZXvx8SJeI+eN6y9SUD5zZ4/LvNogbOiEIlujC5lUAqK65rAHayQ9ltSa/yK6Xv510xhZXZQ==
+ dependencies:
+ "@lerna/command" "3.13.1"
+ "@lerna/filter-options" "3.13.0"
+ "@lerna/prompt" "3.13.0"
+ "@lerna/pulse-till-done" "3.13.0"
+ "@lerna/rimraf-dir" "3.13.0"
+ p-map "^1.2.0"
+ p-map-series "^1.0.0"
+ p-waterfall "^1.0.0"
+
+"@lerna/cli@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-3.13.0.tgz#3d7b357fdd7818423e9681a7b7f2abd106c8a266"
+ integrity sha512-HgFGlyCZbYaYrjOr3w/EsY18PdvtsTmDfpUQe8HwDjXlPeCCUgliZjXLOVBxSjiOvPeOSwvopwIHKWQmYbwywg==
+ dependencies:
+ "@lerna/global-options" "3.13.0"
+ dedent "^0.7.0"
+ npmlog "^4.1.2"
+ yargs "^12.0.1"
+
+"@lerna/collect-updates@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-3.13.0.tgz#f0828d84ff959ff153d006765659ffc4d68cdefc"
+ integrity sha512-uR3u6uTzrS1p46tHQ/mlHog/nRJGBqskTHYYJbgirujxm6FqNh7Do+I1Q/7zSee407G4lzsNxZdm8IL927HemQ==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/describe-ref" "3.13.0"
+ minimatch "^3.0.4"
+ npmlog "^4.1.2"
+ slash "^1.0.0"
+
+"@lerna/command@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/command/-/command-3.13.1.tgz#b60dda2c0d9ffbb6030d61ddf7cceedc1e8f7e6e"
+ integrity sha512-SYWezxX+iheWvzRoHCrbs8v5zHPaxAx3kWvZhqi70vuGsdOVAWmaG4IvHLn11ztS+Vpd5PM+ztBWSbnykpLFKQ==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/package-graph" "3.13.0"
+ "@lerna/project" "3.13.1"
+ "@lerna/validation-error" "3.13.0"
+ "@lerna/write-log-file" "3.13.0"
+ dedent "^0.7.0"
+ execa "^1.0.0"
+ is-ci "^1.0.10"
+ lodash "^4.17.5"
+ npmlog "^4.1.2"
+
+"@lerna/conventional-commits@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-3.13.0.tgz#877aa225ca34cca61c31ea02a5a6296af74e1144"
+ integrity sha512-BeAgcNXuocmLhPxnmKU2Vy8YkPd/Uo+vu2i/p3JGsUldzrPC8iF3IDxH7fuXpEFN2Nfogu7KHachd4tchtOppA==
+ dependencies:
+ "@lerna/validation-error" "3.13.0"
+ conventional-changelog-angular "^5.0.3"
+ conventional-changelog-core "^3.1.6"
+ conventional-recommended-bump "^4.0.4"
+ fs-extra "^7.0.0"
+ get-stream "^4.0.0"
+ npm-package-arg "^6.1.0"
+ npmlog "^4.1.2"
+ pify "^3.0.0"
+ semver "^5.5.0"
+
+"@lerna/create-symlink@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-3.13.0.tgz#e01133082fe040779712c960683cb3a272b67809"
+ integrity sha512-PTvg3jAAJSAtLFoZDsuTMv1wTOC3XYIdtg54k7uxIHsP8Ztpt+vlilY/Cni0THAqEMHvfiToel76Xdta4TU21Q==
+ dependencies:
+ cmd-shim "^2.0.2"
+ fs-extra "^7.0.0"
+ npmlog "^4.1.2"
+
+"@lerna/create@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/create/-/create-3.13.1.tgz#2c1284cfdc59f0d2b88286d78bc797f4ab330f79"
+ integrity sha512-pLENMXgTkQuvKxAopjKeoLOv9fVUCnpTUD7aLrY5d95/1xqSZlnsOcQfUYcpMf3GpOvHc8ILmI5OXkPqjAf54g==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/npm-conf" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ camelcase "^5.0.0"
+ dedent "^0.7.0"
+ fs-extra "^7.0.0"
+ globby "^8.0.1"
+ init-package-json "^1.10.3"
+ npm-package-arg "^6.1.0"
+ p-reduce "^1.0.0"
+ pacote "^9.5.0"
+ pify "^3.0.0"
+ semver "^5.5.0"
+ slash "^1.0.0"
+ validate-npm-package-license "^3.0.3"
+ validate-npm-package-name "^3.0.0"
+ whatwg-url "^7.0.0"
+
+"@lerna/describe-ref@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-3.13.0.tgz#fb4c3863fd6bcccad67ce7b183887a5fc1942bb6"
+ integrity sha512-UJefF5mLxLae9I2Sbz5RLYGbqbikRuMqdgTam0MS5OhXnyuuKYBUpwBshCURNb1dPBXTQhSwc7+oUhORx8ojCg==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ npmlog "^4.1.2"
+
+"@lerna/diff@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-3.13.1.tgz#5c734321b0f6c46a3c87f55c99afef3b01d46520"
+ integrity sha512-cKqmpONO57mdvxtp8e+l5+tjtmF04+7E+O0QEcLcNUAjC6UR2OSM77nwRCXDukou/1h72JtWs0jjcdYLwAmApg==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/validation-error" "3.13.0"
+ npmlog "^4.1.2"
+
+"@lerna/exec@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-3.13.1.tgz#4439e90fb0877ec38a6ef933c86580d43eeaf81b"
+ integrity sha512-I34wEP9lrAqqM7tTXLDxv/6454WFzrnXDWpNDbiKQiZs6SIrOOjmm6I4FiQsx+rU3o9d+HkC6tcUJRN5mlJUgA==
+ dependencies:
+ "@lerna/batch-packages" "3.13.0"
+ "@lerna/child-process" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/filter-options" "3.13.0"
+ "@lerna/run-parallel-batches" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+
+"@lerna/filter-options@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-3.13.0.tgz#976e3d8b9fcd47001ab981d276565c1e9f767868"
+ integrity sha512-SRp7DCo9zrf+7NkQxZMkeyO1GRN6GICoB9UcBAbXhLbWisT37Cx5/6+jh49gYB63d/0/WYHSEPMlheUrpv1Srw==
+ dependencies:
+ "@lerna/collect-updates" "3.13.0"
+ "@lerna/filter-packages" "3.13.0"
+ dedent "^0.7.0"
+
+"@lerna/filter-packages@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-3.13.0.tgz#f5371249e7e1a15928e5e88c544a242e0162c21c"
+ integrity sha512-RWiZWyGy3Mp7GRVBn//CacSnE3Kw82PxE4+H6bQ3pDUw/9atXn7NRX+gkBVQIYeKamh7HyumJtyOKq3Pp9BADQ==
+ dependencies:
+ "@lerna/validation-error" "3.13.0"
+ multimatch "^2.1.0"
+ npmlog "^4.1.2"
+
+"@lerna/get-npm-exec-opts@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.13.0.tgz#d1b552cb0088199fc3e7e126f914e39a08df9ea5"
+ integrity sha512-Y0xWL0rg3boVyJk6An/vurKzubyJKtrxYv2sj4bB8Mc5zZ3tqtv0ccbOkmkXKqbzvNNF7VeUt1OJ3DRgtC/QZw==
+ dependencies:
+ npmlog "^4.1.2"
+
+"@lerna/get-packed@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-3.13.0.tgz#335e40d77f3c1855aa248587d3e0b2d8f4b06e16"
+ integrity sha512-EgSim24sjIjqQDC57bgXD9l22/HCS93uQBbGpkzEOzxAVzEgpZVm7Fm1t8BVlRcT2P2zwGnRadIvxTbpQuDPTg==
+ dependencies:
+ fs-extra "^7.0.0"
+ ssri "^6.0.1"
+ tar "^4.4.8"
+
+"@lerna/github-client@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-3.13.1.tgz#cb9bf9f01685a0cee0fac63f287f6c3673e45aa3"
+ integrity sha512-iPLUp8FFoAKGURksYEYZzfuo9TRA+NepVlseRXFaWlmy36dCQN20AciINpoXiXGoHcEUHXUKHQvY3ARFdMlf3w==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@octokit/plugin-enterprise-rest" "^2.1.1"
+ "@octokit/rest" "^16.16.0"
+ git-url-parse "^11.1.2"
+ npmlog "^4.1.2"
+
+"@lerna/global-options@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-3.13.0.tgz#217662290db06ad9cf2c49d8e3100ee28eaebae1"
+ integrity sha512-SlZvh1gVRRzYLVluz9fryY1nJpZ0FHDGB66U9tFfvnnxmueckRQxLopn3tXj3NU1kc3QANT2I5BsQkOqZ4TEFQ==
+
+"@lerna/has-npm-version@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-3.13.0.tgz#6e1f7e9336cce3e029066f0175f06dd9d51ad09f"
+ integrity sha512-Oqu7DGLnrMENPm+bPFGOHnqxK8lCnuYr6bk3g/CoNn8/U0qgFvHcq6Iv8/Z04TsvleX+3/RgauSD2kMfRmbypg==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ semver "^5.5.0"
+
+"@lerna/import@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/import/-/import-3.13.1.tgz#69d641341a38b79bd379129da1c717d51dd728c7"
+ integrity sha512-A1Vk1siYx1XkRl6w+zkaA0iptV5TIynVlHPR9S7NY0XAfhykjztYVvwtxarlh6+VcNrO9We6if0+FXCrfDEoIg==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/prompt" "3.13.0"
+ "@lerna/pulse-till-done" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ dedent "^0.7.0"
+ fs-extra "^7.0.0"
+ p-map-series "^1.0.0"
+
+"@lerna/init@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/init/-/init-3.13.1.tgz#0392c822abb3d63a75be4916c5e761cfa7b34dda"
+ integrity sha512-M59WACqim8WkH5FQEGOCEZ89NDxCKBfFTx4ZD5ig3LkGyJ8RdcJq5KEfpW/aESuRE9JrZLzVr0IjKbZSxzwEMA==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/command" "3.13.1"
+ fs-extra "^7.0.0"
+ p-map "^1.2.0"
+ write-json-file "^2.3.0"
+
+"@lerna/link@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/link/-/link-3.13.1.tgz#7d8ed4774bfa198d1780f790a14abb8722a3aad1"
+ integrity sha512-N3h3Fj1dcea+1RaAoAdy4g2m3fvU7m89HoUn5X/Zcw5n2kPoK8kTO+NfhNAatfRV8VtMXst8vbNrWQQtfm0FFw==
+ dependencies:
+ "@lerna/command" "3.13.1"
+ "@lerna/package-graph" "3.13.0"
+ "@lerna/symlink-dependencies" "3.13.0"
+ p-map "^1.2.0"
+ slash "^1.0.0"
+
+"@lerna/list@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/list/-/list-3.13.1.tgz#f9513ed143e52156c10ada4070f903c5847dcd10"
+ integrity sha512-635iRbdgd9gNvYLLIbYdQCQLr+HioM5FGJLFS0g3DPGygr6iDR8KS47hzCRGH91LU9NcM1mD1RoT/AChF+QbiA==
+ dependencies:
+ "@lerna/command" "3.13.1"
+ "@lerna/filter-options" "3.13.0"
+ "@lerna/listable" "3.13.0"
+ "@lerna/output" "3.13.0"
+
+"@lerna/listable@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-3.13.0.tgz#babc18442c590b549cf0966d20d75fea066598d4"
+ integrity sha512-liYJ/WBUYP4N4MnSVZuLUgfa/jy3BZ02/1Om7xUY09xGVSuNVNEeB8uZUMSC+nHqFHIsMPZ8QK9HnmZb1E/eTA==
+ dependencies:
+ "@lerna/batch-packages" "3.13.0"
+ chalk "^2.3.1"
+ columnify "^1.5.4"
+
+"@lerna/log-packed@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-3.13.0.tgz#497b5f692a8d0e3f669125da97b0dadfd9e480f3"
+ integrity sha512-Rmjrcz+6aM6AEcEVWmurbo8+AnHOvYtDpoeMMJh9IZ9SmZr2ClXzmD7wSvjTQc8BwOaiWjjC/ukcT0UYA2m7wg==
+ dependencies:
+ byte-size "^4.0.3"
+ columnify "^1.5.4"
+ has-unicode "^2.0.1"
+ npmlog "^4.1.2"
+
+"@lerna/npm-conf@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-3.13.0.tgz#6b434ed75ff757e8c14381b9bbfe5d5ddec134a7"
+ integrity sha512-Jg2kANsGnhg+fbPEzE0X9nX5oviEAvWj0nYyOkcE+cgWuT7W0zpnPXC4hA4C5IPQGhwhhh0IxhWNNHtjTuw53g==
+ dependencies:
+ config-chain "^1.1.11"
+ pify "^3.0.0"
+
+"@lerna/npm-dist-tag@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-3.13.0.tgz#49ecbe0e82cbe4ad4a8ea6de112982bf6c4e6cd4"
+ integrity sha512-mcuhw34JhSRFrbPn0vedbvgBTvveG52bR2lVE3M3tfE8gmR/cKS/EJFO4AUhfRKGCTFn9rjaSEzlFGYV87pemQ==
+ dependencies:
+ figgy-pudding "^3.5.1"
+ npm-package-arg "^6.1.0"
+ npm-registry-fetch "^3.9.0"
+ npmlog "^4.1.2"
+
+"@lerna/npm-install@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-3.13.0.tgz#88f4cc39f4f737c8a8721256b915ea1bcc6a7227"
+ integrity sha512-qNyfts//isYQxore6fsPorNYJmPVKZ6tOThSH97tP0aV91zGMtrYRqlAoUnDwDdAjHPYEM16hNujg2wRmsqqIw==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/get-npm-exec-opts" "3.13.0"
+ fs-extra "^7.0.0"
+ npm-package-arg "^6.1.0"
+ npmlog "^4.1.2"
+ signal-exit "^3.0.2"
+ write-pkg "^3.1.0"
+
+"@lerna/npm-publish@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-3.13.0.tgz#5c74808376e778865ffdc5885fe83935e15e60c3"
+ integrity sha512-y4WO0XTaf9gNRkI7as6P2ItVDOxmYHwYto357fjybcnfXgMqEA94c3GJ++jU41j0A9vnmYC6/XxpTd9sVmH9tA==
+ dependencies:
+ "@lerna/run-lifecycle" "3.13.0"
+ figgy-pudding "^3.5.1"
+ fs-extra "^7.0.0"
+ libnpmpublish "^1.1.1"
+ npmlog "^4.1.2"
+ pify "^3.0.0"
+ read-package-json "^2.0.13"
+
+"@lerna/npm-run-script@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-3.13.0.tgz#e5997f045402b9948bdc066033ebb36bf94fc9e4"
+ integrity sha512-hiL3/VeVp+NFatBjkGN8mUdX24EfZx9rQlSie0CMgtjc7iZrtd0jCguLomSCRHYjJuvqgbp+LLYo7nHVykfkaQ==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ "@lerna/get-npm-exec-opts" "3.13.0"
+ npmlog "^4.1.2"
+
+"@lerna/output@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/output/-/output-3.13.0.tgz#3ded7cc908b27a9872228a630d950aedae7a4989"
+ integrity sha512-7ZnQ9nvUDu/WD+bNsypmPG5MwZBwu86iRoiW6C1WBuXXDxM5cnIAC1m2WxHeFnjyMrYlRXM9PzOQ9VDD+C15Rg==
+ dependencies:
+ npmlog "^4.1.2"
+
+"@lerna/pack-directory@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-3.13.1.tgz#5ad4d0945f86a648f565e24d53c1e01bb3a912d1"
+ integrity sha512-kXnyqrkQbCIZOf1054N88+8h0ItC7tUN5v9ca/aWpx298gsURpxUx/1TIKqijL5TOnHMyIkj0YJmnH/PyBVLKA==
+ dependencies:
+ "@lerna/get-packed" "3.13.0"
+ "@lerna/package" "3.13.0"
+ "@lerna/run-lifecycle" "3.13.0"
+ figgy-pudding "^3.5.1"
+ npm-packlist "^1.4.1"
+ npmlog "^4.1.2"
+ tar "^4.4.8"
+ temp-write "^3.4.0"
+
+"@lerna/package-graph@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-3.13.0.tgz#607062f8d2ce22b15f8d4a0623f384736e67f760"
+ integrity sha512-3mRF1zuqFE1HEFmMMAIggXy+f+9cvHhW/jzaPEVyrPNLKsyfJQtpTNzeI04nfRvbAh+Gd2aNksvaW/w3xGJnnw==
+ dependencies:
+ "@lerna/validation-error" "3.13.0"
+ npm-package-arg "^6.1.0"
+ semver "^5.5.0"
+
+"@lerna/package@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/package/-/package-3.13.0.tgz#4baeebc49a57fc9b31062cc59f5ee38384429fc8"
+ integrity sha512-kSKO0RJQy093BufCQnkhf1jB4kZnBvL7kK5Ewolhk5gwejN+Jofjd8DGRVUDUJfQ0CkW1o6GbUeZvs8w8VIZDg==
+ dependencies:
+ load-json-file "^4.0.0"
+ npm-package-arg "^6.1.0"
+ write-pkg "^3.1.0"
+
+"@lerna/project@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/project/-/project-3.13.1.tgz#bce890f60187bd950bcf36c04b5260642e295e79"
+ integrity sha512-/GoCrpsCCTyb9sizk1+pMBrIYchtb+F1uCOn3cjn9yenyG/MfYEnlfrbV5k/UDud0Ei75YBLbmwCbigHkAKazQ==
+ dependencies:
+ "@lerna/package" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ cosmiconfig "^5.1.0"
+ dedent "^0.7.0"
+ dot-prop "^4.2.0"
+ glob-parent "^3.1.0"
+ globby "^8.0.1"
+ load-json-file "^4.0.0"
+ npmlog "^4.1.2"
+ p-map "^1.2.0"
+ resolve-from "^4.0.0"
+ write-json-file "^2.3.0"
+
+"@lerna/prompt@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-3.13.0.tgz#53571462bb3f5399cc1ca6d335a411fe093426a5"
+ integrity sha512-P+lWSFokdyvYpkwC3it9cE0IF2U5yy2mOUbGvvE4iDb9K7TyXGE+7lwtx2thtPvBAfIb7O13POMkv7df03HJeA==
+ dependencies:
+ inquirer "^6.2.0"
+ npmlog "^4.1.2"
+
+"@lerna/publish@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-3.13.1.tgz#217e401dcb5824cdd6d36555a36303fb7520c514"
+ integrity sha512-KhCJ9UDx76HWCF03i5TD7z5lX+2yklHh5SyO8eDaLptgdLDQ0Z78lfGj3JhewHU2l46FztmqxL/ss0IkWHDL+g==
+ dependencies:
+ "@lerna/batch-packages" "3.13.0"
+ "@lerna/check-working-tree" "3.13.0"
+ "@lerna/child-process" "3.13.0"
+ "@lerna/collect-updates" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/describe-ref" "3.13.0"
+ "@lerna/log-packed" "3.13.0"
+ "@lerna/npm-conf" "3.13.0"
+ "@lerna/npm-dist-tag" "3.13.0"
+ "@lerna/npm-publish" "3.13.0"
+ "@lerna/output" "3.13.0"
+ "@lerna/pack-directory" "3.13.1"
+ "@lerna/prompt" "3.13.0"
+ "@lerna/pulse-till-done" "3.13.0"
+ "@lerna/run-lifecycle" "3.13.0"
+ "@lerna/run-parallel-batches" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ "@lerna/version" "3.13.1"
+ figgy-pudding "^3.5.1"
+ fs-extra "^7.0.0"
+ libnpmaccess "^3.0.1"
+ npm-package-arg "^6.1.0"
+ npm-registry-fetch "^3.9.0"
+ npmlog "^4.1.2"
+ p-finally "^1.0.0"
+ p-map "^1.2.0"
+ p-pipe "^1.2.0"
+ p-reduce "^1.0.0"
+ pacote "^9.5.0"
+ semver "^5.5.0"
+
+"@lerna/pulse-till-done@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-3.13.0.tgz#c8e9ce5bafaf10d930a67d7ed0ccb5d958fe0110"
+ integrity sha512-1SOHpy7ZNTPulzIbargrgaJX387csN7cF1cLOGZiJQA6VqnS5eWs2CIrG8i8wmaUavj2QlQ5oEbRMVVXSsGrzA==
+ dependencies:
+ npmlog "^4.1.2"
+
+"@lerna/resolve-symlink@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-3.13.0.tgz#3e6809ef53b63fe914814bfa071cd68012e22fbb"
+ integrity sha512-Lc0USSFxwDxUs5JvIisS8JegjA6SHSAWJCMvi2osZx6wVRkEDlWG2B1JAfXUzCMNfHoZX0/XX9iYZ+4JIpjAtg==
+ dependencies:
+ fs-extra "^7.0.0"
+ npmlog "^4.1.2"
+ read-cmd-shim "^1.0.1"
+
+"@lerna/rimraf-dir@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-3.13.0.tgz#bb1006104b4aabcb6985624273254648f872b278"
+ integrity sha512-kte+pMemulre8cmPqljxIYjCmdLByz8DgHBHXB49kz2EiPf8JJ+hJFt0PzEubEyJZ2YE2EVAx5Tv5+NfGNUQyQ==
+ dependencies:
+ "@lerna/child-process" "3.13.0"
+ npmlog "^4.1.2"
+ path-exists "^3.0.0"
+ rimraf "^2.6.2"
+
+"@lerna/run-lifecycle@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-3.13.0.tgz#d8835ee83425edee40f687a55f81b502354d3261"
+ integrity sha512-oyiaL1biZdjpmjh6X/5C4w07wNFyiwXSSHH5GQB4Ay4BPwgq9oNhCcxRoi0UVZlZ1YwzSW8sTwLgj8emkIo3Yg==
+ dependencies:
+ "@lerna/npm-conf" "3.13.0"
+ figgy-pudding "^3.5.1"
+ npm-lifecycle "^2.1.0"
+ npmlog "^4.1.2"
+
+"@lerna/run-parallel-batches@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/run-parallel-batches/-/run-parallel-batches-3.13.0.tgz#0276bb4e7cd0995297db82d134ca2bd08d63e311"
+ integrity sha512-bICFBR+cYVF1FFW+Tlm0EhWDioTUTM6dOiVziDEGE1UZha1dFkMYqzqdSf4bQzfLS31UW/KBd/2z8jy2OIjEjg==
+ dependencies:
+ p-map "^1.2.0"
+ p-map-series "^1.0.0"
+
+"@lerna/run@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/run/-/run-3.13.1.tgz#87e174c1d271894ddd29adc315c068fb7b1b0117"
+ integrity sha512-nv1oj7bsqppWm1M4ifN+/IIbVu9F4RixrbQD2okqDGYne4RQPAXyb5cEZuAzY/wyGTWWiVaZ1zpj5ogPWvH0bw==
+ dependencies:
+ "@lerna/batch-packages" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/filter-options" "3.13.0"
+ "@lerna/npm-run-script" "3.13.0"
+ "@lerna/output" "3.13.0"
+ "@lerna/run-parallel-batches" "3.13.0"
+ "@lerna/timer" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ p-map "^1.2.0"
+
+"@lerna/symlink-binary@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-3.13.0.tgz#36a9415d468afcb8105750296902f6f000a9680d"
+ integrity sha512-obc4Y6jxywkdaCe+DB0uTxYqP0IQ8mFWvN+k/YMbwH4G2h7M7lCBWgPy8e7xw/50+1II9tT2sxgx+jMus1sTJg==
+ dependencies:
+ "@lerna/create-symlink" "3.13.0"
+ "@lerna/package" "3.13.0"
+ fs-extra "^7.0.0"
+ p-map "^1.2.0"
+
+"@lerna/symlink-dependencies@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-3.13.0.tgz#76c23ecabda7824db98a0561364f122b457509cf"
+ integrity sha512-7CyN5WYEPkbPLbqHBIQg/YiimBzb5cIGQB0E9IkLs3+racq2vmUNQZn38LOaazQacAA83seB+zWSxlI6H+eXSg==
+ dependencies:
+ "@lerna/create-symlink" "3.13.0"
+ "@lerna/resolve-symlink" "3.13.0"
+ "@lerna/symlink-binary" "3.13.0"
+ fs-extra "^7.0.0"
+ p-finally "^1.0.0"
+ p-map "^1.2.0"
+ p-map-series "^1.0.0"
+
+"@lerna/timer@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-3.13.0.tgz#bcd0904551db16e08364d6c18e5e2160fc870781"
+ integrity sha512-RHWrDl8U4XNPqY5MQHkToWS9jHPnkLZEt5VD+uunCKTfzlxGnRCr3/zVr8VGy/uENMYpVP3wJa4RKGY6M0vkRw==
+
+"@lerna/validation-error@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-3.13.0.tgz#c86b8f07c5ab9539f775bd8a54976e926f3759c3"
+ integrity sha512-SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA==
+ dependencies:
+ npmlog "^4.1.2"
+
+"@lerna/version@3.13.1":
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/@lerna/version/-/version-3.13.1.tgz#5e919d13abb13a663dcc7922bb40931f12fb137b"
+ integrity sha512-WpfKc5jZBBOJ6bFS4atPJEbHSiywQ/Gcd+vrwaEGyQHWHQZnPTvhqLuq3q9fIb9sbuhH5pSY6eehhuBrKqTnjg==
+ dependencies:
+ "@lerna/batch-packages" "3.13.0"
+ "@lerna/check-working-tree" "3.13.0"
+ "@lerna/child-process" "3.13.0"
+ "@lerna/collect-updates" "3.13.0"
+ "@lerna/command" "3.13.1"
+ "@lerna/conventional-commits" "3.13.0"
+ "@lerna/github-client" "3.13.1"
+ "@lerna/output" "3.13.0"
+ "@lerna/prompt" "3.13.0"
+ "@lerna/run-lifecycle" "3.13.0"
+ "@lerna/validation-error" "3.13.0"
+ chalk "^2.3.1"
+ dedent "^0.7.0"
+ minimatch "^3.0.4"
+ npmlog "^4.1.2"
+ p-map "^1.2.0"
+ p-pipe "^1.2.0"
+ p-reduce "^1.0.0"
+ p-waterfall "^1.0.0"
+ semver "^5.5.0"
+ slash "^1.0.0"
+ temp-write "^3.4.0"
+
+"@lerna/write-log-file@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-3.13.0.tgz#b78d9e4cfc1349a8be64d91324c4c8199e822a26"
+ integrity sha512-RibeMnDPvlL8bFYW5C8cs4mbI3AHfQef73tnJCQ/SgrXZHehmHnsyWUiE7qDQCAo+B1RfTapvSyFF69iPj326A==
+ dependencies:
+ npmlog "^4.1.2"
+ write-file-atomic "^2.3.0"
+
"@mrmlnc/readdir-enhanced@^2.2.1":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
@@ -949,11 +1806,376 @@
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
+"@octokit/endpoint@^3.2.0":
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-3.2.3.tgz#bd9aea60cd94ce336656b57a5c9cb7f10be8f4f3"
+ integrity sha512-yUPCt4vMIOclox13CUxzuKiPJIFo46b/6GhUnUTw5QySczN1L0DtSxgmIZrZV4SAb9EyAqrceoyrWoYVnfF2AA==
+ dependencies:
+ deepmerge "3.2.0"
+ is-plain-object "^2.0.4"
+ universal-user-agent "^2.0.1"
+ url-template "^2.0.8"
+
+"@octokit/plugin-enterprise-rest@^2.1.1":
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-2.2.2.tgz#c0e22067a043e19f96ff9c7832e2a3019f9be75c"
+ integrity sha512-CTZr64jZYhGWNTDGlSJ2mvIlFsm9OEO3LqWn9I/gmoHI4jRBp4kpHoFYNemG4oA75zUAcmbuWblb7jjP877YZw==
+
+"@octokit/request@2.4.2":
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/@octokit/request/-/request-2.4.2.tgz#87c36e820dd1e43b1629f4f35c95b00cd456320b"
+ integrity sha512-lxVlYYvwGbKSHXfbPk5vxEA8w4zHOH1wobado4a9EfsyD3Cbhuhus1w0Ye9Ro0eMubGO8kNy5d+xNFisM3Tvaw==
+ dependencies:
+ "@octokit/endpoint" "^3.2.0"
+ deprecation "^1.0.1"
+ is-plain-object "^2.0.4"
+ node-fetch "^2.3.0"
+ once "^1.4.0"
+ universal-user-agent "^2.0.1"
+
+"@octokit/rest@^16.16.0":
+ version "16.19.0"
+ resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.19.0.tgz#238244eae904c15bc9aa863bb3819142d3369ccb"
+ integrity sha512-mUk/GU2LtV95OAM3FnvK7KFFNzUUzEGFldOhWliJnuhwBqxEag1gW85o//L6YphC9wLoTaZQOhCHmQcsCnt2ag==
+ dependencies:
+ "@octokit/request" "2.4.2"
+ before-after-hook "^1.4.0"
+ btoa-lite "^1.0.0"
+ deprecation "^1.0.1"
+ lodash.get "^4.4.2"
+ lodash.set "^4.3.2"
+ lodash.uniq "^4.5.0"
+ octokit-pagination-methods "^1.1.0"
+ once "^1.4.0"
+ universal-user-agent "^2.0.0"
+ url-template "^2.0.8"
+
+"@reach/router@^1.2.1":
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.2.1.tgz#34ae3541a5ac44fa7796e5506a5d7274a162be4e"
+ integrity sha512-kTaX08X4g27tzIFQGRukaHmNbtMYDS3LEWIS8+l6OayGIw6Oyo1HIF/JzeuR2FoF9z6oV+x/wJSVSq4v8tcUGQ==
+ dependencies:
+ create-react-context "^0.2.1"
+ invariant "^2.2.3"
+ prop-types "^15.6.1"
+ react-lifecycles-compat "^3.0.4"
+ warning "^3.0.0"
+
"@sheerun/mutationobserver-shim@^0.3.2":
version "0.3.2"
resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#8013f2af54a2b7d735f71560ff360d3a8176a87b"
integrity sha512-vTCdPp/T/Q3oSqwHmZ5Kpa9oI7iLtGl3RQaA/NyLHikvcrPxACkkKVr/XzkSPJWXHRhKGzVvb0urJsbMlRxi1Q==
+"@storybook/addon-actions@^5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.0.3.tgz#bf8bafeebc7b325f33a62d023e8ce9280ac66349"
+ integrity sha512-uyZV1TacrSb0A+bTGWCwaa0KiXUfeTs0+RBa1V5GPh5hZfZel8EAxlujsQWz/e3UZlvFPunW0NJWU0avpWYHCQ==
+ dependencies:
+ "@storybook/addons" "5.0.3"
+ "@storybook/components" "5.0.3"
+ "@storybook/core-events" "5.0.3"
+ "@storybook/theming" "5.0.3"
+ core-js "^2.6.5"
+ fast-deep-equal "^2.0.1"
+ global "^4.3.2"
+ lodash "^4.17.11"
+ make-error "^1.3.5"
+ polished "^2.3.3"
+ prop-types "^15.6.2"
+ react "^16.8.1"
+ react-inspector "^2.3.0"
+ uuid "^3.3.2"
+
+"@storybook/addon-links@^5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-5.0.3.tgz#266a759269bc4b25b9d942e208d7225a19fa36cb"
+ integrity sha512-h6D8IYbpL75Ix7MQ0Pe2hbCQbfhSYxZ2y7tTdmXHKdP4bdQoB95+eaqvsJR17GFncfBhT6dnvKnkDARkWV468w==
+ dependencies:
+ "@storybook/addons" "5.0.3"
+ "@storybook/core-events" "5.0.3"
+ common-tags "^1.8.0"
+ core-js "^2.6.5"
+ global "^4.3.2"
+ prop-types "^15.6.2"
+ qs "^6.5.2"
+
+"@storybook/addons@5.0.3", "@storybook/addons@^5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.0.3.tgz#073352021d97ebbd3b8499e1dbe7fe32eafaaa28"
+ integrity sha512-jrhj2JQ05qErCMQQGwAMd/Diq14070aGof62RCUGqrEnfiYgeTM74k3C8sK7G/WFOAowI7hmQvWN9002HMXpVg==
+ dependencies:
+ "@storybook/channels" "5.0.3"
+ "@storybook/client-logger" "5.0.3"
+ core-js "^2.6.5"
+ global "^4.3.2"
+ util-deprecate "^1.0.2"
+
+"@storybook/channel-postmessage@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.0.3.tgz#3531a78b7e4e0cb04349c5135ff87963457669da"
+ integrity sha512-qi4RjwWzgVvIHgfdQtSk6DLvh9iUiAPYt8OwmJ+ymBgCtUFK2NLNnvK4EPm92WgZgH4cZJ5z1nl9lD2l/de5sQ==
+ dependencies:
+ "@storybook/channels" "5.0.3"
+ "@storybook/client-logger" "5.0.3"
+ core-js "^2.6.5"
+ global "^4.3.2"
+ telejson "^2.1.0"
+
+"@storybook/channels@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.0.3.tgz#ab1623b2dc6ab9202f7938bf2210b00259794784"
+ integrity sha512-trqHZPOmv3yTgT4EHQn74UhqIPOuFHZzHURKi3JWxDvDntZ+itIDgX8u3jiME0EIEVWwru5QM88j87GfqfzRmA==
+ dependencies:
+ core-js "^2.6.5"
+
+"@storybook/client-api@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.0.3.tgz#d235eac1637ec213e651286c3ca37c1a56f785a0"
+ integrity sha512-dZRyhmvPv6MZjlVN1F0v9rQtmm1dQkk+4NYffk2lM14BIfSiUnDmF4VRzDpHAKWy6gCHvlPBPuzS0DkfikAgsA==
+ dependencies:
+ "@storybook/addons" "5.0.3"
+ "@storybook/client-logger" "5.0.3"
+ "@storybook/core-events" "5.0.3"
+ "@storybook/router" "5.0.3"
+ common-tags "^1.8.0"
+ eventemitter3 "^3.1.0"
+ global "^4.3.2"
+ is-plain-object "^2.0.4"
+ lodash.debounce "^4.0.8"
+ lodash.isequal "^4.5.0"
+ lodash.mergewith "^4.6.1"
+ memoizerific "^1.11.3"
+ qs "^6.5.2"
+
+"@storybook/client-logger@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.0.3.tgz#5ec45b3173313aa7912ac95ac1ec530598a9d20e"
+ integrity sha512-1izIxCV1QsYfz5c93sUlHI6IlkVF3Rslje0QQeGOQPHZ4Pe73JzUjIlMKww9BAYS7rYbq7asNNplEp4GIgIdYQ==
+ dependencies:
+ core-js "^2.6.5"
+
+"@storybook/components@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.0.3.tgz#99df80256ce19d5d6d307b4f2a8d2f2a03c68b5a"
+ integrity sha512-xJX5poCjIae2Qv0bq5Ef87kcLn90IhlEOPg8nBCcUt2y8T6JQhEk+Zk6WpzA+TxV1Q/P1Oqozv8sr2vuQR2EFA==
+ dependencies:
+ "@storybook/addons" "5.0.3"
+ "@storybook/client-logger" "5.0.3"
+ "@storybook/core-events" "5.0.3"
+ "@storybook/router" "5.0.3"
+ "@storybook/theming" "5.0.3"
+ core-js "^2.6.5"
+ global "^4.3.2"
+ immer "^1.12.0"
+ js-beautify "^1.8.9"
+ lodash.pick "^4.4.0"
+ lodash.throttle "^4.1.1"
+ memoizerific "^1.11.3"
+ polished "^2.3.3"
+ prop-types "^15.6.2"
+ react "^16.8.1"
+ react-dom "^16.8.1"
+ react-focus-lock "^1.17.7"
+ react-helmet-async "^0.2.0"
+ react-inspector "^2.3.0"
+ react-popper-tooltip "^2.8.0"
+ react-syntax-highlighter "^8.0.1"
+ react-textarea-autosize "^7.0.4"
+ reactjs-popup "^1.3.2"
+ recompose "^0.30.0"
+ render-fragment "^0.1.1"
+
+"@storybook/core-events@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.0.3.tgz#1b9d6265f7a2b16a0ddee274975e104d7a02c9f6"
+ integrity sha512-a+GbuuhGcfL6ovFlzfYi1oEu2gVa5m2tY5sHEYA03lWdKR2aa4R5Q8haVujox6yxQ6L8gNh1RZff0s1kx64Drw==
+ dependencies:
+ core-js "^2.6.5"
+
+"@storybook/core@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/core/-/core-5.0.3.tgz#9e797a3b2f5b62dc3e43c19f04888c5ac7a3bacd"
+ integrity sha512-3pfHsao/My0PTfHWQ6sQFuq1KSl/6uXi+NupYiExryYhe79fhwh0wO9JQ1JkiA9sUhD6Y+ZaxBZlcNtQgntAmg==
+ dependencies:
+ "@babel/plugin-proposal-class-properties" "^7.3.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.3.2"
+ "@babel/plugin-syntax-dynamic-import" "^7.2.0"
+ "@babel/plugin-transform-react-constant-elements" "^7.2.0"
+ "@babel/preset-env" "^7.3.1"
+ "@storybook/addons" "5.0.3"
+ "@storybook/channel-postmessage" "5.0.3"
+ "@storybook/client-api" "5.0.3"
+ "@storybook/client-logger" "5.0.3"
+ "@storybook/core-events" "5.0.3"
+ "@storybook/node-logger" "5.0.3"
+ "@storybook/router" "5.0.3"
+ "@storybook/theming" "5.0.3"
+ "@storybook/ui" "5.0.3"
+ airbnb-js-shims "^1 || ^2"
+ autoprefixer "^9.4.7"
+ babel-plugin-add-react-displayname "^0.0.5"
+ babel-plugin-emotion "^10.0.7"
+ babel-plugin-macros "^2.4.5"
+ babel-preset-minify "^0.5.0 || 0.6.0-alpha.5"
+ boxen "^2.1.0"
+ case-sensitive-paths-webpack-plugin "^2.2.0"
+ chalk "^2.4.2"
+ child-process-promise "^2.2.1"
+ cli-table3 "0.5.1"
+ commander "^2.19.0"
+ common-tags "^1.8.0"
+ core-js "^2.6.5"
+ css-loader "^2.1.0"
+ detect-port "^1.2.3"
+ dotenv-webpack "^1.7.0"
+ ejs "^2.6.1"
+ express "^4.16.3"
+ file-loader "^3.0.1"
+ file-system-cache "^1.0.5"
+ find-cache-dir "^2.0.0"
+ fs-extra "^7.0.1"
+ global "^4.3.2"
+ html-webpack-plugin "^4.0.0-beta.2"
+ inquirer "^6.2.0"
+ interpret "^1.2.0"
+ ip "^1.1.5"
+ json5 "^2.1.0"
+ lazy-universal-dotenv "^2.0.0"
+ node-fetch "^2.2.0"
+ object.omit "^3.0.0"
+ opn "^5.4.0"
+ postcss-flexbugs-fixes "^4.1.0"
+ postcss-loader "^3.0.0"
+ pretty-hrtime "^1.0.3"
+ prop-types "^15.6.2"
+ raw-loader "^1.0.0"
+ react-dev-utils "^7.0.0"
+ regenerator-runtime "^0.12.1"
+ resolve "^1.10.0"
+ resolve-from "^4.0.0"
+ semver "^5.6.0"
+ serve-favicon "^2.5.0"
+ shelljs "^0.8.2"
+ spawn-promise "^0.1.8"
+ style-loader "^0.23.1"
+ svg-url-loader "^2.3.2"
+ terser-webpack-plugin "^1.2.1"
+ url-loader "^1.1.2"
+ util-deprecate "^1.0.2"
+ webpack "^4.29.0"
+ webpack-dev-middleware "^3.5.1"
+ webpack-hot-middleware "^2.24.3"
+
+"@storybook/node-logger@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-5.0.3.tgz#616992e02ac58318250d6bb3d212d6bb79ed9b87"
+ integrity sha512-sVOOXO5Ae9xu1uTiBkVItDYZpsncA83tZ5xUNjxQmmQaaDDev+SO2d6b8A5drFLZQxbIXCdHn57CjZXUP1ChlA==
+ dependencies:
+ chalk "^2.4.2"
+ core-js "^2.6.5"
+ npmlog "^4.1.2"
+ pretty-hrtime "^1.0.3"
+ regenerator-runtime "^0.12.1"
+
+"@storybook/react@^5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.0.3.tgz#6154b5449a0c888ad6ee486ed747a37821230d0b"
+ integrity sha512-CUIid9zujWlwPuWYMFEVBQMcN2MmNk4Mwu+L3dQnqr9q4yqIOeMB+i9d1CpaFaxSaN6XtFdXkE7puzIS3lAQgg==
+ dependencies:
+ "@babel/plugin-transform-react-constant-elements" "^7.2.0"
+ "@babel/preset-flow" "^7.0.0"
+ "@babel/preset-react" "^7.0.0"
+ "@storybook/core" "5.0.3"
+ "@storybook/node-logger" "5.0.3"
+ "@storybook/theming" "5.0.3"
+ "@svgr/webpack" "^4.0.3"
+ babel-plugin-named-asset-import "^0.3.0"
+ babel-plugin-react-docgen "^2.0.2"
+ babel-preset-react-app "^7.0.0"
+ common-tags "^1.8.0"
+ core-js "^2.6.5"
+ global "^4.3.2"
+ lodash "^4.17.11"
+ mini-css-extract-plugin "^0.5.0"
+ prop-types "^15.6.2"
+ react-dev-utils "^7.0.1"
+ regenerator-runtime "^0.12.1"
+ semver "^5.6.0"
+ webpack "^4.29.0"
+
+"@storybook/router@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.0.3.tgz#8af21da49c2801931b54810b74118f144b0a863e"
+ integrity sha512-HgDBhvJ9HzaKrpo22IOlNAWET6rPM7peVmnoUvBtjnbQnmBAd38+rT7geX1inVfIJp+CQw1jw2MB18AHgH36Og==
+ dependencies:
+ "@reach/router" "^1.2.1"
+ "@storybook/theming" "5.0.3"
+ core-js "^2.6.5"
+ global "^4.3.2"
+ memoizerific "^1.11.3"
+ qs "^6.5.2"
+
+"@storybook/theming@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.0.3.tgz#d4dbf8016bc03b8581edaa5e3ace145d5e9dd504"
+ integrity sha512-S1KBbhy8mFBEIkzpsC7bW1yHBgvvGlp5y0uP0B/c4ObQvjAxNCMWZlRGiELn6vIpeQF1ywyFpEnq9jKKbY83Qw==
+ dependencies:
+ "@emotion/core" "^10.0.7"
+ "@emotion/styled" "^10.0.7"
+ "@storybook/client-logger" "5.0.3"
+ common-tags "^1.8.0"
+ core-js "^2.6.5"
+ deep-object-diff "^1.1.0"
+ emotion-theming "^10.0.7"
+ global "^4.3.2"
+ lodash.isequal "^4.5.0"
+ lodash.mergewith "^4.6.1"
+ memoizerific "^1.11.3"
+ polished "^2.3.3"
+ prop-types "^15.6.2"
+ react-inspector "^2.3.1"
+
+"@storybook/ui@5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-5.0.3.tgz#81553d32bfa10ca901caeb42dd336e9bae13b417"
+ integrity sha512-3r0CSgv+yZye0yFUUseIya4FmQiMYO8AVlAh9whA1NyhI7IQ8aM7er3FUoMiBP0LTySprrVMV+1Ig8ZD54xrlg==
+ dependencies:
+ "@storybook/addons" "5.0.3"
+ "@storybook/client-logger" "5.0.3"
+ "@storybook/components" "5.0.3"
+ "@storybook/core-events" "5.0.3"
+ "@storybook/router" "5.0.3"
+ "@storybook/theming" "5.0.3"
+ core-js "^2.6.5"
+ fast-deep-equal "^2.0.1"
+ fuzzy-search "^3.0.1"
+ global "^4.3.2"
+ history "^4.7.2"
+ keycode "^2.2.0"
+ lodash.debounce "^4.0.8"
+ lodash.isequal "^4.5.0"
+ lodash.mergewith "^4.6.1"
+ lodash.pick "^4.4.0"
+ lodash.sortby "^4.7.0"
+ lodash.throttle "^4.1.1"
+ markdown-to-jsx "^6.9.1"
+ memoizerific "^1.11.3"
+ polished "^2.3.3"
+ prop-types "^15.6.2"
+ qs "^6.5.2"
+ react "^16.8.1"
+ react-dom "^16.8.1"
+ react-draggable "^3.1.1"
+ react-helmet-async "^0.2.0"
+ react-hotkeys "2.0.0-pre4"
+ react-lifecycles-compat "^3.0.4"
+ react-modal "^3.8.1"
+ react-resize-detector "^3.2.1"
+ recompose "^0.30.0"
+ semver "^5.6.0"
+ telejson "^2.1.1"
+ util-deprecate "^1.0.2"
+
"@svgr/babel-plugin-add-jsx-attribute@^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.0.0.tgz#5acf239cd2747b1a36ec7e708de05d914cb9b948"
@@ -1045,7 +2267,7 @@
merge-deep "^3.0.2"
svgo "^1.1.1"
-"@svgr/webpack@4.1.0":
+"@svgr/webpack@4.1.0", "@svgr/webpack@^4.0.3":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-4.1.0.tgz#20c88f32f731c7b1d4711045b2b993887d731c28"
integrity sha512-d09ehQWqLMywP/PT/5JvXwPskPK9QCXUjiSkAHehreB381qExXf5JFCBWhfEyNonRbkIneCeYM99w+Ud48YIQQ==
@@ -1059,20 +2281,58 @@
"@svgr/plugin-svgo" "^4.0.3"
loader-utils "^1.1.0"
+"@types/babel__core@^7.1.0":
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz#710f2487dda4dcfd010ca6abb2b4dc7394365c51"
+ integrity sha512-wJTeJRt7BToFx3USrCDs2BhEi4ijBInTQjOIukj6a/5tEkwpFMVZ+1ppgmE+Q/FQyc5P/VWUbx7I9NELrKruHA==
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+ "@types/babel__generator" "*"
+ "@types/babel__template" "*"
+ "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc"
+ integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==
+ dependencies:
+ "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307"
+ integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz#328dd1a8fc4cfe3c8458be9477b219ea158fd7b2"
+ integrity sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw==
+ dependencies:
+ "@babel/types" "^7.3.0"
+
"@types/istanbul-lib-coverage@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#2cc2ca41051498382b43157c8227fea60363f94a"
integrity sha512-ohkhb9LehJy+PA40rDtGAji61NCgdtKLAlFoYp4cnuuQEswwdK3vz9SOIkkyc3wrk8dzjphQApNs56yyXLStaQ==
"@types/node@*":
- version "11.11.0"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-11.11.0.tgz#070e9ce7c90e727aca0e0c14e470f9a93ffe9390"
- integrity sha512-D5Rt+HXgEywr3RQJcGlZUCTCx1qVbCZpVk3/tOOA6spLNZdGm8BU+zRgdRYDoF1pO3RuXLxADzMrF903JlQXqg==
+ version "11.11.3"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-11.11.3.tgz#7c6b0f8eaf16ae530795de2ad1b85d34bf2f5c58"
+ integrity sha512-wp6IOGu1lxsfnrD+5mX6qwSwWuqsdkKKxTN4aQc4wByHAKZJf9/D4KXPQ1POUjEbnCP5LMggB0OEFNY9OTsMqg==
"@types/q@^1.5.1":
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.1.tgz#48fd98c1561fe718b61733daed46ff115b496e18"
- integrity sha512-eqz8c/0kwNi/OEHQfvIuJVLTst3in0e7uTKeuY+WL/zfKn0xVujOTp42bS/vUUokhK5P2BppLd9JXMOMHcgbjA==
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
+ integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
+
+"@types/stack-utils@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
+ integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
"@types/tapable@1.0.2":
version "1.0.2"
@@ -1101,10 +2361,10 @@
"@types/unist" "*"
"@types/vfile-message" "*"
-"@types/yargs@^12.0.9":
- version "12.0.9"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.9.tgz#693e76a52f61a2f1e7fb48c0eef167b95ea4ffd0"
- integrity sha512-sCZy4SxP9rN2w30Hlmg5dtdRwgYQfYRiLo9usw8X9cxlf+H4FqM1xX7+sNH7NNKVdbXMJWqva7iyy+fxh/V7fA==
+"@types/yargs@^12.0.2", "@types/yargs@^12.0.9":
+ version "12.0.10"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.10.tgz#17a8ec65cd8e88f51b418ceb271af18d3137df67"
+ integrity sha512-WsVzTPshvCSbHThUduGGxbmnwcpkgSctHGHTqzWyFg4lYAuV5qXlyFPOsP3OWqCINfmg/8VXP+zJaa4OxEsBQQ==
"@webassemblyjs/ast@1.7.11":
version "1.7.11"
@@ -1115,21 +2375,45 @@
"@webassemblyjs/helper-wasm-bytecode" "1.7.11"
"@webassemblyjs/wast-parser" "1.7.11"
+"@webassemblyjs/ast@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359"
+ integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==
+ dependencies:
+ "@webassemblyjs/helper-module-context" "1.8.5"
+ "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
+ "@webassemblyjs/wast-parser" "1.8.5"
+
"@webassemblyjs/floating-point-hex-parser@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz#a69f0af6502eb9a3c045555b1a6129d3d3f2e313"
integrity sha512-zY8dSNyYcgzNRNT666/zOoAyImshm3ycKdoLsyDw/Bwo6+/uktb7p4xyApuef1dwEBo/U/SYQzbGBvV+nru2Xg==
+"@webassemblyjs/floating-point-hex-parser@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721"
+ integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==
+
"@webassemblyjs/helper-api-error@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz#c7b6bb8105f84039511a2b39ce494f193818a32a"
integrity sha512-7r1qXLmiglC+wPNkGuXCvkmalyEstKVwcueZRP2GNC2PAvxbLYwLLPr14rcdJaE4UtHxQKfFkuDFuv91ipqvXg==
+"@webassemblyjs/helper-api-error@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7"
+ integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==
+
"@webassemblyjs/helper-buffer@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz#3122d48dcc6c9456ed982debe16c8f37101df39b"
integrity sha512-MynuervdylPPh3ix+mKZloTcL06P8tenNH3sx6s0qE8SLR6DdwnfgA7Hc9NSYeob2jrW5Vql6GVlsQzKQCa13w==
+"@webassemblyjs/helper-buffer@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204"
+ integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==
+
"@webassemblyjs/helper-code-frame@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz#cf8f106e746662a0da29bdef635fcd3d1248364b"
@@ -1137,21 +2421,46 @@
dependencies:
"@webassemblyjs/wast-printer" "1.7.11"
+"@webassemblyjs/helper-code-frame@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e"
+ integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==
+ dependencies:
+ "@webassemblyjs/wast-printer" "1.8.5"
+
"@webassemblyjs/helper-fsm@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz#df38882a624080d03f7503f93e3f17ac5ac01181"
integrity sha512-nsAQWNP1+8Z6tkzdYlXT0kxfa2Z1tRTARd8wYnc/e3Zv3VydVVnaeePgqUzFrpkGUyhUUxOl5ML7f1NuT+gC0A==
+"@webassemblyjs/helper-fsm@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452"
+ integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==
+
"@webassemblyjs/helper-module-context@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz#d874d722e51e62ac202476935d649c802fa0e209"
integrity sha512-JxfD5DX8Ygq4PvXDucq0M+sbUFA7BJAv/GGl9ITovqE+idGX+J3QSzJYz+LwQmL7fC3Rs+utvWoJxDb6pmC0qg==
+"@webassemblyjs/helper-module-context@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245"
+ integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ mamacro "^0.0.3"
+
"@webassemblyjs/helper-wasm-bytecode@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz#dd9a1e817f1c2eb105b4cf1013093cb9f3c9cb06"
integrity sha512-cMXeVS9rhoXsI9LLL4tJxBgVD/KMOKXuFqYb5oCJ/opScWpkCMEz9EJtkonaNcnLv2R3K5jIeS4TRj/drde1JQ==
+"@webassemblyjs/helper-wasm-bytecode@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61"
+ integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==
+
"@webassemblyjs/helper-wasm-section@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz#9c9ac41ecf9fbcfffc96f6d2675e2de33811e68a"
@@ -1162,6 +2471,16 @@
"@webassemblyjs/helper-wasm-bytecode" "1.7.11"
"@webassemblyjs/wasm-gen" "1.7.11"
+"@webassemblyjs/helper-wasm-section@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf"
+ integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/helper-buffer" "1.8.5"
+ "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
+ "@webassemblyjs/wasm-gen" "1.8.5"
+
"@webassemblyjs/ieee754@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz#c95839eb63757a31880aaec7b6512d4191ac640b"
@@ -1169,6 +2488,13 @@
dependencies:
"@xtuc/ieee754" "^1.2.0"
+"@webassemblyjs/ieee754@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e"
+ integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
+ dependencies:
+ "@xtuc/ieee754" "^1.2.0"
+
"@webassemblyjs/leb128@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.11.tgz#d7267a1ee9c4594fd3f7e37298818ec65687db63"
@@ -1176,11 +2502,23 @@
dependencies:
"@xtuc/long" "4.2.1"
+"@webassemblyjs/leb128@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10"
+ integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==
+ dependencies:
+ "@xtuc/long" "4.2.2"
+
"@webassemblyjs/utf8@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.11.tgz#06d7218ea9fdc94a6793aa92208160db3d26ee82"
integrity sha512-C6GFkc7aErQIAH+BMrIdVSmW+6HSe20wg57HEC1uqJP8E/xpMjXqQUxkQw07MhNDSDcGpxI9G5JSNOQCqJk4sA==
+"@webassemblyjs/utf8@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc"
+ integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==
+
"@webassemblyjs/wasm-edit@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz#8c74ca474d4f951d01dbae9bd70814ee22a82005"
@@ -1195,6 +2533,20 @@
"@webassemblyjs/wasm-parser" "1.7.11"
"@webassemblyjs/wast-printer" "1.7.11"
+"@webassemblyjs/wasm-edit@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a"
+ integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/helper-buffer" "1.8.5"
+ "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
+ "@webassemblyjs/helper-wasm-section" "1.8.5"
+ "@webassemblyjs/wasm-gen" "1.8.5"
+ "@webassemblyjs/wasm-opt" "1.8.5"
+ "@webassemblyjs/wasm-parser" "1.8.5"
+ "@webassemblyjs/wast-printer" "1.8.5"
+
"@webassemblyjs/wasm-gen@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz#9bbba942f22375686a6fb759afcd7ac9c45da1a8"
@@ -1206,6 +2558,17 @@
"@webassemblyjs/leb128" "1.7.11"
"@webassemblyjs/utf8" "1.7.11"
+"@webassemblyjs/wasm-gen@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc"
+ integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
+ "@webassemblyjs/ieee754" "1.8.5"
+ "@webassemblyjs/leb128" "1.8.5"
+ "@webassemblyjs/utf8" "1.8.5"
+
"@webassemblyjs/wasm-opt@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz#b331e8e7cef8f8e2f007d42c3a36a0580a7d6ca7"
@@ -1216,6 +2579,16 @@
"@webassemblyjs/wasm-gen" "1.7.11"
"@webassemblyjs/wasm-parser" "1.7.11"
+"@webassemblyjs/wasm-opt@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264"
+ integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/helper-buffer" "1.8.5"
+ "@webassemblyjs/wasm-gen" "1.8.5"
+ "@webassemblyjs/wasm-parser" "1.8.5"
+
"@webassemblyjs/wasm-parser@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz#6e3d20fa6a3519f6b084ef9391ad58211efb0a1a"
@@ -1228,6 +2601,18 @@
"@webassemblyjs/leb128" "1.7.11"
"@webassemblyjs/utf8" "1.7.11"
+"@webassemblyjs/wasm-parser@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d"
+ integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/helper-api-error" "1.8.5"
+ "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
+ "@webassemblyjs/ieee754" "1.8.5"
+ "@webassemblyjs/leb128" "1.8.5"
+ "@webassemblyjs/utf8" "1.8.5"
+
"@webassemblyjs/wast-parser@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz#25bd117562ca8c002720ff8116ef9072d9ca869c"
@@ -1240,6 +2625,18 @@
"@webassemblyjs/helper-fsm" "1.7.11"
"@xtuc/long" "4.2.1"
+"@webassemblyjs/wast-parser@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c"
+ integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/floating-point-hex-parser" "1.8.5"
+ "@webassemblyjs/helper-api-error" "1.8.5"
+ "@webassemblyjs/helper-code-frame" "1.8.5"
+ "@webassemblyjs/helper-fsm" "1.8.5"
+ "@xtuc/long" "4.2.2"
+
"@webassemblyjs/wast-printer@1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz#c4245b6de242cb50a2cc950174fdbf65c78d7813"
@@ -1249,6 +2646,15 @@
"@webassemblyjs/wast-parser" "1.7.11"
"@xtuc/long" "4.2.1"
+"@webassemblyjs/wast-printer@1.8.5":
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc"
+ integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/wast-parser" "1.8.5"
+ "@xtuc/long" "4.2.2"
+
"@xtuc/ieee754@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
@@ -1259,6 +2665,19 @@
resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8"
integrity sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==
+"@xtuc/long@4.2.2":
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+ integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+
+JSONStream@^1.0.4, JSONStream@^1.3.4:
+ version "1.3.5"
+ resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
+ integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
+ dependencies:
+ jsonparse "^1.2.0"
+ through ">=2.2.7 <3"
+
abab@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f"
@@ -1284,6 +2703,11 @@ acorn-dynamic-import@^3.0.0:
dependencies:
acorn "^5.0.0"
+acorn-dynamic-import@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948"
+ integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==
+
acorn-globals@^4.1.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103"
@@ -1307,7 +2731,7 @@ acorn@^5.0.0, acorn@^5.5.3, acorn@^5.6.2:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
-acorn@^6.0.1, acorn@^6.0.2, acorn@^6.0.7:
+acorn@^6.0.1, acorn@^6.0.5, acorn@^6.0.7:
version "6.1.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"
integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==
@@ -1317,6 +2741,41 @@ address@1.0.3, address@^1.0.1:
resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
integrity sha512-z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg==
+agent-base@4, agent-base@^4.1.0, agent-base@~4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9"
+ integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==
+ dependencies:
+ es6-promisify "^5.0.0"
+
+agentkeepalive@^3.4.1:
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67"
+ integrity sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ==
+ dependencies:
+ humanize-ms "^1.2.1"
+
+"airbnb-js-shims@^1 || ^2":
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.1.1.tgz#a509611480db7e6d9db62fe2acfaeb473b6842ac"
+ integrity sha512-h8UtyB/TCdOwWoEPQJGHgsWwSnTqPrRZbhyZYjAwY9/AbjdjfkKy9L/T3fIFS6MKX8YrpWFRm6xqFSgU+2DRGw==
+ dependencies:
+ array-includes "^3.0.3"
+ array.prototype.flat "^1.2.1"
+ array.prototype.flatmap "^1.2.1"
+ es5-shim "^4.5.10"
+ es6-shim "^0.35.3"
+ function.prototype.name "^1.1.0"
+ object.entries "^1.0.4"
+ object.fromentries "^1.0.0"
+ object.getownpropertydescriptors "^2.0.3"
+ object.values "^1.0.4"
+ promise.prototype.finally "^3.1.0"
+ string.prototype.matchall "^3.0.0"
+ string.prototype.padend "^3.0.0"
+ string.prototype.padstart "^3.0.0"
+ symbol.prototype.description "^1.0.0"
+
ajv-errors@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
@@ -1342,6 +2801,20 @@ alphanum-sort@^1.0.0:
resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
+ansi-align@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
+ integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=
+ dependencies:
+ string-width "^2.0.0"
+
+ansi-align@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
+ integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==
+ dependencies:
+ string-width "^3.0.0"
+
ansi-colors@^3.0.0:
version "3.2.4"
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
@@ -1392,6 +2865,11 @@ anymatch@^2.0.0:
micromatch "^3.1.4"
normalize-path "^2.1.1"
+app-root-dir@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
+ integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=
+
append-transform@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
@@ -1399,11 +2877,23 @@ append-transform@^0.4.0:
dependencies:
default-require-extensions "^1.0.0"
+append-transform@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
+ integrity sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==
+ dependencies:
+ default-require-extensions "^2.0.0"
+
aproba@^1.0.3, aproba@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
+aproba@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
+ integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
+
are-we-there-yet@~1.1.2:
version "1.1.5"
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
@@ -1449,6 +2939,11 @@ arr-union@^3.1.0:
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
+array-differ@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
+ integrity sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=
+
array-equal@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
@@ -1464,6 +2959,11 @@ array-filter@~0.0.0:
resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw=
+array-find-index@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
+ integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=
+
array-flatten@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
@@ -1474,6 +2974,11 @@ array-flatten@^2.1.0:
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+array-ify@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
+ integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=
+
array-includes@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
@@ -1523,12 +3028,21 @@ array.prototype.flat@^1.2.1:
es-abstract "^1.10.0"
function-bind "^1.1.1"
-arrify@^1.0.1:
+array.prototype.flatmap@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.1.tgz#3103cd4826ef90019c9b0a4839b2535fa6faf4e9"
+ integrity sha512-i18e2APdsiezkcqDyZor78Pbfjfds3S94dG6dgIV2ZASJaUf1N0dz2tGdrmwrmlZuNUgxH+wz6Z0zYVH2c5xzQ==
+ dependencies:
+ define-properties "^1.1.2"
+ es-abstract "^1.10.0"
+ function-bind "^1.1.1"
+
+arrify@^1.0.0, arrify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
-asap@~2.0.3, asap@~2.0.6:
+asap@^2.0.0, asap@~2.0.3, asap@~2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
@@ -1571,15 +3085,25 @@ ast-types-flow@0.0.7, ast-types-flow@^0.0.7:
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
+ast-types@0.11.3:
+ version "0.11.3"
+ resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.11.3.tgz#c20757fe72ee71278ea0ff3d87e5c2ca30d9edf8"
+ integrity sha512-XA5o5dsNw8MhyW0Q7MWXJWc4oOzZKbdsEJq45h7c8q/d9DwWZ5F2ugUc1PuMLPGsUnphCt/cNDHu8JeBbxf1qA==
+
+ast-types@0.11.7:
+ version "0.11.7"
+ resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.11.7.tgz#f318bf44e339db6a320be0009ded64ec1471f46c"
+ integrity sha512-2mP3TwtkY/aTv5X3ZsMpNAbOnyoC/aMJwJSoaELPkHId0nSQgFcnU4dRW3isxiz7+zBexk0ym3WNVjMiQBnJSw==
+
astral-regex@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
async-each@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
- integrity sha1-GdOGodntxufByF04iu28xW0zYC0=
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.2.tgz#8b8a7ca2a658f927e9f307d6d1a42f4199f0f735"
+ integrity sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg==
async-limiter@~1.0.0:
version "1.0.0"
@@ -1591,7 +3115,7 @@ async@^1.5.2:
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=
-async@^2.1.4, async@^2.5.0, async@^2.6.1:
+async@^2.1.4, async@^2.6.1:
version "2.6.2"
resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==
@@ -1608,13 +3132,25 @@ atob@^2.1.1:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-autoprefixer@^9.4.2:
- version "9.4.10"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.10.tgz#e1be61fc728bacac8f4252ed242711ec0dcc6a7b"
- integrity sha512-XR8XZ09tUrrSzgSlys4+hy5r2/z4Jp7Ag3pHm31U4g/CTccYPOVe19AkaJ4ey/vRd1sfj+5TtuD6I0PXtutjvQ==
+autoprefixer@^7.1.2:
+ version "7.2.6"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.2.6.tgz#256672f86f7c735da849c4f07d008abb056067dc"
+ integrity sha512-Iq8TRIB+/9eQ8rbGhcP7ct5cYb/3qjNYAR2SnzLCEcwF6rvVOax8+9+fccgXk4bEhQGjOZd5TLhsksmAdsbGqQ==
+ dependencies:
+ browserslist "^2.11.3"
+ caniuse-lite "^1.0.30000805"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^6.0.17"
+ postcss-value-parser "^3.2.3"
+
+autoprefixer@^9.4.2, autoprefixer@^9.4.7:
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.5.0.tgz#7e51d0355c11596e6cf9a0afc9a44e86d1596c70"
+ integrity sha512-hMKcyHsZn5+qL6AUeP3c8OyuteZ4VaUlg+fWbyl8z7PqsKHF/Bf8/px3K6AT8aMzDkBo8Bc11245MM+itDBOxQ==
dependencies:
browserslist "^4.4.2"
- caniuse-lite "^1.0.30000940"
+ caniuse-lite "^1.0.30000947"
normalize-range "^0.1.2"
num2fraction "^1.2.2"
postcss "^7.0.14"
@@ -1760,7 +3296,20 @@ babel-jest@23.6.0, babel-jest@^23.6.0:
babel-plugin-istanbul "^4.1.6"
babel-preset-jest "^23.2.0"
-babel-loader@8.0.5:
+babel-jest@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.5.0.tgz#0ea042789810c2bec9065f7c8ab4dc18e1d28559"
+ integrity sha512-0fKCXyRwxFTJL0UXDJiT2xYxO9Lu2vBd9n+cC+eDjESzcVG3s2DRGAxbzJX21fceB1WYoBjAh8pQ83dKcl003g==
+ dependencies:
+ "@jest/transform" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ "@types/babel__core" "^7.1.0"
+ babel-plugin-istanbul "^5.1.0"
+ babel-preset-jest "^24.3.0"
+ chalk "^2.4.2"
+ slash "^2.0.0"
+
+babel-loader@8.0.5, babel-loader@^8.0.5:
version "8.0.5"
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.5.tgz#225322d7509c2157655840bba52e46b6c2f2fe33"
integrity sha512-NTnHnVRd2JnRqPC0vW+iOQWU5pchDbYXsG2E6DMXEpMfUcQKclF9gmf3G3ZMhzG7IG9ji4coL0cm+FxeWxDpnw==
@@ -1777,6 +3326,11 @@ babel-messages@^6.23.0:
dependencies:
babel-runtime "^6.22.0"
+babel-plugin-add-react-displayname@^0.0.5:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5"
+ integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=
+
babel-plugin-dynamic-import-node@2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.2.0.tgz#c0adfb07d95f4a4495e9aaac6ec386c4d7c2524e"
@@ -1784,6 +3338,22 @@ babel-plugin-dynamic-import-node@2.2.0:
dependencies:
object.assign "^4.1.0"
+babel-plugin-emotion@^10.0.7, babel-plugin-emotion@^10.0.9:
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.9.tgz#04a0404d5a4084d5296357a393d344c0f8303ae4"
+ integrity sha512-IfWP12e9/wHtWHxVTzD692Nbcmrmcz2tip7acp6YUqtrP7slAyr5B+69hyZ8jd55GsyNSZwryNnmuDEVe0j+7w==
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@emotion/hash" "0.7.1"
+ "@emotion/memoize" "0.7.1"
+ "@emotion/serialize" "^0.11.6"
+ babel-plugin-macros "^2.0.0"
+ babel-plugin-syntax-jsx "^6.18.0"
+ convert-source-map "^1.5.0"
+ escape-string-regexp "^1.0.5"
+ find-root "^1.1.0"
+ source-map "^0.5.7"
+
babel-plugin-istanbul@^4.1.6:
version "4.1.6"
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
@@ -1794,12 +3364,28 @@ babel-plugin-istanbul@^4.1.6:
istanbul-lib-instrument "^1.10.1"
test-exclude "^4.2.1"
+babel-plugin-istanbul@^5.1.0:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz#7981590f1956d75d67630ba46f0c22493588c893"
+ integrity sha512-RNNVv2lsHAXJQsEJ5jonQwrJVWK8AcZpG1oxhnjCUaAjL7xahYLANhPUZbzEQHjKy1NMYUwn+0NPKQc8iSY4xQ==
+ dependencies:
+ find-up "^3.0.0"
+ istanbul-lib-instrument "^3.0.0"
+ test-exclude "^5.0.0"
+
babel-plugin-jest-hoist@^23.2.0:
version "23.2.0"
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167"
integrity sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc=
-babel-plugin-macros@2.5.0:
+babel-plugin-jest-hoist@^24.3.0:
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.3.0.tgz#f2e82952946f6e40bb0a75d266a3790d854c8b5b"
+ integrity sha512-nWh4N1mVH55Tzhx2isvUN5ebM5CDUvIpXPZYMRazQughie/EqGnbR+czzoQlhUmJG9pPJmYDRhvocotb2THl1w==
+ dependencies:
+ "@types/babel__traverse" "^7.0.6"
+
+babel-plugin-macros@2.5.0, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5:
version "2.5.0"
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.0.tgz#01f4d3b50ed567a67b80a30b9da066e94f4097b6"
integrity sha512-BWw0lD0kVZAXRD3Od1kMrdmfudqzDzYv2qrN3l2ISR1HVp1EgLKfbOrYV9xmY5k3qx3RIu5uPAUZZZHpo0o5Iw==
@@ -1881,11 +3467,20 @@ babel-plugin-minify-type-constructors@^0.4.3:
dependencies:
babel-helper-is-void-0 "^0.4.3"
-babel-plugin-named-asset-import@^0.3.1:
+babel-plugin-named-asset-import@^0.3.0, babel-plugin-named-asset-import@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.1.tgz#5ec13ec446d0a1e5bb6c57a1f94c9cdedb0c50d6"
integrity sha512-vzZlo+yEB5YHqI6CRRTDojeT43J3Wf3C/MVkZW5UlbSeIIVUYRKtxaFT2L/VTv9mbIyatCW39+9g/SZolvwRUQ==
+babel-plugin-react-docgen@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-docgen/-/babel-plugin-react-docgen-2.0.2.tgz#3307e27414c370365710576b7fadbcaf8984d862"
+ integrity sha512-fFendfUUU2KqqE1ki2NyQoZm4uHPoEWPUgBZiPBiowcPZos+4q+chdQh0nlwY5hxs08AMHSH4Pp98RQL0VFS/g==
+ dependencies:
+ lodash "^4.17.10"
+ react-docgen "^3.0.0"
+ recast "^0.14.7"
+
"babel-plugin-styled-components@>= 1":
version "1.10.0"
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.10.0.tgz#ff1f42ad2cc78c21f26b62266b8f564dbc862939"
@@ -1995,7 +3590,15 @@ babel-preset-jest@^23.2.0:
babel-plugin-jest-hoist "^23.2.0"
babel-plugin-syntax-object-rest-spread "^6.13.0"
-babel-preset-minify@^0.5.0:
+babel-preset-jest@^24.3.0:
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.3.0.tgz#db88497e18869f15b24d9c0e547d8e0ab950796d"
+ integrity sha512-VGTV2QYBa/Kn3WCOKdfS31j9qomaXSgJqi65B6o05/1GsJyj9LVhSljM9ro4S+IBGj/ENhNBuH9bpqzztKAQSw==
+ dependencies:
+ "@babel/plugin-syntax-object-rest-spread" "^7.0.0"
+ babel-plugin-jest-hoist "^24.3.0"
+
+babel-preset-minify@^0.5.0, "babel-preset-minify@^0.5.0 || 0.6.0-alpha.5":
version "0.5.0"
resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.5.0.tgz#e25bb8d3590087af02b650967159a77c19bfb96b"
integrity sha512-xj1s9Mon+RFubH569vrGCayA9Fm2GMsCgDRm1Jb8SgctOB7KFcrVc2o8K3YHUyMz+SWP8aea75BoS8YfsXXuiA==
@@ -2024,7 +3627,7 @@ babel-preset-minify@^0.5.0:
babel-plugin-transform-undefined-to-void "^6.9.4"
lodash.isplainobject "^4.0.6"
-babel-preset-react-app@^7.0.2:
+babel-preset-react-app@^7.0.0, babel-preset-react-app@^7.0.2:
version "7.0.2"
resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-7.0.2.tgz#d01ae973edc93b9f1015cb0236dd55889a584308"
integrity sha512-mwCk/u2wuiO8qQqblN5PlDa44taY0acq7hw6W+a70W522P7a9mIcdggL1fe5/LgAT7tqCq46q9wwhqaMoYKslQ==
@@ -2062,7 +3665,7 @@ babel-register@^6.26.0:
mkdirp "^0.5.1"
source-map-support "^0.4.15"
-babel-runtime@^6.22.0, babel-runtime@^6.26.0:
+babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
@@ -2151,6 +3754,11 @@ bcrypt-pbkdf@^1.0.0:
dependencies:
tweetnacl "^0.14.3"
+before-after-hook@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-1.4.0.tgz#2b6bf23dca4f32e628fd2747c10a37c74a4b484d"
+ integrity sha512-l5r9ir56nda3qu14nAXIlyq1MmUSs0meCIaFAh8HwkFwP1F8eToOuS3ah2VAHHcY04jaYD7FpJC5JTXHYRbkzg==
+
bfj@6.1.1:
version "6.1.1"
resolved "https://registry.yarnpkg.com/bfj/-/bfj-6.1.1.tgz#05a3b7784fbd72cfa3c22e56002ef99336516c48"
@@ -2161,6 +3769,11 @@ bfj@6.1.1:
hoopy "^0.1.2"
tryer "^1.0.0"
+big.js@^3.1.3:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
+ integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==
+
big.js@^5.2.2:
version "5.2.2"
resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
@@ -2171,7 +3784,14 @@ binary-extensions@^1.0.0:
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.0.tgz#9523e001306a32444b907423f1de2164222f6ab1"
integrity sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==
-bluebird@^3.5.1, bluebird@^3.5.3:
+block-stream@*:
+ version "0.0.9"
+ resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
+ integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=
+ dependencies:
+ inherits "~2.0.0"
+
+bluebird@^3.3.5, bluebird@^3.5.1, bluebird@^3.5.3:
version "3.5.3"
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"
integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==
@@ -2214,6 +3834,32 @@ boolbase@^1.0.0, boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+boxen@^1.2.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b"
+ integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==
+ dependencies:
+ ansi-align "^2.0.0"
+ camelcase "^4.0.0"
+ chalk "^2.0.1"
+ cli-boxes "^1.0.0"
+ string-width "^2.0.0"
+ term-size "^1.2.0"
+ widest-line "^2.0.0"
+
+boxen@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/boxen/-/boxen-2.1.0.tgz#8d576156e33fc26a34d6be8635fd16b1d745f0b2"
+ integrity sha512-luq3RQOt2U5sUX+fiu+qnT+wWnHDcATLpEe63jvge6GUZO99AKbVRfp97d2jgLvq1iQa0ORzaAm4lGVG52ZSlw==
+ dependencies:
+ ansi-align "^3.0.0"
+ camelcase "^5.0.0"
+ chalk "^2.4.1"
+ cli-boxes "^1.0.0"
+ string-width "^3.0.0"
+ term-size "^1.2.0"
+ widest-line "^2.0.0"
+
brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -2332,14 +3978,22 @@ browserslist@4.4.1:
electron-to-chromium "^1.3.103"
node-releases "^1.1.3"
+browserslist@^2.11.3:
+ version "2.11.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2"
+ integrity sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==
+ dependencies:
+ caniuse-lite "^1.0.30000792"
+ electron-to-chromium "^1.3.30"
+
browserslist@^4.0.0, browserslist@^4.3.4, browserslist@^4.3.5, browserslist@^4.4.2:
- version "4.4.2"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.2.tgz#6ea8a74d6464bb0bd549105f659b41197d8f0ba2"
- integrity sha512-ISS/AIAiHERJ3d45Fz0AVYKkgcy+F/eJHzKEvv1j0wwKGKD9T3BrwKr/5g45L+Y4XIK5PlTqefHciRFcfE1Jxg==
+ version "4.5.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.5.1.tgz#2226cada1947b33f4cfcf7b608dcb519b6128106"
+ integrity sha512-/pPw5IAUyqaQXGuD5vS8tcbudyPZ241jk1W5pQBsGDfcjNQt7p8qxZhgMNuygDShte1PibLFexecWUPgmVLfrg==
dependencies:
- caniuse-lite "^1.0.30000939"
- electron-to-chromium "^1.3.113"
- node-releases "^1.1.8"
+ caniuse-lite "^1.0.30000949"
+ electron-to-chromium "^1.3.116"
+ node-releases "^1.1.11"
bser@^2.0.0:
version "2.0.0"
@@ -2348,6 +4002,11 @@ bser@^2.0.0:
dependencies:
node-int64 "^0.4.0"
+btoa-lite@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337"
+ integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc=
+
buffer-from@^1.0.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
@@ -2377,12 +4036,27 @@ builtin-status-codes@^3.0.0:
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
+builtins@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
+ integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og=
+
+byline@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1"
+ integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=
+
+byte-size@^4.0.3:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-4.0.4.tgz#29d381709f41aae0d89c631f1c81aec88cd40b23"
+ integrity sha512-82RPeneC6nqCdSwCX2hZUz3JPOvN5at/nTEw/CMf05Smu3Hrpo9Psb7LjN+k+XndNArG1EY8L4+BM3aTM4BCvw==
+
bytes@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
-cacache@^11.0.2:
+cacache@^11.0.1, cacache@^11.0.2, cacache@^11.3.2:
version "11.3.2"
resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa"
integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==
@@ -2429,13 +4103,6 @@ caller-callsite@^2.0.0:
dependencies:
callsites "^2.0.0"
-caller-path@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
- integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=
- dependencies:
- callsites "^0.2.0"
-
caller-path@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
@@ -2443,11 +4110,6 @@ caller-path@^2.0.0:
dependencies:
caller-callsite "^2.0.0"
-callsites@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
- integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=
-
callsites@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
@@ -2466,12 +4128,34 @@ camel-case@3.0.x:
no-case "^2.2.0"
upper-case "^1.1.1"
-camelcase@^4.1.0:
+camelcase-keys@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
+ integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc=
+ dependencies:
+ camelcase "^2.0.0"
+ map-obj "^1.0.0"
+
+camelcase-keys@^4.0.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
+ integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=
+ dependencies:
+ camelcase "^4.1.0"
+ map-obj "^2.0.0"
+ quick-lru "^1.0.0"
+
+camelcase@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
+ integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=
+
+camelcase@^4.0.0, camelcase@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
-camelcase@^5.0.0:
+camelcase@^5.0.0, camelcase@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.2.0.tgz#e7522abda5ed94cc0489e1b8466610e88404cf45"
integrity sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==
@@ -2491,10 +4175,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000918, caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000939, caniuse-lite@^1.0.30000940:
- version "1.0.30000942"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000942.tgz#454139b28274bce70bfe1d50c30970df7430c6e4"
- integrity sha512-wLf+IhZUy2rfz48tc40OH7jHjXjnvDFEYqBHluINs/6MgzoNLPf25zhE4NOVzqxLKndf+hau81sAW0RcGHIaBQ==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805, caniuse-lite@^1.0.30000918, caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000947, caniuse-lite@^1.0.30000949:
+ version "1.0.30000950"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000950.tgz#8c559d66e332b34e919d1086cc6d29c1948856ae"
+ integrity sha512-Cs+4U9T0okW2ftBsCIHuEYXXkki7mjXmjCh4c6PzYShk04qDEr76/iC7KwhLoWoY65wcra1XOsRD+S7BptEb5A==
capture-exit@^1.2.0:
version "1.2.0"
@@ -2503,7 +4187,19 @@ capture-exit@^1.2.0:
dependencies:
rsvp "^3.3.3"
-case-sensitive-paths-webpack-plugin@2.2.0:
+capture-exit@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
+ integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
+ dependencies:
+ rsvp "^4.8.4"
+
+capture-stack-trace@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d"
+ integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==
+
+case-sensitive-paths-webpack-plugin@2.2.0, case-sensitive-paths-webpack-plugin@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.2.0.tgz#3371ef6365ef9c25fa4b81c16ace0e9c7dc58c3e"
integrity sha512-u5ElzokS8A1pm9vM3/iDgTcI3xqHxuCao94Oz8etI3cf0Tio0p8izkDYbTIn09uP3yUUr6+veaE6IkjnTYS46g==
@@ -2513,12 +4209,12 @@ caseless@~0.12.0:
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
-ccount@^1.0.3:
+ccount@^1.0.0, ccount@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.3.tgz#f1cec43f332e2ea5a569fd46f9f5bde4e6102aff"
integrity sha512-Jt9tIBkRc9POUof7QA/VwWd+58fKkEEfI+/t1/eOlxKM7ZhrczNzMFefge7Ai+39y1pR/pP6cI19guHy3FSLmw==
-chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
+chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -2538,6 +4234,31 @@ chalk@^1.1.3:
strip-ansi "^3.0.0"
supports-color "^2.0.0"
+change-emitter@^0.1.2:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515"
+ integrity sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=
+
+character-entities-html4@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.2.tgz#c44fdde3ce66b52e8d321d6c1bf46101f0150610"
+ integrity sha512-sIrXwyna2+5b0eB9W149izTPJk/KkJTg6mEzDGibwBUkyH1SbDa+nf515Ppdi3MaH35lW0JFJDWeq9Luzes1Iw==
+
+character-entities-legacy@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz#7c6defb81648498222c9855309953d05f4d63a9c"
+ integrity sha512-9NB2VbXtXYWdXzqrvAHykE/f0QJxzaKIpZ5QzNZrrgQ7Iyxr2vnfS8fCBNVW9nUEZE0lo57nxKRqnzY/dKrwlA==
+
+character-entities@^1.0.0:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.2.tgz#58c8f371c0774ef0ba9b2aca5f00d8f100e6e363"
+ integrity sha512-sMoHX6/nBiy3KKfC78dnEalnpn0Az0oSNvqUWYTtYrhRI5iUIYsROU48G+E+kMFQzqXaJ8kHJZ85n7y6/PHgwQ==
+
+character-reference-invalid@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz#21e421ad3d84055952dab4a43a04e73cd425d3ed"
+ integrity sha512-7I/xceXfKyUJmSAn/jw8ve/9DyOP7XxufNYLI9Px7CmsKgEUaZLUTax6nZxGQtaoiZCjpu6cHPj20xC/vqRReQ==
+
chardet@^0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
@@ -2560,6 +4281,15 @@ cheerio@^1.0.0-rc.2:
lodash "^4.15.0"
parse5 "^3.0.1"
+child-process-promise@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/child-process-promise/-/child-process-promise-2.2.1.tgz#4730a11ef610fad450b8f223c79d31d7bdad8074"
+ integrity sha1-RzChHvYQ+tRQuPIjx50x172tgHQ=
+ dependencies:
+ cross-spawn "^4.0.2"
+ node-version "^1.0.0"
+ promise-polyfill "^6.0.1"
+
chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.3, chokidar@^2.0.4:
version "2.1.2"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.2.tgz#9c23ea40b01638439e0513864d362aeacc5ad058"
@@ -2624,6 +4354,11 @@ class-utils@^0.3.5:
isobject "^3.0.0"
static-extend "^0.1.1"
+classnames@^2.2.5:
+ version "2.2.6"
+ resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
+ integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
+
clean-css@4.2.x:
version "4.2.1"
resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17"
@@ -2631,6 +4366,11 @@ clean-css@4.2.x:
dependencies:
source-map "~0.6.0"
+cli-boxes@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
+ integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM=
+
cli-cursor@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
@@ -2638,11 +4378,30 @@ cli-cursor@^2.1.0:
dependencies:
restore-cursor "^2.0.0"
+cli-table3@0.5.1:
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202"
+ integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==
+ dependencies:
+ object-assign "^4.1.0"
+ string-width "^2.1.1"
+ optionalDependencies:
+ colors "^1.1.2"
+
cli-width@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
+clipboard@^2.0.0:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d"
+ integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==
+ dependencies:
+ good-listener "^1.2.2"
+ select "^1.1.2"
+ tiny-emitter "^2.0.0"
+
cliui@^4.0.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
@@ -2673,6 +4432,27 @@ clone-deep@^2.0.1:
kind-of "^6.0.0"
shallow-clone "^1.0.0"
+clone-regexp@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-1.0.1.tgz#051805cd33173375d82118fc0918606da39fd60f"
+ integrity sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==
+ dependencies:
+ is-regexp "^1.0.0"
+ is-supported-regexp-flag "^1.0.0"
+
+clone@^1.0.2:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
+ integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
+
+cmd-shim@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb"
+ integrity sha1-b8vamUg6j9FdfTChlspp1oii79s=
+ dependencies:
+ graceful-fs "^4.1.2"
+ mkdirp "~0.5.0"
+
co@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
@@ -2692,6 +4472,11 @@ code-point-at@^1.0.0:
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+collapse-white-space@^1.0.2:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.4.tgz#ce05cf49e54c3277ae573036a26851ba430a0091"
+ integrity sha512-YfQ1tAUZm561vpYD+5eyWN8+UsceQbSrqqlc/6zDY2gtAE+uZLSdkkovhnGpmCThsvKBFakq4EdY/FF93E8XIw==
+
collection-visit@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
@@ -2733,6 +4518,19 @@ color@^3.0.0:
color-convert "^1.9.1"
color-string "^1.5.2"
+colors@^1.1.2:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d"
+ integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==
+
+columnify@^1.5.4:
+ version "1.5.4"
+ resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb"
+ integrity sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=
+ dependencies:
+ strip-ansi "^3.0.0"
+ wcwidth "^1.0.0"
+
combined-stream@^1.0.6, combined-stream@~1.0.6:
version "1.0.7"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
@@ -2747,17 +4545,17 @@ comma-separated-tokens@^1.0.0:
dependencies:
trim "0.0.1"
-commander@2.17.x, commander@~2.17.1:
+commander@2.17.x:
version "2.17.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==
-commander@^2.11.0, commander@^2.18.0, commander@^2.19.0, commander@^2.8.1:
+commander@^2.11.0, commander@^2.19.0, commander@^2.8.1, commander@~2.19.0:
version "2.19.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
-common-tags@^1.4.0:
+common-tags@^1.4.0, common-tags@^1.8.0:
version "1.8.0"
resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
@@ -2767,12 +4565,25 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+compare-func@^1.3.1:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648"
+ integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg=
+ dependencies:
+ array-ify "^1.0.0"
+ dot-prop "^3.0.0"
+
+compare-versions@^3.2.1:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26"
+ integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg==
+
component-emitter@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
-compressible@~2.0.14:
+compressible@~2.0.16:
version "2.0.16"
resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.16.tgz#a49bf9858f3821b64ce1be0296afc7380466a77f"
integrity sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==
@@ -2780,15 +4591,15 @@ compressible@~2.0.14:
mime-db ">= 1.38.0 < 2"
compression@^1.5.2:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db"
- integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+ integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
dependencies:
accepts "~1.3.5"
bytes "3.0.0"
- compressible "~2.0.14"
+ compressible "~2.0.16"
debug "2.6.9"
- on-headers "~1.0.1"
+ on-headers "~1.0.2"
safe-buffer "5.1.2"
vary "~1.1.2"
@@ -2797,7 +4608,7 @@ concat-map@0.0.1:
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-concat-stream@^1.5.0:
+concat-stream@^1.5.0, concat-stream@^1.6.0:
version "1.6.2"
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
@@ -2807,6 +4618,26 @@ concat-stream@^1.5.0:
readable-stream "^2.2.2"
typedarray "^0.0.6"
+config-chain@^1.1.11, config-chain@^1.1.12:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
+ integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
+ dependencies:
+ ini "^1.3.4"
+ proto-list "~1.2.1"
+
+configstore@^3.0.0:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f"
+ integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==
+ dependencies:
+ dot-prop "^4.1.0"
+ graceful-fs "^4.1.2"
+ make-dir "^1.0.0"
+ unique-string "^1.0.0"
+ write-file-atomic "^2.0.0"
+ xdg-basedir "^3.0.0"
+
confusing-browser-globals@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.6.tgz#5918188e8244492cdd46d6be1cab60edef3063ce"
@@ -2849,7 +4680,90 @@ content-type@~1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.1:
+conventional-changelog-angular@^5.0.3:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.3.tgz#299fdd43df5a1f095283ac16aeedfb0a682ecab0"
+ integrity sha512-YD1xzH7r9yXQte/HF9JBuEDfvjxxwDGGwZU1+ndanbY0oFgA+Po1T9JDSpPLdP0pZT6MhCAsdvFKC4TJ4MTJTA==
+ dependencies:
+ compare-func "^1.3.1"
+ q "^1.5.1"
+
+conventional-changelog-core@^3.1.6:
+ version "3.1.6"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-3.1.6.tgz#ac1731a461c50d150d29c1ad4f33143293bcd32f"
+ integrity sha512-5teTAZOtJ4HLR6384h50nPAaKdDr+IaU0rnD2Gg2C3MS7hKsEPH8pZxrDNqam9eOSPQg9tET6uZY79zzgSz+ig==
+ dependencies:
+ conventional-changelog-writer "^4.0.3"
+ conventional-commits-parser "^3.0.1"
+ dateformat "^3.0.0"
+ get-pkg-repo "^1.0.0"
+ git-raw-commits "2.0.0"
+ git-remote-origin-url "^2.0.0"
+ git-semver-tags "^2.0.2"
+ lodash "^4.2.1"
+ normalize-package-data "^2.3.5"
+ q "^1.5.1"
+ read-pkg "^3.0.0"
+ read-pkg-up "^3.0.0"
+ through2 "^2.0.0"
+
+conventional-changelog-preset-loader@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.0.2.tgz#81d1a07523913f3d17da3a49f0091f967ad345b0"
+ integrity sha512-pBY+qnUoJPXAXXqVGwQaVmcye05xi6z231QM98wHWamGAmu/ghkBprQAwmF5bdmyobdVxiLhPY3PrCfSeUNzRQ==
+
+conventional-changelog-writer@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.3.tgz#916a2b302d0bb5ef18efd236a034c13fb273cde1"
+ integrity sha512-bIlpSiQtQZ1+nDVHEEh798Erj2jhN/wEjyw9sfxY9es6h7pREE5BNJjfv0hXGH/FTrAsEpHUq4xzK99eePpwuA==
+ dependencies:
+ compare-func "^1.3.1"
+ conventional-commits-filter "^2.0.1"
+ dateformat "^3.0.0"
+ handlebars "^4.1.0"
+ json-stringify-safe "^5.0.1"
+ lodash "^4.2.1"
+ meow "^4.0.0"
+ semver "^5.5.0"
+ split "^1.0.0"
+ through2 "^2.0.0"
+
+conventional-commits-filter@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.1.tgz#55a135de1802f6510b6758e0a6aa9e0b28618db3"
+ integrity sha512-92OU8pz/977udhBjgPEbg3sbYzIxMDFTlQT97w7KdhR9igNqdJvy8smmedAAgn4tPiqseFloKkrVfbXCVd+E7A==
+ dependencies:
+ is-subset "^0.1.1"
+ modify-values "^1.0.0"
+
+conventional-commits-parser@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.1.tgz#fe1c49753df3f98edb2285a5e485e11ffa7f2e4c"
+ integrity sha512-P6U5UOvDeidUJ8ebHVDIoXzI7gMlQ1OF/id6oUvp8cnZvOXMt1n8nYl74Ey9YMn0uVQtxmCtjPQawpsssBWtGg==
+ dependencies:
+ JSONStream "^1.0.4"
+ is-text-path "^1.0.0"
+ lodash "^4.2.1"
+ meow "^4.0.0"
+ split2 "^2.0.0"
+ through2 "^2.0.0"
+ trim-off-newlines "^1.0.0"
+
+conventional-recommended-bump@^4.0.4:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-4.0.4.tgz#05540584641d3da758c8863c09788fcaeb586872"
+ integrity sha512-9mY5Yoblq+ZMqJpBzgS+RpSq+SUfP2miOR3H/NR9drGf08WCrY9B6HAGJZEm6+ThsVP917VHAahSOjM6k1vhPg==
+ dependencies:
+ concat-stream "^1.6.0"
+ conventional-changelog-preset-loader "^2.0.2"
+ conventional-commits-filter "^2.0.1"
+ conventional-commits-parser "^3.0.1"
+ git-raw-commits "2.0.0"
+ git-semver-tags "^2.0.2"
+ meow "^4.0.0"
+ q "^1.5.1"
+
+convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1:
version "1.6.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
@@ -2893,7 +4807,7 @@ core-js@^1.0.0:
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
-core-js@^2.4.0, core-js@^2.5.0:
+core-js@^2.4.0, core-js@^2.5.0, core-js@^2.5.7, core-js@^2.6.5:
version "2.6.5"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895"
integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==
@@ -2903,6 +4817,16 @@ core-util-is@1.0.2, core-util-is@~1.0.0:
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+cosmiconfig@^3.0.1, cosmiconfig@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-3.1.0.tgz#640a94bf9847f321800403cd273af60665c73397"
+ integrity sha512-zedsBhLSbPBms+kE7AH4vHg6JsKDz6epSv2/+5XHs8ILHlgDciSJfSWf8sX9aQ52Jb7KI7VswUTsLpR/G0cr2Q==
+ dependencies:
+ is-directory "^0.3.1"
+ js-yaml "^3.9.0"
+ parse-json "^3.0.0"
+ require-from-string "^2.0.1"
+
cosmiconfig@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc"
@@ -2913,7 +4837,7 @@ cosmiconfig@^4.0.0:
parse-json "^4.0.0"
require-from-string "^2.0.1"
-cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.0.7:
+cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.0.7, cosmiconfig@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.1.0.tgz#6c5c35e97f37f985061cdf653f114784231185cf"
integrity sha512-kCNPvthka8gvLtzAxQXvWo4FxqRB+ftRZyPZNuab5ngvM9Y7yw7hbEysglptLgpkGX9nAOKTBVkHUAe8xtYR6Q==
@@ -2932,6 +4856,13 @@ create-ecdh@^4.0.0:
bn.js "^4.1.0"
elliptic "^6.0.0"
+create-error-class@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
+ integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=
+ dependencies:
+ capture-stack-trace "^1.0.0"
+
create-hash@^1.1.0, create-hash@^1.1.2:
version "1.2.0"
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
@@ -2955,6 +4886,22 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
safe-buffer "^5.0.1"
sha.js "^2.4.8"
+create-react-context@<=0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.2.tgz#9836542f9aaa22868cd7d4a6f82667df38019dca"
+ integrity sha512-KkpaLARMhsTsgp0d2NA/R94F/eDLbhXERdIq3LvX2biCAXcDvHYoOqHfWCHf1+OLj+HKBotLG3KqaOOf+C1C+A==
+ dependencies:
+ fbjs "^0.8.0"
+ gud "^1.0.0"
+
+create-react-context@^0.2.1:
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.3.tgz#9ec140a6914a22ef04b8b09b7771de89567cb6f3"
+ integrity sha512-CQBmD0+QGgTaxDL3OX1IDXYqjkp2It4RIbcb99jS6AEg27Ga+a9G3JtK6SIu0HBwPLZlmwt9F7UwWA4Bn92Rag==
+ dependencies:
+ fbjs "^0.8.0"
+ gud "^1.0.0"
+
cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
version "6.0.5"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
@@ -2966,6 +4913,14 @@ cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
+cross-spawn@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
+ integrity sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE=
+ dependencies:
+ lru-cache "^4.0.1"
+ which "^1.2.9"
+
cross-spawn@^5.0.1:
version "5.1.0"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
@@ -2992,6 +4947,11 @@ crypto-browserify@^3.11.0:
randombytes "^2.0.0"
randomfill "^1.0.3"
+crypto-random-string@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
+ integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
+
css-blank-pseudo@^0.1.4:
version "0.1.4"
resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
@@ -3043,6 +5003,23 @@ css-loader@1.0.0:
postcss-value-parser "^3.3.0"
source-list-map "^2.0.0"
+css-loader@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea"
+ integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w==
+ dependencies:
+ camelcase "^5.2.0"
+ icss-utils "^4.1.0"
+ loader-utils "^1.2.3"
+ normalize-path "^3.0.0"
+ postcss "^7.0.14"
+ postcss-modules-extract-imports "^2.0.0"
+ postcss-modules-local-by-default "^2.0.6"
+ postcss-modules-scope "^2.1.0"
+ postcss-modules-values "^2.0.0"
+ postcss-value-parser "^3.3.0"
+ schema-utils "^1.0.0"
+
css-prefers-color-scheme@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4"
@@ -3139,6 +5116,11 @@ cssesc@^2.0.0:
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
+cssesc@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+ integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+
cssnano-preset-default@^4.0.7:
version "4.0.7"
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76"
@@ -3226,6 +5208,18 @@ cssstyle@^1.0.0:
dependencies:
cssom "0.3.x"
+csstype@^2.5.7:
+ version "2.6.3"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.3.tgz#b701e5968245bf9b08d54ac83d00b624e622a9fa"
+ integrity sha512-rINUZXOkcBmoHWEyu7JdHu5JMzkGRoMX4ov9830WNgxf5UYxcBUO0QTKAqeJ5EZfSdlrcJYkC8WwfVW7JYi4yg==
+
+currently-unhandled@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
+ integrity sha1-mI3zP+qxke95mmE2nddsF635V+o=
+ dependencies:
+ array-find-index "^1.0.1"
+
cyclist@~0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640"
@@ -3236,6 +5230,13 @@ damerau-levenshtein@^1.0.4:
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514"
integrity sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=
+dargs@^4.0.1:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
+ integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc=
+ dependencies:
+ number-is-nan "^1.0.0"
+
dashdash@^1.12.0:
version "1.14.1"
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
@@ -3257,6 +5258,11 @@ date-now@^0.1.4:
resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=
+dateformat@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
+ integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
+
debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9:
version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
@@ -3264,21 +5270,41 @@ debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.
dependencies:
ms "2.0.0"
-debug@^3.1.0, debug@^3.2.5, debug@^3.2.6:
+debug@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
+ integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
+ dependencies:
+ ms "2.0.0"
+
+debug@^3.0.0, debug@^3.0.1, debug@^3.1.0, debug@^3.2.5, debug@^3.2.6:
version "3.2.6"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
dependencies:
ms "^2.1.1"
-debug@^4.0.1, debug@^4.1.0:
+debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
dependencies:
ms "^2.1.1"
-decamelize@^1.1.1:
+debuglog@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
+ integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
+
+decamelize-keys@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
+ integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
+ dependencies:
+ decamelize "^1.1.0"
+ map-obj "^1.0.0"
+
+decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
@@ -3295,6 +5321,11 @@ decode-uri-component@^0.2.0:
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+dedent@^0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
+ integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
+
deep-equal@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
@@ -3310,6 +5341,16 @@ deep-is@~0.1.3:
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
+deep-object-diff@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
+ integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==
+
+deepmerge@3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.2.0.tgz#58ef463a57c08d376547f8869fdc5bcee957f44e"
+ integrity sha512-6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow==
+
default-gateway@^2.6.0:
version "2.7.2"
resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.7.2.tgz#b7ef339e5e024b045467af403d50348db4642d0f"
@@ -3325,6 +5366,20 @@ default-require-extensions@^1.0.0:
dependencies:
strip-bom "^2.0.0"
+default-require-extensions@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
+ integrity sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=
+ dependencies:
+ strip-bom "^3.0.0"
+
+defaults@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
+ integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
+ dependencies:
+ clone "^1.0.2"
+
define-properties@^1.1.2, define-properties@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
@@ -3371,6 +5426,11 @@ delayed-stream@~1.0.0:
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
+delegate@^3.1.2:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
+ integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
+
delegates@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
@@ -3381,6 +5441,11 @@ depd@~1.1.2:
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+deprecation@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-1.0.1.tgz#2df79b79005752180816b7b6e079cbd80490d711"
+ integrity sha512-ccVHpE72+tcIKaGMql33x5MAjKQIZrk+3x2GbJ7TeraUCZWHoT+KSZpoC+JQFsUBlSTXUrBaGiF0j6zVTepPLg==
+
des.js@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
@@ -3401,6 +5466,11 @@ detect-indent@^4.0.0:
dependencies:
repeating "^2.0.0"
+detect-indent@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
+ integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50=
+
detect-libc@^1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
@@ -3424,6 +5494,27 @@ detect-port-alt@1.1.6:
address "^1.0.1"
debug "^2.6.0"
+detect-port@^1.2.3:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1"
+ integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==
+ dependencies:
+ address "^1.0.1"
+ debug "^2.6.0"
+
+dezalgo@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456"
+ integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=
+ dependencies:
+ asap "^2.0.0"
+ wrappy "1"
+
+diff-sequences@^24.3.0:
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
+ integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==
+
diff@^3.2.0:
version "3.5.0"
resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
@@ -3446,6 +5537,13 @@ dir-glob@2.0.0:
arrify "^1.0.1"
path-type "^3.0.0"
+dir-glob@^2.0.0:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
+ integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
+ dependencies:
+ path-type "^3.0.0"
+
discontinuous-range@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
@@ -3479,7 +5577,7 @@ doctrine@1.5.0:
esutils "^2.0.2"
isarray "^1.0.0"
-doctrine@^2.1.0:
+doctrine@^2.0.0, doctrine@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
@@ -3502,15 +5600,20 @@ dom-serializer@0, dom-serializer@~0.1.0:
entities "^1.1.1"
dom-testing-library@^3.13.1:
- version "3.16.8"
- resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-3.16.8.tgz#26549b249f131a25e4339ebec9fcaa2e7642527f"
- integrity sha512-VGn2piehGoN9lmZDYd+xoTZwwcS+FoXebvZMw631UhS5LshiLTFNJs9bxRa9W7fVb1cAn9AYKAKZXh67rCDaqw==
+ version "3.17.1"
+ resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-3.17.1.tgz#3291bc3cf68c555ba5e663697ee77d604aaa122b"
+ integrity sha512-SbkaRfQvuLjnv+xFgSo/cmKoN9tjBL6Rh1f3nQH9jnjUe5q+keRwacYSi3uSpcB4D1K768iavCayKH3ZN9ea+g==
dependencies:
- "@babel/runtime" "^7.1.5"
+ "@babel/runtime" "^7.3.4"
"@sheerun/mutationobserver-shim" "^0.3.2"
pretty-format "^24.0.0"
wait-for-expect "^1.1.0"
+dom-walk@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018"
+ integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=
+
domain-browser@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
@@ -3551,23 +5654,49 @@ domutils@^1.5.1, domutils@^1.7.0:
dom-serializer "0"
domelementtype "1"
-dot-prop@^4.1.1:
+dot-prop@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
+ integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc=
+ dependencies:
+ is-obj "^1.0.0"
+
+dot-prop@^4.1.0, dot-prop@^4.1.1, dot-prop@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==
dependencies:
is-obj "^1.0.0"
-dotenv-expand@4.2.0:
+dotenv-defaults@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/dotenv-defaults/-/dotenv-defaults-1.0.2.tgz#441cf5f067653fca4bbdce9dd3b803f6f84c585d"
+ integrity sha512-iXFvHtXl/hZPiFj++1hBg4lbKwGM+t/GlvELDnRtOFdjXyWP7mubkVr+eZGWG62kdsbulXAef6v/j6kiWc/xGA==
+ dependencies:
+ dotenv "^6.2.0"
+
+dotenv-expand@4.2.0, dotenv-expand@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-4.2.0.tgz#def1f1ca5d6059d24a766e587942c21106ce1275"
integrity sha1-3vHxyl1gWdJKdm5YeULCEQbOEnU=
+dotenv-webpack@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.7.0.tgz#4384d8c57ee6f405c296278c14a9f9167856d3a1"
+ integrity sha512-wwNtOBW/6gLQSkb8p43y0Wts970A3xtNiG/mpwj9MLUhtPCQG6i+/DSXXoNN7fbPCU/vQ7JjwGmgOeGZSSZnsw==
+ dependencies:
+ dotenv-defaults "^1.0.2"
+
dotenv@6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.0.0.tgz#24e37c041741c5f4b25324958ebbc34bca965935"
integrity sha512-FlWbnhgjtwD+uNLUGHbMykMOYQaTivdHEmYwAKFjn6GKe/CqY0fNae93ZHTd20snh9ZLr8mTzIL9m0APQ1pjQg==
+dotenv@^6.0.0, dotenv@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
+ integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==
+
draft-js@^0.10.5:
version "0.10.5"
resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.10.5.tgz#bfa9beb018fe0533dbb08d6675c371a6b08fa742"
@@ -3577,6 +5706,11 @@ draft-js@^0.10.5:
immutable "~3.7.4"
object-assign "^4.1.0"
+duplexer3@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
+ integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
+
duplexer@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
@@ -3600,15 +5734,30 @@ ecc-jsbn@~0.1.1:
jsbn "~0.1.0"
safer-buffer "^2.1.0"
+editorconfig@^0.15.2:
+ version "0.15.3"
+ resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"
+ integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==
+ dependencies:
+ commander "^2.19.0"
+ lru-cache "^4.1.5"
+ semver "^5.6.0"
+ sigmund "^1.0.1"
+
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.3.103, electron-to-chromium@^1.3.113:
- version "1.3.113"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz#b1ccf619df7295aea17bc6951dc689632629e4a9"
- integrity sha512-De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g==
+ejs@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0"
+ integrity sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==
+
+electron-to-chromium@^1.3.103, electron-to-chromium@^1.3.116, electron-to-chromium@^1.3.30:
+ version "1.3.116"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.116.tgz#1dbfee6a592a0c14ade77dbdfe54fef86387d702"
+ integrity sha512-NKwKAXzur5vFCZYBHpdWjTMO8QptNLNP80nItkSIgUOapPAo9Uia+RvkCaZJtO7fhQaVElSvBPWEc2ku6cKsPA==
elliptic@^6.0.0:
version "6.4.1"
@@ -3623,11 +5772,6 @@ elliptic@^6.0.0:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.0"
-email-addresses@^3.0.1:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/email-addresses/-/email-addresses-3.0.3.tgz#fc3c6952f68da24239914e982c8a7783bc2ed96d"
- integrity sha512-kUlSC06PVvvjlMRpNIl3kR1NRXLEe86VQ7N0bQeaCZb2g+InShCeHQp/JvyYNTugMnRN2NvJhHlc3q12MWbbpg==
-
emoji-regex@^6.5.1:
version "6.5.1"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2"
@@ -3643,6 +5787,15 @@ emojis-list@^2.0.0:
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+emotion-theming@^10.0.7:
+ version "10.0.9"
+ resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.9.tgz#80e9fc40db8c46b466fcc11f3ae076f332933a4e"
+ integrity sha512-Z8fg5+5u62fOkZR9uCO9/TTxjTk5ieL/GIQgtRhi6WrZT++NAqY9u9GBUjbbJDWYkt6GIcy/S+m7yKaB+iGrDA==
+ dependencies:
+ "@emotion/weak-memoize" "0.2.2"
+ hoist-non-react-statics "^3.3.0"
+ object-assign "^4.1.1"
+
encodeurl@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
@@ -3703,6 +5856,11 @@ enzyme@^3.7.0:
rst-selector-parser "^2.2.3"
string.prototype.trim "^1.1.2"
+err-code@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960"
+ integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=
+
errno@^0.1.3, errno@~0.1.7:
version "0.1.7"
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
@@ -3717,7 +5875,7 @@ error-ex@^1.2.0, error-ex@^1.3.1:
dependencies:
is-arrayish "^0.2.1"
-es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.7.0:
+es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.4.3, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.7.0, es-abstract@^1.9.0:
version "1.13.0"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==
@@ -3738,6 +5896,28 @@ es-to-primitive@^1.2.0:
is-date-object "^1.0.1"
is-symbol "^1.0.2"
+es5-shim@^4.5.10:
+ version "4.5.12"
+ resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.12.tgz#508c13dda1c87dd3df1b50e69e7b96b82149b649"
+ integrity sha512-MjoCAHE6P2Dirme70Cxd9i2Ng8rhXiaVSsxDWdSwimfLERJL/ypR2ed2rTYkeeYrMk8gq281dzKLiGcdrmc8qg==
+
+es6-promise@^4.0.3:
+ version "4.2.6"
+ resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.6.tgz#b685edd8258886365ea62b57d30de28fadcd974f"
+ integrity sha512-aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q==
+
+es6-promisify@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203"
+ integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=
+ dependencies:
+ es6-promise "^4.0.3"
+
+es6-shim@^0.35.3:
+ version "0.35.5"
+ resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab"
+ integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==
+
escape-html@~1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
@@ -3760,15 +5940,6 @@ escodegen@^1.9.1:
optionalDependencies:
source-map "~0.6.1"
-eslint-config-airbnb-base@^13.1.0:
- version "13.1.0"
- resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz#b5a1b480b80dfad16433d6c4ad84e6605052c05c"
- integrity sha512-XWwQtf3U3zIoKO1BbHh6aUhJZQweOwSt4c2JrPDg9FP3Ltv3+YfEv7jIDB8275tVnO/qOHbfuYg3kzw6Je7uWw==
- dependencies:
- eslint-restricted-globals "^0.1.1"
- object.assign "^4.1.0"
- object.entries "^1.0.4"
-
eslint-config-react-app@^3.0.8:
version "3.0.8"
resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-3.0.8.tgz#6f606828ba30bafee7d744c41cd07a3fea8f3035"
@@ -3776,7 +5947,7 @@ eslint-config-react-app@^3.0.8:
dependencies:
confusing-browser-globals "^1.0.6"
-eslint-import-resolver-node@^0.3.1, eslint-import-resolver-node@^0.3.2:
+eslint-import-resolver-node@^0.3.1:
version "0.3.2"
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==
@@ -3795,7 +5966,7 @@ eslint-loader@2.1.1:
object-hash "^1.1.4"
rimraf "^2.6.1"
-eslint-module-utils@^2.2.0, eslint-module-utils@^2.3.0:
+eslint-module-utils@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.3.0.tgz#546178dab5e046c8b562bbb50705e2456d7bda49"
integrity sha512-lmDJgeOOjk8hObTysjqH7wyMi+nsHwwvfBykwfhjR1LNdd7C2uFJBvx4OpWYpXOw4df1yE1cDEVd1yLHitk34w==
@@ -3803,6 +5974,14 @@ eslint-module-utils@^2.2.0, eslint-module-utils@^2.3.0:
debug "^2.6.8"
pkg-dir "^2.0.0"
+eslint-plugin-css-modules@^2.11.0:
+ version "2.11.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-css-modules/-/eslint-plugin-css-modules-2.11.0.tgz#8de4d01d523a2d51c03043fa8004aab6b6cf3b1a"
+ integrity sha512-CLvQvJOMlCywZzaI4HVu7QH/ltgNXvCg7giJGiE+sA9wh5zQ+AqTgftAzrERV22wHe1p688wrU/Zwxt1Ry922w==
+ dependencies:
+ gonzales-pe "^4.0.3"
+ lodash "^4.17.2"
+
eslint-plugin-flowtype@2.50.1:
version "2.50.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.1.tgz#36d4c961ac8b9e9e1dc091d3fba0537dad34ae8a"
@@ -3818,29 +5997,13 @@ eslint-plugin-import@2.14.0:
contains-path "^0.1.0"
debug "^2.6.8"
doctrine "1.5.0"
- eslint-import-resolver-node "^0.3.1"
- eslint-module-utils "^2.2.0"
- has "^1.0.1"
- lodash "^4.17.4"
- minimatch "^3.0.3"
- read-pkg-up "^2.0.0"
- resolve "^1.6.0"
-
-eslint-plugin-import@^2.14.0:
- version "2.16.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.16.0.tgz#97ac3e75d0791c4fac0e15ef388510217be7f66f"
- integrity sha512-z6oqWlf1x5GkHIFgrSvtmudnqM6Q60KM4KvpWi5ubonMjycLjndvd5+8VAZIsTlHC03djdgJuyKG6XO577px6A==
- dependencies:
- contains-path "^0.1.0"
- debug "^2.6.9"
- doctrine "1.5.0"
- eslint-import-resolver-node "^0.3.2"
- eslint-module-utils "^2.3.0"
- has "^1.0.3"
- lodash "^4.17.11"
- minimatch "^3.0.4"
+ eslint-import-resolver-node "^0.3.1"
+ eslint-module-utils "^2.2.0"
+ has "^1.0.1"
+ lodash "^4.17.4"
+ minimatch "^3.0.3"
read-pkg-up "^2.0.0"
- resolve "^1.9.0"
+ resolve "^1.6.0"
eslint-plugin-jsx-a11y@6.1.2:
version "6.1.2"
@@ -3856,7 +6019,14 @@ eslint-plugin-jsx-a11y@6.1.2:
has "^1.0.3"
jsx-ast-utils "^2.0.1"
-eslint-plugin-react@7.12.4, eslint-plugin-react@^7.11.1:
+eslint-plugin-prettier@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.1.tgz#19d521e3981f69dd6d14f64aec8c6a6ac6eb0b0d"
+ integrity sha512-/PMttrarPAY78PLvV3xfWibMOdMDl57hmlQ2XqFeA37wd+CJ7WSxV7txqjVPHi/AAFKd2lX0ZqfsOc/i5yFCSQ==
+ dependencies:
+ prettier-linter-helpers "^1.0.0"
+
+eslint-plugin-react@7.12.4, eslint-plugin-react@^7.12.4:
version "7.12.4"
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.4.tgz#b1ecf26479d61aee650da612e425c53a99f48c8c"
integrity sha512-1puHJkXJY+oS1t467MjbqjvX53uQ05HXwjqDgdbGBqf5j9eeydI54G3KwiJmWciQ0HTBacIKw2jgwSBSH3yfgQ==
@@ -3869,11 +6039,6 @@ eslint-plugin-react@7.12.4, eslint-plugin-react@^7.11.1:
prop-types "^15.6.2"
resolve "^1.9.0"
-eslint-restricted-globals@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
- integrity sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=
-
eslint-scope@3.7.1:
version "3.7.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
@@ -3883,9 +6048,9 @@ eslint-scope@3.7.1:
estraverse "^4.1.1"
eslint-scope@^4.0.0:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.2.tgz#5f10cd6cabb1965bf479fa65745673439e21cb0e"
- integrity sha512-5q1+B/ogmHl8+paxtOKx38Z8LtWkVGuNt3+GQNErqwLl6ViNp/gdJGMCjZNxZ8j/VYjDNZ2Fo+eQc1TAVPIzbg==
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
+ integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
dependencies:
esrecurse "^4.1.0"
estraverse "^4.1.1"
@@ -3943,59 +6108,6 @@ eslint@5.12.0:
table "^5.0.2"
text-table "^0.2.0"
-eslint@5.6.0:
- version "5.6.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.6.0.tgz#b6f7806041af01f71b3f1895cbb20971ea4b6223"
- integrity sha512-/eVYs9VVVboX286mBK7bbKnO1yamUy2UCRjiY6MryhQL2PaaXCExsCQ2aO83OeYRhU2eCU/FMFP+tVMoOrzNrA==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- ajv "^6.5.3"
- chalk "^2.1.0"
- cross-spawn "^6.0.5"
- debug "^3.1.0"
- doctrine "^2.1.0"
- eslint-scope "^4.0.0"
- eslint-utils "^1.3.1"
- eslint-visitor-keys "^1.0.0"
- espree "^4.0.0"
- esquery "^1.0.1"
- esutils "^2.0.2"
- file-entry-cache "^2.0.0"
- functional-red-black-tree "^1.0.1"
- glob "^7.1.2"
- globals "^11.7.0"
- ignore "^4.0.6"
- imurmurhash "^0.1.4"
- inquirer "^6.1.0"
- is-resolvable "^1.1.0"
- js-yaml "^3.12.0"
- json-stable-stringify-without-jsonify "^1.0.1"
- levn "^0.3.0"
- lodash "^4.17.5"
- minimatch "^3.0.4"
- mkdirp "^0.5.1"
- natural-compare "^1.4.0"
- optionator "^0.8.2"
- path-is-inside "^1.0.2"
- pluralize "^7.0.0"
- progress "^2.0.0"
- regexpp "^2.0.0"
- require-uncached "^1.0.3"
- semver "^5.5.1"
- strip-ansi "^4.0.0"
- strip-json-comments "^2.0.1"
- table "^4.0.3"
- text-table "^0.2.0"
-
-espree@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/espree/-/espree-4.1.0.tgz#728d5451e0fd156c04384a7ad89ed51ff54eb25f"
- integrity sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==
- dependencies:
- acorn "^6.0.2"
- acorn-jsx "^5.0.0"
- eslint-visitor-keys "^1.0.0"
-
espree@^5.0.0:
version "5.0.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a"
@@ -4010,7 +6122,7 @@ esprima@^3.1.3:
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
-esprima@^4.0.0:
+esprima@^4.0.0, esprima@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
@@ -4044,7 +6156,7 @@ etag@~1.8.1:
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
-eventemitter3@^3.0.0:
+eventemitter3@^3.0.0, eventemitter3@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163"
integrity sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==
@@ -4076,6 +6188,11 @@ exec-sh@^0.2.0:
dependencies:
merge "^1.2.0"
+exec-sh@^0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b"
+ integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==
+
execa@^0.10.0:
version "0.10.0"
resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50"
@@ -4115,6 +6232,18 @@ execa@^1.0.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"
+execall@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73"
+ integrity sha1-c9CQTjlbPKsGWLCNCewlMH8pu3M=
+ dependencies:
+ clone-regexp "^1.0.0"
+
+exenv@^1.2.0:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d"
+ integrity sha1-KueOhdmJQVhnCwPUe+wfA72Ru50=
+
exit@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
@@ -4159,7 +6288,19 @@ expect@^23.6.0:
jest-message-util "^23.4.0"
jest-regex-util "^23.3.0"
-express@^4.16.2:
+expect@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-24.5.0.tgz#492fb0df8378d8474cc84b827776b069f46294ed"
+ integrity sha512-p2Gmc0CLxOgkyA93ySWmHFYHUPFIHG6XZ06l7WArWAsrqYVaVEkOU5NtT5i68KUyGKbkQgDCkiT65bWmdoL6Bw==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ ansi-styles "^3.2.0"
+ jest-get-type "^24.3.0"
+ jest-matcher-utils "^24.5.0"
+ jest-message-util "^24.5.0"
+ jest-regex-util "^24.3.0"
+
+express@^4.16.2, express@^4.16.3:
version "4.16.4"
resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e"
integrity sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==
@@ -4260,6 +6401,11 @@ fast-deep-equal@^2.0.1:
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
+fast-diff@^1.1.2:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
+ integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+
fast-glob@^2.0.2:
version "2.2.6"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz#a5d5b697ec8deda468d85a74035290a025a95295"
@@ -4287,6 +6433,13 @@ fastparse@^1.1.1:
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
+fault@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.2.tgz#c3d0fec202f172a3a4d414042ad2bb5e2a3ffbaa"
+ integrity sha512-o2eo/X2syzzERAtN5LcGbiVQ0WwZSlN3qLtadwAz3X8Bu+XWD16dja/KMsjZLiQr+BLGPDnHGkc4yUJf1Xpkpw==
+ dependencies:
+ format "^0.2.2"
+
faye-websocket@^0.10.0:
version "0.10.0"
resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
@@ -4308,7 +6461,7 @@ fb-watchman@^2.0.0:
dependencies:
bser "^2.0.0"
-fbjs@^0.8.15:
+fbjs@^0.8.0, fbjs@^0.8.1, fbjs@^0.8.15:
version "0.8.17"
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=
@@ -4321,7 +6474,7 @@ fbjs@^0.8.15:
setimmediate "^1.0.5"
ua-parser-js "^0.7.18"
-figgy-pudding@^3.5.1:
+figgy-pudding@^3.4.1, figgy-pudding@^3.5.1:
version "3.5.1"
resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790"
integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==
@@ -4341,6 +6494,14 @@ file-entry-cache@^2.0.0:
flat-cache "^1.2.1"
object-assign "^4.0.1"
+file-loader@1.1.11:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-1.1.11.tgz#6fe886449b0f2a936e43cabaac0cdbfb369506f8"
+ integrity sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==
+ dependencies:
+ loader-utils "^1.0.2"
+ schema-utils "^0.4.5"
+
file-loader@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-2.0.0.tgz#39749c82f020b9e85901dcff98e8004e6401cfde"
@@ -4349,34 +6510,29 @@ file-loader@2.0.0:
loader-utils "^1.0.2"
schema-utils "^1.0.0"
+file-loader@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa"
+ integrity sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw==
+ dependencies:
+ loader-utils "^1.0.2"
+ schema-utils "^1.0.0"
+
+file-system-cache@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-1.0.5.tgz#84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f"
+ integrity sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=
+ dependencies:
+ bluebird "^3.3.5"
+ fs-extra "^0.30.0"
+ ramda "^0.21.0"
+
filename-regex@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=
-filename-reserved-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz#e61cf805f0de1c984567d0386dc5df50ee5af7e4"
- integrity sha1-5hz4BfDeHJhFZ9A4bcXfUO5a9+Q=
-
-filenamify-url@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/filenamify-url/-/filenamify-url-1.0.0.tgz#b32bd81319ef5863b73078bed50f46a4f7975f50"
- integrity sha1-syvYExnvWGO3MHi+1Q9GpPeXX1A=
- dependencies:
- filenamify "^1.0.0"
- humanize-url "^1.0.0"
-
-filenamify@^1.0.0:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-1.2.1.tgz#a9f2ffd11c503bed300015029272378f1f1365a5"
- integrity sha1-qfL/0RxQO+0wABUCknI3jx8TZaU=
- dependencies:
- filename-reserved-regex "^1.0.0"
- strip-outer "^1.0.0"
- trim-repeated "^1.0.0"
-
-fileset@^2.0.2:
+fileset@^2.0.2, fileset@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
@@ -4433,14 +6589,19 @@ find-cache-dir@^0.1.1:
pkg-dir "^1.0.0"
find-cache-dir@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz#4c1faed59f45184530fb9d7fa123a4d04a98472d"
- integrity sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+ integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
dependencies:
commondir "^1.0.1"
- make-dir "^1.0.0"
+ make-dir "^2.0.0"
pkg-dir "^3.0.0"
+find-root@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
+ integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
+
find-up@3.0.0, find-up@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
@@ -4486,6 +6647,11 @@ flush-write-stream@^1.0.0:
inherits "^2.0.3"
readable-stream "^2.3.6"
+focus-lock@^0.6.0:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.6.2.tgz#d8ac9dbc46250779789c3e6f43d978c7dfa59dcd"
+ integrity sha512-Wuq6TSOgsGQmzbpvinl1TcEw4BAUhD9T06myl5HvaBlO0geAz9ABtqBIqPkkNyO3AgPzEDazetL5hSRgj+2iqQ==
+
follow-redirects@^1.0.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.7.0.tgz#489ebc198dc0e7f64167bd23b03c4c19b5784c76"
@@ -4544,6 +6710,11 @@ form-data@~2.3.2:
combined-stream "^1.0.6"
mime-types "^2.1.12"
+format@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
+ integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=
+
forwarded@~0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
@@ -4569,7 +6740,7 @@ from2@^2.1.0:
inherits "^2.0.1"
readable-stream "^2.0.0"
-fs-extra@7.0.1, fs-extra@^7.0.0:
+fs-extra@7.0.1, fs-extra@^7.0.0, fs-extra@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
@@ -4578,6 +6749,17 @@ fs-extra@7.0.1, fs-extra@^7.0.0:
jsonfile "^4.0.0"
universalify "^0.1.0"
+fs-extra@^0.30.0:
+ version "0.30.0"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
+ integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^2.1.0"
+ klaw "^1.0.0"
+ path-is-absolute "^1.0.0"
+ rimraf "^2.2.8"
+
fs-extra@^4.0.2:
version "4.0.3"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94"
@@ -4630,6 +6812,16 @@ fsevents@^1.2.3, fsevents@^1.2.7:
nan "^2.9.2"
node-pre-gyp "^0.10.0"
+fstream@^1.0.0, fstream@^1.0.2:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
+ integrity sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=
+ dependencies:
+ graceful-fs "^4.1.2"
+ inherits "~2.0.0"
+ mkdirp ">=0.5 0"
+ rimraf "2"
+
function-bind@^1.0.2, function-bind@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
@@ -4649,6 +6841,11 @@ functional-red-black-tree@^1.0.1:
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
+fuzzy-search@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/fuzzy-search/-/fuzzy-search-3.0.1.tgz#14a4964508a9607d6e9a88818e7ff634108260b6"
+ integrity sha512-rjUvzdsMlOyarm0oD5k6zVQwgvt4Tb5Xe3YdIGU+Vogw54+ueAGPUTMU2B9jfPQEie5cD11i/S9J9d+MNBSQ3Q==
+
gauge@~2.7.3:
version "2.7.4"
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
@@ -4663,6 +6860,11 @@ gauge@~2.7.3:
strip-ansi "^3.0.1"
wide-align "^1.1.0"
+genfun@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537"
+ integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA==
+
get-caller-file@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
@@ -4673,6 +6875,32 @@ get-own-enumerable-property-symbols@^3.0.0:
resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz#b877b49a5c16aefac3655f2ed2ea5b684df8d203"
integrity sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==
+get-pkg-repo@^1.0.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d"
+ integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0=
+ dependencies:
+ hosted-git-info "^2.1.4"
+ meow "^3.3.0"
+ normalize-package-data "^2.3.0"
+ parse-github-repo-url "^1.3.0"
+ through2 "^2.0.0"
+
+get-port@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc"
+ integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=
+
+get-stdin@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
+ integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=
+
+get-stdin@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
+ integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=
+
get-stdin@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
@@ -4683,7 +6911,7 @@ get-stream@^3.0.0:
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
-get-stream@^4.0.0:
+get-stream@^4.0.0, get-stream@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
@@ -4702,19 +6930,54 @@ getpass@^0.1.1:
dependencies:
assert-plus "^1.0.0"
-gh-pages@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-2.0.1.tgz#aefe47a43b8d9d2aa3130576b33fe95641e29a2f"
- integrity sha512-uFlk3bukljeiWKQ2XvPfjcSi/ou7IfoDf2p+Fj672saLAr8bnOdFVqI/JSgrSgInKpCg5BksxEwGUl++dbg8Dg==
+git-raw-commits@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.0.tgz#d92addf74440c14bcc5c83ecce3fb7f8a79118b5"
+ integrity sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg==
dependencies:
- async "^2.6.1"
- commander "^2.18.0"
- email-addresses "^3.0.1"
- filenamify-url "^1.0.0"
- fs-extra "^7.0.0"
- globby "^6.1.0"
- graceful-fs "^4.1.11"
- rimraf "^2.6.2"
+ dargs "^4.0.1"
+ lodash.template "^4.0.2"
+ meow "^4.0.0"
+ split2 "^2.0.0"
+ through2 "^2.0.0"
+
+git-remote-origin-url@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f"
+ integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=
+ dependencies:
+ gitconfiglocal "^1.0.0"
+ pify "^2.3.0"
+
+git-semver-tags@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-2.0.2.tgz#f506ec07caade191ac0c8d5a21bdb8131b4934e3"
+ integrity sha512-34lMF7Yo1xEmsK2EkbArdoU79umpvm0MfzaDkSNYSJqtM5QLAVTPWgpiXSVI5o/O9EvZPSrP4Zvnec/CqhSd5w==
+ dependencies:
+ meow "^4.0.0"
+ semver "^5.5.0"
+
+git-up@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.1.tgz#cb2ef086653640e721d2042fe3104857d89007c0"
+ integrity sha512-LFTZZrBlrCrGCG07/dm1aCjjpL1z9L3+5aEeI9SBhAqSc+kiA9Or1bgZhQFNppJX6h/f5McrvJt1mQXTFm6Qrw==
+ dependencies:
+ is-ssh "^1.3.0"
+ parse-url "^5.0.0"
+
+git-url-parse@^11.1.2:
+ version "11.1.2"
+ resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67"
+ integrity sha512-gZeLVGY8QVKMIkckncX+iCq2/L8PlwncvDFKiWkBn9EtCfYDbliRTTp6qzyQ1VMdITUfq7293zDzfpjdiGASSQ==
+ dependencies:
+ git-up "^4.0.0"
+
+gitconfiglocal@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b"
+ integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=
+ dependencies:
+ ini "^1.3.2"
glob-base@^0.3.0:
version "0.3.0"
@@ -4756,6 +7019,13 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
once "^1.3.0"
path-is-absolute "^1.0.0"
+global-dirs@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
+ integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=
+ dependencies:
+ ini "^1.3.4"
+
global-modules@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
@@ -4772,6 +7042,14 @@ global-prefix@^3.0.0:
kind-of "^6.0.2"
which "^1.3.1"
+global@^4.3.2:
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f"
+ integrity sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=
+ dependencies:
+ min-document "^2.19.0"
+ process "~0.5.1"
+
globals@^11.1.0, globals@^11.7.0:
version "11.11.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e"
@@ -4782,7 +7060,7 @@ globals@^9.18.0:
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
-globby@8.0.2:
+globby@8.0.2, globby@^8.0.1:
version "8.0.2"
resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d"
integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==
@@ -4806,7 +7084,55 @@ globby@^6.1.0:
pify "^2.0.0"
pinkie-promise "^2.0.0"
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
+globby@^7.0.0:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680"
+ integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA=
+ dependencies:
+ array-union "^1.0.1"
+ dir-glob "^2.0.0"
+ glob "^7.1.2"
+ ignore "^3.3.5"
+ pify "^3.0.0"
+ slash "^1.0.0"
+
+globjoin@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43"
+ integrity sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=
+
+gonzales-pe@^4.0.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/gonzales-pe/-/gonzales-pe-4.2.3.tgz#41091703625433285e0aee3aa47829fc1fbeb6f2"
+ integrity sha512-Kjhohco0esHQnOiqqdJeNz/5fyPkOMD/d6XVjwTAoPGUFh0mCollPUTUTa2OZy4dYNAqlPIQdTiNzJTWdd9Htw==
+ dependencies:
+ minimist "1.1.x"
+
+good-listener@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
+ integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
+ dependencies:
+ delegate "^3.1.2"
+
+got@^6.7.1:
+ version "6.7.1"
+ resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
+ integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=
+ dependencies:
+ create-error-class "^3.0.0"
+ duplexer3 "^0.1.4"
+ get-stream "^3.0.0"
+ is-redirect "^1.0.0"
+ is-retry-allowed "^1.0.0"
+ is-stream "^1.0.0"
+ lowercase-keys "^1.0.0"
+ safe-buffer "^5.0.1"
+ timed-out "^4.0.0"
+ unzip-response "^2.0.1"
+ url-parse-lax "^1.0.0"
+
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
version "4.1.15"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
@@ -4816,6 +7142,11 @@ growly@^1.3.0:
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
+gud@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
+ integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==
+
gzip-size@5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.0.0.tgz#a55ecd99222f4c48fd8c01c625ce3b349d0a0e80"
@@ -4829,12 +7160,12 @@ handle-thing@^2.0.0:
resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754"
integrity sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==
-handlebars@^4.0.3:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz#0d6a6f34ff1f63cecec8423aa4169827bf787c3a"
- integrity sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w==
+handlebars@^4.0.3, handlebars@^4.1.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.1.tgz#6e4e41c18ebe7719ae4d38e5aca3d32fa3dd23d3"
+ integrity sha512-3Zhi6C0euYZL5sM0Zcy7lInLXKQ+YLcF/olbN010mzGQ4XVm50JeyBnMqofHh696GrciGruC7kCcApPDJvVgwA==
dependencies:
- async "^2.5.0"
+ neo-async "^2.6.0"
optimist "^0.6.1"
source-map "^0.6.1"
optionalDependencies:
@@ -4880,7 +7211,7 @@ has-symbols@^1.0.0:
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=
-has-unicode@^2.0.0:
+has-unicode@^2.0.0, has-unicode@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
@@ -4975,6 +7306,23 @@ hex-color-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
+highlight.js@~9.12.0:
+ version "9.12.0"
+ resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.12.0.tgz#e6d9dbe57cbefe60751f02af336195870c90c01e"
+ integrity sha1-5tnb5Xy+/mB1HwKvM2GVhwyQwB4=
+
+history@^4.7.2:
+ version "4.9.0"
+ resolved "https://registry.yarnpkg.com/history/-/history-4.9.0.tgz#84587c2068039ead8af769e9d6a6860a14fa1bca"
+ integrity sha512-H2DkjCjXf0Op9OAr6nJ56fcRkTSNrUiv41vNJ6IswJjif6wlpZK0BTfFbi7qK9dXLSYZxkq5lBsj3vUjlYBYZA==
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ loose-envify "^1.2.0"
+ resolve-pathname "^2.2.0"
+ tiny-invariant "^1.0.2"
+ tiny-warning "^1.0.0"
+ value-equal "^0.4.0"
+
hmac-drbg@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
@@ -4989,6 +7337,18 @@ hoek@4.x.x:
resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb"
integrity sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==
+hoist-non-react-statics@^2.3.1:
+ version "2.5.5"
+ resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47"
+ integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==
+
+hoist-non-react-statics@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz#b09178f0122184fb95acf525daaecb4d8f45958b"
+ integrity sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA==
+ dependencies:
+ react-is "^16.7.0"
+
home-or-tmp@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
@@ -5002,7 +7362,7 @@ hoopy@^0.1.2:
resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
-hosted-git-info@^2.1.4:
+hosted-git-info@^2.1.4, hosted-git-info@^2.6.0:
version "2.7.1"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==
@@ -5051,7 +7411,7 @@ html-entities@^1.2.0:
resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=
-html-minifier@^3.2.3:
+html-minifier@^3.2.3, html-minifier@^3.5.20:
version "3.5.21"
resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c"
integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==
@@ -5064,6 +7424,11 @@ html-minifier@^3.2.3:
relateurl "0.2.x"
uglify-js "3.4.x"
+html-tags@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b"
+ integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=
+
html-webpack-plugin@4.0.0-alpha.2:
version "4.0.0-alpha.2"
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-alpha.2.tgz#7745967e389a57a098e26963f328ebe4c19b598d"
@@ -5077,7 +7442,19 @@ html-webpack-plugin@4.0.0-alpha.2:
tapable "^1.0.0"
util.promisify "1.0.0"
-htmlparser2@^3.3.0, htmlparser2@^3.9.1:
+html-webpack-plugin@^4.0.0-beta.2:
+ version "4.0.0-beta.5"
+ resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.5.tgz#2c53083c1151bfec20479b1f8aaf0039e77b5513"
+ integrity sha512-y5l4lGxOW3pz3xBTFdfB9rnnrWRPVxlAhX6nrBYIcW+2k2zC3mSp/3DxlWVCMBfnO6UAnoF8OcFn0IMy6kaKAQ==
+ dependencies:
+ html-minifier "^3.5.20"
+ loader-utils "^1.1.0"
+ lodash "^4.17.11"
+ pretty-error "^2.1.1"
+ tapable "^1.1.0"
+ util.promisify "1.0.0"
+
+htmlparser2@^3.3.0, htmlparser2@^3.9.1, htmlparser2@^3.9.2:
version "3.10.1"
resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==
@@ -5089,6 +7466,11 @@ htmlparser2@^3.3.0, htmlparser2@^3.9.1:
inherits "^2.0.1"
readable-stream "^3.1.1"
+http-cache-semantics@^3.8.1:
+ version "3.8.1"
+ resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
+ integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
+
http-deceiver@^1.2.7:
version "1.2.7"
resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
@@ -5109,6 +7491,14 @@ http-parser-js@>=0.4.0:
resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.0.tgz#d65edbede84349d0dc30320815a15d39cc3cbbd8"
integrity sha512-cZdEF7r4gfRIq7ezX9J0T+kQmJNOub71dWbgAXVHDct80TKP4MCETtZQ31xyv38UwgzkWPYF/Xc0ge55dW9Z9w==
+http-proxy-agent@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405"
+ integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==
+ dependencies:
+ agent-base "4"
+ debug "3.1.0"
+
http-proxy-middleware@~0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz#0987e6bb5a5606e5a69168d8f967a87f15dd8aab"
@@ -5142,13 +7532,20 @@ https-browserify@^1.0.0:
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
-humanize-url@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/humanize-url/-/humanize-url-1.0.1.tgz#f4ab99e0d288174ca4e1e50407c55fbae464efff"
- integrity sha1-9KuZ4NKIF0yk4eUEB8VfuuRk7/8=
+https-proxy-agent@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0"
+ integrity sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==
+ dependencies:
+ agent-base "^4.1.0"
+ debug "^3.1.0"
+
+humanize-ms@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
+ integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=
dependencies:
- normalize-url "^1.0.0"
- strip-url-auth "^1.0.0"
+ ms "^2.0.0"
humps@^2.0.1:
version "2.0.1"
@@ -5197,7 +7594,14 @@ icss-utils@^2.1.0:
dependencies:
postcss "^6.0.1"
-identity-obj-proxy@3.0.0:
+icss-utils@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.0.tgz#339dbbffb9f8729a243b701e1c29d4cc58c52f0e"
+ integrity sha512-3DEun4VOeMvSczifM3F2cKQrDQ5Pj6WKhkOq6HD4QTnDUAq8MQRxy5TX6Sy1iY6WPBe4gQ3p5vTECjbIkglkkQ==
+ dependencies:
+ postcss "^7.0.14"
+
+identity-obj-proxy@3.0.0, identity-obj-proxy@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14"
integrity sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=
@@ -5221,7 +7625,7 @@ ignore-walk@^3.0.1:
dependencies:
minimatch "^3.0.4"
-ignore@^3.3.5:
+ignore@^3.3.3, ignore@^3.3.5:
version "3.3.10"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
@@ -5236,6 +7640,11 @@ immer@1.10.0:
resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==
+immer@^1.12.0:
+ version "1.12.1"
+ resolved "https://registry.yarnpkg.com/immer/-/immer-1.12.1.tgz#40c6e5b292c00560836c2993bda3a24379d466f5"
+ integrity sha512-3fmKM6ovaqDt0CdC9daXpNi5x/YCYS3i4cwLdTVkhJdk5jrDXoPs7lCm3IqM3yhfSnz4tjjxbRG2CziQ7m8ztg==
+
immutable@~3.7.4:
version "3.7.6"
resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b"
@@ -5271,6 +7680,19 @@ import-from@^2.1.0:
dependencies:
resolve-from "^3.0.0"
+import-lazy@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
+ integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
+
+import-local@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8"
+ integrity sha1-sReVcqrNwRxqkQCftDDbyrX2aKg=
+ dependencies:
+ pkg-dir "^2.0.0"
+ resolve-cwd "^2.0.0"
+
import-local@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
@@ -5292,6 +7714,18 @@ imurmurhash@^0.1.4:
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
+indent-string@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
+ integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=
+ dependencies:
+ repeating "^2.0.0"
+
+indent-string@^3.0.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
+ integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
+
indexes-of@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
@@ -5310,7 +7744,7 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
+inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
@@ -5320,11 +7754,25 @@ inherits@2.0.1:
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
-ini@^1.3.5, ini@~1.3.0:
+ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
version "1.3.5"
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
+init-package-json@^1.10.3:
+ version "1.10.3"
+ resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-1.10.3.tgz#45ffe2f610a8ca134f2bd1db5637b235070f6cbe"
+ integrity sha512-zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==
+ dependencies:
+ glob "^7.1.1"
+ npm-package-arg "^4.0.0 || ^5.0.0 || ^6.0.0"
+ promzard "^0.3.0"
+ read "~1.0.1"
+ read-package-json "1 || 2"
+ semver "2.x || 3.x || 4 || 5"
+ validate-npm-package-license "^3.0.1"
+ validate-npm-package-name "^3.0.0"
+
inquirer@6.2.1:
version "6.2.1"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz#9943fc4882161bdb0b0c9276769c75b32dbfcd52"
@@ -5344,7 +7792,7 @@ inquirer@6.2.1:
strip-ansi "^5.0.0"
through "^2.3.6"
-inquirer@^6.1.0:
+inquirer@^6.1.0, inquirer@^6.2.0:
version "6.2.2"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406"
integrity sha512-Z2rREiXA6cHRR9KBOarR3WuLlFzlIfAEIiB45ll5SSadMg7WqOh1MKEjjndfuH5ewXdixWCxqnVfGOQzPeiztA==
@@ -5371,7 +7819,12 @@ internal-ip@^3.0.1:
default-gateway "^2.6.0"
ipaddr.js "^1.5.2"
-invariant@^2.2.2, invariant@^2.2.4:
+interpret@^1.0.0, interpret@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
+ integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==
+
+invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
@@ -5427,6 +7880,24 @@ is-accessor-descriptor@^1.0.0:
dependencies:
kind-of "^6.0.0"
+is-alphabetical@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.2.tgz#1fa6e49213cb7885b75d15862fb3f3d96c884f41"
+ integrity sha512-V0xN4BYezDHcBSKb1QHUFMlR4as/XEuCZBzMJUU4n7+Cbt33SmUnSol+pnXFvLxSHNq2CemUXNdaXV6Flg7+xg==
+
+is-alphanumeric@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4"
+ integrity sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=
+
+is-alphanumerical@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz#1138e9ae5040158dc6ff76b820acd6b7a181fd40"
+ integrity sha512-pyfU/0kHdISIgslFfZN9nfY1Gk3MquQgUm1mJTjdkEPpkAKNWuBTSqFwewOpR7N351VkErCiyV71zX7mlQQqsg==
+ dependencies:
+ is-alphabetical "^1.0.0"
+ is-decimal "^1.0.0"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
@@ -5449,7 +7920,7 @@ is-boolean-object@^1.0.0:
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93"
integrity sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M=
-is-buffer@^1.0.2, is-buffer@^1.1.5:
+is-buffer@^1.0.2, is-buffer@^1.1.4, is-buffer@^1.1.5:
version "1.1.6"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
@@ -5509,6 +7980,11 @@ is-date-object@^1.0.1:
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=
+is-decimal@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.2.tgz#894662d6a8709d307f3a276ca4339c8fa5dff0ff"
+ integrity sha512-TRzl7mOCchnhchN+f3ICUCzYvL9ul7R+TYOsZ8xia++knyZAJfv/uA1FvQXsAnYIl1T3B2X5E/J7Wb1QXiIBXg==
+
is-descriptor@^0.1.0:
version "0.1.6"
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
@@ -5532,6 +8008,11 @@ is-directory@^0.3.1:
resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
+is-dom@^1.0.9:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.0.9.tgz#483832d52972073de12b9fe3f60320870da8370d"
+ integrity sha1-SDgy1SlyBz3hK5/j9gMghw2oNw0=
+
is-dotfile@^1.0.0:
version "1.0.3"
resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
@@ -5549,7 +8030,7 @@ is-extendable@^0.1.0, is-extendable@^0.1.1:
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-is-extendable@^1.0.1:
+is-extendable@^1.0.0, is-extendable@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
@@ -5585,11 +8066,21 @@ is-fullwidth-code-point@^2.0.0:
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+is-function@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5"
+ integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=
+
is-generator-fn@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
integrity sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=
+is-generator-fn@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.0.0.tgz#038c31b774709641bda678b1f06a4e3227c10b3e"
+ integrity sha512-elzyIdM7iKoFHzcrndIqjYomImhxrFRnGP3galODoII4TB9gI7mZ+FnlLQmmjf27SxHS2gKEeyhX5/+YRS6H9g==
+
is-glob@^2.0.0, is-glob@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
@@ -5611,6 +8102,24 @@ is-glob@^4.0.0:
dependencies:
is-extglob "^2.1.1"
+is-hexadecimal@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz#b6e710d7d07bb66b98cb8cece5c9b4921deeb835"
+ integrity sha512-but/G3sapV3MNyqiDBLrOi4x8uCIw0RY3o/Vb5GT0sMFHrVV7731wFSVy41T5FO1og7G0gXLJh0MkgPRouko/A==
+
+is-installed-globally@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80"
+ integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=
+ dependencies:
+ global-dirs "^0.1.0"
+ is-path-inside "^1.0.0"
+
+is-npm@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
+ integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ=
+
is-number-object@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799"
@@ -5686,6 +8195,11 @@ is-promise@^2.1.0:
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
+is-redirect@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
+ integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=
+
is-regex@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
@@ -5698,17 +8212,29 @@ is-regexp@^1.0.0:
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
-is-resolvable@^1.0.0, is-resolvable@^1.1.0:
+is-resolvable@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
+is-retry-allowed@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
+ integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=
+
is-root@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.0.0.tgz#838d1e82318144e5a6f77819d90207645acc7019"
integrity sha512-F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg==
-is-stream@^1.0.1, is-stream@^1.1.0:
+is-ssh@^1.3.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.1.tgz#f349a8cadd24e65298037a522cf7520f2e81a0f3"
+ integrity sha512-0eRIASHZt1E68/ixClI8bp2YK2wmBPVWEismTs6M+M099jKgrzl/3E976zIbImSIob48N2/XGe9y7ZiYdImSlg==
+ dependencies:
+ protocols "^1.1.0"
+
+is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
@@ -5723,6 +8249,11 @@ is-subset@^0.1.1:
resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=
+is-supported-regexp-flag@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz#21ee16518d2c1dd3edd3e9a0d57e50207ac364ca"
+ integrity sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==
+
is-svg@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
@@ -5735,7 +8266,14 @@ is-symbol@^1.0.2:
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==
dependencies:
- has-symbols "^1.0.0"
+ has-symbols "^1.0.0"
+
+is-text-path@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
+ integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=
+ dependencies:
+ text-extensions "^1.0.0"
is-typedarray@~1.0.0:
version "1.0.0"
@@ -5747,11 +8285,21 @@ is-utf8@^0.2.0:
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
+is-whitespace-character@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.2.tgz#ede53b4c6f6fb3874533751ec9280d01928d03ed"
+ integrity sha512-SzM+T5GKUCtLhlHFKt2SDAX2RFzfS6joT91F2/WSi9LxgFdsnhfPK/UIA+JhRR2xuyLdrCys2PiFDrtn1fU5hQ==
+
is-windows@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+is-word-character@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.2.tgz#46a5dac3f2a1840898b91e576cd40d493f3ae553"
+ integrity sha512-T3FlsX8rCHAH8e7RE7PfOPZVFQlcV3XRF9eOOBQ1uf70OxO7CjjSOjeImMPCADBdYWcStAbVbYvJ1m2D3tb+EA==
+
is-wsl@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
@@ -5816,11 +8364,35 @@ istanbul-api@^1.3.1:
mkdirp "^0.5.1"
once "^1.4.0"
+istanbul-api@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.1.tgz#194b773f6d9cbc99a9258446848b0f988951c4d0"
+ integrity sha512-kVmYrehiwyeBAk/wE71tW6emzLiHGjYIiDrc8sfyty4F8M02/lrgXSm+R1kXysmF20zArvmZXjlE/mg24TVPJw==
+ dependencies:
+ async "^2.6.1"
+ compare-versions "^3.2.1"
+ fileset "^2.0.3"
+ istanbul-lib-coverage "^2.0.3"
+ istanbul-lib-hook "^2.0.3"
+ istanbul-lib-instrument "^3.1.0"
+ istanbul-lib-report "^2.0.4"
+ istanbul-lib-source-maps "^3.0.2"
+ istanbul-reports "^2.1.1"
+ js-yaml "^3.12.0"
+ make-dir "^1.3.0"
+ minimatch "^3.0.4"
+ once "^1.4.0"
+
istanbul-lib-coverage@^1.2.0, istanbul-lib-coverage@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0"
integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==
+istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#0b891e5ad42312c2b9488554f603795f9a2211ba"
+ integrity sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==
+
istanbul-lib-hook@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86"
@@ -5828,6 +8400,13 @@ istanbul-lib-hook@^1.2.2:
dependencies:
append-transform "^0.4.0"
+istanbul-lib-hook@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz#e0e581e461c611be5d0e5ef31c5f0109759916fb"
+ integrity sha512-CLmEqwEhuCYtGcpNVJjLV1DQyVnIqavMLFHV/DP+np/g3qvdxu3gsPqYoJMXm15sN84xOlckFB3VNvRbf5yEgA==
+ dependencies:
+ append-transform "^1.0.0"
+
istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2:
version "1.10.2"
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca"
@@ -5841,6 +8420,19 @@ istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2:
istanbul-lib-coverage "^1.2.1"
semver "^5.3.0"
+istanbul-lib-instrument@^3.0.0, istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz#a2b5484a7d445f1f311e93190813fa56dfb62971"
+ integrity sha512-ooVllVGT38HIk8MxDj/OIHXSYvH+1tq/Vb38s8ixt9GoJadXska4WkGY+0wkmtYCZNYtaARniH/DixUGGLZ0uA==
+ dependencies:
+ "@babel/generator" "^7.0.0"
+ "@babel/parser" "^7.0.0"
+ "@babel/template" "^7.0.0"
+ "@babel/traverse" "^7.0.0"
+ "@babel/types" "^7.0.0"
+ istanbul-lib-coverage "^2.0.3"
+ semver "^5.5.0"
+
istanbul-lib-report@^1.1.5:
version "1.1.5"
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c"
@@ -5851,6 +8443,15 @@ istanbul-lib-report@^1.1.5:
path-parse "^1.0.5"
supports-color "^3.1.2"
+istanbul-lib-report@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz#bfd324ee0c04f59119cb4f07dab157d09f24d7e4"
+ integrity sha512-sOiLZLAWpA0+3b5w5/dq0cjm2rrNdAfHWaGhmn7XEFW6X++IV9Ohn+pnELAl9K3rfpaeBfbmH9JU5sejacdLeA==
+ dependencies:
+ istanbul-lib-coverage "^2.0.3"
+ make-dir "^1.3.0"
+ supports-color "^6.0.0"
+
istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6:
version "1.2.6"
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f"
@@ -5862,6 +8463,17 @@ istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6:
rimraf "^2.6.1"
source-map "^0.5.3"
+istanbul-lib-source-maps@^3.0.1, istanbul-lib-source-maps@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz#f1e817229a9146e8424a28e5d69ba220fda34156"
+ integrity sha512-JX4v0CiKTGp9fZPmoxpu9YEkPbEqCqBbO3403VabKjH+NRXo72HafD5UgnjTEqHL2SAjaZK1XDuDOkn6I5QVfQ==
+ dependencies:
+ debug "^4.1.1"
+ istanbul-lib-coverage "^2.0.3"
+ make-dir "^1.3.0"
+ rimraf "^2.6.2"
+ source-map "^0.6.1"
+
istanbul-reports@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a"
@@ -5869,6 +8481,13 @@ istanbul-reports@^1.5.1:
dependencies:
handlebars "^4.0.3"
+istanbul-reports@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz#72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9"
+ integrity sha512-FzNahnidyEPBCI0HcufJoSEoKykesRlFcSzQqjH9x0+LC8tnnE/p/90PBLu8iZTxr8yYZNyTtiAujUqyN+CIxw==
+ dependencies:
+ handlebars "^4.1.0"
+
jest-changed-files@^23.4.2:
version "23.4.2"
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83"
@@ -5876,6 +8495,15 @@ jest-changed-files@^23.4.2:
dependencies:
throat "^4.0.0"
+jest-changed-files@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.5.0.tgz#4075269ee115d87194fd5822e642af22133cf705"
+ integrity sha512-Ikl29dosYnTsH9pYa1Tv9POkILBhN/TLZ37xbzgNsZ1D2+2n+8oEZS2yP1BrHn/T4Rs4Ggwwbp/x8CKOS5YJOg==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ execa "^1.0.0"
+ throat "^4.0.0"
+
jest-cli@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4"
@@ -5918,6 +8546,25 @@ jest-cli@^23.6.0:
which "^1.2.12"
yargs "^11.0.0"
+jest-cli@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.5.0.tgz#598139d3446d1942fb7dc93944b9ba766d756d4b"
+ integrity sha512-P+Jp0SLO4KWN0cGlNtC7JV0dW1eSFR7eRpoOucP2UM0sqlzp/bVHeo71Omonvigrj9AvCKy7NtQANtqJ7FXz8g==
+ dependencies:
+ "@jest/core" "^24.5.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ chalk "^2.0.1"
+ exit "^0.1.2"
+ import-local "^2.0.0"
+ is-ci "^2.0.0"
+ jest-config "^24.5.0"
+ jest-util "^24.5.0"
+ jest-validate "^24.5.0"
+ prompts "^2.0.1"
+ realpath-native "^1.1.0"
+ yargs "^12.0.2"
+
jest-config@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.6.0.tgz#f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d"
@@ -5938,6 +8585,28 @@ jest-config@^23.6.0:
micromatch "^2.3.11"
pretty-format "^23.6.0"
+jest-config@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.5.0.tgz#404d1bc6bb81aed6bd1890d07e2dca9fbba2e121"
+ integrity sha512-t2UTh0Z2uZhGBNVseF8wA2DS2SuBiLOL6qpLq18+OZGfFUxTM7BzUVKyHFN/vuN+s/aslY1COW95j1Rw81huOQ==
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^24.5.0"
+ babel-jest "^24.5.0"
+ chalk "^2.0.1"
+ glob "^7.1.1"
+ jest-environment-jsdom "^24.5.0"
+ jest-environment-node "^24.5.0"
+ jest-get-type "^24.3.0"
+ jest-jasmine2 "^24.5.0"
+ jest-regex-util "^24.3.0"
+ jest-resolve "^24.5.0"
+ jest-util "^24.5.0"
+ jest-validate "^24.5.0"
+ micromatch "^3.1.10"
+ pretty-format "^24.5.0"
+ realpath-native "^1.1.0"
+
jest-diff@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.6.0.tgz#1500f3f16e850bb3d71233408089be099f610c7d"
@@ -5948,6 +8617,16 @@ jest-diff@^23.6.0:
jest-get-type "^22.1.0"
pretty-format "^23.6.0"
+jest-diff@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.5.0.tgz#a2d8627964bb06a91893c0fbcb28ab228c257652"
+ integrity sha512-mCILZd9r7zqL9Uh6yNoXjwGQx0/J43OD2vvWVKwOEOLZliQOsojXwqboubAQ+Tszrb6DHGmNU7m4whGeB9YOqw==
+ dependencies:
+ chalk "^2.0.1"
+ diff-sequences "^24.3.0"
+ jest-get-type "^24.3.0"
+ pretty-format "^24.5.0"
+
jest-docblock@^23.2.0:
version "23.2.0"
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7"
@@ -5955,6 +8634,13 @@ jest-docblock@^23.2.0:
dependencies:
detect-newline "^2.1.0"
+jest-docblock@^24.3.0:
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd"
+ integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==
+ dependencies:
+ detect-newline "^2.1.0"
+
jest-each@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.6.0.tgz#ba0c3a82a8054387016139c733a05242d3d71575"
@@ -5963,6 +8649,17 @@ jest-each@^23.6.0:
chalk "^2.0.1"
pretty-format "^23.6.0"
+jest-each@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.5.0.tgz#da14d017a1b7d0f01fb458d338314cafe7f72318"
+ integrity sha512-6gy3Kh37PwIT5sNvNY2VchtIFOOBh8UCYnBlxXMb5sr5wpJUDPTUATX2Axq1Vfk+HWTMpsYPeVYp4TXx5uqUBw==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ chalk "^2.0.1"
+ jest-get-type "^24.3.0"
+ jest-util "^24.5.0"
+ pretty-format "^24.5.0"
+
jest-environment-jsdom@^23.4.0:
version "23.4.0"
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023"
@@ -5972,6 +8669,18 @@ jest-environment-jsdom@^23.4.0:
jest-util "^23.4.0"
jsdom "^11.5.1"
+jest-environment-jsdom@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.5.0.tgz#1c3143063e1374100f8c2723a8b6aad23b6db7eb"
+ integrity sha512-62Ih5HbdAWcsqBx2ktUnor/mABBo1U111AvZWcLKeWN/n/gc5ZvDBKe4Og44fQdHKiXClrNGC6G0mBo6wrPeGQ==
+ dependencies:
+ "@jest/environment" "^24.5.0"
+ "@jest/fake-timers" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ jest-mock "^24.5.0"
+ jest-util "^24.5.0"
+ jsdom "^11.5.1"
+
jest-environment-node@^23.4.0:
version "23.4.0"
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10"
@@ -5980,11 +8689,27 @@ jest-environment-node@^23.4.0:
jest-mock "^23.2.0"
jest-util "^23.4.0"
+jest-environment-node@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.5.0.tgz#763eebdf529f75b60aa600c6cf8cb09873caa6ab"
+ integrity sha512-du6FuyWr/GbKLsmAbzNF9mpr2Iu2zWSaq/BNHzX+vgOcts9f2ayXBweS7RAhr+6bLp6qRpMB6utAMF5Ygktxnw==
+ dependencies:
+ "@jest/environment" "^24.5.0"
+ "@jest/fake-timers" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ jest-mock "^24.5.0"
+ jest-util "^24.5.0"
+
jest-get-type@^22.1.0:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w==
+jest-get-type@^24.3.0:
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.3.0.tgz#582cfd1a4f91b5cdad1d43d2932f816d543c65da"
+ integrity sha512-HYF6pry72YUlVcvUx3sEpMRwXEWGEPlJ0bSPVnB3b3n++j4phUEoSPcS6GC0pPJ9rpyPSe4cb5muFo6D39cXow==
+
jest-haste-map@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16"
@@ -5999,6 +8724,21 @@ jest-haste-map@^23.6.0:
micromatch "^2.3.11"
sane "^2.0.0"
+jest-haste-map@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.5.0.tgz#3f17d0c548b99c0c96ed2893f9c0ccecb2eb9066"
+ integrity sha512-mb4Yrcjw9vBgSvobDwH8QUovxApdimGcOkp+V1ucGGw4Uvr3VzZQBJhNm1UY3dXYm4XXyTW2G7IBEZ9pM2ggRQ==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ fb-watchman "^2.0.0"
+ graceful-fs "^4.1.15"
+ invariant "^2.2.4"
+ jest-serializer "^24.4.0"
+ jest-util "^24.5.0"
+ jest-worker "^24.4.0"
+ micromatch "^3.1.10"
+ sane "^4.0.3"
+
jest-jasmine2@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz#840e937f848a6c8638df24360ab869cc718592e0"
@@ -6017,6 +8757,28 @@ jest-jasmine2@^23.6.0:
jest-util "^23.4.0"
pretty-format "^23.6.0"
+jest-jasmine2@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.5.0.tgz#e6af4d7f73dc527d007cca5a5b177c0bcc29d111"
+ integrity sha512-sfVrxVcx1rNUbBeyIyhkqZ4q+seNKyAG6iM0S2TYBdQsXjoFDdqWFfsUxb6uXSsbimbXX/NMkJIwUZ1uT9+/Aw==
+ dependencies:
+ "@babel/traverse" "^7.1.0"
+ "@jest/environment" "^24.5.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ chalk "^2.0.1"
+ co "^4.6.0"
+ expect "^24.5.0"
+ is-generator-fn "^2.0.0"
+ jest-each "^24.5.0"
+ jest-matcher-utils "^24.5.0"
+ jest-message-util "^24.5.0"
+ jest-runtime "^24.5.0"
+ jest-snapshot "^24.5.0"
+ jest-util "^24.5.0"
+ pretty-format "^24.5.0"
+ throat "^4.0.0"
+
jest-leak-detector@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz#e4230fd42cf381a1a1971237ad56897de7e171de"
@@ -6024,6 +8786,13 @@ jest-leak-detector@^23.6.0:
dependencies:
pretty-format "^23.6.0"
+jest-leak-detector@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.5.0.tgz#21ae2b3b0da252c1171cd494f75696d65fb6fa89"
+ integrity sha512-LZKBjGovFRx3cRBkqmIg+BZnxbrLqhQl09IziMk3oeh1OV81Hg30RUIx885mq8qBv1PA0comB9bjKcuyNO1bCQ==
+ dependencies:
+ pretty-format "^24.5.0"
+
jest-matcher-utils@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz#726bcea0c5294261a7417afb6da3186b4b8cac80"
@@ -6033,6 +8802,16 @@ jest-matcher-utils@^23.6.0:
jest-get-type "^22.1.0"
pretty-format "^23.6.0"
+jest-matcher-utils@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.5.0.tgz#5995549dcf09fa94406e89526e877b094dad8770"
+ integrity sha512-QM1nmLROjLj8GMGzg5VBra3I9hLpjMPtF1YqzQS3rvWn2ltGZLrGAO1KQ9zUCVi5aCvrkbS5Ndm2evIP9yZg1Q==
+ dependencies:
+ chalk "^2.0.1"
+ jest-diff "^24.5.0"
+ jest-get-type "^24.3.0"
+ pretty-format "^24.5.0"
+
jest-message-util@^23.4.0:
version "23.4.0"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f"
@@ -6044,21 +8823,52 @@ jest-message-util@^23.4.0:
slash "^1.0.0"
stack-utils "^1.0.1"
+jest-message-util@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.5.0.tgz#181420a65a7ef2e8b5c2f8e14882c453c6d41d07"
+ integrity sha512-6ZYgdOojowCGiV0D8WdgctZEAe+EcFU+KrVds+0ZjvpZurUW2/oKJGltJ6FWY2joZwYXN5VL36GPV6pNVRqRnQ==
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ "@types/stack-utils" "^1.0.1"
+ chalk "^2.0.1"
+ micromatch "^3.1.10"
+ slash "^2.0.0"
+ stack-utils "^1.0.1"
+
jest-mock@^23.2.0:
version "23.2.0"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134"
integrity sha1-rRxg8p6HGdR8JuETgJi20YsmETQ=
+jest-mock@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.5.0.tgz#976912c99a93f2a1c67497a9414aa4d9da4c7b76"
+ integrity sha512-ZnAtkWrKf48eERgAOiUxVoFavVBziO2pAi2MfZ1+bGXVkDfxWLxU0//oJBkgwbsv6OAmuLBz4XFFqvCFMqnGUw==
+ dependencies:
+ "@jest/types" "^24.5.0"
+
jest-pnp-resolver@1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.0.2.tgz#470384ae9ea31f72136db52618aa4010ff23b715"
integrity sha512-H2DvUlwdMedNGv4FOliPDnxani6ATWy70xe2eckGJgkLoMaWzRPqpSlc5ShqX0Ltk5OhRQvPQY2LLZPOpgcc7g==
+jest-pnp-resolver@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a"
+ integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==
+
jest-regex-util@^23.3.0:
version "23.3.0"
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5"
integrity sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U=
+jest-regex-util@^24.3.0:
+ version "24.3.0"
+ resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36"
+ integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==
+
jest-resolve-dependencies@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz#b4526af24c8540d9a3fab102c15081cf509b723d"
@@ -6067,6 +8877,15 @@ jest-resolve-dependencies@^23.6.0:
jest-regex-util "^23.3.0"
jest-snapshot "^23.6.0"
+jest-resolve-dependencies@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.5.0.tgz#1a0dae9cdd41349ca4a84148b3e78da2ba33fd4b"
+ integrity sha512-dRVM1D+gWrFfrq2vlL5P9P/i8kB4BOYqYf3S7xczZ+A6PC3SgXYSErX/ScW/469pWMboM1uAhgLF+39nXlirCQ==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ jest-regex-util "^24.3.0"
+ jest-snapshot "^24.5.0"
+
jest-resolve@23.6.0, jest-resolve@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.6.0.tgz#cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae"
@@ -6076,6 +8895,17 @@ jest-resolve@23.6.0, jest-resolve@^23.6.0:
chalk "^2.0.1"
realpath-native "^1.0.0"
+jest-resolve@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.5.0.tgz#8c16ba08f60a1616c3b1cd7afb24574f50a24d04"
+ integrity sha512-ZIfGqLX1Rg8xJpQqNjdoO8MuxHV1q/i2OO1hLXjgCWFWs5bsedS8UrOdgjUqqNae6DXA+pCyRmdcB7lQEEbXew==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ browser-resolve "^1.11.3"
+ chalk "^2.0.1"
+ jest-pnp-resolver "^1.2.1"
+ realpath-native "^1.1.0"
+
jest-runner@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.6.0.tgz#3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38"
@@ -6095,6 +8925,31 @@ jest-runner@^23.6.0:
source-map-support "^0.5.6"
throat "^4.0.0"
+jest-runner@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.5.0.tgz#9be26ece4fd4ab3dfb528b887523144b7c5ffca8"
+ integrity sha512-oqsiS9TkIZV5dVkD+GmbNfWBRPIvxqmlTQ+AQUJUQ07n+4xTSDc40r+aKBynHw9/tLzafC00DIbJjB2cOZdvMA==
+ dependencies:
+ "@jest/console" "^24.3.0"
+ "@jest/environment" "^24.5.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ chalk "^2.4.2"
+ exit "^0.1.2"
+ graceful-fs "^4.1.15"
+ jest-config "^24.5.0"
+ jest-docblock "^24.3.0"
+ jest-haste-map "^24.5.0"
+ jest-jasmine2 "^24.5.0"
+ jest-leak-detector "^24.5.0"
+ jest-message-util "^24.5.0"
+ jest-resolve "^24.5.0"
+ jest-runtime "^24.5.0"
+ jest-util "^24.5.0"
+ jest-worker "^24.4.0"
+ source-map-support "^0.5.6"
+ throat "^4.0.0"
+
jest-runtime@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.6.0.tgz#059e58c8ab445917cd0e0d84ac2ba68de8f23082"
@@ -6122,11 +8977,45 @@ jest-runtime@^23.6.0:
write-file-atomic "^2.1.0"
yargs "^11.0.0"
+jest-runtime@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.5.0.tgz#3a76e0bfef4db3896d5116e9e518be47ba771aa2"
+ integrity sha512-GTFHzfLdwpaeoDPilNpBrorlPoNZuZrwKKzKJs09vWwHo+9TOsIIuszK8cWOuKC7ss07aN1922Ge8fsGdsqCuw==
+ dependencies:
+ "@jest/console" "^24.3.0"
+ "@jest/environment" "^24.5.0"
+ "@jest/source-map" "^24.3.0"
+ "@jest/transform" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ "@types/yargs" "^12.0.2"
+ chalk "^2.0.1"
+ exit "^0.1.2"
+ glob "^7.1.3"
+ graceful-fs "^4.1.15"
+ jest-config "^24.5.0"
+ jest-haste-map "^24.5.0"
+ jest-message-util "^24.5.0"
+ jest-mock "^24.5.0"
+ jest-regex-util "^24.3.0"
+ jest-resolve "^24.5.0"
+ jest-snapshot "^24.5.0"
+ jest-util "^24.5.0"
+ jest-validate "^24.5.0"
+ realpath-native "^1.1.0"
+ slash "^2.0.0"
+ strip-bom "^3.0.0"
+ yargs "^12.0.2"
+
jest-serializer@^23.0.1:
version "23.0.1"
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165"
integrity sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU=
+jest-serializer@^24.4.0:
+ version "24.4.0"
+ resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3"
+ integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==
+
jest-snapshot@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.6.0.tgz#f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a"
@@ -6143,6 +9032,24 @@ jest-snapshot@^23.6.0:
pretty-format "^23.6.0"
semver "^5.5.0"
+jest-snapshot@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.5.0.tgz#e5d224468a759fd19e36f01217aac912f500f779"
+ integrity sha512-eBEeJb5ROk0NcpodmSKnCVgMOo+Qsu5z9EDl3tGffwPzK1yV37mjGWF2YeIz1NkntgTzP+fUL4s09a0+0dpVWA==
+ dependencies:
+ "@babel/types" "^7.0.0"
+ "@jest/types" "^24.5.0"
+ chalk "^2.0.1"
+ expect "^24.5.0"
+ jest-diff "^24.5.0"
+ jest-matcher-utils "^24.5.0"
+ jest-message-util "^24.5.0"
+ jest-resolve "^24.5.0"
+ mkdirp "^0.5.1"
+ natural-compare "^1.4.0"
+ pretty-format "^24.5.0"
+ semver "^5.5.0"
+
jest-util@^23.4.0:
version "23.4.0"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561"
@@ -6157,6 +9064,25 @@ jest-util@^23.4.0:
slash "^1.0.0"
source-map "^0.6.0"
+jest-util@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.5.0.tgz#9d9cb06d9dcccc8e7cc76df91b1635025d7baa84"
+ integrity sha512-Xy8JsD0jvBz85K7VsTIQDuY44s+hYJyppAhcsHsOsGisVtdhar6fajf2UOf2mEVEgh15ZSdA0zkCuheN8cbr1Q==
+ dependencies:
+ "@jest/console" "^24.3.0"
+ "@jest/fake-timers" "^24.5.0"
+ "@jest/source-map" "^24.3.0"
+ "@jest/test-result" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ "@types/node" "*"
+ callsites "^3.0.0"
+ chalk "^2.0.1"
+ graceful-fs "^4.1.15"
+ is-ci "^2.0.0"
+ mkdirp "^0.5.1"
+ slash "^2.0.0"
+ source-map "^0.6.0"
+
jest-validate@^23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474"
@@ -6167,6 +9093,18 @@ jest-validate@^23.6.0:
leven "^2.1.0"
pretty-format "^23.6.0"
+jest-validate@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.5.0.tgz#62fd93d81214c070bb2d7a55f329a79d8057c7de"
+ integrity sha512-gg0dYszxjgK2o11unSIJhkOFZqNRQbWOAB2/LOUdsd2LfD9oXiMeuee8XsT0iRy5EvSccBgB4h/9HRbIo3MHgQ==
+ dependencies:
+ "@jest/types" "^24.5.0"
+ camelcase "^5.0.0"
+ chalk "^2.0.1"
+ jest-get-type "^24.3.0"
+ leven "^2.1.0"
+ pretty-format "^24.5.0"
+
jest-watch-typeahead@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.2.1.tgz#6c40f232996ca6c39977e929e9f79b189e7d87e4"
@@ -6188,6 +9126,20 @@ jest-watcher@^23.1.0, jest-watcher@^23.4.0:
chalk "^2.0.1"
string-length "^2.0.0"
+jest-watcher@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.5.0.tgz#da7bd9cb5967e274889b42078c8f501ae1c47761"
+ integrity sha512-/hCpgR6bg0nKvD3nv4KasdTxuhwfViVMHUATJlnGCD0r1QrmIssimPbmc5KfAQblAVxkD8xrzuij9vfPUk1/rA==
+ dependencies:
+ "@jest/test-result" "^24.5.0"
+ "@jest/types" "^24.5.0"
+ "@types/node" "*"
+ "@types/yargs" "^12.0.9"
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.1"
+ jest-util "^24.5.0"
+ string-length "^2.0.0"
+
jest-worker@^23.2.0:
version "23.2.0"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9"
@@ -6195,6 +9147,15 @@ jest-worker@^23.2.0:
dependencies:
merge-stream "^1.0.1"
+jest-worker@^24.4.0:
+ version "24.4.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.4.0.tgz#fbc452b0120bb5c2a70cdc88fa132b48eeb11dd0"
+ integrity sha512-BH9X/klG9vxwoO99ZBUbZFfV8qO0XNZ5SIiCyYK2zOuJBl6YJVAeNIQjcoOVNu4HGEHeYEKsUWws8kSlSbZ9YQ==
+ dependencies:
+ "@types/node" "*"
+ merge-stream "^1.0.1"
+ supports-color "^6.1.0"
+
jest@23.6.0:
version "23.6.0"
resolved "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d"
@@ -6203,6 +9164,14 @@ jest@23.6.0:
import-local "^1.0.0"
jest-cli "^23.6.0"
+jest@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/jest/-/jest-24.5.0.tgz#38f11ae2c2baa2f86c2bc4d8a91d2b51612cd19a"
+ integrity sha512-lxL+Fq5/RH7inxxmfS2aZLCf8MsS+YCUBfeiNO6BWz/MmjhDGaIEA/2bzEf9q4Q0X+mtFHiinHFvQ0u+RvW/qQ==
+ dependencies:
+ import-local "^2.0.0"
+ jest-cli "^24.5.0"
+
joi@^11.1.1:
version "11.4.0"
resolved "https://registry.yarnpkg.com/joi/-/joi-11.4.0.tgz#f674897537b625e9ac3d0b7e1604c828ad913ccb"
@@ -6212,6 +9181,22 @@ joi@^11.1.1:
isemail "3.x.x"
topo "2.x.x"
+js-base64@^2.1.9:
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121"
+ integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==
+
+js-beautify@^1.8.9:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.9.0.tgz#2562fcdee340f9f962ae2ec4a8a40e7aaa6d964f"
+ integrity sha512-P0skmY4IDjfLiVrx+GLDeme8w5G0R1IGXgccVU5HP2VM3lRblH7qN2LTea5vZAxrDjpZBD0Jv+ahpjwVcbz/rw==
+ dependencies:
+ config-chain "^1.1.12"
+ editorconfig "^0.15.2"
+ glob "^7.1.3"
+ mkdirp "~0.5.0"
+ nopt "~4.0.1"
+
js-levenshtein@^1.1.3:
version "1.1.6"
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
@@ -6287,7 +9272,7 @@ jsesc@~0.5.0:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
+json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
@@ -6314,7 +9299,7 @@ json-stable-stringify@^1.0.1:
dependencies:
jsonify "~0.0.0"
-json-stringify-safe@~5.0.1:
+json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
@@ -6324,7 +9309,7 @@ json3@^3.3.2:
resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
integrity sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=
-json5@^0.5.1:
+json5@^0.5.0, json5@^0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
@@ -6343,6 +9328,13 @@ json5@^2.1.0:
dependencies:
minimist "^1.2.0"
+jsonfile@^2.1.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
+ integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
jsonfile@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
@@ -6355,6 +9347,11 @@ jsonify@~0.0.0:
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
+jsonparse@^1.2.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
+ integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
+
jsprim@^1.2.2:
version "1.4.1"
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
@@ -6372,6 +9369,11 @@ jsx-ast-utils@^2.0.1:
dependencies:
array-includes "^3.0.3"
+keycode@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.2.0.tgz#3d0af56dc7b8b8e5cba8d0a97f107204eec22b04"
+ integrity sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=
+
killable@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
@@ -6408,11 +9410,28 @@ kind-of@^6.0.0, kind-of@^6.0.2:
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
+klaw@^1.0.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
+ integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
+ optionalDependencies:
+ graceful-fs "^4.1.9"
+
kleur@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300"
integrity sha512-77XF9iTllATmG9lSlIv0qdQ2BQ/h9t0bJllHlbvsQ0zUWfU7Yi0S8L5JXzPZgkefIiajLmBJJ4BsMJmqcf7oxQ==
+kleur@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.2.tgz#83c7ec858a41098b613d5998a7b653962b504f68"
+ integrity sha512-3h7B2WRT5LNXOtQiAaWonilegHcPSf9nLVXlSTci8lu1dZUuui61+EsPEZqSVxY7rXYmB2DVKMQILxaO5WL61Q==
+
+known-css-properties@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.5.0.tgz#6ff66943ed4a5b55657ee095779a91f4536f8084"
+ integrity sha512-LOS0CoS8zcZnB1EjLw4LLqDXw8nvt3AGH5dXLQP3D9O1nLLA+9GC5GnPl5mmF+JiQAtSX4VyZC7KvEtcA4kUtA==
+
last-call-webpack-plugin@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
@@ -6421,6 +9440,13 @@ last-call-webpack-plugin@^3.0.0:
lodash "^4.17.5"
webpack-sources "^1.1.0"
+latest-version@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
+ integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=
+ dependencies:
+ package-json "^4.0.0"
+
lazy-cache@^0.2.3:
version "0.2.7"
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65"
@@ -6431,6 +9457,17 @@ lazy-cache@^1.0.3:
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4=
+lazy-universal-dotenv@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-2.0.0.tgz#e015ad9f77be9ef811956d53ea9519b1c0ab0214"
+ integrity sha512-1Wi0zgZMfRLaRAK21g3odYuU+HE1d85Loe2tb44YhcNwIzhmD49mTPR9aKckpB9Q9Q9mA+hUMLI2xlkcCAe3yw==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ app-root-dir "^1.0.2"
+ core-js "^2.5.7"
+ dotenv "^6.0.0"
+ dotenv-expand "^4.2.0"
+
lcid@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
@@ -6450,6 +9487,29 @@ left-pad@^1.3.0:
resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==
+lerna@^3.13.0:
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.13.1.tgz#feaff562176f304bd82329ca29ce46ab6c033463"
+ integrity sha512-7kSz8LLozVsoUNTJzJzy+b8TnV9YdviR2Ee2PwGZSlVw3T1Rn7kOAPZjEi+3IWnOPC96zMPHVmjCmzQ4uubalw==
+ dependencies:
+ "@lerna/add" "3.13.1"
+ "@lerna/bootstrap" "3.13.1"
+ "@lerna/changed" "3.13.1"
+ "@lerna/clean" "3.13.1"
+ "@lerna/cli" "3.13.0"
+ "@lerna/create" "3.13.1"
+ "@lerna/diff" "3.13.1"
+ "@lerna/exec" "3.13.1"
+ "@lerna/import" "3.13.1"
+ "@lerna/init" "3.13.1"
+ "@lerna/link" "3.13.1"
+ "@lerna/list" "3.13.1"
+ "@lerna/publish" "3.13.1"
+ "@lerna/run" "3.13.1"
+ "@lerna/version" "3.13.1"
+ import-local "^1.0.0"
+ npmlog "^4.1.2"
+
leven@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
@@ -6463,6 +9523,31 @@ levn@^0.3.0, levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"
+libnpmaccess@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-3.0.1.tgz#5b3a9de621f293d425191aa2e779102f84167fa8"
+ integrity sha512-RlZ7PNarCBt+XbnP7R6PoVgOq9t+kou5rvhaInoNibhPO7eMlRfS0B8yjatgn2yaHIwWNyoJDolC/6Lc5L/IQA==
+ dependencies:
+ aproba "^2.0.0"
+ get-stream "^4.0.0"
+ npm-package-arg "^6.1.0"
+ npm-registry-fetch "^3.8.0"
+
+libnpmpublish@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-1.1.1.tgz#ff0c6bb0b4ad2bda2ad1f5fba6760a4af37125f0"
+ integrity sha512-nefbvJd/wY38zdt+b9SHL6171vqBrMtZ56Gsgfd0duEKb/pB8rDT4/ObUQLrHz1tOfht1flt2zM+UGaemzAG5g==
+ dependencies:
+ aproba "^2.0.0"
+ figgy-pudding "^3.5.1"
+ get-stream "^4.0.0"
+ lodash.clonedeep "^4.5.0"
+ normalize-package-data "^2.4.0"
+ npm-package-arg "^6.1.0"
+ npm-registry-fetch "^3.8.0"
+ semver "^5.5.1"
+ ssri "^6.0.1"
+
load-json-file@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
@@ -6484,6 +9569,16 @@ load-json-file@^2.0.0:
pify "^2.0.0"
strip-bom "^3.0.0"
+load-json-file@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
+ integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
+ dependencies:
+ graceful-fs "^4.1.2"
+ parse-json "^4.0.0"
+ pify "^3.0.0"
+ strip-bom "^3.0.0"
+
loader-fs-cache@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc"
@@ -6497,7 +9592,16 @@ loader-runner@^2.3.0:
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
-loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0:
+loader-utils@1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
+ integrity sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=
+ dependencies:
+ big.js "^3.1.3"
+ emojis-list "^2.0.0"
+ json5 "^0.5.0"
+
+loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
@@ -6522,6 +9626,11 @@ locate-path@^3.0.0:
p-locate "^3.0.0"
path-exists "^3.0.0"
+lodash-es@^4.17.11:
+ version "4.17.11"
+ resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.11.tgz#145ab4a7ac5c5e52a3531fb4f310255a152b4be0"
+ integrity sha512-DHb1ub+rMjjrxqlB3H56/6MXtm1lSksDp2rA2cNWjG8mlDUYFhUj3Di2Zn5IwSU87xLv8tNIQ7sSwE/YOX/D/Q==
+
lodash._reinterpolate@~3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
@@ -6532,6 +9641,16 @@ lodash.camelcase@^4.3.0:
resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
+lodash.clonedeep@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
+ integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
+
+lodash.debounce@^4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
+ integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
+
lodash.escape@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98"
@@ -6562,6 +9681,21 @@ lodash.memoize@^4.1.2:
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
+lodash.mergewith@^4.6.1:
+ version "4.6.1"
+ resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927"
+ integrity sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==
+
+lodash.pick@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
+ integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=
+
+lodash.set@^4.3.2:
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
+ integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=
+
lodash.some@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d"
@@ -6577,7 +9711,7 @@ lodash.tail@^4.1.1:
resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=
-lodash.template@^4.2.4, lodash.template@^4.4.0:
+lodash.template@^4.0.2, lodash.template@^4.2.4, lodash.template@^4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
integrity sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=
@@ -6592,34 +9726,72 @@ lodash.templatesettings@^4.0.0:
dependencies:
lodash._reinterpolate "~3.0.0"
+lodash.throttle@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
+ integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
+
lodash.uniq@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-"lodash@>=3.5 <5", lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5:
+"lodash@>=3.5 <5", lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1:
version "4.17.11"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
+log-symbols@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
+ integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
+ dependencies:
+ chalk "^2.0.1"
+
loglevel@^1.4.1:
version "1.6.1"
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"
integrity sha1-4PyVEztu8nbNyIh82vJKpvFW+Po=
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
+longest-streak@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz#2421b6ba939a443bb9ffebf596585a50b4c38e2e"
+ integrity sha512-TmYTeEYxiAmSVdpbnQDXGtvYOIRsCMg89CVZzwzc2o7GFL1CjoiRPjH5ec0NFAVlAx3fVof9dX/t6KKRAo2OWA==
+
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
+loud-rejection@^1.0.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
+ integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=
+ dependencies:
+ currently-unhandled "^0.4.1"
+ signal-exit "^3.0.0"
+
lower-case@^1.1.1:
version "1.1.4"
resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw=
-lru-cache@^4.0.1:
+lowercase-keys@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+ integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
+
+lowlight@~1.9.1:
+ version "1.9.2"
+ resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.9.2.tgz#0b9127e3cec2c3021b7795dd81005c709a42fdd1"
+ integrity sha512-Ek18ElVCf/wF/jEm1b92gTnigh94CtBNWiZ2ad+vTgW7cTmQxUY3I98BjHK68gZAJEWmybGBZgx9qv3QxLQB/Q==
+ dependencies:
+ fault "^1.0.2"
+ highlight.js "~9.12.0"
+
+lru-cache@^4.0.1, lru-cache@^4.1.2, lru-cache@^4.1.3, lru-cache@^4.1.5:
version "4.1.5"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
@@ -6634,13 +9806,48 @@ lru-cache@^5.1.1:
dependencies:
yallist "^3.0.2"
-make-dir@^1.0.0:
+macos-release@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.1.0.tgz#c87935891fbeb0dba7537913fc66f469fee9d662"
+ integrity sha512-8TCbwvN1mfNxbBv0yBtfyIFMo3m1QsNbKHv7PYIp/abRBKVQBXN7ecu3aeGGgT18VC/Tf397LBDGZF9KBGJFFw==
+
+make-dir@^1.0.0, make-dir@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
dependencies:
pify "^3.0.0"
+make-dir@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
+make-error@^1.3.5:
+ version "1.3.5"
+ resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8"
+ integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==
+
+make-fetch-happen@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-4.0.1.tgz#141497cb878f243ba93136c83d8aba12c216c083"
+ integrity sha512-7R5ivfy9ilRJ1EMKIOziwrns9fGeAD4bAha8EB7BIiBBLHm2KeTUGCrICFt2rbHfzheTLynv50GnNTK1zDTrcQ==
+ dependencies:
+ agentkeepalive "^3.4.1"
+ cacache "^11.0.1"
+ http-cache-semantics "^3.8.1"
+ http-proxy-agent "^2.1.0"
+ https-proxy-agent "^2.2.1"
+ lru-cache "^4.1.2"
+ mississippi "^3.0.0"
+ node-fetch-npm "^2.0.2"
+ promise-retry "^1.1.1"
+ socks-proxy-agent "^4.0.0"
+ ssri "^6.0.0"
+
makeerror@1.0.x:
version "1.0.11"
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
@@ -6648,6 +9855,11 @@ makeerror@1.0.x:
dependencies:
tmpl "1.0.x"
+mamacro@^0.0.3:
+ version "0.0.3"
+ resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
+ integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
+
map-age-cleaner@^0.1.1:
version "0.1.3"
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
@@ -6660,18 +9872,56 @@ map-cache@^0.2.2:
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
+map-obj@^1.0.0, map-obj@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
+ integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
+
+map-obj@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
+ integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk=
+
+map-or-similar@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08"
+ integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=
+
map-visit@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
dependencies:
- object-visit "^1.0.0"
+ object-visit "^1.0.0"
+
+markdown-escapes@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.2.tgz#e639cbde7b99c841c0bacc8a07982873b46d2122"
+ integrity sha512-lbRZ2mE3Q9RtLjxZBZ9+IMl68DKIXaVAhwvwn9pmjnPLS0h/6kyBMgNhqi1xFJ/2yv6cSyv0jbiZavZv93JkkA==
+
+markdown-table@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.2.tgz#c78db948fa879903a41bce522e3b96f801c63786"
+ integrity sha512-NcWuJFHDA8V3wkDgR/j4+gZx+YQwstPgfQDV8ndUeWWzta3dnDTBxpVzqS9lkmJAuV5YX35lmyojl6HO5JXAgw==
+
+markdown-to-jsx@^6.9.1:
+ version "6.9.3"
+ resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.9.3.tgz#31719e3c54517ba9805db81d53701b89f5d2ed7e"
+ integrity sha512-iXteiv317VZd1vk/PBH5MWMD4r0XWekoWCHRVVadBcnCtxavhtfV1UaEaQgq9KyckTv31L60ASh5ZVVrOh37Qg==
+ dependencies:
+ prop-types "^15.6.2"
+ unquote "^1.1.0"
math-random@^1.0.1:
version "1.0.4"
resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c"
integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==
+mathml-tag-names@^2.0.1:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.0.tgz#490b70e062ee24636536e3d9481e333733d00f2c"
+ integrity sha512-3Zs9P/0zzwTob2pdgT0CHZuMbnSUSp8MB1bddfm+HDmnFWHGT4jvEZRf+2RuPoa+cjdn/z25SEt5gFTqdhvJAg==
+
md5.js@^1.3.4:
version "1.3.5"
resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
@@ -6681,6 +9931,13 @@ md5.js@^1.3.4:
inherits "^2.0.1"
safe-buffer "^5.1.2"
+mdast-util-compact@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.2.tgz#c12ebe16fffc84573d3e19767726de226e95f649"
+ integrity sha512-d2WS98JSDVbpSsBfVvD9TaDMlqPRz7ohM/11G0rp5jOBb5q96RJ6YLszQ/09AAixyzh23FeIpCGqfaamEADtWg==
+ dependencies:
+ unist-util-visit "^1.1.0"
+
mdn-data@~1.1.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01"
@@ -6699,12 +9956,12 @@ mem@^1.1.0:
mimic-fn "^1.0.0"
mem@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/mem/-/mem-4.1.0.tgz#aeb9be2d21f47e78af29e4ac5978e8afa2ca5b8a"
- integrity sha512-I5u6Q1x7wxO0kdOpYBB28xueHADYps5uty/zg936CiG8NTe5sJL8EjrCuLneuDW3PlMdZBGDIn8BirEVdovZvg==
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/mem/-/mem-4.2.0.tgz#5ee057680ed9cb8dad8a78d820f9a8897a102025"
+ integrity sha512-5fJxa68urlY0Ir8ijatKa3eRz5lwXnRCTvo9+TbTGAuTFJOwpGcY0X05moBd0nW45965Njt4CDI2GFQoG8DvqA==
dependencies:
map-age-cleaner "^0.1.1"
- mimic-fn "^1.0.0"
+ mimic-fn "^2.0.0"
p-is-promise "^2.0.0"
memoize-one@^4.0.0:
@@ -6712,7 +9969,14 @@ memoize-one@^4.0.0:
resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-4.1.0.tgz#a2387c58c03fff27ca390c31b764a79addf3f906"
integrity sha512-2GApq0yI/b22J2j9rhbrAlsHb0Qcz+7yWxeLG8h+95sl1XPUgeLimQSOdur4Vw7cUhrBHwaUZxWFZueojqNRzA==
-memory-fs@^0.4.0, memory-fs@~0.4.1:
+memoizerific@^1.11.3:
+ version "1.11.3"
+ resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a"
+ integrity sha1-fIekZGREwy11Q4VwkF8tvRsagFo=
+ dependencies:
+ map-or-similar "^1.5.0"
+
+memory-fs@^0.4.0, memory-fs@^0.4.1, memory-fs@~0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
@@ -6720,6 +9984,37 @@ memory-fs@^0.4.0, memory-fs@~0.4.1:
errno "^0.1.3"
readable-stream "^2.0.1"
+meow@^3.3.0, meow@^3.7.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
+ integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
+ dependencies:
+ camelcase-keys "^2.0.0"
+ decamelize "^1.1.2"
+ loud-rejection "^1.0.0"
+ map-obj "^1.0.1"
+ minimist "^1.1.3"
+ normalize-package-data "^2.3.4"
+ object-assign "^4.0.1"
+ read-pkg-up "^1.0.1"
+ redent "^1.0.0"
+ trim-newlines "^1.0.0"
+
+meow@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975"
+ integrity sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==
+ dependencies:
+ camelcase-keys "^4.0.0"
+ decamelize-keys "^1.0.0"
+ loud-rejection "^1.0.0"
+ minimist "^1.1.3"
+ minimist-options "^3.0.1"
+ normalize-package-data "^2.3.4"
+ read-pkg-up "^3.0.0"
+ redent "^2.0.0"
+ trim-newlines "^2.0.0"
+
merge-deep@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2"
@@ -6829,7 +10124,19 @@ mimic-fn@^1.0.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-mini-css-extract-plugin@0.5.0:
+mimic-fn@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.0.0.tgz#0913ff0b121db44ef5848242c38bbb35d44cabde"
+ integrity sha512-jbex9Yd/3lmICXwYT6gA/j2mNQGU48wCh/VzRd+/Y/PjYQtlg1gLMdZqvu9s/xH7qKvngxRObl56XZR609IMbA==
+
+min-document@^2.19.0:
+ version "2.19.0"
+ resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
+ integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
+ dependencies:
+ dom-walk "^0.1.0"
+
+mini-css-extract-plugin@0.5.0, mini-css-extract-plugin@^0.5.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.5.0.tgz#ac0059b02b9692515a637115b0cc9fed3a35c7b0"
integrity sha512-IuaLjruM0vMKhUUT51fQdQzBYTX49dLj8w68ALEAe2A4iYNpIC4eMac67mt3NzycvjOlf07/kYxJDc0RTl1Wqw==
@@ -6848,19 +10155,32 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-minimatch@3.0.4, minimatch@^3.0.3, minimatch@^3.0.4:
+minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
dependencies:
brace-expansion "^1.1.7"
+minimist-options@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
+ integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
+ dependencies:
+ arrify "^1.0.1"
+ is-plain-obj "^1.1.0"
+
minimist@0.0.8:
version "0.0.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
-minimist@^1.1.1, minimist@^1.2.0:
+minimist@1.1.x:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.1.3.tgz#3bedfd91a92d39016fcfaa1c681e8faa1a1efda8"
+ integrity sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=
+
+minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
@@ -6870,7 +10190,7 @@ minimist@~0.0.1:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=
-minipass@^2.2.1, minipass@^2.3.4:
+minipass@^2.2.1, minipass@^2.3.4, minipass@^2.3.5:
version "2.3.5"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==
@@ -6917,13 +10237,18 @@ mixin-object@^2.0.1:
for-in "^0.1.3"
is-extendable "^0.1.1"
-mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
+mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
dependencies:
minimist "0.0.8"
+modify-values@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
+ integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
+
moo@^0.4.3:
version "0.4.3"
resolved "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e"
@@ -6956,7 +10281,7 @@ ms@2.0.0:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-ms@^2.1.1:
+ms@2.1.1, ms@^2.0.0, ms@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
@@ -6974,15 +10299,30 @@ multicast-dns@^6.0.1:
dns-packet "^1.3.1"
thunky "^1.0.2"
+multimatch@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"
+ integrity sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=
+ dependencies:
+ array-differ "^1.0.0"
+ array-union "^1.0.1"
+ arrify "^1.0.0"
+ minimatch "^3.0.0"
+
mute-stream@0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
+mute-stream@~0.0.4:
+ version "0.0.8"
+ resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+ integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
+
nan@^2.9.2:
- version "2.12.1"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552"
- integrity sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==
+ version "2.13.1"
+ resolved "https://registry.yarnpkg.com/nan/-/nan-2.13.1.tgz#a15bee3790bde247e8f38f1d446edcdaeb05f2dd"
+ integrity sha512-I6YB/YEuDeUZMmhscXKxGgZlFnhsn5y0hgOZBadkzfTRrZBtJDZeg6eQf7PYMIEclwmorTKK8GztsyOUSVBREA==
nanomatch@^1.2.9:
version "1.2.13"
@@ -7031,7 +10371,7 @@ negotiator@0.6.1:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=
-neo-async@^2.5.0:
+neo-async@^2.5.0, neo-async@^2.6.0:
version "2.6.0"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835"
integrity sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==
@@ -7048,6 +10388,22 @@ no-case@^2.2.0:
dependencies:
lower-case "^1.1.1"
+node-dir@^0.1.10:
+ version "0.1.17"
+ resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
+ integrity sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=
+ dependencies:
+ minimatch "^3.0.2"
+
+node-fetch-npm@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz#7258c9046182dca345b4208eda918daf33697ff7"
+ integrity sha512-nJIxm1QmAj4v3nfCvEeCrYSoVwXyxLnaPBK5W1W5DGEJwjlKuC2VEUycGw5oxk+4zZahRrB84PUJJgEmhFTDFw==
+ dependencies:
+ encoding "^0.1.11"
+ json-parse-better-errors "^1.0.0"
+ safe-buffer "^5.1.1"
+
node-fetch@^1.0.1:
version "1.7.3"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
@@ -7056,11 +10412,34 @@ node-fetch@^1.0.1:
encoding "^0.1.11"
is-stream "^1.0.1"
+node-fetch@^2.2.0, node-fetch@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.3.0.tgz#1a1d940bbfb916a1d3e0219f037e89e71f8c5fa5"
+ integrity sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==
+
node-forge@0.7.5:
version "0.7.5"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.5.tgz#6c152c345ce11c52f465c2abd957e8639cd674df"
integrity sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==
+node-gyp@^3.8.0:
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c"
+ integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==
+ dependencies:
+ fstream "^1.0.0"
+ glob "^7.0.3"
+ graceful-fs "^4.1.2"
+ mkdirp "^0.5.0"
+ nopt "2 || 3"
+ npmlog "0 || 1 || 2 || 3 || 4"
+ osenv "0"
+ request "^2.87.0"
+ rimraf "2"
+ semver "~5.3.0"
+ tar "^2.0.0"
+ which "1"
+
node-int64@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
@@ -7095,6 +10474,11 @@ node-libs-browser@^2.0.0:
util "^0.11.0"
vm-browserify "0.0.4"
+node-modules-regexp@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
+ integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
+
node-notifier@^5.2.1:
version "5.4.0"
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a"
@@ -7122,14 +10506,26 @@ node-pre-gyp@^0.10.0:
semver "^5.3.0"
tar "^4"
-node-releases@^1.1.3, node-releases@^1.1.8:
- version "1.1.10"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.10.tgz#5dbeb6bc7f4e9c85b899e2e7adcc0635c9b2adf7"
- integrity sha512-KbUPCpfoBvb3oBkej9+nrU0/7xPlVhmhhUJ1PZqwIP5/1dJkRWKWD3OONjo6M2J7tSCBtDCumLwwqeI+DWWaLQ==
+node-releases@^1.1.11, node-releases@^1.1.3:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.11.tgz#9a0841a4b0d92b7d5141ed179e764f42ad22724a"
+ integrity sha512-8v1j5KfP+s5WOTa1spNUAOfreajQPN12JXbRR0oDE+YrJBQCXBnNqUDj27EKpPLOoSiU3tKi3xGPB+JaOdUEQQ==
dependencies:
semver "^5.3.0"
-nopt@^4.0.1:
+node-version@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/node-version/-/node-version-1.2.0.tgz#34fde3ffa8e1149bd323983479dda620e1b5060d"
+ integrity sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ==
+
+"nopt@2 || 3":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
+ integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k=
+ dependencies:
+ abbrev "1"
+
+nopt@^4.0.1, nopt@~4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
@@ -7137,7 +10533,7 @@ nopt@^4.0.1:
abbrev "1"
osenv "^0.1.4"
-normalize-package-data@^2.3.2:
+normalize-package-data@^2.0.0, normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.4.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
@@ -7164,17 +10560,12 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
-normalize-url@^1.0.0:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
- integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
- dependencies:
- object-assign "^4.0.1"
- prepend-http "^1.0.0"
- query-string "^4.1.0"
- sort-keys "^1.0.0"
+normalize-selector@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03"
+ integrity sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=
-normalize-url@^3.0.0:
+normalize-url@^3.0.0, normalize-url@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
@@ -7184,7 +10575,31 @@ npm-bundled@^1.0.1:
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
-npm-packlist@^1.1.6:
+npm-lifecycle@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-2.1.0.tgz#1eda2eedb82db929e3a0c50341ab0aad140ed569"
+ integrity sha512-QbBfLlGBKsktwBZLj6AviHC6Q9Y3R/AY4a2PYSIRhSKSS0/CxRyD/PfxEX6tPeOCXQgMSNdwGeECacstgptc+g==
+ dependencies:
+ byline "^5.0.0"
+ graceful-fs "^4.1.11"
+ node-gyp "^3.8.0"
+ resolve-from "^4.0.0"
+ slide "^1.1.6"
+ uid-number "0.0.6"
+ umask "^1.1.0"
+ which "^1.3.1"
+
+"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1"
+ integrity sha512-zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA==
+ dependencies:
+ hosted-git-info "^2.6.0"
+ osenv "^0.1.5"
+ semver "^5.5.0"
+ validate-npm-package-name "^3.0.0"
+
+npm-packlist@^1.1.12, npm-packlist@^1.1.6, npm-packlist@^1.4.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc"
integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==
@@ -7192,6 +10607,27 @@ npm-packlist@^1.1.6:
ignore-walk "^3.0.1"
npm-bundled "^1.0.1"
+npm-pick-manifest@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-2.2.3.tgz#32111d2a9562638bb2c8f2bf27f7f3092c8fae40"
+ integrity sha512-+IluBC5K201+gRU85vFlUwX3PFShZAbAgDNp2ewJdWMVSppdo/Zih0ul2Ecky/X7b51J7LrrUAP+XOmOCvYZqA==
+ dependencies:
+ figgy-pudding "^3.5.1"
+ npm-package-arg "^6.0.0"
+ semver "^5.4.1"
+
+npm-registry-fetch@^3.8.0, npm-registry-fetch@^3.9.0:
+ version "3.9.0"
+ resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-3.9.0.tgz#44d841780e2833f06accb34488f8c7450d1a6856"
+ integrity sha512-srwmt8YhNajAoSAaDWndmZgx89lJwIZ1GWxOuckH4Coek4uHv5S+o/l9FLQe/awA+JwTnj4FJHldxhlXdZEBmw==
+ dependencies:
+ JSONStream "^1.3.4"
+ bluebird "^3.5.1"
+ figgy-pudding "^3.4.1"
+ lru-cache "^4.1.3"
+ make-fetch-happen "^4.0.1"
+ npm-package-arg "^6.1.0"
+
npm-run-path@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
@@ -7199,7 +10635,7 @@ npm-run-path@^2.0.0:
dependencies:
path-key "^2.0.0"
-npmlog@^4.0.2:
+"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2, npmlog@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
@@ -7297,6 +10733,16 @@ object.entries@^1.0.4:
function-bind "^1.1.1"
has "^1.0.3"
+object.fromentries@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-1.0.0.tgz#e90ec27445ec6e37f48be9af9077d9aa8bef0d40"
+ integrity sha512-F7XUm84lg0uNXNzrRAC5q8KJe0yYaxgLU9hTSqWYM6Rfnh0YjP24EG3xq7ncj2Wu1AdfueNHKCOlamIonG4UHQ==
+ dependencies:
+ define-properties "^1.1.2"
+ es-abstract "^1.11.0"
+ function-bind "^1.1.1"
+ has "^1.0.1"
+
object.fromentries@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab"
@@ -7323,6 +10769,13 @@ object.omit@^2.0.0:
for-own "^0.1.4"
is-extendable "^0.1.1"
+object.omit@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-3.0.0.tgz#0e3edc2fce2ba54df5577ff529f6d97bd8a522af"
+ integrity sha512-EO+BCv6LJfu+gBIF3ggLicFebFLN5zqzz/WWJlMFfkMyGth+oBkhxzDl0wx2W4GkLzuQs/FsSkXZb2IMWQqmBQ==
+ dependencies:
+ is-extendable "^1.0.0"
+
object.pick@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
@@ -7345,6 +10798,11 @@ obuf@^1.0.0, obuf@^1.1.2:
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+octokit-pagination-methods@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4"
+ integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==
+
on-finished@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
@@ -7352,7 +10810,7 @@ on-finished@~2.3.0:
dependencies:
ee-first "1.1.1"
-on-headers@~1.0.1:
+on-headers@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
@@ -7371,13 +10829,20 @@ onetime@^2.0.0:
dependencies:
mimic-fn "^1.0.0"
-opn@5.4.0, opn@^5.1.0:
+opn@5.4.0:
version "5.4.0"
resolved "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035"
integrity sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw==
dependencies:
is-wsl "^1.1.0"
+opn@^5.1.0, opn@^5.4.0:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
+ integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
+ dependencies:
+ is-wsl "^1.1.0"
+
optimist@^0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
@@ -7441,12 +10906,20 @@ os-locale@^3.0.0:
lcid "^2.0.0"
mem "^4.0.0"
+os-name@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.0.0.tgz#e1434dbfddb8e74b44c98b56797d951b7648a5d9"
+ integrity sha512-7c74tib2FsdFbQ3W+qj8Tyd1R3Z6tuVRNNxXjJcZ4NgjIEQU9N/prVMqcW29XZPXGACqaXN3jq58/6hoaoXH6g==
+ dependencies:
+ macos-release "^2.0.0"
+ windows-release "^3.1.0"
+
os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-osenv@^0.1.4:
+osenv@0, osenv@^0.1.4, osenv@^0.1.5:
version "0.1.5"
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
@@ -7468,6 +10941,13 @@ p-defer@^1.0.0:
resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
+p-each-series@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"
+ integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=
+ dependencies:
+ p-reduce "^1.0.0"
+
p-finally@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
@@ -7506,20 +10986,87 @@ p-locate@^3.0.0:
dependencies:
p-limit "^2.0.0"
-p-map@^1.1.1:
+p-map-series@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca"
+ integrity sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=
+ dependencies:
+ p-reduce "^1.0.0"
+
+p-map@^1.1.1, p-map@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==
+p-pipe@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-1.2.0.tgz#4b1a11399a11520a67790ee5a0c1d5881d6befe9"
+ integrity sha1-SxoROZoRUgpneQ7loMHViB1r7+k=
+
+p-reduce@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
+ integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
+
p-try@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
p-try@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1"
- integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.1.0.tgz#c1a0f1030e97de018bb2c718929d2af59463e505"
+ integrity sha512-H2RyIJ7+A3rjkwKC2l5GGtU4H1vkxKCAGsWasNVd0Set+6i4znxbWy6/j16YDPJDWxhsgZiKAstMEP8wCdSpjA==
+
+p-waterfall@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-1.0.0.tgz#7ed94b3ceb3332782353af6aae11aa9fc235bb00"
+ integrity sha1-ftlLPOszMngjU69qrhGqn8I1uwA=
+ dependencies:
+ p-reduce "^1.0.0"
+
+package-json@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
+ integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=
+ dependencies:
+ got "^6.7.1"
+ registry-auth-token "^3.0.1"
+ registry-url "^3.0.3"
+ semver "^5.1.0"
+
+pacote@^9.5.0:
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.5.0.tgz#85f3013a3f6dd51c108b0ccabd3de8102ddfaeda"
+ integrity sha512-aUplXozRbzhaJO48FaaeClmN+2Mwt741MC6M3bevIGZwdCaP7frXzbUOfOWa91FPHoLITzG0hYaKY363lxO3bg==
+ dependencies:
+ bluebird "^3.5.3"
+ cacache "^11.3.2"
+ figgy-pudding "^3.5.1"
+ get-stream "^4.1.0"
+ glob "^7.1.3"
+ lru-cache "^5.1.1"
+ make-fetch-happen "^4.0.1"
+ minimatch "^3.0.4"
+ minipass "^2.3.5"
+ mississippi "^3.0.0"
+ mkdirp "^0.5.1"
+ normalize-package-data "^2.4.0"
+ npm-package-arg "^6.1.0"
+ npm-packlist "^1.1.12"
+ npm-pick-manifest "^2.2.3"
+ npm-registry-fetch "^3.8.0"
+ osenv "^0.1.5"
+ promise-inflight "^1.0.1"
+ promise-retry "^1.1.1"
+ protoduck "^5.0.1"
+ rimraf "^2.6.2"
+ safe-buffer "^5.1.2"
+ semver "^5.6.0"
+ ssri "^6.0.1"
+ tar "^4.4.8"
+ unique-filename "^1.1.1"
+ which "^1.3.1"
pako@~1.0.5:
version "1.0.10"
@@ -7561,6 +11108,23 @@ parse-asn1@^5.0.0:
pbkdf2 "^3.0.3"
safe-buffer "^5.1.1"
+parse-entities@^1.0.2, parse-entities@^1.1.2:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.1.tgz#2c761ced065ba7dc68148580b5a225e4918cdd69"
+ integrity sha512-NBWYLQm1KSoDKk7GAHyioLTvCZ5QjdH/ASBBQTD3iLiAWJXS5bg1jEWI8nIJ+vgVvsceBVBcDGRWSo0KVQBvvg==
+ dependencies:
+ character-entities "^1.0.0"
+ character-entities-legacy "^1.0.0"
+ character-reference-invalid "^1.0.0"
+ is-alphanumerical "^1.0.0"
+ is-decimal "^1.0.0"
+ is-hexadecimal "^1.0.0"
+
+parse-github-repo-url@^1.3.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
+ integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A=
+
parse-glob@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
@@ -7578,6 +11142,13 @@ parse-json@^2.2.0:
dependencies:
error-ex "^1.2.0"
+parse-json@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-3.0.0.tgz#fa6f47b18e23826ead32f263e744d0e1e847fb13"
+ integrity sha1-+m9HsY4jgm6tMvJj50TQ4ehH+xM=
+ dependencies:
+ error-ex "^1.3.1"
+
parse-json@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
@@ -7586,6 +11157,24 @@ parse-json@^4.0.0:
error-ex "^1.3.1"
json-parse-better-errors "^1.0.1"
+parse-path@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.1.tgz#0ec769704949778cb3b8eda5e994c32073a1adff"
+ integrity sha512-d7yhga0Oc+PwNXDvQ0Jv1BuWkLVPXcAoQ/WREgd6vNNoKYaW52KI+RdOFjI63wjkmps9yUE8VS4veP+AgpQ/hA==
+ dependencies:
+ is-ssh "^1.3.0"
+ protocols "^1.4.0"
+
+parse-url@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.1.tgz#99c4084fc11be14141efa41b3d117a96fcb9527f"
+ integrity sha512-flNUPP27r3vJpROi0/R3/2efgKkyXqnXwyP1KQ2U0SfFRgdizOdWfvrrvJg1LuOoxs7GQhmxJlq23IpQ/BkByg==
+ dependencies:
+ is-ssh "^1.3.0"
+ normalize-url "^3.3.0"
+ parse-path "^4.0.0"
+ protocols "^1.4.0"
+
parse5@4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
@@ -7699,7 +11288,7 @@ performance-now@^2.1.0:
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-pify@^2.0.0:
+pify@^2.0.0, pify@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
@@ -7709,6 +11298,11 @@ pify@^3.0.0:
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
+pify@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+
pinkie-promise@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
@@ -7721,6 +11315,13 @@ pinkie@^2.0.0:
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+pirates@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
+ integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
+ dependencies:
+ node-modules-regexp "^1.0.0"
+
pkg-dir@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
@@ -7773,6 +11374,18 @@ pnp-webpack-plugin@1.2.1:
dependencies:
ts-pnp "^1.0.0"
+polished@^2.3.3:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/polished/-/polished-2.3.3.tgz#bdbaba962ba8271b0e11aa287f2befd4c87be99a"
+ integrity sha512-59V4fDbdxtH4I1m9TWxFsoGJbC8nnOpUYo5uFmvMfKp9Qh+6suo4VMUle1TGIIUZIGxfkW+Rs485zPk0wcwR2Q==
+ dependencies:
+ "@babel/runtime" "^7.2.0"
+
+popper.js@^1.14.4:
+ version "1.14.7"
+ resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.14.7.tgz#e31ec06cfac6a97a53280c3e55e4e0c860e7738e"
+ integrity sha512-4q1hNvoUre/8srWsH7hnoSJ5xVmIL4qgz+s4qf2TnJIMyZFUFMGH+9vE7mXynAlHSZ/NdTmmow86muD0myUkVQ==
+
portfinder@^1.0.9:
version "1.0.20"
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.20.tgz#bea68632e54b2e13ab7b0c4775e9b41bf270e44a"
@@ -7941,7 +11554,7 @@ postcss-env-function@^2.0.2:
postcss "^7.0.2"
postcss-values-parser "^2.0.0"
-postcss-flexbugs-fixes@4.1.0:
+postcss-flexbugs-fixes@4.1.0, postcss-flexbugs-fixes@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz#e094a9df1783e2200b7b19f875dcad3b3aff8b20"
integrity sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==
@@ -7976,6 +11589,15 @@ postcss-gap-properties@^2.0.0:
dependencies:
postcss "^7.0.2"
+postcss-html@^0.12.0:
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/postcss-html/-/postcss-html-0.12.0.tgz#39b6adb4005dfc5464df7999c0f81c95bced7e50"
+ integrity sha512-KxKUpj7AY7nlCbLcTOYxdfJnGE7QFAfU2n95ADj1Q90RM/pOLdz8k3n4avOyRFs7MDQHcRzJQWM1dehCwJxisQ==
+ dependencies:
+ htmlparser2 "^3.9.2"
+ remark "^8.0.0"
+ unist-util-find-all-after "^1.0.1"
+
postcss-image-set-function@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288"
@@ -8001,6 +11623,13 @@ postcss-lab-function@^2.0.1:
postcss "^7.0.2"
postcss-values-parser "^2.0.0"
+postcss-less@^1.1.0:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-1.1.5.tgz#a6f0ce180cf3797eeee1d4adc0e9e6d6db665609"
+ integrity sha512-QQIiIqgEjNnquc0d4b6HDOSFZxbFQoy4MPpli2lSLpKhMyBkKwwca2HFqu4xzxlKID/F2fxSOowwtKpgczhF7A==
+ dependencies:
+ postcss "^5.2.16"
+
postcss-load-config@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.0.0.tgz#f1312ddbf5912cd747177083c5ef7a19d62ee484"
@@ -8009,7 +11638,7 @@ postcss-load-config@^2.0.0:
cosmiconfig "^4.0.0"
import-cwd "^2.0.0"
-postcss-loader@3.0.0:
+postcss-loader@3.0.0, postcss-loader@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
@@ -8033,6 +11662,11 @@ postcss-media-minmax@^4.0.0:
dependencies:
postcss "^7.0.2"
+postcss-media-query-parser@^0.2.3:
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244"
+ integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=
+
postcss-merge-longhand@^4.0.11:
version "4.0.11"
resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24"
@@ -8102,6 +11736,13 @@ postcss-modules-extract-imports@^1.2.0:
dependencies:
postcss "^6.0.1"
+postcss-modules-extract-imports@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
+ integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
+ dependencies:
+ postcss "^7.0.5"
+
postcss-modules-local-by-default@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
@@ -8110,6 +11751,15 @@ postcss-modules-local-by-default@^1.2.0:
css-selector-tokenizer "^0.7.0"
postcss "^6.0.1"
+postcss-modules-local-by-default@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63"
+ integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA==
+ dependencies:
+ postcss "^7.0.6"
+ postcss-selector-parser "^6.0.0"
+ postcss-value-parser "^3.3.1"
+
postcss-modules-scope@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
@@ -8118,6 +11768,14 @@ postcss-modules-scope@^1.1.0:
css-selector-tokenizer "^0.7.0"
postcss "^6.0.1"
+postcss-modules-scope@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb"
+ integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A==
+ dependencies:
+ postcss "^7.0.6"
+ postcss-selector-parser "^6.0.0"
+
postcss-modules-values@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
@@ -8126,6 +11784,14 @@ postcss-modules-values@^1.3.0:
icss-replace-symbols "^1.1.0"
postcss "^6.0.1"
+postcss-modules-values@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64"
+ integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w==
+ dependencies:
+ icss-replace-symbols "^1.1.0"
+ postcss "^7.0.6"
+
postcss-nesting@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.0.tgz#6e26a770a0c8fcba33782a6b6f350845e1a448f6"
@@ -8323,6 +11989,21 @@ postcss-replace-overflow-wrap@^3.0.0:
dependencies:
postcss "^7.0.2"
+postcss-reporter@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-5.0.0.tgz#a14177fd1342829d291653f2786efd67110332c3"
+ integrity sha512-rBkDbaHAu5uywbCR2XE8a25tats3xSOsGNx6mppK6Q9kSFGKc/FyAzfci+fWM2l+K402p1D0pNcfDGxeje5IKg==
+ dependencies:
+ chalk "^2.0.1"
+ lodash "^4.17.4"
+ log-symbols "^2.0.0"
+ postcss "^6.0.8"
+
+postcss-resolve-nested-selector@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e"
+ integrity sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=
+
postcss-safe-parser@4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz#8756d9e4c36fdce2c72b091bbc8ca176ab1fcdea"
@@ -8330,6 +12011,28 @@ postcss-safe-parser@4.0.1:
dependencies:
postcss "^7.0.0"
+postcss-safe-parser@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-3.0.1.tgz#b753eff6c7c0aea5e8375fbe4cde8bf9063ff142"
+ integrity sha1-t1Pv9sfArqXoN1++TN6L+QY/8UI=
+ dependencies:
+ postcss "^6.0.6"
+
+postcss-sass@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-sass/-/postcss-sass-0.2.0.tgz#e55516441e9526ba4b380a730d3a02e9eaa78c7a"
+ integrity sha512-cUmYzkP747fPCQE6d+CH2l1L4VSyIlAzZsok3HPjb5Gzsq3jE+VjpAdGlPsnQ310WKWI42sw+ar0UNN59/f3hg==
+ dependencies:
+ gonzales-pe "^4.0.3"
+ postcss "^6.0.6"
+
+postcss-scss@^1.0.2:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-1.0.6.tgz#ab903f3bb20161bc177896462293a53d4bff5f7a"
+ integrity sha512-4EFYGHcEw+H3E06PT/pQQri06u/1VIIPjeJQaM8skB80vZuXMhp4cSNV5azmdNkontnOID/XYWEvEEELLFB1ww==
+ dependencies:
+ postcss "^6.0.23"
+
postcss-selector-matches@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff"
@@ -8346,7 +12049,7 @@ postcss-selector-not@^4.0.0:
balanced-match "^1.0.0"
postcss "^7.0.2"
-postcss-selector-parser@^3.0.0:
+postcss-selector-parser@^3.0.0, postcss-selector-parser@^3.1.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865"
integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=
@@ -8364,6 +12067,15 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-sel
indexes-of "^1.0.1"
uniq "^1.0.1"
+postcss-selector-parser@^6.0.0:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
+ integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
+ dependencies:
+ cssesc "^3.0.0"
+ indexes-of "^1.0.1"
+ uniq "^1.0.1"
+
postcss-svgo@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
@@ -8383,7 +12095,7 @@ postcss-unique-selectors@^4.0.1:
postcss "^7.0.0"
uniqs "^2.0.0"
-postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1:
+postcss-value-parser@^3.0.0, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
@@ -8397,7 +12109,17 @@ postcss-values-parser@^2.0.0:
indexes-of "^1.0.1"
uniq "^1.0.1"
-postcss@^6.0.1, postcss@^6.0.23:
+postcss@^5.2.16:
+ version "5.2.18"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
+ integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==
+ dependencies:
+ chalk "^1.1.3"
+ js-base64 "^2.1.9"
+ source-map "^0.5.6"
+ supports-color "^3.2.3"
+
+postcss@^6.0.1, postcss@^6.0.14, postcss@^6.0.17, postcss@^6.0.23, postcss@^6.0.6, postcss@^6.0.8:
version "6.0.23"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
@@ -8420,7 +12142,7 @@ prelude-ls@~1.1.2:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-prepend-http@^1.0.0:
+prepend-http@^1.0.1:
version "1.0.4"
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
@@ -8430,12 +12152,44 @@ preserve@^0.2.0:
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=
+prettier-linter-helpers@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
+ integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+ dependencies:
+ fast-diff "^1.1.2"
+
+prettier-stylelint@^0.4.2:
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/prettier-stylelint/-/prettier-stylelint-0.4.2.tgz#62845e342f786218b008da69eef14f0a5c05bcfb"
+ integrity sha512-CmatjDsW8xKMtWg/Tc6/W02wC59p50kkItrXmkgbhR4b2EKMU5Pm55x1WuCahkkZeZoNVReWRxA8VL/s69mkBg==
+ dependencies:
+ cosmiconfig "^3.0.1"
+ debug "^3.0.1"
+ get-stdin "^5.0.1"
+ globby "^6.1.0"
+ ignore "^3.3.5"
+ import-local "^0.1.1"
+ meow "^3.7.0"
+ pify "^3.0.0"
+ prettier "^1.7.0"
+ resolve-from "^4.0.0"
+ stylelint "^8.1.1"
+ temp-write "^3.3.0"
+ tempy "^0.2.1"
+ update-notifier "^2.2.0"
+
+prettier@^1.16.4, prettier@^1.7.0:
+ version "1.16.4"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717"
+ integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g==
+
pretty-bytes@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
integrity sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=
-pretty-error@^2.0.2:
+pretty-error@^2.0.2, pretty-error@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"
integrity sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=
@@ -8451,17 +12205,29 @@ pretty-format@^23.6.0:
ansi-regex "^3.0.0"
ansi-styles "^3.2.0"
-pretty-format@^24.0.0:
- version "24.3.1"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.3.1.tgz#ae4a98e93d73d86913a8a7dd1a7c3c900f8fda59"
- integrity sha512-NZGH1NWS6o4i9pvRWLsxIK00JB9pqOUzVrO7yWT6vjI2thdxwvxefBJO6O5T24UAhI8P5dMceZ7x5wphgVI7Mg==
+pretty-format@^24.0.0, pretty-format@^24.5.0:
+ version "24.5.0"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.5.0.tgz#cc69a0281a62cd7242633fc135d6930cd889822d"
+ integrity sha512-/3RuSghukCf8Riu5Ncve0iI+BzVkbRU5EeUoArKARZobREycuH5O4waxvaNIloEXdb0qwgmEAed5vTpX1HNROQ==
dependencies:
- "@jest/types" "^24.3.0"
+ "@jest/types" "^24.5.0"
ansi-regex "^4.0.0"
ansi-styles "^3.2.0"
react-is "^16.8.4"
-private@^0.1.6, private@^0.1.8:
+pretty-hrtime@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
+ integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
+
+prismjs@^1.8.4, prismjs@~1.15.0:
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.15.0.tgz#8801d332e472091ba8def94976c8877ad60398d9"
+ integrity sha512-Lf2JrFYx8FanHrjoV5oL8YHCclLQgbJcVZR+gikGGMqz6ub5QVWDTM6YIwm3BuPxM/LOV+rKns3LssXNLIf+DA==
+ optionalDependencies:
+ clipboard "^2.0.0"
+
+private@^0.1.6, private@^0.1.8, private@~0.1.5:
version "0.1.8"
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
@@ -8476,6 +12242,11 @@ process@^0.11.10:
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
+process@~0.5.1:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf"
+ integrity sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=
+
progress@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
@@ -8486,6 +12257,28 @@ promise-inflight@^1.0.1:
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
+promise-polyfill@^6.0.1:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-6.1.0.tgz#dfa96943ea9c121fca4de9b5868cb39d3472e057"
+ integrity sha1-36lpQ+qcEh/KTem1hoyznTRy4Fc=
+
+promise-retry@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-1.1.1.tgz#6739e968e3051da20ce6497fb2b50f6911df3d6d"
+ integrity sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=
+ dependencies:
+ err-code "^1.0.0"
+ retry "^0.10.0"
+
+promise.prototype.finally@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.0.tgz#66f161b1643636e50e7cf201dc1b84a857f3864e"
+ integrity sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ==
+ dependencies:
+ define-properties "^1.1.2"
+ es-abstract "^1.9.0"
+ function-bind "^1.1.1"
+
promise@8.0.2:
version "8.0.2"
resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.2.tgz#9dcd0672192c589477d56891271bdc27547ae9f0"
@@ -8508,7 +12301,22 @@ prompts@^0.1.9:
kleur "^2.0.1"
sisteransi "^0.1.1"
-prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.6.2:
+prompts@^2.0.1:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.4.tgz#179f9d4db3128b9933aa35f93a800d8fce76a682"
+ integrity sha512-HTzM3UWp/99A0gk51gAegwo1QRYA7xjcZufMNe33rCclFszUYAuHe1fIN/3ZmiHeGPkUsNaRyQm1hHOfM0PKxA==
+ dependencies:
+ kleur "^3.0.2"
+ sisteransi "^1.0.0"
+
+promzard@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"
+ integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=
+ dependencies:
+ read "1"
+
+prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2:
version "15.7.2"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
@@ -8519,10 +12327,27 @@ prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.6.2:
property-information@^5.0.0, property-information@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.0.1.tgz#c3b09f4f5750b1634c0b24205adbf78f18bdf94f"
- integrity sha512-nAtBDVeSwFM3Ot/YxT7s4NqZmqXI7lLzf46BThvotEtYf2uk2yH0ACYuWQkJ7gxKs49PPtKVY0UlDGkyN9aJlw==
+ resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.0.1.tgz#c3b09f4f5750b1634c0b24205adbf78f18bdf94f"
+ integrity sha512-nAtBDVeSwFM3Ot/YxT7s4NqZmqXI7lLzf46BThvotEtYf2uk2yH0ACYuWQkJ7gxKs49PPtKVY0UlDGkyN9aJlw==
+ dependencies:
+ xtend "^4.0.1"
+
+proto-list@~1.2.1:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
+ integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
+
+protocols@^1.1.0, protocols@^1.4.0:
+ version "1.4.7"
+ resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.7.tgz#95f788a4f0e979b291ffefcf5636ad113d037d32"
+ integrity sha512-Fx65lf9/YDn3hUX08XUc0J8rSux36rEsyiv21ZGUC1mOyeM3lTRpZLcrm8aAolzS4itwVfm7TAPyxC2E5zd6xg==
+
+protoduck@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/protoduck/-/protoduck-5.0.1.tgz#03c3659ca18007b69a50fd82a7ebcc516261151f"
+ integrity sha512-WxoCeDCoCBY55BMvj4cAEjdVUFGRWed9ZxPlqTKYyw1nDDTQ4pqmnIMAGfJlg7Dx35uB/M+PHJPTmGOvaCaPTg==
dependencies:
- xtend "^4.0.1"
+ genfun "^5.0.0"
proxy-addr@~2.0.4:
version "2.0.4"
@@ -8599,7 +12424,7 @@ punycode@^1.2.4, punycode@^1.4.1:
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
-q@^1.1.2:
+q@^1.1.2, q@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
@@ -8609,20 +12434,17 @@ qs@6.5.2, qs@~6.5.2:
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
-query-string@^4.1.0:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
- integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
- dependencies:
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
+qs@^6.5.2:
+ version "6.6.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.6.0.tgz#a99c0f69a8d26bf7ef012f871cdabb0aee4424c2"
+ integrity sha512-KIJqT9jQJDQx5h5uAVPimw6yVg2SekOKu959OCtktD3FjzbpvaPr8i4zzg07DOMz+igA4W/aNM7OV8H37pFYfA==
querystring-es3@^0.2.0:
version "0.2.1"
resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
-querystring@0.2.0:
+querystring@0.2.0, querystring@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
@@ -8632,6 +12454,11 @@ querystringify@^2.0.0:
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef"
integrity sha512-sluvZZ1YiTLD5jsqZcDmFyV2EwToyXZBfpoVOmktMmW+VEnhgakFHnasVph65fOjGPTWN0Nw3+XQaSeMayr0kg==
+quick-lru@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
+ integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=
+
raf@3.4.1, raf@^3.4.0:
version "3.4.1"
resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
@@ -8644,6 +12471,11 @@ railroad-diagrams@^1.0.0:
resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=
+ramda@^0.21.0:
+ version "0.21.0"
+ resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35"
+ integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=
+
randexp@0.4.6:
version "0.4.6"
resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"
@@ -8691,7 +12523,15 @@ raw-body@2.3.3:
iconv-lite "0.4.23"
unpipe "1.0.0"
-rc@^1.2.7:
+raw-loader@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-1.0.0.tgz#3f9889e73dadbda9a424bce79809b4133ad46405"
+ integrity sha512-Uqy5AqELpytJTRxYT4fhltcKPj0TyaEpzJDcGz7DFJi+pQOOi3GjR/DOdxTkTsF+NzhnldIoG6TORaBlInUuqA==
+ dependencies:
+ loader-utils "^1.1.0"
+ schema-utils "^1.0.0"
+
+rc@^1.0.1, rc@^1.1.6, rc@^1.2.7:
version "1.2.8"
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
@@ -8712,6 +12552,44 @@ react-app-polyfill@^0.2.2:
raf "3.4.1"
whatwg-fetch "3.0.0"
+react-clientside-effect@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.0.tgz#db823695f75e9616a5e4dd6d908e5ea627fb2516"
+ integrity sha512-cVIsGG7SNHsQsCP4+fw7KFUB0HiYiU8hbvL640XaLCbZ31aK8/lj0qOKJ2K+xRjuQz/IM4Q4qclI0aEqTtcXtA==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ shallowequal "^1.1.0"
+
+react-dev-utils@^7.0.0, react-dev-utils@^7.0.1:
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-7.0.5.tgz#cb95375d01ae71ca27b3c7616006ef7a77d14e8e"
+ integrity sha512-zJnqqb0x6gd63E3xoz5pXAxBPNaW75Hyz7GgQp0qPhMroBCRQtRvG67AoTZZY1z4yCYVJQZAfQJFdnea0Ujbug==
+ dependencies:
+ "@babel/code-frame" "7.0.0"
+ address "1.0.3"
+ browserslist "4.4.1"
+ chalk "2.4.2"
+ cross-spawn "6.0.5"
+ detect-port-alt "1.1.6"
+ escape-string-regexp "1.0.5"
+ filesize "3.6.1"
+ find-up "3.0.0"
+ global-modules "2.0.0"
+ globby "8.0.2"
+ gzip-size "5.0.0"
+ immer "1.10.0"
+ inquirer "6.2.1"
+ is-root "2.0.0"
+ loader-utils "1.2.3"
+ opn "5.4.0"
+ pkg-up "2.0.0"
+ react-error-overlay "^5.1.4"
+ recursive-readdir "2.2.2"
+ shell-quote "1.6.1"
+ sockjs-client "1.3.0"
+ strip-ansi "5.0.0"
+ text-table "0.2.0"
+
react-dev-utils@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-8.0.0.tgz#7c5b227a45a32ea8ff7fbc318f336cf9e2c6e34c"
@@ -8743,7 +12621,20 @@ react-dev-utils@^8.0.0:
strip-ansi "5.0.0"
text-table "0.2.0"
-react-dom@^16.6.0:
+react-docgen@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-3.0.0.tgz#79c6e1b1870480c3c2bc1a65bede0577a11c38cd"
+ integrity sha512-2UseoLWabFNXuk1Foz4VDPSIAkxz+1Hmmq4qijzUmYHDq0ZSloKDLXtGLpQRcAi/M76hRpPtH1rV4BI5jNAOnQ==
+ dependencies:
+ "@babel/parser" "^7.1.3"
+ "@babel/runtime" "^7.0.0"
+ async "^2.1.4"
+ commander "^2.19.0"
+ doctrine "^2.0.0"
+ node-dir "^0.1.10"
+ recast "^0.16.0"
+
+react-dom@^16.6.0, react-dom@^16.8.1:
version "16.8.4"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.4.tgz#1061a8e01a2b3b0c8160037441c3bf00a0e3bc48"
integrity sha512-Ob2wK7XG2tUDt7ps7LtLzGYYB6DXMCLj0G5fO6WeEICtT4/HdpOi7W/xLzZnR6RCG1tYza60nMdqtxzA8FaPJQ==
@@ -8753,12 +12644,61 @@ react-dom@^16.6.0:
prop-types "^15.6.2"
scheduler "^0.13.4"
+react-draggable@^3.1.1:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-3.2.1.tgz#45d09a9a227988dc85674b23ab3c75b6e820dae5"
+ integrity sha512-r+3Bs9InID2lyIEbR8UIRVtpn4jgu1ArFEZgIy8vibJjijLSdNLX7rH9U68BBVD4RD9v44RXbaK4EHLyKXzNQw==
+ dependencies:
+ classnames "^2.2.5"
+ prop-types "^15.6.0"
+
react-error-overlay@^5.1.4:
version "5.1.4"
resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-5.1.4.tgz#88dfb88857c18ceb3b9f95076f850d7121776991"
integrity sha512-fp+U98OMZcnduQ+NSEiQa4s/XMsbp+5KlydmkbESOw4P69iWZ68ZMFM5a2BuE0FgqPBKApJyRuYHR95jM8lAmg==
-react-is@^16.6.0, react-is@^16.8.1, react-is@^16.8.4:
+react-fast-compare@^2.0.2:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9"
+ integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==
+
+react-focus-lock@^1.17.7:
+ version "1.18.3"
+ resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-1.18.3.tgz#19d84afeab935c0b5de196922f71db7c481baba4"
+ integrity sha512-4fPAHnsr8oCYPgVmcMZ8NbAE9jm/OshPjXEM5PHseu2lDernzm/b1sHhYzZUO4OoW9D/u1AQsV6n4trRllow7w==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ focus-lock "^0.6.0"
+ prop-types "^15.6.2"
+ react-clientside-effect "^1.2.0"
+
+react-helmet-async@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-0.2.0.tgz#d20d8725c1dcdcc95d54e281a1040af47c3abffa"
+ integrity sha512-xo8oN+SUt0YkgQscKPTqhZZIOn5ni18FMv/H3KuBDt5+yAXTGktPEf3HU2EyufbHAF0TQ8qI+JrA3ILnjVfqNA==
+ dependencies:
+ invariant "^2.2.4"
+ prop-types "^15.6.1"
+ react-fast-compare "^2.0.2"
+ shallowequal "^1.0.2"
+
+react-hotkeys@2.0.0-pre4:
+ version "2.0.0-pre4"
+ resolved "https://registry.yarnpkg.com/react-hotkeys/-/react-hotkeys-2.0.0-pre4.tgz#a1c248a51bdba4282c36bf3204f80d58abc73333"
+ integrity sha512-oa+UncSWyOwMK3GExt+oELXaR7T3ItgcMolsupQFdKvwkEhVAluJd5rYczsRSQpQlVkdNoHG46De2NUeuS+88Q==
+ dependencies:
+ prop-types "^15.6.1"
+
+react-inspector@^2.3.0, react-inspector@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-2.3.1.tgz#f0eb7f520669b545b441af9d38ec6d706e5f649c"
+ integrity sha512-tUUK7t3KWgZEIUktOYko5Ic/oYwvjEvQUFAGC1UeMeDaQ5za2yZFtItJa2RTwBJB//NxPr000WQK6sEbqC6y0Q==
+ dependencies:
+ babel-runtime "^6.26.0"
+ is-dom "^1.0.9"
+ prop-types "^15.6.1"
+
+react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4:
version "16.8.4"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.4.tgz#90f336a68c3a29a096a3d648ab80e87ec61482a2"
integrity sha512-PVadd+WaUDOAciICm/J1waJaSvgq+4rHE/K70j0PFqKhkTBsPv/82UGQJNXAngz1fOQLLxI6z1sEDmJDQhCTAA==
@@ -8770,6 +12710,51 @@ react-keyboard-shortcuts@^1.1.3:
dependencies:
mousetrap "^1.5.2"
+react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
+ integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
+
+react-modal@^3.8.1:
+ version "3.8.1"
+ resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.8.1.tgz#7300f94a6f92a2e17994de0be6ccb61734464c9e"
+ integrity sha512-aLKeZM9pgXpIKVwopRHMuvqKWiBajkqisDA8UzocdCF6S4fyKVfLWmZR5G1Q0ODBxxxxf2XIwiCP8G/11GJAuw==
+ dependencies:
+ exenv "^1.2.0"
+ prop-types "^15.5.10"
+ react-lifecycles-compat "^3.0.0"
+ warning "^3.0.0"
+
+react-popper-tooltip@^2.8.0:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.8.1.tgz#bbaec88b729e3b7e9f26521857e7f908bccdecf3"
+ integrity sha512-eL0PT5yz9H9lkG934TMh7czZWwDlqFady7CcJKMP5RcmBxTFBY4U7k71FEyxNaHd07nhMhUwbk0/Fgf2yw3LEg==
+ dependencies:
+ "@babel/runtime" "^7.3.4"
+ react-popper "^1.3.3"
+
+react-popper@^1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.3.tgz#2c6cef7515a991256b4f0536cd4bdcb58a7b6af6"
+ integrity sha512-ynMZBPkXONPc5K4P5yFWgZx5JGAUIP3pGGLNs58cfAPgK67olx7fmLp+AdpZ0+GoQ+ieFDa/z4cdV6u7sioH6w==
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ create-react-context "<=0.2.2"
+ popper.js "^1.14.4"
+ prop-types "^15.6.1"
+ typed-styles "^0.0.7"
+ warning "^4.0.2"
+
+react-resize-detector@^3.2.1:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/react-resize-detector/-/react-resize-detector-3.4.0.tgz#2ccd399958a0efe9b7c52c5db5a13d87e47cd585"
+ integrity sha512-T96I8Iqa1hGWyooeFA2Sl6FdPoMhXWINfEKg2/EJLxhP37+/94VNuyuyz9CRqpmApD83IWRR+lbB3r0ADMoKJg==
+ dependencies:
+ lodash "^4.17.11"
+ lodash-es "^4.17.11"
+ prop-types "^15.6.2"
+ resize-observer-polyfill "^1.5.1"
+
react-scripts@^2.1.3:
version "2.1.8"
resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-2.1.8.tgz#21195bb928b2c0462aa98b2d32edf7d034cff2a9"
@@ -8831,6 +12816,17 @@ react-simple-tooltip@^2.3.3:
dependencies:
styled-components "^4.1.3"
+react-syntax-highlighter@^8.0.1:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-8.1.0.tgz#59103ff17a828a27ed7c8f035ae2558f09b6b78c"
+ integrity sha512-G2bkZxmF3VOa4atEdXIDSfwwCqjw6ZQX5znfTaHcErA1WqHIS0o6DaSCDKFPVaOMXQEB9Hf1UySYQvuJmV8CXg==
+ dependencies:
+ babel-runtime "^6.18.0"
+ highlight.js "~9.12.0"
+ lowlight "~1.9.1"
+ prismjs "^1.8.4"
+ refractor "^2.4.1"
+
react-testing-library@^5.2.3:
version "5.9.0"
resolved "https://registry.yarnpkg.com/react-testing-library/-/react-testing-library-5.9.0.tgz#e1c8a586d2f2cbd5f0035474ca90258eef1fece6"
@@ -8839,7 +12835,15 @@ react-testing-library@^5.2.3:
"@babel/runtime" "^7.3.1"
dom-testing-library "^3.13.1"
-react@^16.6.0:
+react-textarea-autosize@^7.0.4:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.0.tgz#3132cb77e65d94417558d37c0bfe415a5afd3445"
+ integrity sha512-c2FlR/fP0qbxmlrW96SdrbgP/v0XZMTupqB90zybvmDVDutytUgPl7beU35klwcTeMepUIQEpQUn3P3bdshGPg==
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ prop-types "^15.6.0"
+
+react@^16.6.0, react@^16.8.1:
version "16.8.4"
resolved "https://registry.yarnpkg.com/react/-/react-16.8.4.tgz#fdf7bd9ae53f03a9c4cd1a371432c206be1c4768"
integrity sha512-0GQ6gFXfUH7aZcjGVymlPOASTuSjlQL4ZtVC5YKH+3JL6bBLCVO21DknzmaPlI90LN253ojj02nsapy+j7wIjg==
@@ -8849,6 +12853,41 @@ react@^16.6.0:
prop-types "^15.6.2"
scheduler "^0.13.4"
+reactjs-popup@^1.3.2:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/reactjs-popup/-/reactjs-popup-1.3.2.tgz#7f7861443fc5edfb0184da1d01838dbd5db690cd"
+ integrity sha512-BwfaOkKpLHNHxSmiMcX/yc61twJvjGbJ/SBE+fYovJudFlaZDYXGPSp+3dTCE0UoNsEqF8oc/pNkYlGgmrnsrw==
+
+read-cmd-shim@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b"
+ integrity sha1-LV0Vd4ajfAVdIgd8MsU/gynpHHs=
+ dependencies:
+ graceful-fs "^4.1.2"
+
+"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13:
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.13.tgz#2e82ebd9f613baa6d2ebe3aa72cefe3f68e41f4a"
+ integrity sha512-/1dZ7TRZvGrYqE0UAfN6qQb5GYBsNcqS1C0tNK601CFOJmtHI7NIGXwetEPU/OtoFHZL3hDxm4rolFFVE9Bnmg==
+ dependencies:
+ glob "^7.1.1"
+ json-parse-better-errors "^1.0.1"
+ normalize-package-data "^2.0.0"
+ slash "^1.0.0"
+ optionalDependencies:
+ graceful-fs "^4.1.2"
+
+read-package-tree@^5.1.6:
+ version "5.2.2"
+ resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.2.2.tgz#4b6a0ef2d943c1ea36a578214c9a7f6b7424f7a8"
+ integrity sha512-rW3XWUUkhdKmN2JKB4FL563YAgtINifso5KShykufR03nJ5loGFlkUMe1g/yxmqX073SoYYTsgXu7XdDinKZuA==
+ dependencies:
+ debuglog "^1.0.1"
+ dezalgo "^1.0.0"
+ once "^1.3.0"
+ read-package-json "^2.0.0"
+ readdir-scoped-modules "^1.0.0"
+
read-pkg-up@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
@@ -8865,6 +12904,22 @@ read-pkg-up@^2.0.0:
find-up "^2.0.0"
read-pkg "^2.0.0"
+read-pkg-up@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
+ integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
+ dependencies:
+ find-up "^2.0.0"
+ read-pkg "^3.0.0"
+
+read-pkg-up@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978"
+ integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==
+ dependencies:
+ find-up "^3.0.0"
+ read-pkg "^3.0.0"
+
read-pkg@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
@@ -8883,6 +12938,15 @@ read-pkg@^2.0.0:
normalize-package-data "^2.3.2"
path-type "^2.0.0"
+read-pkg@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
+ integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
+ dependencies:
+ load-json-file "^4.0.0"
+ normalize-package-data "^2.3.2"
+ path-type "^3.0.0"
+
read-pkg@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-4.0.1.tgz#963625378f3e1c4d48c85872b5a6ec7d5d093237"
@@ -8892,6 +12956,13 @@ read-pkg@^4.0.1:
parse-json "^4.0.0"
pify "^3.0.0"
+read@1, read@~1.0.1:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4"
+ integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=
+ dependencies:
+ mute-stream "~0.0.4"
+
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
version "2.3.6"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
@@ -8914,6 +12985,16 @@ readable-stream@^3.0.6, readable-stream@^3.1.1:
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
+readdir-scoped-modules@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747"
+ integrity sha1-n6+jfShr5dksuuve4DDcm19AZ0c=
+ dependencies:
+ debuglog "^1.0.1"
+ dezalgo "^1.0.0"
+ graceful-fs "^4.1.2"
+ once "^1.3.0"
+
readdirp@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
@@ -8923,13 +13004,52 @@ readdirp@^2.2.1:
micromatch "^3.1.10"
readable-stream "^2.0.2"
-realpath-native@^1.0.0:
+realpath-native@^1.0.0, realpath-native@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
dependencies:
util.promisify "^1.0.0"
+recast@^0.14.7:
+ version "0.14.7"
+ resolved "https://registry.yarnpkg.com/recast/-/recast-0.14.7.tgz#4f1497c2b5826d42a66e8e3c9d80c512983ff61d"
+ integrity sha512-/nwm9pkrcWagN40JeJhkPaRxiHXBRkXyRh/hgU088Z/v+qCy+zIHHY6bC6o7NaKAxPqtE6nD8zBH1LfU0/Wx6A==
+ dependencies:
+ ast-types "0.11.3"
+ esprima "~4.0.0"
+ private "~0.1.5"
+ source-map "~0.6.1"
+
+recast@^0.16.0:
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/recast/-/recast-0.16.2.tgz#3796ebad5fe49ed85473b479cd6df554ad725dc2"
+ integrity sha512-O/7qXi51DPjRVdbrpNzoBQH5dnAPQNbfoOFyRiUwreTMJfIHYOEBzwuH+c0+/BTSJ3CQyKs6ILSWXhESH6Op3A==
+ dependencies:
+ ast-types "0.11.7"
+ esprima "~4.0.0"
+ private "~0.1.5"
+ source-map "~0.6.1"
+
+rechoir@^0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
+ integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
+ dependencies:
+ resolve "^1.1.6"
+
+recompose@^0.30.0:
+ version "0.30.0"
+ resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.30.0.tgz#82773641b3927e8c7d24a0d87d65aeeba18aabd0"
+ integrity sha512-ZTrzzUDa9AqUIhRk4KmVFihH0rapdCSMFXjhHbNrjAWxBuUD/guYlyysMnuHjlZC/KRiOKRtB4jf96yYSkKE8w==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ change-emitter "^0.1.2"
+ fbjs "^0.8.1"
+ hoist-non-react-statics "^2.3.1"
+ react-lifecycles-compat "^3.0.2"
+ symbol-observable "^1.0.4"
+
recursive-readdir@2.2.2:
version "2.2.2"
resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
@@ -8937,10 +13057,35 @@ recursive-readdir@2.2.2:
dependencies:
minimatch "3.0.4"
-regenerate-unicode-properties@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.0.1.tgz#58a4a74e736380a7ab3c5f7e03f303a941b31289"
- integrity sha512-HTjMafphaH5d5QDHuwW8Me6Hbc/GhXg8luNqTkPVwZ/oCZhnoifjWhGYsu2BzepMELTlbnoVcXvV0f+2uDDvoQ==
+redent@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
+ integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=
+ dependencies:
+ indent-string "^2.1.0"
+ strip-indent "^1.0.1"
+
+redent@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
+ integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=
+ dependencies:
+ indent-string "^3.0.0"
+ strip-indent "^2.0.0"
+
+refractor@^2.4.1:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.7.0.tgz#3ed9a96a619e75326a429e644241dea51be070a3"
+ integrity sha512-v5W1SF8ysJOKvcJcpZpM7AP6xIAFDI2iKwTBeo5hd3MIzYv2wcWVcZ6HpPRz8iInJmKWeelCIDhZb2ixZEzzpw==
+ dependencies:
+ hastscript "^5.0.0"
+ parse-entities "^1.1.2"
+ prismjs "~1.15.0"
+
+regenerate-unicode-properties@^8.0.2:
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.0.2.tgz#7b38faa296252376d363558cfbda90c9ce709662"
+ integrity sha512-SbA/iNrBUf6Pv2zU8Ekv1Qbhv92yxL4hiDa2siuxs4KKn4oOoMDHXjAf7+Nz9qinUQ46B1LcWEi/PhJfPWpZWQ==
dependencies:
regenerate "^1.4.0"
@@ -8991,7 +13136,14 @@ regexp-tree@^0.1.0:
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.5.tgz#7cd71fca17198d04b4176efd79713f2998009397"
integrity sha512-nUmxvfJyAODw+0B13hj8CFVAxhe7fDEAgJgaotBu3nnR+IgGgZq59YedJP5VYTlkEfqjuK6TuRpnymKdatLZfQ==
-regexpp@^2.0.0, regexpp@^2.0.1:
+regexp.prototype.flags@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c"
+ integrity sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==
+ dependencies:
+ define-properties "^1.1.2"
+
+regexpp@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
@@ -9006,17 +13158,32 @@ regexpu-core@^1.0.0:
regjsparser "^0.1.4"
regexpu-core@^4.1.3, regexpu-core@^4.2.0:
- version "4.5.3"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.3.tgz#72f572e03bb8b9f4f4d895a0ccc57e707f4af2e4"
- integrity sha512-LON8666bTAlViVEPXMv65ZqiaR3rMNLz36PIaQ7D+er5snu93k0peR7FSvO0QteYbZ3GOkvfHKbGr/B1xDu9FA==
+ version "4.5.4"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae"
+ integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==
dependencies:
regenerate "^1.4.0"
- regenerate-unicode-properties "^8.0.1"
+ regenerate-unicode-properties "^8.0.2"
regjsgen "^0.5.0"
regjsparser "^0.6.0"
unicode-match-property-ecmascript "^1.0.4"
unicode-match-property-value-ecmascript "^1.1.0"
+registry-auth-token@^3.0.1:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20"
+ integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==
+ dependencies:
+ rc "^1.1.6"
+ safe-buffer "^5.0.1"
+
+registry-url@^3.0.3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
+ integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI=
+ dependencies:
+ rc "^1.0.1"
+
regjsgen@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
@@ -9055,11 +13222,66 @@ relateurl@0.2.x:
resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
+remark-parse@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-4.0.0.tgz#99f1f049afac80382366e2e0d0bd55429dd45d8b"
+ integrity sha512-XZgICP2gJ1MHU7+vQaRM+VA9HEL3X253uwUM/BGgx3iv6TH2B3bF3B8q00DKcyP9YrJV+/7WOWEWBFF/u8cIsw==
+ dependencies:
+ collapse-white-space "^1.0.2"
+ is-alphabetical "^1.0.0"
+ is-decimal "^1.0.0"
+ is-whitespace-character "^1.0.0"
+ is-word-character "^1.0.0"
+ markdown-escapes "^1.0.0"
+ parse-entities "^1.0.2"
+ repeat-string "^1.5.4"
+ state-toggle "^1.0.0"
+ trim "0.0.1"
+ trim-trailing-lines "^1.0.0"
+ unherit "^1.0.4"
+ unist-util-remove-position "^1.0.0"
+ vfile-location "^2.0.0"
+ xtend "^4.0.1"
+
+remark-stringify@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-4.0.0.tgz#4431884c0418f112da44991b4e356cfe37facd87"
+ integrity sha512-xLuyKTnuQer3ke9hkU38SUYLiTmS078QOnoFavztmbt/pAJtNSkNtFgR0U//uCcmG0qnyxao+PDuatQav46F1w==
+ dependencies:
+ ccount "^1.0.0"
+ is-alphanumeric "^1.0.0"
+ is-decimal "^1.0.0"
+ is-whitespace-character "^1.0.0"
+ longest-streak "^2.0.1"
+ markdown-escapes "^1.0.0"
+ markdown-table "^1.1.0"
+ mdast-util-compact "^1.0.0"
+ parse-entities "^1.0.2"
+ repeat-string "^1.5.4"
+ state-toggle "^1.0.0"
+ stringify-entities "^1.0.1"
+ unherit "^1.0.4"
+ xtend "^4.0.1"
+
+remark@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/remark/-/remark-8.0.0.tgz#287b6df2fe1190e263c1d15e486d3fa835594d6d"
+ integrity sha512-K0PTsaZvJlXTl9DN6qYlvjTkqSZBFELhROZMrblm2rB+085flN84nz4g/BscKRMqDvhzlK1oQ/xnWQumdeNZYw==
+ dependencies:
+ remark-parse "^4.0.0"
+ remark-stringify "^4.0.0"
+ unified "^6.0.0"
+
remove-trailing-separator@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
+render-fragment@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/render-fragment/-/render-fragment-0.1.1.tgz#b231f259b7eee333d34256aee0ef3169be7bef30"
+ integrity sha512-+DnAcalJYR8GE5VRuQGGu78Q0GDe8EXnkuk4DF8gbAhIeS6LRt4j+aaggLLj4PtQVfXNC61McXvXI58WqmRleQ==
+
renderkid@^2.0.1:
version "2.0.3"
resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz#380179c2ff5ae1365c522bf2fcfcff01c5b74149"
@@ -9076,7 +13298,7 @@ repeat-element@^1.1.2:
resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
-repeat-string@^1.5.2, repeat-string@^1.6.1:
+repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1:
version "1.6.1"
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
@@ -9150,19 +13372,16 @@ require-main-filename@^1.0.1:
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
-require-uncached@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
- integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=
- dependencies:
- caller-path "^0.1.0"
- resolve-from "^1.0.0"
-
requires-port@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
+resize-observer-polyfill@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
+ integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
+
resolve-cwd@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
@@ -9170,11 +13389,6 @@ resolve-cwd@^2.0.0:
dependencies:
resolve-from "^3.0.0"
-resolve-from@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
- integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=
-
resolve-from@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
@@ -9185,6 +13399,11 @@ resolve-from@^4.0.0:
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+resolve-pathname@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.2.0.tgz#7e9ae21ed815fd63ab189adeee64dc831eefa879"
+ integrity sha512-bAFz9ld18RzJfddgrO2e/0S2O81710++chRMUxHjXOYKF6jTAMrUNZrEZ1PvV0zlhfjidm08iRPdTLPno1FuRg==
+
resolve-url@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
@@ -9195,7 +13414,7 @@ resolve@1.1.7:
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
-resolve@1.10.0, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.6.0, resolve@^1.8.1, resolve@^1.9.0:
+resolve@1.10.0, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.6.0, resolve@^1.8.1, resolve@^1.9.0:
version "1.10.0"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
@@ -9215,6 +13434,11 @@ ret@~0.1.10:
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+retry@^0.10.0:
+ version "0.10.1"
+ resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4"
+ integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=
+
rgb-regex@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
@@ -9225,7 +13449,7 @@ rgba-regex@^1.0.0:
resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
-rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@~2.6.2:
+rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@~2.6.2:
version "2.6.3"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
@@ -9253,6 +13477,11 @@ rsvp@^3.3.3:
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a"
integrity sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==
+rsvp@^4.8.4:
+ version "4.8.4"
+ resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911"
+ integrity sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA==
+
run-async@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
@@ -9279,11 +13508,21 @@ rxjs@^6.1.0, rxjs@^6.4.0:
dependencies:
tslib "^1.9.0"
+safe-buffer@5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
+ integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==
+
safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+safe-eval@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/safe-eval/-/safe-eval-0.4.1.tgz#e54ba5a1bbdec795d488f6c8765e0c2a78b4cdc0"
+ integrity sha512-wmiu4RSYVZ690RP1+cv/LxfPK1dIlEN35aW7iv4SMYdqDrHbkll4+NJcHmKm7PbCuI1df1otOcPwgcc2iFR85g==
+
safe-regex@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
@@ -9312,6 +13551,21 @@ sane@^2.0.0:
optionalDependencies:
fsevents "^1.2.3"
+sane@^4.0.3:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
+ integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
+ dependencies:
+ "@cnakazawa/watch" "^1.0.3"
+ anymatch "^2.0.0"
+ capture-exit "^2.0.0"
+ exec-sh "^0.3.2"
+ execa "^1.0.0"
+ fb-watchman "^2.0.0"
+ micromatch "^3.1.4"
+ minimist "^1.1.1"
+ walker "~1.0.5"
+
sass-loader@7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d"
@@ -9337,7 +13591,7 @@ scheduler@^0.13.4:
loose-envify "^1.1.0"
object-assign "^4.1.1"
-schema-utils@^0.4.4:
+schema-utils@^0.4.4, schema-utils@^0.4.5:
version "0.4.7"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187"
integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==
@@ -9359,6 +13613,11 @@ select-hose@^2.0.0:
resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
+select@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
+ integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
+
selfsigned@^1.9.1:
version "1.10.4"
resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.4.tgz#cdd7eccfca4ed7635d47a08bf2d5d3074092e2cd"
@@ -9371,11 +13630,23 @@ semver-compare@^1.0.0:
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
-"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
+semver-diff@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
+ integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=
+ dependencies:
+ semver "^5.0.3"
+
+"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
version "5.6.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==
+semver@~5.3.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
+ integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
+
send@0.16.2:
version "0.16.2"
resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
@@ -9400,6 +13671,17 @@ serialize-javascript@^1.4.0:
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.6.1.tgz#4d1f697ec49429a847ca6f442a2a755126c4d879"
integrity sha512-A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw==
+serve-favicon@^2.5.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0"
+ integrity sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=
+ dependencies:
+ etag "~1.8.1"
+ fresh "0.5.2"
+ ms "2.1.1"
+ parseurl "~1.3.2"
+ safe-buffer "5.1.1"
+
serve-index@^1.7.2:
version "1.9.1"
resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
@@ -9485,6 +13767,11 @@ shallow-clone@^1.0.0:
kind-of "^5.0.0"
mixin-object "^2.0.1"
+shallowequal@^1.0.2, shallowequal@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
+ integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
+
shebang-command@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
@@ -9507,11 +13794,25 @@ shell-quote@1.6.1:
array-reduce "~0.0.0"
jsonify "~0.0.0"
+shelljs@^0.8.2:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097"
+ integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==
+ dependencies:
+ glob "^7.0.0"
+ interpret "^1.0.0"
+ rechoir "^0.6.2"
+
shellwords@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
+sigmund@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
+ integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@@ -9529,6 +13830,11 @@ sisteransi@^0.1.1:
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce"
integrity sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g==
+sisteransi@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c"
+ integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ==
+
slash@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
@@ -9555,6 +13861,16 @@ slice-ansi@^2.1.0:
astral-regex "^1.0.0"
is-fullwidth-code-point "^2.0.0"
+slide@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
+ integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=
+
+smart-buffer@4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.2.tgz#5207858c3815cc69110703c6b94e46c15634395d"
+ integrity sha512-JDhEpTKzXusOqXZ0BUIdH+CjFdO/CR3tLlf5CN34IypI+xMmXW1uB16OOY8z3cICbJlDAVJzNbwBhNO0wt9OAw==
+
snapdragon-node@^2.0.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
@@ -9605,10 +13921,26 @@ sockjs@0.3.19:
faye-websocket "^0.10.0"
uuid "^3.0.1"
-sort-keys@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
- integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
+socks-proxy-agent@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386"
+ integrity sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg==
+ dependencies:
+ agent-base "~4.2.1"
+ socks "~2.3.2"
+
+socks@~2.3.2:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.2.tgz#ade388e9e6d87fdb11649c15746c578922a5883e"
+ integrity sha512-pCpjxQgOByDHLlNqlnh/mNSAxIUkyBBuwwhTcV+enZGbDaClPvHdvm6uvOwZfFJkam7cGhBNbb4JxiP8UZkRvQ==
+ dependencies:
+ ip "^1.1.5"
+ smart-buffer "4.0.2"
+
+sort-keys@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
+ integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=
dependencies:
is-plain-obj "^1.0.0"
@@ -9635,10 +13967,10 @@ source-map-support@^0.4.15:
dependencies:
source-map "^0.5.6"
-source-map-support@^0.5.6, source-map-support@~0.5.9:
- version "0.5.10"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c"
- integrity sha512-YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ==
+source-map-support@^0.5.6, source-map-support@~0.5.10:
+ version "0.5.11"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.11.tgz#efac2ce0800355d026326a0ca23e162aeac9a4e2"
+ integrity sha512-//sajEx/fGL3iw6fltKMdPvy8kL3kJ2O3iuYlRoT3k9Kb4BjOoZ+BZzaNHeuaruSt+Kf3Zk9tnfAQg9/AJqUVQ==
dependencies:
buffer-from "^1.0.0"
source-map "^0.6.0"
@@ -9665,6 +13997,13 @@ space-separated-tokens@^1.0.0:
dependencies:
trim "0.0.1"
+spawn-promise@^0.1.8:
+ version "0.1.8"
+ resolved "https://registry.yarnpkg.com/spawn-promise/-/spawn-promise-0.1.8.tgz#a5bea98814c48f52cbe02720e7fe2d6fc3b5119a"
+ integrity sha512-pTkEOFxvYLq9SaI1d8bwepj0yD9Yyz65+4e979YZLv/L3oYPxZpDTabcm6e+KIZniGK9mQ+LGrwB5s1v2z67nQ==
+ dependencies:
+ co "^4.6.0"
+
spdx-correct@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
@@ -9714,6 +14053,11 @@ spdy@^4.0.0:
select-hose "^2.0.0"
spdy-transport "^3.0.0"
+specificity@^0.3.1:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.3.2.tgz#99e6511eceef0f8d9b57924937aac2cb13d13c42"
+ integrity sha512-Nc/QN/A425Qog7j9aHmwOrlwX2e7pNI47ciwxwy4jOlvbbMHkNNJchit+FX+UjF3IAdiaaV5BKeWuDUnws6G1A==
+
split-string@^3.0.1, split-string@^3.0.2:
version "3.1.0"
resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
@@ -9721,6 +14065,20 @@ split-string@^3.0.1, split-string@^3.0.2:
dependencies:
extend-shallow "^3.0.0"
+split2@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
+ integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==
+ dependencies:
+ through2 "^2.0.2"
+
+split@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
+ integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
+ dependencies:
+ through "2"
+
sprintf-js@~1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
@@ -9741,7 +14099,7 @@ sshpk@^1.7.0:
safer-buffer "^2.0.2"
tweetnacl "~0.14.0"
-ssri@^6.0.1:
+ssri@^6.0.0, ssri@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8"
integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
@@ -9758,6 +14116,11 @@ stack-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==
+state-toggle@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.1.tgz#c3cb0974f40a6a0f8e905b96789eb41afa1cde3a"
+ integrity sha512-Qe8QntFrrpWTnHwvwj2FZTgv+PKIsp0B9VxLzLLbSpPXWOgRgc5LVj/aTiSfK1RqIeF9jeC1UeOH8Q8y60A7og==
+
static-extend@^0.1.1:
version "0.1.2"
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
@@ -9813,11 +14176,6 @@ stream-shift@^1.0.0:
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952"
integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=
-strict-uri-encode@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
- integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
-
string-length@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
@@ -9843,14 +14201,43 @@ string-width@^1.0.1:
is-fullwidth-code-point "^2.0.0"
strip-ansi "^4.0.0"
-string-width@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
- integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+string-width@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+ integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+ dependencies:
+ emoji-regex "^7.0.1"
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^5.1.0"
+
+string.prototype.matchall@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-3.0.1.tgz#5a9e0b64bcbeb336aa4814820237c2006985646d"
+ integrity sha512-NSiU0ILQr9PQ1SZmM1X327U5LsM+KfDTassJfqN1al1+0iNpKzmQ4BfXOJwRnTEqv8nKJ67mFpqRoPaGWwvy5A==
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.12.0"
+ function-bind "^1.1.1"
+ has-symbols "^1.0.0"
+ regexp.prototype.flags "^1.2.0"
+
+string.prototype.padend@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0"
+ integrity sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA=
+ dependencies:
+ define-properties "^1.1.2"
+ es-abstract "^1.4.3"
+ function-bind "^1.0.2"
+
+string.prototype.padstart@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.0.0.tgz#5bcfad39f4649bb2d031292e19bcf0b510d4b242"
+ integrity sha1-W8+tOfRkm7LQMSkuGbzwtRDUskI=
dependencies:
- emoji-regex "^7.0.1"
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^5.1.0"
+ define-properties "^1.1.2"
+ es-abstract "^1.4.3"
+ function-bind "^1.0.2"
string.prototype.trim@^1.1.2:
version "1.1.2"
@@ -9875,6 +14262,16 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"
+stringify-entities@^1.0.1:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.2.tgz#a98417e5471fd227b3e45d3db1861c11caf668f7"
+ integrity sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==
+ dependencies:
+ character-entities-html4 "^1.0.0"
+ character-entities-legacy "^1.0.0"
+ is-alphanumerical "^1.0.0"
+ is-hexadecimal "^1.0.0"
+
stringify-object@^3.2.2:
version "3.3.0"
resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
@@ -9906,9 +14303,9 @@ strip-ansi@^4.0.0:
ansi-regex "^3.0.0"
strip-ansi@^5.0.0, strip-ansi@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.1.0.tgz#55aaa54e33b4c0649a7338a43437b1887d153ec4"
- integrity sha512-TjxrkPONqO2Z8QDCpeE2j6n0M6EwxzyDgzEeGp+FbdvaJAt//ClYi6W5my+3ROlC/hZX2KACUwDfK49Ka5eDvg==
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+ integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
dependencies:
ansi-regex "^4.1.0"
@@ -9937,24 +14334,33 @@ strip-eof@^1.0.0:
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+strip-indent@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
+ integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=
+ dependencies:
+ get-stdin "^4.0.1"
+
+strip-indent@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
+ integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
+
strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
-strip-outer@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631"
- integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==
+strong-log-transformer@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10"
+ integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==
dependencies:
- escape-string-regexp "^1.0.2"
-
-strip-url-auth@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/strip-url-auth/-/strip-url-auth-1.0.1.tgz#22b0fa3a41385b33be3f331551bbb837fa0cd7ae"
- integrity sha1-IrD6OkE4WzO+PzMVUbu4N/oM164=
+ duplexer "^0.1.1"
+ minimist "^1.2.0"
+ through "^2.3.4"
-style-loader@0.23.1:
+style-loader@0.23.1, style-loader@^0.23.1:
version "0.23.1"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925"
integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==
@@ -9962,6 +14368,11 @@ style-loader@0.23.1:
loader-utils "^1.1.0"
schema-utils "^1.0.0"
+style-search@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
+ integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=
+
styled-components@^4.1.3:
version "4.1.3"
resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-4.1.3.tgz#4472447208e618b57e84deaaeb6acd34a5e0fe9b"
@@ -9988,6 +14399,63 @@ stylehacks@^4.0.0:
postcss "^7.0.0"
postcss-selector-parser "^3.0.0"
+stylelint-config-recommended@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-2.1.0.tgz#f526d5c771c6811186d9eaedbed02195fee30858"
+ integrity sha512-ajMbivOD7JxdsnlS5945KYhvt7L/HwN6YeYF2BH6kE4UCLJR0YvXMf+2j7nQpJyYLZx9uZzU5G1ZOSBiWAc6yA==
+
+stylelint-config-standard@^18.2.0:
+ version "18.2.0"
+ resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-18.2.0.tgz#6283149aba7f64f18731aef8f0abfb35cf619e06"
+ integrity sha512-07x0TaSIzvXlbOioUU4ORkCIM07kyIuojkbSVCyFWNVgXMXYHfhnQSCkqu+oHWJf3YADAnPGWzdJ53NxkoJ7RA==
+ dependencies:
+ stylelint-config-recommended "^2.1.0"
+
+stylelint@^8.1.1:
+ version "8.4.0"
+ resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-8.4.0.tgz#c2dbaeb17236917819f9206e1c0df5fddf6f83c3"
+ integrity sha512-56hPH5mTFnk8LzlEuTWq0epa34fHuS54UFYQidBOFt563RJBNi1nz1F2HK2MoT1X1waq47milvRsRahFCCJs/Q==
+ dependencies:
+ autoprefixer "^7.1.2"
+ balanced-match "^1.0.0"
+ chalk "^2.0.1"
+ cosmiconfig "^3.1.0"
+ debug "^3.0.0"
+ execall "^1.0.0"
+ file-entry-cache "^2.0.0"
+ get-stdin "^5.0.1"
+ globby "^7.0.0"
+ globjoin "^0.1.4"
+ html-tags "^2.0.0"
+ ignore "^3.3.3"
+ imurmurhash "^0.1.4"
+ known-css-properties "^0.5.0"
+ lodash "^4.17.4"
+ log-symbols "^2.0.0"
+ mathml-tag-names "^2.0.1"
+ meow "^4.0.0"
+ micromatch "^2.3.11"
+ normalize-selector "^0.2.0"
+ pify "^3.0.0"
+ postcss "^6.0.6"
+ postcss-html "^0.12.0"
+ postcss-less "^1.1.0"
+ postcss-media-query-parser "^0.2.3"
+ postcss-reporter "^5.0.0"
+ postcss-resolve-nested-selector "^0.1.1"
+ postcss-safe-parser "^3.0.1"
+ postcss-sass "^0.2.0"
+ postcss-scss "^1.0.2"
+ postcss-selector-parser "^3.1.0"
+ postcss-value-parser "^3.3.0"
+ resolve-from "^4.0.0"
+ specificity "^0.3.1"
+ string-width "^2.1.0"
+ style-search "^0.1.0"
+ sugarss "^1.0.0"
+ svg-tags "^1.0.0"
+ table "^4.0.1"
+
stylis-rule-sheet@^0.0.10:
version "0.0.10"
resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430"
@@ -9998,12 +14466,19 @@ stylis@^3.5.0:
resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe"
integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==
+sugarss@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/sugarss/-/sugarss-1.0.1.tgz#be826d9003e0f247735f92365dc3fd7f1bae9e44"
+ integrity sha512-3qgLZytikQQEVn1/FrhY7B68gPUUGY3R1Q1vTiD5xT+Ti1DP/8iZuwFet9ONs5+bmL8pZoDQ6JrQHVgrNlK6mA==
+ dependencies:
+ postcss "^6.0.14"
+
supports-color@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
-supports-color@^3.1.2:
+supports-color@^3.1.2, supports-color@^3.2.3:
version "3.2.3"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=
@@ -10017,13 +14492,26 @@ supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0, supports-co
dependencies:
has-flag "^3.0.0"
-supports-color@^6.1.0:
+supports-color@^6.0.0, supports-color@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
dependencies:
has-flag "^3.0.0"
+svg-tags@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
+ integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=
+
+svg-url-loader@^2.3.2:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/svg-url-loader/-/svg-url-loader-2.3.2.tgz#dd86b26c19fe3b914f04ea10ef39594eade04464"
+ integrity sha1-3YaybBn+O5FPBOoQ7zlZTq3gRGQ=
+ dependencies:
+ file-loader "1.1.11"
+ loader-utils "1.1.0"
+
svgo@^1.0.0, svgo@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.0.tgz#305a8fc0f4f9710828c65039bb93d5793225ffc3"
@@ -10044,12 +14532,24 @@ svgo@^1.0.0, svgo@^1.1.1:
unquote "~1.1.1"
util.promisify "~1.0.0"
+symbol-observable@^1.0.4:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
+ integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
+
symbol-tree@^3.2.2:
version "3.2.2"
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=
-table@^4.0.3:
+symbol.prototype.description@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.0.tgz#6e355660eb1e44ca8ad53a68fdb72ef131ca4b12"
+ integrity sha512-I9mrbZ5M96s7QeJDv95toF1svkUjeBybe8ydhY7foPaBmr0SPJMFupArmMkDrOKTTj0sJVr+nvQNxWLziQ7nDQ==
+ dependencies:
+ has-symbols "^1.0.0"
+
+table@^4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
integrity sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==
@@ -10076,7 +14576,16 @@ tapable@^1.0.0, tapable@^1.1.0:
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.1.tgz#4d297923c5a72a42360de2ab52dadfaaec00018e"
integrity sha512-9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA==
-tar@^4:
+tar@^2.0.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
+ integrity sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=
+ dependencies:
+ block-stream "*"
+ fstream "^1.0.2"
+ inherits "2"
+
+tar@^4, tar@^4.4.8:
version "4.4.8"
resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"
integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ==
@@ -10089,6 +14598,52 @@ tar@^4:
safe-buffer "^5.1.2"
yallist "^3.0.2"
+telejson@^2.1.0, telejson@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/telejson/-/telejson-2.1.1.tgz#cd8835ce90198c9341078dbe80849e39d1a2b73c"
+ integrity sha512-tc9Jdrhro4zzYgN6y5DNzCXIyIsWT7znGEfK7G4KMPF0X0tC2cVw2SPKnJObao/cxP7/FSnG8bJe0JD390My5g==
+ dependencies:
+ global "^4.3.2"
+ is-function "^1.0.1"
+ is-regex "^1.0.4"
+ is-symbol "^1.0.2"
+ isobject "^3.0.1"
+ lodash.get "^4.4.2"
+ memoizerific "^1.11.3"
+ safe-eval "^0.4.1"
+
+temp-dir@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
+ integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=
+
+temp-write@^3.3.0, temp-write@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/temp-write/-/temp-write-3.4.0.tgz#8cff630fb7e9da05f047c74ce4ce4d685457d492"
+ integrity sha1-jP9jD7fp2gXwR8dM5M5NaFRX1JI=
+ dependencies:
+ graceful-fs "^4.1.2"
+ is-stream "^1.1.0"
+ make-dir "^1.0.0"
+ pify "^3.0.0"
+ temp-dir "^1.0.0"
+ uuid "^3.0.1"
+
+tempy@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.2.1.tgz#9038e4dbd1c201b74472214179bc2c6f7776e54c"
+ integrity sha512-LB83o9bfZGrntdqPuRdanIVCPReam9SOZKW0fOy5I9X3A854GGWi0tjCqoXEk84XIEYBc/x9Hq3EFop/H5wJaw==
+ dependencies:
+ temp-dir "^1.0.0"
+ unique-string "^1.0.0"
+
+term-size@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
+ integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=
+ dependencies:
+ execa "^0.7.0"
+
terser-webpack-plugin@1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.2.tgz#9bff3a891ad614855a7dde0d707f7db5a927e3d9"
@@ -10103,7 +14658,7 @@ terser-webpack-plugin@1.2.2:
webpack-sources "^1.1.0"
worker-farm "^1.5.2"
-terser-webpack-plugin@^1.1.0:
+terser-webpack-plugin@^1.1.0, terser-webpack-plugin@^1.2.1:
version "1.2.3"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.3.tgz#3f98bc902fac3e5d0de730869f50668561262ec8"
integrity sha512-GOK7q85oAb/5kE12fMuLdn2btOS9OBZn4VsecpHDywoUC/jLhSAKOiYo0ezx7ss2EXPMzyEWFoE0s1WLE+4+oA==
@@ -10118,13 +14673,13 @@ terser-webpack-plugin@^1.1.0:
worker-farm "^1.5.2"
terser@^3.16.1:
- version "3.16.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-3.16.1.tgz#5b0dd4fa1ffd0b0b43c2493b2c364fd179160493"
- integrity sha512-JDJjgleBROeek2iBcSNzOHLKsB/MdDf+E/BOAJ0Tk9r7p9/fVobfv7LMJ/g/k3v9SXdmjZnIlFd5nfn/Rt0Xow==
+ version "3.17.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2"
+ integrity sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==
dependencies:
- commander "~2.17.1"
+ commander "^2.19.0"
source-map "~0.6.1"
- source-map-support "~0.5.9"
+ source-map-support "~0.5.10"
test-exclude@^4.2.1:
version "4.2.3"
@@ -10137,6 +14692,21 @@ test-exclude@^4.2.1:
read-pkg-up "^1.0.1"
require-main-filename "^1.0.1"
+test-exclude@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.1.0.tgz#6ba6b25179d2d38724824661323b73e03c0c1de1"
+ integrity sha512-gwf0S2fFsANC55fSeSqpb8BYk6w3FDvwZxfNjeF6FRgvFa43r+7wRiA/Q0IxoRU37wB/LE8IQ4221BsNucTaCA==
+ dependencies:
+ arrify "^1.0.1"
+ minimatch "^3.0.4"
+ read-pkg-up "^4.0.0"
+ require-main-filename "^1.0.1"
+
+text-extensions@^1.0.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26"
+ integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==
+
text-table@0.2.0, text-table@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
@@ -10147,7 +14717,7 @@ throat@^4.0.0:
resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=
-through2@^2.0.0:
+through2@^2.0.0, through2@^2.0.2:
version "2.0.5"
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
@@ -10155,7 +14725,7 @@ through2@^2.0.0:
readable-stream "~2.3.6"
xtend "~4.0.1"
-through@^2.3.6:
+through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6:
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
@@ -10165,6 +14735,11 @@ thunky@^1.0.2:
resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.0.3.tgz#f5df732453407b09191dae73e2a8cc73f381a826"
integrity sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==
+timed-out@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
+ integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
+
timers-browserify@^2.0.4:
version "2.0.10"
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae"
@@ -10177,6 +14752,21 @@ timsort@^0.3.0:
resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
+tiny-emitter@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
+ integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
+
+tiny-invariant@^1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.0.3.tgz#91efaaa0269ccb6271f0296aeedb05fc3e067b7a"
+ integrity sha512-ytQx8T4DL8PjlX53yYzcIC0WhIZbpR0p1qcYjw2pHu3w6UtgWwFJQ/02cnhOnBBhlFx/edUIfcagCaQSe3KMWg==
+
+tiny-warning@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.2.tgz#1dfae771ee1a04396bdfde27a3adcebc6b648b28"
+ integrity sha512-rru86D9CpQRLvsFG5XFdy0KdLAvjdQDyZCsRcuu60WtzFylDM3eAWSxEVz5kzL2Gp544XiUvPbVKtOA/txLi9Q==
+
tmp@^0.0.33:
version "0.0.33"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
@@ -10259,18 +14849,31 @@ tr46@^1.0.1:
dependencies:
punycode "^2.1.0"
-trim-repeated@^1.0.0:
+trim-newlines@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21"
- integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE=
- dependencies:
- escape-string-regexp "^1.0.2"
+ resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
+ integrity sha1-WIeWa7WCpFA6QetST301ARgVphM=
+
+trim-newlines@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
+ integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=
+
+trim-off-newlines@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
+ integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM=
trim-right@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
+trim-trailing-lines@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz#e0ec0810fd3c3f1730516b45f49083caaf2774d9"
+ integrity sha512-bWLv9BbWbbd7mlqqs2oQYnLD/U/ZqeJeJwbO0FG2zA1aTq+HTvxfHNKFa/HGCVyJpDiioUYaBhfiT6rgk+l4mg==
+
trim@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
@@ -10328,6 +14931,11 @@ type-is@~1.6.16:
media-typer "0.3.0"
mime-types "~2.1.18"
+typed-styles@^0.0.7:
+ version "0.0.7"
+ resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9"
+ integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==
+
typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
@@ -10339,13 +14947,31 @@ ua-parser-js@^0.7.18:
integrity sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ==
uglify-js@3.4.x, uglify-js@^3.1.4:
- version "3.4.9"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3"
- integrity sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==
+ version "3.4.10"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f"
+ integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==
dependencies:
- commander "~2.17.1"
+ commander "~2.19.0"
source-map "~0.6.1"
+uid-number@0.0.6:
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
+ integrity sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=
+
+umask@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d"
+ integrity sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0=
+
+unherit@^1.0.4:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.1.tgz#132748da3e88eab767e08fabfbb89c5e9d28628c"
+ integrity sha512-+XZuV691Cn4zHsK0vkKYwBEwB74T3IZIcxrgn2E4rKwTfFyI1zCh7X7grwh9Re08fdPlarIdyWgI8aVB3F5A5g==
+ dependencies:
+ inherits "^2.0.1"
+ xtend "^4.0.1"
+
unicode-canonical-property-names-ecmascript@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
@@ -10369,6 +14995,18 @@ unicode-property-aliases-ecmascript@^1.0.4:
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
+unified@^6.0.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba"
+ integrity sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==
+ dependencies:
+ bail "^1.0.0"
+ extend "^3.0.0"
+ is-plain-obj "^1.1.0"
+ trough "^1.0.0"
+ vfile "^2.0.0"
+ x-is-string "^0.1.0"
+
unified@^7.0.2:
version "7.1.0"
resolved "https://registry.yarnpkg.com/unified/-/unified-7.1.0.tgz#5032f1c1ee3364bd09da12e27fdd4a7553c7be13"
@@ -10417,11 +15055,58 @@ unique-slug@^2.0.0:
dependencies:
imurmurhash "^0.1.4"
+unique-string@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
+ integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=
+ dependencies:
+ crypto-random-string "^1.0.0"
+
+unist-util-find-all-after@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/unist-util-find-all-after/-/unist-util-find-all-after-1.0.2.tgz#9be49cfbae5ca1566b27536670a92836bf2f8d6d"
+ integrity sha512-nDl79mKpffXojLpCimVXnxhlH/jjaTnDuScznU9J4jjsaUtBdDbxmlc109XtcqxY4SDO0SwzngsxxW8DIISt1w==
+ dependencies:
+ unist-util-is "^2.0.0"
+
+unist-util-is@^2.0.0, unist-util-is@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-2.1.2.tgz#1193fa8f2bfbbb82150633f3a8d2eb9a1c1d55db"
+ integrity sha512-YkXBK/H9raAmG7KXck+UUpnKiNmUdB+aBGrknfQ4EreE1banuzrKABx3jP6Z5Z3fMSPMQQmeXBlKpCbMwBkxVw==
+
+unist-util-remove-position@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz#86b5dad104d0bbfbeb1db5f5c92f3570575c12cb"
+ integrity sha512-XxoNOBvq1WXRKXxgnSYbtCF76TJrRoe5++pD4cCBsssSiWSnPEktyFrFLE8LTk3JW5mt9hB0Sk5zn4x/JeWY7Q==
+ dependencies:
+ unist-util-visit "^1.1.0"
+
unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6"
integrity sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==
+unist-util-visit-parents@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.0.1.tgz#63fffc8929027bee04bfef7d2cce474f71cb6217"
+ integrity sha512-6B0UTiMfdWql4cQ03gDTCSns+64Zkfo2OCbK31Ov0uMizEz+CJeAp0cgZVb5Fhmcd7Bct2iRNywejT0orpbqUA==
+ dependencies:
+ unist-util-is "^2.1.2"
+
+unist-util-visit@^1.1.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.4.0.tgz#1cb763647186dc26f5e1df5db6bd1e48b3cc2fb1"
+ integrity sha512-FiGu34ziNsZA3ZUteZxSFaczIjGmksfSgdKqBfOejrrfzyUy5b7YrlzT1Bcvi+djkYDituJDy2XB7tGTeBieKw==
+ dependencies:
+ unist-util-visit-parents "^2.0.0"
+
+universal-user-agent@^2.0.0, universal-user-agent@^2.0.1:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-2.0.3.tgz#9f6f09f9cc33de867bb720d84c08069b14937c6c"
+ integrity sha512-eRHEHhChCBHrZsA4WEhdgiOKgdvgrMIHwnwnqD0r5C6AO8kwKcG7qSku3iXdhvHL3YvsS9ZkSGN8h/hIpoFC8g==
+ dependencies:
+ os-name "^3.0.0"
+
universalify@^0.1.0:
version "0.1.2"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
@@ -10432,7 +15117,7 @@ unpipe@1.0.0, unpipe@~1.0.0:
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
-unquote@~1.1.1:
+unquote@^1.1.0, unquote@~1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
@@ -10445,10 +15130,31 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"
+unzip-response@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
+ integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=
+
upath@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.1.tgz#497f7c1090b0818f310bbfb06783586a68d28014"
- integrity sha512-D0yetkpIOKiZQquxjM2Syvy48Y1DbZ0SWxgsZiwd9GCWRpc75vN8ytzem14WDSg+oiX6+Qt31FpiS/ExODCrLg==
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068"
+ integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==
+
+update-notifier@^2.2.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6"
+ integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==
+ dependencies:
+ boxen "^1.2.1"
+ chalk "^2.0.1"
+ configstore "^3.0.0"
+ import-lazy "^2.1.0"
+ is-ci "^1.0.10"
+ is-installed-globally "^0.1.0"
+ is-npm "^1.0.0"
+ latest-version "^3.0.0"
+ semver-diff "^2.0.0"
+ xdg-basedir "^3.0.0"
upper-case@^1.1.1:
version "1.1.3"
@@ -10467,7 +15173,7 @@ urix@^0.1.0:
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-url-loader@1.1.2:
+url-loader@1.1.2, url-loader@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8"
integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==
@@ -10476,6 +15182,13 @@ url-loader@1.1.2:
mime "^2.0.3"
schema-utils "^1.0.0"
+url-parse-lax@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
+ integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=
+ dependencies:
+ prepend-http "^1.0.1"
+
url-parse@^1.4.3:
version "1.4.4"
resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8"
@@ -10484,6 +15197,11 @@ url-parse@^1.4.3:
querystringify "^2.0.0"
requires-port "^1.0.0"
+url-template@^2.0.8:
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21"
+ integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE=
+
url@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
@@ -10497,7 +15215,7 @@ use@^3.1.0:
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-util-deprecate@^1.0.1, util-deprecate@~1.0.1:
+util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
@@ -10539,7 +15257,7 @@ uuid@^3.0.1, uuid@^3.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
-validate-npm-package-license@^3.0.1:
+validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.3:
version "3.0.4"
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
@@ -10547,6 +15265,18 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
+validate-npm-package-name@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
+ integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34=
+ dependencies:
+ builtins "^1.0.3"
+
+value-equal@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.4.0.tgz#c5bdd2f54ee093c04839d71ce2e4758a6890abc7"
+ integrity sha512-x+cYdNnaA3CxvMaTX0INdTCN8m8aF2uY9BvEqmxuYp8bL09cs/kWVQPVGcA35fMktdOsP69IgU7wFj/61dJHEw==
+
vary@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
@@ -10566,6 +15296,11 @@ verror@1.10.0:
core-util-is "1.0.2"
extsprintf "^1.2.0"
+vfile-location@^2.0.0:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.4.tgz#2a5e7297dd0d9e2da4381464d04acc6b834d3e55"
+ integrity sha512-KRL5uXQPoUKu+NGvQVL4XLORw45W62v4U4gxJ3vRlDfI9QsT4ZN1PNXn/zQpKUulqGDpYuT0XDfp5q9O87/y/w==
+
vfile-message@^1.0.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1"
@@ -10573,6 +15308,16 @@ vfile-message@^1.0.0:
dependencies:
unist-util-stringify-position "^1.1.1"
+vfile@^2.0.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a"
+ integrity sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==
+ dependencies:
+ is-buffer "^1.1.4"
+ replace-ext "1.0.0"
+ unist-util-stringify-position "^1.0.0"
+ vfile-message "^1.0.0"
+
vfile@^3.0.0, vfile@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/vfile/-/vfile-3.0.1.tgz#47331d2abe3282424f4a4bb6acd20a44c4121803"
@@ -10609,6 +15354,20 @@ walker@~1.0.5:
dependencies:
makeerror "1.0.x"
+warning@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c"
+ integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=
+ dependencies:
+ loose-envify "^1.0.0"
+
+warning@^4.0.2:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
+ integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
+ dependencies:
+ loose-envify "^1.0.0"
+
watch@~0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
@@ -10633,6 +15392,13 @@ wbuf@^1.1.0, wbuf@^1.7.3:
dependencies:
minimalistic-assert "^1.0.0"
+wcwidth@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
+ integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
+ dependencies:
+ defaults "^1.0.3"
+
web-namespaces@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.2.tgz#c8dc267ab639505276bae19e129dbd6ae72b22b4"
@@ -10653,6 +15419,16 @@ webpack-dev-middleware@3.4.0:
range-parser "^1.0.3"
webpack-log "^2.0.0"
+webpack-dev-middleware@^3.5.1:
+ version "3.6.1"
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.6.1.tgz#91f2531218a633a99189f7de36045a331a4b9cd4"
+ integrity sha512-XQmemun8QJexMEvNFbD2BIg4eSKrmSIMrTfnl2nql2Sc6OGAYFyb8rwuYrCjl/IiEYYuyTEiimMscu7EXji/Dw==
+ dependencies:
+ memory-fs "^0.4.1"
+ mime "^2.3.1"
+ range-parser "^1.0.3"
+ webpack-log "^2.0.0"
+
webpack-dev-server@3.1.14:
version "3.1.14"
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.14.tgz#60fb229b997fc5a0a1fc6237421030180959d469"
@@ -10689,6 +15465,16 @@ webpack-dev-server@3.1.14:
webpack-log "^2.0.0"
yargs "12.0.2"
+webpack-hot-middleware@^2.24.3:
+ version "2.24.3"
+ resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.24.3.tgz#5bb76259a8fc0d97463ab517640ba91d3382d4a6"
+ integrity sha512-pPlmcdoR2Fn6UhYjAhp1g/IJy1Yc9hD+T6O9mjRcWV2pFbBjIFoJXhP0CoD0xPOhWJuWXuZXGBga9ybbOdzXpg==
+ dependencies:
+ ansi-html "0.0.7"
+ html-entities "^1.2.0"
+ querystring "^0.2.0"
+ strip-ansi "^3.0.0"
+
webpack-log@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
@@ -10744,6 +15530,36 @@ webpack@4.28.3:
watchpack "^1.5.0"
webpack-sources "^1.3.0"
+webpack@^4.29.0:
+ version "4.29.6"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.29.6.tgz#66bf0ec8beee4d469f8b598d3988ff9d8d90e955"
+ integrity sha512-MwBwpiE1BQpMDkbnUUaW6K8RFZjljJHArC6tWQJoFm0oQtfoSebtg4Y7/QHnJ/SddtjYLHaKGX64CFjG5rehJw==
+ dependencies:
+ "@webassemblyjs/ast" "1.8.5"
+ "@webassemblyjs/helper-module-context" "1.8.5"
+ "@webassemblyjs/wasm-edit" "1.8.5"
+ "@webassemblyjs/wasm-parser" "1.8.5"
+ acorn "^6.0.5"
+ acorn-dynamic-import "^4.0.0"
+ ajv "^6.1.0"
+ ajv-keywords "^3.1.0"
+ chrome-trace-event "^1.0.0"
+ enhanced-resolve "^4.1.0"
+ eslint-scope "^4.0.0"
+ json-parse-better-errors "^1.0.2"
+ loader-runner "^2.3.0"
+ loader-utils "^1.1.0"
+ memory-fs "~0.4.1"
+ micromatch "^3.1.8"
+ mkdirp "~0.5.0"
+ neo-async "^2.5.0"
+ node-libs-browser "^2.0.0"
+ schema-utils "^1.0.0"
+ tapable "^1.1.0"
+ terser-webpack-plugin "^1.1.0"
+ watchpack "^1.5.0"
+ webpack-sources "^1.3.0"
+
websocket-driver@>=0.5.1:
version "0.7.0"
resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"
@@ -10797,7 +15613,7 @@ which-module@^2.0.0:
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-which@^1.2.12, which@^1.2.9, which@^1.3.0, which@^1.3.1:
+which@1, which@^1.2.12, which@^1.2.9, which@^1.3.0, which@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
@@ -10811,6 +15627,20 @@ wide-align@^1.1.0:
dependencies:
string-width "^1.0.2 || 2"
+widest-line@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc"
+ integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==
+ dependencies:
+ string-width "^2.1.1"
+
+windows-release@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.1.0.tgz#8d4a7e266cbf5a233f6c717dac19ce00af36e12e"
+ integrity sha512-hBb7m7acFgQPQc222uEQTmdcGLeBmQLNLFIh0rDk3CwFOBrfjefLzEfEfmpMq8Af/n/GnFf3eYf203FY1PmudA==
+ dependencies:
+ execa "^0.10.0"
+
wordwrap@~0.0.2:
version "0.0.3"
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
@@ -10968,7 +15798,16 @@ wrappy@1:
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-write-file-atomic@^2.1.0:
+write-file-atomic@2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529"
+ integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==
+ dependencies:
+ graceful-fs "^4.1.11"
+ imurmurhash "^0.1.4"
+ signal-exit "^3.0.2"
+
+write-file-atomic@^2.0.0, write-file-atomic@^2.1.0, write-file-atomic@^2.3.0:
version "2.4.2"
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9"
integrity sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g==
@@ -10977,6 +15816,26 @@ write-file-atomic@^2.1.0:
imurmurhash "^0.1.4"
signal-exit "^3.0.2"
+write-json-file@^2.2.0, write-json-file@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f"
+ integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=
+ dependencies:
+ detect-indent "^5.0.0"
+ graceful-fs "^4.1.2"
+ make-dir "^1.0.0"
+ pify "^3.0.0"
+ sort-keys "^2.0.0"
+ write-file-atomic "^2.0.0"
+
+write-pkg@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.2.0.tgz#0e178fe97820d389a8928bc79535dbe68c2cff21"
+ integrity sha512-tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw==
+ dependencies:
+ sort-keys "^2.0.0"
+ write-json-file "^2.2.0"
+
write@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
@@ -10996,6 +15855,11 @@ x-is-string@^0.1.0:
resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82"
integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=
+xdg-basedir@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
+ integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=
+
xml-name-validator@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
@@ -11038,6 +15902,14 @@ yargs-parser@^10.1.0:
dependencies:
camelcase "^4.1.0"
+yargs-parser@^11.1.1:
+ version "11.1.1"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
+ integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==
+ dependencies:
+ camelcase "^5.0.0"
+ decamelize "^1.2.0"
+
yargs-parser@^9.0.2:
version "9.0.2"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
@@ -11080,3 +15952,21 @@ yargs@^11.0.0:
which-module "^2.0.0"
y18n "^3.2.1"
yargs-parser "^9.0.2"
+
+yargs@^12.0.1, yargs@^12.0.2:
+ version "12.0.5"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
+ integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
+ dependencies:
+ cliui "^4.0.0"
+ decamelize "^1.2.0"
+ find-up "^3.0.0"
+ get-caller-file "^1.0.1"
+ os-locale "^3.0.0"
+ require-directory "^2.1.1"
+ require-main-filename "^1.0.1"
+ set-blocking "^2.0.0"
+ string-width "^2.0.0"
+ which-module "^2.0.0"
+ y18n "^3.2.1 || ^4.0.0"
+ yargs-parser "^11.1.1"