{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); , "},"instruction":{"kind":"string","value":"Select words similar to irritated"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39301,"cells":{"history_episodes":{"kind":"string","value":" Select delicious
, "},"instruction":{"kind":"string","value":"Select delicious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39302,"cells":{"history_episodes":{"kind":"string","value":" Select fearless
, "},"instruction":{"kind":"string","value":"Select fearless"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39303,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39304,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to happy
, "},"instruction":{"kind":"string","value":"Select words similar to happy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39305,"cells":{"history_episodes":{"kind":"string","value":" Select archaic
, "},"instruction":{"kind":"string","value":"Select archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39306,"cells":{"history_episodes":{"kind":"string","value":" Select fat
, "},"instruction":{"kind":"string","value":"Select fat"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39307,"cells":{"history_episodes":{"kind":"string","value":" Select quiet
, "},"instruction":{"kind":"string","value":"Select quiet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39308,"cells":{"history_episodes":{"kind":"string","value":" Select delicious
, "},"instruction":{"kind":"string","value":"Select delicious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39309,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to dumb
, "},"instruction":{"kind":"string","value":"Select words similar to dumb"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39310,"cells":{"history_episodes":{"kind":"string","value":" Select favor
, "},"instruction":{"kind":"string","value":"Select favor"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39311,"cells":{"history_episodes":{"kind":"string","value":" Select pig
, "},"instruction":{"kind":"string","value":"Select pig"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39312,"cells":{"history_episodes":{"kind":"string","value":" Select aged
, "},"instruction":{"kind":"string","value":"Select aged"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39313,"cells":{"history_episodes":{"kind":"string","value":" Select savory
, "},"instruction":{"kind":"string","value":"Select savory"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39314,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to vermillion
, "},"instruction":{"kind":"string","value":"Select words similar to vermillion"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39315,"cells":{"history_episodes":{"kind":"string","value":" Select wrong
, "},"instruction":{"kind":"string","value":"Select wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39316,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39317,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to tragic
, "},"instruction":{"kind":"string","value":"Select words similar to tragic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39318,"cells":{"history_episodes":{"kind":"string","value":" Select stop
, "},"instruction":{"kind":"string","value":"Select stop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39319,"cells":{"history_episodes":{"kind":"string","value":" Select irritated
, "},"instruction":{"kind":"string","value":"Select irritated"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39320,"cells":{"history_episodes":{"kind":"string","value":" Select hate
, "},"instruction":{"kind":"string","value":"Select hate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39321,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to camouflage
, "},"instruction":{"kind":"string","value":"Select words similar to camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39322,"cells":{"history_episodes":{"kind":"string","value":" Select tiny
, "},"instruction":{"kind":"string","value":"Select tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39323,"cells":{"history_episodes":{"kind":"string","value":" Select odd
, "},"instruction":{"kind":"string","value":"Select odd"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39324,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39325,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to automobiles
, "},"instruction":{"kind":"string","value":"Select words similar to automobiles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39326,"cells":{"history_episodes":{"kind":"string","value":" Select launch
, "},"instruction":{"kind":"string","value":"Select launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39327,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to cheerful
, "},"instruction":{"kind":"string","value":"Select words similar to cheerful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39328,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to little
, "},"instruction":{"kind":"string","value":"Select words similar to little"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39329,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to chop
, "},"instruction":{"kind":"string","value":"Select words similar to chop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39330,"cells":{"history_episodes":{"kind":"string","value":" Select pig
, "},"instruction":{"kind":"string","value":"Select pig"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39331,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39332,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to terrified, answer
, "},"instruction":{"kind":"string","value":"Select words similar to terrified, answer"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39333,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to bunny
, "},"instruction":{"kind":"string","value":"Select words similar to bunny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39334,"cells":{"history_episodes":{"kind":"string","value":" Select furious
, "},"instruction":{"kind":"string","value":"Select furious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39335,"cells":{"history_episodes":{"kind":"string","value":" Select cheerful
, "},"instruction":{"kind":"string","value":"Select cheerful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39336,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39337,"cells":{"history_episodes":{"kind":"string","value":" Select kill
, "},"instruction":{"kind":"string","value":"Select kill"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39338,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fleshy
, "},"instruction":{"kind":"string","value":"Select words similar to fleshy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39339,"cells":{"history_episodes":{"kind":"string","value":" Select weird
, "},"instruction":{"kind":"string","value":"Select weird"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39340,"cells":{"history_episodes":{"kind":"string","value":" Select end
, "},"instruction":{"kind":"string","value":"Select end"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39341,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to unusual
, "},"instruction":{"kind":"string","value":"Select words similar to unusual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39342,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39343,"cells":{"history_episodes":{"kind":"string","value":" Select huge
, "},"instruction":{"kind":"string","value":"Select huge"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39344,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to end, depraved, detest, televisions
, "},"instruction":{"kind":"string","value":"Select words similar to end, depraved, detest, televisions"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39345,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mild
, "},"instruction":{"kind":"string","value":"Select words similar to mild"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39346,"cells":{"history_episodes":{"kind":"string","value":" Select unhappy
, "},"instruction":{"kind":"string","value":"Select unhappy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39347,"cells":{"history_episodes":{"kind":"string","value":" Select large
, "},"instruction":{"kind":"string","value":"Select large"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39348,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to bunny
, "},"instruction":{"kind":"string","value":"Select words similar to bunny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39349,"cells":{"history_episodes":{"kind":"string","value":" Select genuine
, "},"instruction":{"kind":"string","value":"Select genuine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39350,"cells":{"history_episodes":{"kind":"string","value":" Select murder
, "},"instruction":{"kind":"string","value":"Select murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39351,"cells":{"history_episodes":{"kind":"string","value":" Select homes
, "},"instruction":{"kind":"string","value":"Select homes"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39352,"cells":{"history_episodes":{"kind":"string","value":" Select pig
, "},"instruction":{"kind":"string","value":"Select pig"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39353,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to chop
, "},"instruction":{"kind":"string","value":"Select words similar to chop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39354,"cells":{"history_episodes":{"kind":"string","value":" Select genuine
, "},"instruction":{"kind":"string","value":"Select genuine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39355,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fat, vermillion, enormous, unusual
, "},"instruction":{"kind":"string","value":"Select words similar to fat, vermillion, enormous, unusual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39356,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mild
, "},"instruction":{"kind":"string","value":"Select words similar to mild"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39357,"cells":{"history_episodes":{"kind":"string","value":" Select assassinate
, "},"instruction":{"kind":"string","value":"Select assassinate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39358,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39359,"cells":{"history_episodes":{"kind":"string","value":" Select initiate
, "},"instruction":{"kind":"string","value":"Select initiate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39360,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to odd
, "},"instruction":{"kind":"string","value":"Select words similar to odd"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39361,"cells":{"history_episodes":{"kind":"string","value":" Select appetizing
, "},"instruction":{"kind":"string","value":"Select appetizing"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39362,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delicious
, "},"instruction":{"kind":"string","value":"Select words similar to delicious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39363,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to response
, "},"instruction":{"kind":"string","value":"Select words similar to response"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39364,"cells":{"history_episodes":{"kind":"string","value":" Select calm
, "},"instruction":{"kind":"string","value":"Select calm"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39365,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to assassinate
, "},"instruction":{"kind":"string","value":"Select words similar to assassinate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39366,"cells":{"history_episodes":{"kind":"string","value":" Select incorrect
, "},"instruction":{"kind":"string","value":"Select incorrect"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39367,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to start
, "},"instruction":{"kind":"string","value":"Select words similar to start"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39368,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delectable
, "},"instruction":{"kind":"string","value":"Select words similar to delectable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39369,"cells":{"history_episodes":{"kind":"string","value":" Select homes
, "},"instruction":{"kind":"string","value":"Select homes"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39370,"cells":{"history_episodes":{"kind":"string","value":" Select tragic
, "},"instruction":{"kind":"string","value":"Select tragic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39371,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to savory
, "},"instruction":{"kind":"string","value":"Select words similar to savory"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39372,"cells":{"history_episodes":{"kind":"string","value":" Select response
, "},"instruction":{"kind":"string","value":"Select response"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39373,"cells":{"history_episodes":{"kind":"string","value":" Select home
, "},"instruction":{"kind":"string","value":"Select home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39374,"cells":{"history_episodes":{"kind":"string","value":" Select real
, "},"instruction":{"kind":"string","value":"Select real"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39375,"cells":{"history_episodes":{"kind":"string","value":" Select chop
, "},"instruction":{"kind":"string","value":"Select chop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39376,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to terrified
, "},"instruction":{"kind":"string","value":"Select words similar to terrified"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39377,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39378,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to answer, afraid, aged, little, carve
, "},"instruction":{"kind":"string","value":"Select words similar to answer, afraid, aged, little, carve"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39379,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to vehicle
, "},"instruction":{"kind":"string","value":"Select words similar to vehicle"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39380,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fearful
, "},"instruction":{"kind":"string","value":"Select words similar to fearful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39381,"cells":{"history_episodes":{"kind":"string","value":" Select archaic
, "},"instruction":{"kind":"string","value":"Select archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39382,"cells":{"history_episodes":{"kind":"string","value":" Select home
, "},"instruction":{"kind":"string","value":"Select home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39383,"cells":{"history_episodes":{"kind":"string","value":" Select delectable
, "},"instruction":{"kind":"string","value":"Select delectable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39384,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to end
, "},"instruction":{"kind":"string","value":"Select words similar to end"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39385,"cells":{"history_episodes":{"kind":"string","value":" Select old
, "},"instruction":{"kind":"string","value":"Select old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39386,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to slice
, "},"instruction":{"kind":"string","value":"Select words similar to slice"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39387,"cells":{"history_episodes":{"kind":"string","value":" Select real
, "},"instruction":{"kind":"string","value":"Select real"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39388,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to strange
, "},"instruction":{"kind":"string","value":"Select words similar to strange"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39389,"cells":{"history_episodes":{"kind":"string","value":" Select corrupt
, "},"instruction":{"kind":"string","value":"Select corrupt"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39390,"cells":{"history_episodes":{"kind":"string","value":" Select televisions
, "},"instruction":{"kind":"string","value":"Select televisions"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39391,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to chubby
, "},"instruction":{"kind":"string","value":"Select words similar to chubby"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39392,"cells":{"history_episodes":{"kind":"string","value":" Select house
, "},"instruction":{"kind":"string","value":"Select house"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39393,"cells":{"history_episodes":{"kind":"string","value":" Select conceal
, "},"instruction":{"kind":"string","value":"Select conceal"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39394,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to old
, "},"instruction":{"kind":"string","value":"Select words similar to old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39395,"cells":{"history_episodes":{"kind":"string","value":" Select fearless
, "},"instruction":{"kind":"string","value":"Select fearless"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39396,"cells":{"history_episodes":{"kind":"string","value":" Select detest
, "},"instruction":{"kind":"string","value":"Select detest"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39397,"cells":{"history_episodes":{"kind":"string","value":" Select start
, "},"instruction":{"kind":"string","value":"Select start"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39398,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":39399,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to murder
, "},"instruction":{"kind":"string","value":"Select words similar to murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":393,"numItemsPerPage":100,"numTotalItems":40186,"offset":39300,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjUyMzE0Niwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2NTI2NzQ2LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.AdCL8T2KZLEZWjUmLb_LPULKHRXtet0ip272LacmebuaA75-5krvGybkk3X9zZeofC7946x1xrwDzaFSXsJ7BA","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
Select words similar to irritated <body ref="10"><div id="wrap" ref="8"><div id="area" ref="9"><div id="boxes" ref="15"><label ref="4"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-26" text="brave"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-27" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-28" text="savory"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-29" text="enormous"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-30" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to irritated
click
5
null
stop
Select delicious <body ref="10"><div id="wrap" ref="8"><div id="area" ref="9"><div id="boxes" ref="15"><label ref="4"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-66" text="brave"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-67" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-68" text="savory"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-69" text="enormous"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-70" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select delicious
click
14
null
stop
Select fearless <body ref="10"><div id="wrap" ref="8"><div id="area" ref="9"><div id="boxes" ref="15"><label ref="4"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-106" text="brave"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="13" value="true"></input><t ref="-107" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-108" text="savory"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-109" text="enormous"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-110" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select fearless
click
13
null
stop
Select water <body ref="10"><div id="wrap" ref="8"><div id="area" ref="9"><div id="boxes" ref="15"><label ref="4"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-146" text="brave"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="13" value="true"></input><t ref="-147" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-148" text="savory"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-149" text="enormous"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-150" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select water
click
1
null
stop
Select words similar to happy <body ref="5"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-31" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-32" text="happy"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-33" text="fat"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-34" text="serene"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-35" text="reply"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-36" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to happy
click
6
null
stop
Select archaic <body ref="5"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-67" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-68" text="happy"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-69" text="fat"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-70" text="serene"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-71" text="reply"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-72" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select archaic
click
7
null
stop
Select fat <body ref="5"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-103" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-104" text="happy"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-105" text="fat"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-106" text="serene"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-107" text="reply"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-108" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select fat
click
4
null
stop
Select quiet <body ref="5"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-139" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-140" text="happy"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-141" text="fat"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-142" text="serene"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-143" text="reply"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-144" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select quiet
click
13
null
stop
Select delicious <body ref="5"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-175" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-176" text="happy"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-177" text="fat"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-178" text="serene"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-179" text="reply"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="true"></input><t ref="-180" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select delicious
click
11
null
stop
Select words similar to dumb <body ref="17"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-43" text="stupid"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-44" text="old"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-45" text="like"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-46" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-47" text="pork"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-48" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to dumb
click
4
null
stop
Select favor <body ref="17"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-91" text="stupid"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-92" text="old"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-93" text="like"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-94" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-95" text="pork"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-96" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select favor
click
14
null
stop
Select pig <body ref="17"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-139" text="stupid"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-140" text="old"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-141" text="like"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-142" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="true"></input><t ref="-143" text="pork"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-144" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select pig
click
10
null
stop
Select aged <body ref="17"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-187" text="stupid"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-188" text="old"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-189" text="like"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-190" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="true"></input><t ref="-191" text="pork"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-192" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select aged
click
2
null
stop
Select savory <body ref="17"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-295" text="stupid"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-296" text="old"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-297" text="like"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-298" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="true"></input><t ref="-299" text="pork"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-300" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select savory
click
15
null
stop
Select words similar to vermillion <body ref="13"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-26" text="crimson"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-27" text="fire"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-28" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-29" text="incorrect"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-30" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to vermillion
click
2
null
stop
Select wrong <body ref="13"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-56" text="crimson"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-57" text="fire"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-58" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-59" text="incorrect"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-60" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select wrong
click
1
null
stop
click submit <body ref="13"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-86" text="crimson"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-87" text="fire"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-88" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-89" text="incorrect"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-90" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>
click submit
click
1
null
stop
Select words similar to tragic <body ref="13"><div id="wrap" ref="10"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-26" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-27" text="furious"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-28" text="detest"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-29" text="fearful"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-30" text="miserable"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to tragic
click
1
null
stop
Select stop <body ref="13"><div id="wrap" ref="10"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-86" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-87" text="furious"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-88" text="detest"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-89" text="fearful"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-90" text="miserable"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select stop
click
5
null
stop
Select irritated <body ref="13"><div id="wrap" ref="10"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-116" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-117" text="furious"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-118" text="detest"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-119" text="fearful"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-120" text="miserable"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select irritated
click
1
null
stop
Select hate <body ref="13"><div id="wrap" ref="10"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-146" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-147" text="furious"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-148" text="detest"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-149" text="fearful"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-150" text="miserable"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select hate
click
11
null
stop
Select words similar to camouflage <body ref="3"><div id="wrap" ref="6"><div id="area" ref="13"><div id="boxes" ref="7"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-29" text="tiny"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-30" text="rabbit"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-31" text="hide"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-32" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to camouflage
click
8
null
stop
Select tiny <body ref="3"><div id="wrap" ref="6"><div id="area" ref="13"><div id="boxes" ref="7"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-61" text="tiny"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-62" text="rabbit"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-63" text="hide"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-64" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select tiny
click
10
null
stop
Select odd <body ref="3"><div id="wrap" ref="6"><div id="area" ref="13"><div id="boxes" ref="7"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-93" text="tiny"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-94" text="rabbit"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-95" text="hide"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-96" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select odd
click
1
null
stop
click submit <body ref="3"><div id="wrap" ref="6"><div id="area" ref="13"><div id="boxes" ref="7"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-117" text="tiny"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-118" text="rabbit"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-119" text="hide"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-120" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
click submit
click
1
null
stop
Select words similar to automobiles <body ref="11"><div id="wrap" ref="3"><div id="area" ref="14"><div id="boxes" ref="5"><label ref="16"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-31" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="keep"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-33" text="launch"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-34" text="loathe"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-35" text="automobile"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-36" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to automobiles
click
8
null
stop
Select launch <body ref="11"><div id="wrap" ref="3"><div id="area" ref="14"><div id="boxes" ref="5"><label ref="16"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-67" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-68" text="keep"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-69" text="launch"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-70" text="loathe"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-71" text="automobile"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-72" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select launch
click
4
null
stop
Select words similar to cheerful <body ref="10"><div id="wrap" ref="9"><div id="area" ref="13"><div id="boxes" ref="2"><label ref="15"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-31" text="scared"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-32" text="delighted"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-33" text="swine"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-34" text="reply"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-35" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-36" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to cheerful
click
11
null
stop
Select words similar to little <body ref="10"><div id="wrap" ref="11"><div id="area" ref="5"><div id="boxes" ref="4"><label ref="13"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-21" text="bunny"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-22" text="fat"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-23" text="little"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-24" text="large"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to little
click
9
null
stop
Select words similar to chop <body ref="2"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="10"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-29" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-30" text="cheerful"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-31" text="carve"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-32" text="tragic"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to chop
click
9
null
stop
Select pig <body ref="2"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="10"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-61" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-62" text="cheerful"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-63" text="carve"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-64" text="tragic"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select pig
click
7
null
stop
click submit <body ref="2"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="10"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-85" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-86" text="cheerful"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-87" text="carve"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-88" text="tragic"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
click submit
click
7
null
stop
Select words similar to terrified, answer <body ref="10"><div id="wrap" ref="7"><div id="area" ref="6"><div id="boxes" ref="2"><label ref="9"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-43" text="laughable"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-44" text="response"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-45" text="initiate"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-46" text="pork"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-47" text="miserable"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-48" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to terrified, answer
click
2
null
stop
Select words similar to bunny <body ref="3"><div id="wrap" ref="14"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-31" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-32" text="happy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-33" text="irritated"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-34" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-35" text="aged"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-36" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to bunny
click
17
null
stop
Select furious <body ref="3"><div id="wrap" ref="14"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-67" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-68" text="happy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-69" text="irritated"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-70" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-71" text="aged"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-72" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select furious
click
8
null
stop
Select cheerful <body ref="3"><div id="wrap" ref="14"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-103" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-104" text="happy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-105" text="irritated"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-106" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-107" text="aged"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-108" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select cheerful
click
11
null
stop
Select water <body ref="3"><div id="wrap" ref="14"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-139" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-140" text="happy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-141" text="irritated"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-142" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-143" text="aged"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-144" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select water
click
1
null
stop
Select kill <body ref="3"><div id="wrap" ref="14"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-175" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-176" text="happy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-177" text="irritated"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-178" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-179" text="aged"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-180" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select kill
click
15
null
stop
Select words similar to fleshy <body ref="8"><div id="wrap" ref="12"><div id="area" ref="13"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-21" text="dull"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-22" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-23" text="fat"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-24" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to fleshy
click
1
null
stop
Select weird <body ref="8"><div id="wrap" ref="12"><div id="area" ref="13"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-45" text="dull"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-46" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-47" text="fat"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-48" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select weird
click
4
null
stop
Select end <body ref="8"><div id="wrap" ref="12"><div id="area" ref="13"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-69" text="dull"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-70" text="cease"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-71" text="fat"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-72" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select end
click
11
null
stop
Select words similar to unusual <body ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><div id="boxes" ref="15"><label ref="8"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="bunnies"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-32" text="huge"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-33" text="odd"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-34" text="water"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-35" text="house"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-36" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to unusual
click
3
null
stop
Select water <body ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><div id="boxes" ref="15"><label ref="8"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-67" text="bunnies"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-68" text="huge"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-69" text="odd"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-70" text="water"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-71" text="house"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-72" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select water
click
14
null
stop
Select huge <body ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><div id="boxes" ref="15"><label ref="8"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-103" text="bunnies"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-104" text="huge"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-105" text="odd"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-106" text="water"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-107" text="house"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-108" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select huge
click
10
null
stop
Select words similar to end, depraved, detest, televisions <body ref="9"><div id="wrap" ref="17"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-43" text="end"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-44" text="tv"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-45" text="courageous"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-46" text="answer"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-47" text="dislike"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-48" text="evil"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to end, depraved, detest, televisions
click
14
null
stop
Select words similar to mild <body ref="4"><div id="wrap" ref="8"><div id="area" ref="14"><div id="boxes" ref="13"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-36" text="rabbits"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-37" text="finish"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-38" text="calm"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-39" text="sorrowful"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-40" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to mild
click
6
null
stop
Select unhappy <body ref="4"><div id="wrap" ref="8"><div id="area" ref="14"><div id="boxes" ref="13"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-76" text="rabbits"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-77" text="finish"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-78" text="calm"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-79" text="sorrowful"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-80" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select unhappy
click
3
null
stop
Select large <body ref="4"><div id="wrap" ref="8"><div id="area" ref="14"><div id="boxes" ref="13"><label ref="2"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-116" text="rabbits"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-117" text="finish"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-118" text="calm"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-119" text="sorrowful"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-120" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select large
click
1
null
stop
Select words similar to bunny <body ref="4"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="9"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="panicked"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-32" text="murder"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-33" text="rabbit"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-34" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-35" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-36" text="swine"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to bunny
click
1
null
stop
Select genuine <body ref="4"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="9"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-67" text="panicked"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-68" text="murder"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-69" text="rabbit"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-70" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="7" value="true"></input><t ref="-71" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-72" text="swine"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select genuine
click
7
null
stop
Select murder <body ref="4"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="9"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-103" text="panicked"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-104" text="murder"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-105" text="rabbit"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-106" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="7" value="true"></input><t ref="-107" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-108" text="swine"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select murder
click
15
null
stop
Select homes <body ref="4"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="9"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-139" text="panicked"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-140" text="murder"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-141" text="rabbit"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-142" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="7" value="true"></input><t ref="-143" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-144" text="swine"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select homes
click
11
null
stop
Select pig <body ref="4"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="9"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-175" text="panicked"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-176" text="murder"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-177" text="rabbit"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-178" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="7" value="true"></input><t ref="-179" text="actual"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="12" value="true"></input><t ref="-180" text="swine"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select pig
click
12
null
stop
Select words similar to chop <body ref="1"><div id="wrap" ref="2"><div id="area" ref="6"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-31" text="pig"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="17" value="true"></input><t ref="-32" text="chop"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-33" text="cars"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-34" text="actual"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-35" text="home"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="scared"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select words similar to chop
click
17
null
stop
Select genuine <body ref="1"><div id="wrap" ref="2"><div id="area" ref="6"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-67" text="pig"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="17" value="true"></input><t ref="-68" text="chop"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-69" text="cars"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-70" text="actual"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-71" text="home"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-72" text="scared"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select genuine
click
7
null
stop
Select words similar to fat, vermillion, enormous, unusual <body ref="8"><div id="wrap" ref="2"><div id="area" ref="11"><div id="boxes" ref="16"><label ref="17"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-31" text="corrupt"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="strange"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-33" text="large"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-34" text="red"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-35" text="plump"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-36" text="scared"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to fat, vermillion, enormous, unusual
click
15
null
stop
Select words similar to mild <body ref="2"><div id="wrap" ref="6"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-32" text="assassinate"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-33" text="houses"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-34" text="sorrowful"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-35" text="serene"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to mild
click
1
null
stop
Select assassinate <body ref="2"><div id="wrap" ref="6"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-67" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-68" text="assassinate"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-69" text="houses"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-70" text="sorrowful"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-71" text="serene"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-72" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select assassinate
click
14
null
stop
Select water <body ref="2"><div id="wrap" ref="6"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-103" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-104" text="assassinate"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-105" text="houses"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-106" text="sorrowful"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-107" text="serene"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-108" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select water
click
6
null
stop
Select initiate <body ref="2"><div id="wrap" ref="6"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-139" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-140" text="assassinate"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-141" text="houses"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-142" text="sorrowful"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-143" text="serene"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-144" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select initiate
click
12
null
stop
Select words similar to odd <body ref="17"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="10"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="unusual"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-32" text="despise"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-33" text="dumb"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-34" text="delicious"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="sustain"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-36" text="huge"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to odd
click
9
null
stop
Select appetizing <body ref="17"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="10"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-103" text="unusual"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-104" text="despise"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="13" value="true"></input><t ref="-105" text="dumb"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-106" text="delicious"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-107" text="sustain"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-108" text="huge"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select appetizing
click
13
null
stop
Select words similar to delicious <body ref="10"><div id="wrap" ref="11"><div id="area" ref="13"><div id="boxes" ref="4"><label ref="3"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-43" text="finish"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-44" text="delicious"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-45" text="sinful"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-46" text="laughable"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-47" text="frightened"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-48" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to delicious
click
2
null
stop
Select words similar to response <body ref="14"><div id="wrap" ref="12"><div id="area" ref="10"><div id="boxes" ref="5"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-43" text="calm"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-44" text="detest"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-45" text="incorrect"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-46" text="joyful"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-47" text="retain"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-48" text="reply"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to response
click
7
null
stop
Select calm <body ref="14"><div id="wrap" ref="12"><div id="area" ref="10"><div id="boxes" ref="5"><label ref="15"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-127" text="calm"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-128" text="detest"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-129" text="incorrect"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-130" text="joyful"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-131" text="retain"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-132" text="reply"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select calm
click
2
null
stop
Select words similar to assassinate <body ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-21" text="house"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-22" text="conceal"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-23" text="mistaken"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-24" text="kill"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to assassinate
click
10
null
stop
Select incorrect <body ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-45" text="house"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-46" text="conceal"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-47" text="mistaken"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-48" text="kill"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select incorrect
click
13
null
stop
Select words similar to start <body ref="5"><div id="wrap" ref="11"><div id="area" ref="2"><div id="boxes" ref="13"><label ref="3"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-26" text="start"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-27" text="stop"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-28" text="tv"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-29" text="red"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-30" text="automobile"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to start
click
9
null
stop
Select words similar to delectable <body ref="16"><div id="wrap" ref="8"><div id="area" ref="10"><div id="boxes" ref="17"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-31" text="love"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-32" text="delectable"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-33" text="home"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-34" text="mad"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-35" text="sorrowful"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-36" text="pork"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to delectable
click
2
null
stop
Select homes <body ref="16"><div id="wrap" ref="8"><div id="area" ref="10"><div id="boxes" ref="17"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-67" text="love"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-68" text="delectable"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-69" text="home"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-70" text="mad"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-71" text="sorrowful"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-72" text="pork"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select homes
click
3
null
stop
Select tragic <body ref="16"><div id="wrap" ref="8"><div id="area" ref="10"><div id="boxes" ref="17"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-103" text="love"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-104" text="delectable"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-105" text="home"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-106" text="mad"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="7" value="true"></input><t ref="-107" text="sorrowful"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-108" text="pork"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select tragic
click
7
null
stop
Select words similar to savory <body ref="1"><div id="wrap" ref="12"><div id="area" ref="4"><div id="boxes" ref="17"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-31" text="response"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-32" text="appetizing"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-33" text="real"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-34" text="slice"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-35" text="assassinate"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-36" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to savory
click
3
null
stop
Select response <body ref="1"><div id="wrap" ref="12"><div id="area" ref="4"><div id="boxes" ref="17"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-67" text="response"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-68" text="appetizing"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-69" text="real"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-70" text="slice"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-71" text="assassinate"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-72" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select response
click
6
null
stop
Select home <body ref="1"><div id="wrap" ref="12"><div id="area" ref="4"><div id="boxes" ref="17"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-103" text="response"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-104" text="appetizing"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-105" text="real"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-106" text="slice"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-107" text="assassinate"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="2" value="true"></input><t ref="-108" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select home
click
2
null
stop
Select real <body ref="1"><div id="wrap" ref="12"><div id="area" ref="4"><div id="boxes" ref="17"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-139" text="response"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-140" text="appetizing"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-141" text="real"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-142" text="slice"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-143" text="assassinate"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="2" value="true"></input><t ref="-144" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select real
click
7
null
stop
Select chop <body ref="1"><div id="wrap" ref="12"><div id="area" ref="4"><div id="boxes" ref="17"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-175" text="response"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-176" text="appetizing"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-177" text="real"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-178" text="slice"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-179" text="assassinate"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="2" value="true"></input><t ref="-180" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select chop
click
14
null
stop
Select words similar to terrified <body ref="2"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="12"><label ref="13"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-21" text="terrified"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-22" text="corrupt"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-23" text="stop"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-24" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to terrified
click
3
null
stop
click submit <body ref="2"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="12"><label ref="13"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-45" text="terrified"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-46" text="corrupt"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-47" text="stop"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-48" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>
click submit
click
1
null
stop
Select words similar to answer, afraid, aged, little, carve <body ref="13"><div id="wrap" ref="1"><div id="area" ref="6"><div id="boxes" ref="4"><label ref="7"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-31" text="answer"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-32" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-33" text="mini"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-34" text="afraid"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-35" text="conceal"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="chop"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to answer, afraid, aged, little, carve
click
5
null
stop
Select words similar to vehicle <body ref="2"><div id="wrap" ref="13"><div id="area" ref="5"><div id="boxes" ref="1"><label ref="14"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-36" text="mistaken"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-37" text="mini"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-38" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-39" text="comical"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-40" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to vehicle
click
9
null
stop
Select words similar to fearful <body ref="7"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="4"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-31" text="appetizing"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-32" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-33" text="panicked"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-34" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-35" text="depraved"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="home"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to fearful
click
17
null
stop
Select archaic <body ref="7"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="4"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-67" text="appetizing"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-68" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-69" text="panicked"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-70" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-71" text="depraved"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-72" text="home"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select archaic
click
3
null
stop
Select home <body ref="7"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="4"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-103" text="appetizing"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-104" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-105" text="panicked"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-106" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-107" text="depraved"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-108" text="home"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select home
click
6
null
stop
Select delectable <body ref="7"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="4"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-139" text="appetizing"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-140" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="9" value="true"></input><t ref="-141" text="panicked"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-142" text="television"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-143" text="depraved"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-144" text="home"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select delectable
click
9
null
stop
Select words similar to end <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-16" text="old"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-17" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-18" text="end"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to end
click
10
null
stop
Select old <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-34" text="old"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-35" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-36" text="end"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select old
click
3
null
stop
Select words similar to slice <body ref="1"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="7"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-26" text="conceal"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-27" text="calm"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-28" text="genuine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-29" text="scared"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-30" text="carve"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to slice
click
12
null
stop
Select real <body ref="1"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="7"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-56" text="conceal"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-57" text="calm"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="9" value="true"></input><t ref="-58" text="genuine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-59" text="scared"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-60" text="carve"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select real
click
9
null
stop
Select words similar to strange <body ref="5"><div id="wrap" ref="15"><div id="area" ref="14"><div id="boxes" ref="7"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-43" text="begin"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="17" value="false"></input><t ref="-44" text="television"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-45" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-46" text="odd"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-47" text="end"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-48" text="aged"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to strange
click
3
null
stop
Select corrupt <body ref="5"><div id="wrap" ref="15"><div id="area" ref="14"><div id="boxes" ref="7"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-91" text="begin"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="17" value="true"></input><t ref="-92" text="television"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-93" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-94" text="odd"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-95" text="end"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-96" text="aged"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select corrupt
click
17
null
stop
Select televisions <body ref="5"><div id="wrap" ref="15"><div id="area" ref="14"><div id="boxes" ref="7"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-139" text="begin"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="17" value="true"></input><t ref="-140" text="television"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="16" value="true"></input><t ref="-141" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-142" text="odd"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-143" text="end"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-144" text="aged"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select televisions
click
16
null
stop
Select words similar to chubby <body ref="13"><div id="wrap" ref="2"><div id="area" ref="3"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-31" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-32" text="fat"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-33" text="fearless"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-34" text="camouflage"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-35" text="crimson"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-36" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to chubby
click
12
null
stop
Select house <body ref="13"><div id="wrap" ref="2"><div id="area" ref="3"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-67" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-68" text="fat"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-69" text="fearless"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-70" text="camouflage"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-71" text="crimson"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-72" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select house
click
9
null
stop
Select conceal <body ref="13"><div id="wrap" ref="2"><div id="area" ref="3"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-103" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-104" text="fat"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-105" text="fearless"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-106" text="camouflage"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-107" text="crimson"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-108" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select conceal
click
2
null
stop
Select words similar to old <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="8"><label ref="5"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-26" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-27" text="fearless"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-28" text="initiate"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-29" text="dislike"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-30" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to old
click
9
null
stop
Select fearless <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="8"><label ref="5"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-56" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-57" text="fearless"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-58" text="initiate"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-59" text="dislike"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-60" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select fearless
click
2
null
stop
Select detest <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="8"><label ref="5"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-86" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-87" text="fearless"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-88" text="initiate"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-89" text="dislike"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-90" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select detest
click
15
null
stop
Select start <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="8"><label ref="5"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-116" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-117" text="fearless"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-118" text="initiate"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-119" text="dislike"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-120" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select start
click
4
null
stop
click submit <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="8"><label ref="5"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-146" text="archaic"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-147" text="fearless"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-148" text="initiate"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-149" text="dislike"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-150" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>
click submit
click
4
null
stop
Select words similar to murder <body ref="11"><div id="wrap" ref="6"><div id="area" ref="3"><div id="boxes" ref="8"><label ref="13"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-36" text="fire"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-37" text="murder"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-38" text="quiet"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-39" text="archaic"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-40" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to murder
click
10
null
stop