{ // 获取包含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 homes"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38701,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to miserable
, "},"instruction":{"kind":"string","value":"Select words similar to miserable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38702,"cells":{"history_episodes":{"kind":"string","value":" Select detest
, "},"instruction":{"kind":"string","value":"Select detest"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38703,"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":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38704,"cells":{"history_episodes":{"kind":"string","value":" Select huge
, "},"instruction":{"kind":"string","value":"Select huge"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38705,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38706,"cells":{"history_episodes":{"kind":"string","value":" Select hide
, "},"instruction":{"kind":"string","value":"Select hide"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38707,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to tiny
, "},"instruction":{"kind":"string","value":"Select words similar to tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38708,"cells":{"history_episodes":{"kind":"string","value":" Select begin
, "},"instruction":{"kind":"string","value":"Select begin"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38709,"cells":{"history_episodes":{"kind":"string","value":" Select frightened
, "},"instruction":{"kind":"string","value":"Select frightened"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38710,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to home
, "},"instruction":{"kind":"string","value":"Select words similar to home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38711,"cells":{"history_episodes":{"kind":"string","value":" Select automobiles
, "},"instruction":{"kind":"string","value":"Select automobiles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38712,"cells":{"history_episodes":{"kind":"string","value":" Select mad
, "},"instruction":{"kind":"string","value":"Select mad"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38713,"cells":{"history_episodes":{"kind":"string","value":" Select like
, "},"instruction":{"kind":"string","value":"Select like"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38714,"cells":{"history_episodes":{"kind":"string","value":" Select peculiar
, "},"instruction":{"kind":"string","value":"Select peculiar"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38715,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to televisions
, "},"instruction":{"kind":"string","value":"Select words similar to televisions"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38716,"cells":{"history_episodes":{"kind":"string","value":" Select vehicles
, "},"instruction":{"kind":"string","value":"Select vehicles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38717,"cells":{"history_episodes":{"kind":"string","value":" Select incorrect
, "},"instruction":{"kind":"string","value":"Select incorrect"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38718,"cells":{"history_episodes":{"kind":"string","value":" Select happy
, "},"instruction":{"kind":"string","value":"Select happy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38719,"cells":{"history_episodes":{"kind":"string","value":" Select rabbits
, "},"instruction":{"kind":"string","value":"Select rabbits"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38720,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fires
, "},"instruction":{"kind":"string","value":"Select words similar to fires"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38721,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to actual
, "},"instruction":{"kind":"string","value":"Select words similar to actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38722,"cells":{"history_episodes":{"kind":"string","value":" Select rabbit
, "},"instruction":{"kind":"string","value":"Select rabbit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38723,"cells":{"history_episodes":{"kind":"string","value":" Select furious
, "},"instruction":{"kind":"string","value":"Select furious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38724,"cells":{"history_episodes":{"kind":"string","value":" Select launch
, "},"instruction":{"kind":"string","value":"Select launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38725,"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":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38726,"cells":{"history_episodes":{"kind":"string","value":" Select fat
, "},"instruction":{"kind":"string","value":"Select fat"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38727,"cells":{"history_episodes":{"kind":"string","value":" Select weird
, "},"instruction":{"kind":"string","value":"Select weird"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38728,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to gigantic
, "},"instruction":{"kind":"string","value":"Select words similar to gigantic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38729,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to quiet, courageous










, "},"instruction":{"kind":"string","value":"Select words similar to quiet, courageous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38730,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to angry
, "},"instruction":{"kind":"string","value":"Select words similar to angry"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38731,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to unwise, laughable, odd
, "},"instruction":{"kind":"string","value":"Select words similar to unwise, laughable, odd"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38732,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to frightened










, "},"instruction":{"kind":"string","value":"Select words similar to frightened"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38733,"cells":{"history_episodes":{"kind":"string","value":" Select petite










, "},"instruction":{"kind":"string","value":"Select petite"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38734,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to amusing
, "},"instruction":{"kind":"string","value":"Select words similar to amusing"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38735,"cells":{"history_episodes":{"kind":"string","value":" Select angry
, "},"instruction":{"kind":"string","value":"Select angry"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38736,"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":38737,"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":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38738,"cells":{"history_episodes":{"kind":"string","value":" Select fires
, "},"instruction":{"kind":"string","value":"Select fires"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38739,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delighted
, "},"instruction":{"kind":"string","value":"Select words similar to delighted"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38740,"cells":{"history_episodes":{"kind":"string","value":" Select funny
, "},"instruction":{"kind":"string","value":"Select funny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38741,"cells":{"history_episodes":{"kind":"string","value":" Select mini
, "},"instruction":{"kind":"string","value":"Select mini"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38742,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to begin
, "},"instruction":{"kind":"string","value":"Select words similar to begin"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38743,"cells":{"history_episodes":{"kind":"string","value":" Select despise
, "},"instruction":{"kind":"string","value":"Select despise"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38744,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delighted, response, camouflage
, "},"instruction":{"kind":"string","value":"Select words similar to delighted, response, camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38745,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to pig
, "},"instruction":{"kind":"string","value":"Select words similar to pig"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38746,"cells":{"history_episodes":{"kind":"string","value":" Select courageous
, "},"instruction":{"kind":"string","value":"Select courageous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38747,"cells":{"history_episodes":{"kind":"string","value":" Select assassinate
, "},"instruction":{"kind":"string","value":"Select assassinate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38748,"cells":{"history_episodes":{"kind":"string","value":" Select dull
, "},"instruction":{"kind":"string","value":"Select dull"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38749,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to love
, "},"instruction":{"kind":"string","value":"Select words similar to love"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38750,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to serene














, "},"instruction":{"kind":"string","value":"Select words similar to serene"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38751,"cells":{"history_episodes":{"kind":"string","value":" Select dull














, "},"instruction":{"kind":"string","value":"Select dull"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38752,"cells":{"history_episodes":{"kind":"string","value":" Select gigantic














, "},"instruction":{"kind":"string","value":"Select gigantic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38753,"cells":{"history_episodes":{"kind":"string","value":" Select aged














, "},"instruction":{"kind":"string","value":"Select aged"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38754,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to archaic, chubby, homes, frightened, end
, "},"instruction":{"kind":"string","value":"Select words similar to archaic, chubby, homes, frightened, end"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38755,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fat
, "},"instruction":{"kind":"string","value":"Select words similar to fat"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38756,"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":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38757,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mini
, "},"instruction":{"kind":"string","value":"Select words similar to mini"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38758,"cells":{"history_episodes":{"kind":"string","value":" Select enormous
, "},"instruction":{"kind":"string","value":"Select enormous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38759,"cells":{"history_episodes":{"kind":"string","value":" Select vehicles
, "},"instruction":{"kind":"string","value":"Select vehicles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38760,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38761,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to irritated
, "},"instruction":{"kind":"string","value":"Select words similar to irritated"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38762,"cells":{"history_episodes":{"kind":"string","value":" Select small
, "},"instruction":{"kind":"string","value":"Select small"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38763,"cells":{"history_episodes":{"kind":"string","value":" Select scarlet
, "},"instruction":{"kind":"string","value":"Select scarlet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38764,"cells":{"history_episodes":{"kind":"string","value":" Select archaic
, "},"instruction":{"kind":"string","value":"Select archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38765,"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":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38766,"cells":{"history_episodes":{"kind":"string","value":" Select preserve
, "},"instruction":{"kind":"string","value":"Select preserve"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38767,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38768,"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":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38769,"cells":{"history_episodes":{"kind":"string","value":" Select wrong
, "},"instruction":{"kind":"string","value":"Select wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38770,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to rabbit, crimson, laughable
, "},"instruction":{"kind":"string","value":"Select words similar to rabbit, crimson, laughable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38771,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fearless, loathe, savory, like, houses














, "},"instruction":{"kind":"string","value":"Select words similar to fearless, loathe, savory, like, houses"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38772,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fat
, "},"instruction":{"kind":"string","value":"Select words similar to fat"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38773,"cells":{"history_episodes":{"kind":"string","value":" Select television
, "},"instruction":{"kind":"string","value":"Select television"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38774,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38775,"cells":{"history_episodes":{"kind":"string","value":" Select automobiles
, "},"instruction":{"kind":"string","value":"Select automobiles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38776,"cells":{"history_episodes":{"kind":"string","value":" Select big
, "},"instruction":{"kind":"string","value":"Select big"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38777,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to television
, "},"instruction":{"kind":"string","value":"Select words similar to television"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38778,"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":38779,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to retain
, "},"instruction":{"kind":"string","value":"Select words similar to retain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38780,"cells":{"history_episodes":{"kind":"string","value":" Select actual
, "},"instruction":{"kind":"string","value":"Select actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38781,"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":38782,"cells":{"history_episodes":{"kind":"string","value":" Select cut
, "},"instruction":{"kind":"string","value":"Select cut"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38783,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to comical
, "},"instruction":{"kind":"string","value":"Select words similar to comical"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38784,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to answer
, "},"instruction":{"kind":"string","value":"Select words similar to answer"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38785,"cells":{"history_episodes":{"kind":"string","value":" Select cars
, "},"instruction":{"kind":"string","value":"Select cars"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38786,"cells":{"history_episodes":{"kind":"string","value":" Select dumb
, "},"instruction":{"kind":"string","value":"Select dumb"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38787,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38788,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to TV
, "},"instruction":{"kind":"string","value":"Select words similar to TV"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38789,"cells":{"history_episodes":{"kind":"string","value":" Select sad
, "},"instruction":{"kind":"string","value":"Select sad"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38790,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to dislike, launch, carve, home, plump
, "},"instruction":{"kind":"string","value":"Select words similar to dislike, launch, carve, home, plump"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38791,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to keep
, "},"instruction":{"kind":"string","value":"Select words similar to keep"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38792,"cells":{"history_episodes":{"kind":"string","value":" Select despise
, "},"instruction":{"kind":"string","value":"Select despise"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38793,"cells":{"history_episodes":{"kind":"string","value":" Select stop
, "},"instruction":{"kind":"string","value":"Select stop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38794,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to detest, hide, scared, murder
, "},"instruction":{"kind":"string","value":"Select words similar to detest, hide, scared, murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38795,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to laughable, mild, rabbits, unwise, wrong
, "},"instruction":{"kind":"string","value":"Select words similar to laughable, mild, rabbits, unwise, wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38796,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38797,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to begin
, "},"instruction":{"kind":"string","value":"Select words similar to begin"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38798,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":38799,"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"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":387,"numItemsPerPage":100,"numTotalItems":40186,"offset":38700,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NzU0MzE2Miwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU3NTQ2NzYyLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.sRlG2GB3tTt0F0WqVgEDfi6nL4QkjpbQNKmJ5BPaFA6K4UKikN8KH0_BE3tsbT7PguehMXx7WpC_N5b2py_UAw","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 homes <body ref="8"><div id="wrap" ref="3"><div id="area" ref="5"><div id="boxes" ref="11"><label ref="12"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-56" text="home"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-57" text="erroneous"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-58" text="rabbits"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-59" text="delicious"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-60" text="mad"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select homes
click
6
null
stop
Select words similar to miserable <body ref="11"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="9"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-31" text="dumb"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-32" text="strange"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="17" value="true"></input><t ref="-33" text="unhappy"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-34" text="despise"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-35" text="large"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to miserable
click
17
null
stop
Select detest <body ref="11"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="9"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-67" text="dumb"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-68" text="strange"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="17" value="true"></input><t ref="-69" text="unhappy"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-70" text="despise"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-71" text="large"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-72" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select detest
click
3
null
stop
Select words similar to assassinate <body ref="13"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-43" text="gigantic"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-44" text="hide"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-45" text="response"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="16" value="false"></input><t ref="-46" text="dislike"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-47" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-48" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to assassinate
click
14
null
stop
Select huge <body ref="13"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-91" text="gigantic"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-92" text="hide"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-93" text="response"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="16" value="false"></input><t ref="-94" text="dislike"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-95" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-96" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select huge
click
8
null
stop
Select water <body ref="13"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-139" text="gigantic"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-140" text="hide"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-141" text="response"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-142" text="dislike"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-143" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-144" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select water
click
16
null
stop
Select hide <body ref="13"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-187" text="gigantic"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-188" text="hide"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-189" text="response"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-190" text="dislike"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-191" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-192" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select hide
click
2
null
stop
Select words similar to tiny <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="14"><label ref="17"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-31" text="calm"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="terrified"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-33" text="delighted"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-34" text="mini"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-35" text="house"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to tiny
click
16
null
stop
Select begin <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="14"><label ref="17"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-67" text="calm"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-68" text="terrified"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-69" text="delighted"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-70" text="mini"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-71" text="house"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-72" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select begin
click
4
null
stop
Select frightened <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="14"><label ref="17"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-103" text="calm"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-104" text="terrified"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-105" text="delighted"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-106" text="mini"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-107" text="house"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-108" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select frightened
click
9
null
stop
Select words similar to home <body ref="11"><div id="wrap" ref="12"><div id="area" ref="1"><div id="boxes" ref="6"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-43" text="afraid"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-44" text="like"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-45" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-46" text="automobile"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-47" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-48" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to home
click
5
null
stop
Select automobiles <body ref="11"><div id="wrap" ref="12"><div id="area" ref="1"><div id="boxes" ref="6"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-91" text="afraid"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-92" text="like"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-93" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="true"></input><t ref="-94" text="automobile"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-95" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-96" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select automobiles
click
17
null
stop
Select mad <body ref="11"><div id="wrap" ref="12"><div id="area" ref="1"><div id="boxes" ref="6"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-139" text="afraid"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-140" text="like"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-141" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="true"></input><t ref="-142" text="automobile"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-143" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-144" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select mad
click
15
null
stop
Select like <body ref="11"><div id="wrap" ref="12"><div id="area" ref="1"><div id="boxes" ref="6"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-187" text="afraid"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-188" text="like"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-189" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="true"></input><t ref="-190" text="automobile"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-191" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="13" value="true"></input><t ref="-192" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select like
click
13
null
stop
Select peculiar <body ref="11"><div id="wrap" ref="12"><div id="area" ref="1"><div id="boxes" ref="6"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-235" text="afraid"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-236" text="like"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="true"></input><t ref="-237" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="true"></input><t ref="-238" text="automobile"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-239" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="13" value="true"></input><t ref="-240" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select peculiar
click
16
null
stop
Select words similar to televisions <body ref="3"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-31" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-32" text="vehicles"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-33" text="water"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-34" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-35" text="erroneous"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-36" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to televisions
click
6
null
stop
Select vehicles <body ref="3"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-67" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-68" text="vehicles"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-69" text="water"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-70" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-71" text="erroneous"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-72" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select vehicles
click
12
null
stop
Select incorrect <body ref="3"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-103" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-104" text="vehicles"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-105" text="water"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-106" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-107" text="erroneous"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-108" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select incorrect
click
1
null
stop
Select happy <body ref="3"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-139" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-140" text="vehicles"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-141" text="water"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-142" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-143" text="erroneous"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-144" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select happy
click
7
null
stop
Select rabbits <body ref="3"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-175" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-176" text="vehicles"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-177" text="water"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-178" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-179" text="erroneous"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-180" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select rabbits
click
5
null
stop
Select words similar to fires <body ref="13"><div id="wrap" ref="7"><div id="area" ref="2"><div id="boxes" ref="11"><label ref="3"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-21" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-22" text="fire"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-23" text="appetizing"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-24" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to fires
click
5
null
stop
Select words similar to actual <body ref="2"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-31" text="mad"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-32" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-33" text="initiate"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-34" text="camouflage"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-35" text="real"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-36" text="crimson"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to actual
click
13
null
stop
Select rabbit <body ref="2"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-67" text="mad"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-68" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-69" text="initiate"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-70" text="camouflage"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-71" text="real"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-72" text="crimson"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select rabbit
click
7
null
stop
Select furious <body ref="2"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-103" text="mad"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-104" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-105" text="initiate"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-106" text="camouflage"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-107" text="real"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-108" text="crimson"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select furious
click
5
null
stop
Select launch <body ref="2"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-139" text="mad"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-140" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-141" text="initiate"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-142" text="camouflage"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-143" text="real"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-144" text="crimson"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select launch
click
10
null
stop
Select words similar to bunny <body ref="10"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-43" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-44" text="unwise"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-45" text="bunny"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-46" text="brave"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-47" text="fire"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-48" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to bunny
click
6
null
stop
Select fat <body ref="10"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-91" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-92" text="unwise"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-93" text="bunny"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-94" text="brave"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-95" text="fire"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-96" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select fat
click
14
null
stop
Select weird <body ref="10"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-139" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-140" text="unwise"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-141" text="bunny"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-142" text="brave"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-143" text="fire"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-144" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select weird
click
3
null
stop
Select words similar to gigantic <body ref="9"><div id="wrap" ref="10"><div id="area" ref="8"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-22" text="real"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-23" text="big"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-24" text="bunnies"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to gigantic
click
2
null
stop
Select words similar to quiet, courageous <body ref="16"><div id="wrap" ref="4"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="1"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-29" text="fearless"></t></label><br ref="18"></br><label ref="17"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-30" text="peculiar"></t></label><br ref="9"></br><label ref="5"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-31" text="preserve"></t></label><br ref="2"></br><label ref="6"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-32" text="quiet"></t></label><br ref="15"></br></div><br ref="13"></br><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to quiet, courageous
click
7
null
stop
Select words similar to angry <body ref="7"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="1"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-21" text="odd"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-22" text="furious"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-23" text="fearless"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-24" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to angry
click
6
null
stop
Select words similar to unwise, laughable, odd <body ref="6"><div id="wrap" ref="12"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="3"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-26" text="delicious"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-27" text="funny"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-28" text="flame"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-29" text="weird"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-30" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to unwise, laughable, odd
click
10
null
stop
Select words similar to frightened <body ref="5"><div id="wrap" ref="18"><div id="area" ref="11"><div id="boxes" ref="17"><label ref="4"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-21" text="reply"></t></label><br ref="12"></br><label ref="1"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-22" text="petite"></t></label><br ref="16"></br><label ref="6"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-23" text="old"></t></label><br ref="13"></br><label ref="9"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-24" text="frightened"></t></label><br ref="3"></br></div><br ref="14"></br><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to frightened
click
15
null
stop
Select petite <body ref="5"><div id="wrap" ref="18"><div id="area" ref="11"><div id="boxes" ref="17"><label ref="4"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-45" text="reply"></t></label><br ref="12"></br><label ref="1"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-46" text="petite"></t></label><br ref="16"></br><label ref="6"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-47" text="old"></t></label><br ref="13"></br><label ref="9"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-48" text="frightened"></t></label><br ref="3"></br></div><br ref="14"></br><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select petite
click
7
null
stop
Select words similar to amusing <body ref="12"><div id="wrap" ref="4"><div id="area" ref="9"><div id="boxes" ref="3"><label ref="5"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-31" text="scared"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-32" text="favor"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-33" text="conceal"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-34" text="plump"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-35" text="comical"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="furious"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to amusing
click
14
null
stop
Select angry <body ref="12"><div id="wrap" ref="4"><div id="area" ref="9"><div id="boxes" ref="3"><label ref="5"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-67" text="scared"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-68" text="favor"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-69" text="conceal"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-70" text="plump"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-71" text="comical"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-72" text="furious"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select angry
click
4
null
stop
click submit <body ref="12"><div id="wrap" ref="4"><div id="area" ref="9"><div id="boxes" ref="3"><label ref="5"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-103" text="scared"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-104" text="favor"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-105" text="conceal"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-106" text="plump"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-107" text="comical"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-108" text="furious"></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 odd <body ref="5"><div id="wrap" ref="10"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="9"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-29" text="fires"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-30" text="cars"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-31" text="tv"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-32" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to odd
click
12
null
stop
Select fires <body ref="5"><div id="wrap" ref="10"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="9"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-61" text="fires"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-62" text="cars"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-63" text="tv"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-64" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select fires
click
13
null
stop
Select words similar to delighted <body ref="9"><div id="wrap" ref="11"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-26" text="amusing"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-27" text="kill"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-28" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-29" text="joyful"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-30" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to delighted
click
10
null
stop
Select funny <body ref="9"><div id="wrap" ref="11"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-56" text="amusing"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-57" text="kill"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-58" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-59" text="joyful"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-60" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select funny
click
13
null
stop
Select mini <body ref="9"><div id="wrap" ref="11"><div id="area" ref="12"><div id="boxes" ref="6"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-86" text="amusing"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-87" text="kill"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-88" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-89" text="joyful"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-90" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select mini
click
4
null
stop
Select words similar to begin <body ref="10"><div id="wrap" ref="7"><div id="area" ref="2"><div id="boxes" ref="12"><label ref="4"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-21" text="savory"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-22" text="detest"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-23" text="adore"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-24" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to begin
click
11
null
stop
Select despise <body ref="10"><div id="wrap" ref="7"><div id="area" ref="2"><div id="boxes" ref="12"><label ref="4"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-45" text="savory"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-46" text="detest"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-47" text="adore"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-48" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select despise
click
5
null
stop
Select words similar to delighted, response, camouflage <body ref="11"><div id="wrap" ref="15"><div id="area" ref="3"><div id="boxes" ref="14"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-36" text="happy"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-37" text="homes"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="13" value="true"></input><t ref="-38" text="camouflage"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-39" text="answer"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-40" text="immoral"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to delighted, response, camouflage
click
13
null
stop
Select words similar to pig <body ref="16"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="12"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-31" text="murder"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-32" text="flame"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-33" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-34" text="brave"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-35" text="fleshy"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="true"></input><t ref="-36" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to pig
click
11
null
stop
Select courageous <body ref="16"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="12"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-67" text="murder"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-68" text="flame"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-69" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-70" text="brave"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-71" text="fleshy"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="true"></input><t ref="-72" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select courageous
click
13
null
stop
Select assassinate <body ref="16"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="12"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-103" text="murder"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-104" text="flame"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-105" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-106" text="brave"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-107" text="fleshy"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="true"></input><t ref="-108" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select assassinate
click
4
null
stop
Select dull <body ref="16"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="12"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-139" text="murder"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-140" text="flame"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-141" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-142" text="brave"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-143" text="fleshy"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="true"></input><t ref="-144" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select dull
click
15
null
stop
Select words similar to love <body ref="12"><div id="wrap" ref="10"><div id="area" ref="2"><div id="boxes" ref="1"><label ref="8"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-29" text="conceal"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-30" text="old"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-31" text="carve"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-32" text="like"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to love
click
13
null
stop
Select words similar to serene <body ref="12"><div id="wrap" ref="21"><div id="area" ref="24"><div id="boxes" ref="18"><label ref="7"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-31" text="hide"></t></label><br ref="8"></br><label ref="4"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-32" text="archaic"></t></label><br ref="5"></br><label ref="13"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-33" text="serene"></t></label><br ref="17"></br><label ref="11"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-34" text="amusing"></t></label><br ref="10"></br><label ref="14"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="large"></t></label><br ref="20"></br><label ref="19"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="stupid"></t></label><br ref="23"></br></div><br ref="22"></br><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to serene
click
3
null
stop
Select dull <body ref="12"><div id="wrap" ref="21"><div id="area" ref="24"><div id="boxes" ref="18"><label ref="7"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-67" text="hide"></t></label><br ref="8"></br><label ref="4"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-68" text="archaic"></t></label><br ref="5"></br><label ref="13"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-69" text="serene"></t></label><br ref="17"></br><label ref="11"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-70" text="amusing"></t></label><br ref="10"></br><label ref="14"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-71" text="large"></t></label><br ref="20"></br><label ref="19"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-72" text="stupid"></t></label><br ref="23"></br></div><br ref="22"></br><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select dull
click
2
null
stop
Select gigantic <body ref="12"><div id="wrap" ref="21"><div id="area" ref="24"><div id="boxes" ref="18"><label ref="7"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-103" text="hide"></t></label><br ref="8"></br><label ref="4"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-104" text="archaic"></t></label><br ref="5"></br><label ref="13"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-105" text="serene"></t></label><br ref="17"></br><label ref="11"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-106" text="amusing"></t></label><br ref="10"></br><label ref="14"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-107" text="large"></t></label><br ref="20"></br><label ref="19"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-108" text="stupid"></t></label><br ref="23"></br></div><br ref="22"></br><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select gigantic
click
15
null
stop
Select aged <body ref="12"><div id="wrap" ref="21"><div id="area" ref="24"><div id="boxes" ref="18"><label ref="7"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-139" text="hide"></t></label><br ref="8"></br><label ref="4"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-140" text="archaic"></t></label><br ref="5"></br><label ref="13"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-141" text="serene"></t></label><br ref="17"></br><label ref="11"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-142" text="amusing"></t></label><br ref="10"></br><label ref="14"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-143" text="large"></t></label><br ref="20"></br><label ref="19"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-144" text="stupid"></t></label><br ref="23"></br></div><br ref="22"></br><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select aged
click
6
null
stop
Select words similar to archaic, chubby, homes, frightened, end <body ref="17"><div id="wrap" ref="3"><div id="area" ref="9"><div id="boxes" ref="12"><label ref="7"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-31" text="home"></t></label><label ref="16"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-32" text="start"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-33" text="halt"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-34" text="archaic"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-35" text="fat"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-36" text="scared"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to archaic, chubby, homes, frightened, end
click
1
null
stop
Select words similar to fat <body ref="2"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="7"><label ref="13"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-29" text="fat"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-30" text="appetizing"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-31" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-32" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to fat
click
3
null
stop
Select words similar to savory <body ref="9"><div id="wrap" ref="7"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="11"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-43" text="appetizing"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="17" value="false"></input><t ref="-44" text="tvs"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-45" text="fires"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-46" text="huge"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-47" text="adore"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-48" text="house"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to savory
click
12
null
stop
Select words similar to mini <body ref="13"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-31" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-32" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-33" text="calm"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-34" text="tiny"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-35" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-36" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to mini
click
6
null
stop
Select enormous <body ref="13"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-67" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-68" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-69" text="calm"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-70" text="tiny"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-71" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="5" value="true"></input><t ref="-72" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select enormous
click
5
null
stop
Select vehicles <body ref="13"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-103" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-104" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-105" text="calm"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-106" text="tiny"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-107" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="5" value="true"></input><t ref="-108" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select vehicles
click
8
null
stop
click submit <body ref="13"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-139" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-140" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-141" text="calm"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-142" text="tiny"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="10" value="false"></input><t ref="-143" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="5" value="true"></input><t ref="-144" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>
click submit
click
8
null
stop
Select words similar to irritated <body ref="15"><div id="wrap" ref="14"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-31" text="cheerful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-32" text="mini"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-33" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-34" text="pork"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-35" text="irritated"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-36" text="old"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to irritated
click
12
null
stop
Select small <body ref="15"><div id="wrap" ref="14"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-67" text="cheerful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-68" text="mini"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-69" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-70" text="pork"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-71" text="irritated"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-72" text="old"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select small
click
1
null
stop
Select scarlet <body ref="15"><div id="wrap" ref="14"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-103" text="cheerful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-104" text="mini"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-105" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-106" text="pork"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-107" text="irritated"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-108" text="old"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select scarlet
click
10
null
stop
Select archaic <body ref="15"><div id="wrap" ref="14"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-139" text="cheerful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-140" text="mini"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="9" value="true"></input><t ref="-141" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-142" text="pork"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-143" text="irritated"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-144" text="old"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select archaic
click
9
null
stop
Select words similar to old <body ref="11"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="13"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-26" text="aged"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-27" text="big"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-28" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-29" text="bunnies"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-30" text="serene"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to old
click
14
null
stop
Select preserve <body ref="11"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="13"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-56" text="aged"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-57" text="big"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-58" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-59" text="bunnies"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-60" text="serene"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select preserve
click
8
null
stop
click submit <body ref="11"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="13"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-86" text="aged"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-87" text="big"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-88" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-89" text="bunnies"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-90" text="serene"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>
click submit
click
8
null
stop
Select words similar to assassinate <body ref="2"><div id="wrap" ref="3"><div id="area" ref="6"><div id="boxes" ref="1"><label ref="11"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-16" text="loathe"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-17" text="wrong"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-18" text="assassinate"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to assassinate
click
5
null
stop
Select wrong <body ref="2"><div id="wrap" ref="3"><div id="area" ref="6"><div id="boxes" ref="1"><label ref="11"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-34" text="loathe"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-35" text="wrong"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="9" value="true"></input><t ref="-36" text="assassinate"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select wrong
click
9
null
stop
Select words similar to rabbit, crimson, laughable <body ref="4"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="3"><label ref="9"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-36" text="response"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-37" text="loathe"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-38" text="laughable"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-39" text="rabbit"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-40" text="red"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to rabbit, crimson, laughable
click
5
null
stop
Select words similar to fearless, loathe, savory, like, houses <body ref="7"><div id="wrap" ref="4"><div id="area" ref="16"><div id="boxes" ref="1"><label ref="5"><input type="checkbox" id="ch0" ref="19" value="false"></input><t ref="-43" text="brave"></t></label><br ref="14"></br><label ref="20"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-44" text="home"></t></label><br ref="18"></br><label ref="8"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-45" text="like"></t></label><br ref="13"></br><label ref="6"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-46" text="delicious"></t></label><br ref="2"></br><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-47" text="loathe"></t></label><br ref="16"></br><label ref="1"><input type="checkbox" id="ch5" ref="10" value="false"></input><t ref="-48" text="big"></t></label><br ref="11"></br></div><br ref="12"></br><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to fearless, loathe, savory, like, houses
click
9
null
stop
Select words similar to fat <body ref="12"><div id="wrap" ref="9"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-43" text="water"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-44" text="vehicle"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-45" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-46" text="tragic"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-47" text="fleshy"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-48" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to fat
click
14
null
stop
Select television <body ref="12"><div id="wrap" ref="9"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-91" text="water"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-92" text="vehicle"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-93" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-94" text="tragic"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-95" text="fleshy"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-96" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select television
click
15
null
stop
Select water <body ref="12"><div id="wrap" ref="9"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-139" text="water"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-140" text="vehicle"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-141" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-142" text="tragic"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-143" text="fleshy"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-144" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select water
click
8
null
stop
Select automobiles <body ref="12"><div id="wrap" ref="9"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-187" text="water"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-188" text="vehicle"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-189" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-190" text="tragic"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-191" text="fleshy"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="16" value="true"></input><t ref="-192" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select automobiles
click
16
null
stop
Select big <body ref="12"><div id="wrap" ref="9"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-235" text="water"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-236" text="vehicle"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-237" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-238" text="tragic"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-239" text="fleshy"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="16" value="true"></input><t ref="-240" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select big
click
2
null
stop
Select words similar to television <body ref="10"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="8"><label ref="16"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-31" text="sustain"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-32" text="chop"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-33" text="tv"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-34" text="corrupt"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-35" text="scarlet"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-36" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to television
click
5
null
stop
click submit <body ref="10"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="8"><label ref="16"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-67" text="sustain"></t></label><label ref="15"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-68" text="chop"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-69" text="tv"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-70" text="corrupt"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-71" text="scarlet"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-72" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
click submit
click
4
null
stop
Select words similar to retain <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-31" text="cut"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-32" text="actual"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-33" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-34" text="enormous"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-35" text="keep"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-36" text="houses"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to retain
click
13
null
stop
Select actual <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-67" text="cut"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-68" text="actual"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-69" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-70" text="enormous"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-71" text="keep"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-72" text="houses"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select actual
click
12
null
stop
Select homes <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-103" text="cut"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-104" text="actual"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-105" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-106" text="enormous"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-107" text="keep"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-108" text="houses"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select homes
click
3
null
stop
Select cut <body ref="6"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="2"><label ref="16"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-139" text="cut"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-140" text="actual"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-141" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-142" text="enormous"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-143" text="keep"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-144" text="houses"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select cut
click
14
null
stop
Select words similar to comical <body ref="8"><div id="wrap" ref="2"><div id="area" ref="11"><div id="boxes" ref="3"><label ref="1"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-36" text="fire"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-37" text="funny"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-38" text="fearful"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-39" text="delectable"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-40" text="tv"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to comical
click
10
null
stop
Select words similar to answer <body ref="16"><div id="wrap" ref="13"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="15"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-43" text="dull"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-44" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-45" text="camouflage"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-46" text="cars"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-47" text="response"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-48" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to answer
click
5
null
stop
Select cars <body ref="16"><div id="wrap" ref="13"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="15"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-91" text="dull"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-92" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-93" text="camouflage"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-94" text="cars"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-95" text="response"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-96" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select cars
click
6
null
stop
Select dumb <body ref="16"><div id="wrap" ref="13"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="15"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-139" text="dull"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-140" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-141" text="camouflage"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-142" text="cars"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-143" text="response"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-144" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select dumb
click
10
null
stop
click submit <body ref="16"><div id="wrap" ref="13"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="15"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-175" text="dull"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-176" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-177" text="camouflage"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-178" text="cars"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-179" text="response"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-180" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
click submit
click
10
null
stop
Select words similar to TV <body ref="12"><div id="wrap" ref="13"><div id="area" ref="6"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-21" text="big"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-22" text="humorous"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-23" text="miserable"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-24" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to TV
click
7
null
stop
Select sad <body ref="12"><div id="wrap" ref="13"><div id="area" ref="6"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-45" text="big"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-46" text="humorous"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-47" text="miserable"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-48" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select sad
click
1
null
stop
Select words similar to dislike, launch, carve, home, plump <body ref="16"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="2"><label ref="15"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-43" text="cut"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-44" text="homes"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-45" text="initiate"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-46" text="incorrect"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-47" text="detest"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-48" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to dislike, launch, carve, home, plump
click
12
null
stop
Select words similar to keep <body ref="9"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="14"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-36" text="dull"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-37" text="halt"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-38" text="retain"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-39" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-40" text="detest"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to keep
click
8
null
stop
Select despise <body ref="9"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="14"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-76" text="dull"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-77" text="halt"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-78" text="retain"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-79" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-80" text="detest"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select despise
click
8
null
stop
Select stop <body ref="9"><div id="wrap" ref="5"><div id="area" ref="15"><div id="boxes" ref="14"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-116" text="dull"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-117" text="halt"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-118" text="retain"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-119" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-120" text="detest"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select stop
click
11
null
stop
Select words similar to detest, hide, scared, murder <body ref="8"><div id="wrap" ref="13"><div id="area" ref="10"><div id="boxes" ref="4"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-26" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-27" text="frightened"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-28" text="murder"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-29" text="conceal"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-30" text="furious"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to detest, hide, scared, murder
click
15
null
stop
Select words similar to laughable, mild, rabbits, unwise, wrong <body ref="10"><div id="wrap" ref="1"><div id="area" ref="12"><div id="boxes" ref="9"><label ref="3"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-43" text="peaceful"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-44" text="homes"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-45" text="mistaken"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-46" text="comical"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-47" text="bunnies"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-48" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to laughable, mild, rabbits, unwise, wrong
click
4
null
stop
Select words similar to response <body ref="10"><div id="wrap" ref="4"><div id="area" ref="6"><div id="boxes" ref="5"><label ref="12"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-29" text="reply"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-30" text="immoral"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-31" text="erroneous"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-32" text="fearless"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to response
click
3
null
stop
Select words similar to begin <body ref="8"><div id="wrap" ref="13"><div id="area" ref="10"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-43" text="dislike"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-44" text="response"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-45" text="water"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-46" text="launch"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-47" text="automobiles"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-48" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to begin
click
2
null
stop
Select water <body ref="8"><div id="wrap" ref="13"><div id="area" ref="10"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-91" text="dislike"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-92" text="response"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-93" text="water"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-94" text="launch"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-95" text="automobiles"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-96" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select water
click
5
null
stop
Select response <body ref="8"><div id="wrap" ref="13"><div id="area" ref="10"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-139" text="dislike"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-140" text="response"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-141" text="water"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-142" text="launch"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-143" text="automobiles"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-144" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select response
click
6
null
stop