{ // 获取包含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 }); }); } })(); \r\n"},"html_footer":{"kind":"list like","value":[],"string":"[]"},"html_head":{"kind":"list like","value":["
\n
\n
\n
\n
\n
\n
\nWelcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker\n\n\n\n\n\n\n\n 
\n \t\t\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n
\n
\n
\n
\n \n \n \n \n \n\n\n\n\n
\n
\n"],"string":"[\n \"
\\n
\\n
\\n
\\n
\\n
\\n
\\nWelcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker\\n\\n\\n\\n\\n\\n\\n\\n 
\\n \\t\\t\\n\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n
\\n
\\n
\\n
\\n
\\n \\n \\n \\n \\n \\n\\n\\n\\n\\n
\\n
\\n\"\n]"},"html_title":{"kind":"list like","value":["Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker\n\n"],"string":"[\n \"Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker\\n\\n\"\n]"},"metadata_generation_datasource":{"kind":"list like","value":[{"key":"datasource","type":"global","value":"welkerpedia.org > welcome to welkerpedia"}],"string":"[\n {\n \"key\": \"datasource\",\n \"type\": \"global\",\n \"value\": \"welkerpedia.org > welcome to welkerpedia\"\n }\n]"},"metadata_generation_length_sentence":{"kind":"list like","value":[{"char_end_idx":157,"char_start_idx":0,"key":"length","type":"local","value":"157"},{"char_end_idx":373,"char_start_idx":157,"key":"length","type":"local","value":"215"},{"char_end_idx":467,"char_start_idx":373,"key":"length","type":"local","value":"93"},{"char_end_idx":529,"char_start_idx":467,"key":"length","type":"local","value":"61"},{"char_end_idx":560,"char_start_idx":529,"key":"length","type":"local","value":"30"},{"char_end_idx":714,"char_start_idx":560,"key":"length","type":"local","value":"153"},{"char_end_idx":739,"char_start_idx":714,"key":"length","type":"local","value":"24"},{"char_end_idx":801,"char_start_idx":739,"key":"length","type":"local","value":"61"},{"char_end_idx":839,"char_start_idx":801,"key":"length","type":"local","value":"37"},{"char_end_idx":867,"char_start_idx":839,"key":"length","type":"local","value":"27"},{"char_end_idx":933,"char_start_idx":867,"key":"length","type":"local","value":"65"},{"char_end_idx":989,"char_start_idx":933,"key":"length","type":"local","value":"55"},{"char_end_idx":1028,"char_start_idx":989,"key":"length","type":"local","value":"38"},{"char_end_idx":1030,"char_start_idx":1028,"key":"length","type":"local","value":"1"},{"char_end_idx":1032,"char_start_idx":1030,"key":"length","type":"local","value":"1"},{"char_end_idx":1050,"char_start_idx":1032,"key":"length","type":"local","value":"17"},{"char_end_idx":1074,"char_start_idx":1050,"key":"length","type":"local","value":"23"},{"char_end_idx":1136,"char_start_idx":1074,"key":"length","type":"local","value":"61"},{"char_end_idx":1180,"char_start_idx":1136,"key":"length","type":"local","value":"43"},{"char_end_idx":1224,"char_start_idx":1180,"key":"length","type":"local","value":"43"},{"char_end_idx":1276,"char_start_idx":1224,"key":"length","type":"local","value":"51"},{"char_end_idx":1624,"char_start_idx":1276,"key":"length","type":"local","value":"347"},{"char_end_idx":1661,"char_start_idx":1624,"key":"length","type":"local","value":"36"},{"char_end_idx":1725,"char_start_idx":1661,"key":"length","type":"local","value":"63"},{"char_end_idx":1750,"char_start_idx":1725,"key":"length","type":"local","value":"24"},{"char_end_idx":1796,"char_start_idx":1750,"key":"length","type":"local","value":"45"},{"char_end_idx":1849,"char_start_idx":1796,"key":"length","type":"local","value":"52"},{"char_end_idx":1890,"char_start_idx":1849,"key":"length","type":"local","value":"40"},{"char_end_idx":1923,"char_start_idx":1890,"key":"length","type":"local","value":"32"}],"string":"[\n {\n \"char_end_idx\": 157,\n \"char_start_idx\": 0,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"157\"\n },\n {\n \"char_end_idx\": 373,\n \"char_start_idx\": 157,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"215\"\n },\n {\n \"char_end_idx\": 467,\n \"char_start_idx\": 373,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"93\"\n },\n {\n \"char_end_idx\": 529,\n \"char_start_idx\": 467,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"61\"\n },\n {\n \"char_end_idx\": 560,\n \"char_start_idx\": 529,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"30\"\n },\n {\n \"char_end_idx\": 714,\n \"char_start_idx\": 560,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"153\"\n },\n {\n \"char_end_idx\": 739,\n \"char_start_idx\": 714,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"24\"\n },\n {\n \"char_end_idx\": 801,\n \"char_start_idx\": 739,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"61\"\n },\n {\n \"char_end_idx\": 839,\n \"char_start_idx\": 801,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"37\"\n },\n {\n \"char_end_idx\": 867,\n \"char_start_idx\": 839,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"27\"\n },\n {\n \"char_end_idx\": 933,\n \"char_start_idx\": 867,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"65\"\n },\n {\n \"char_end_idx\": 989,\n \"char_start_idx\": 933,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"55\"\n },\n {\n \"char_end_idx\": 1028,\n \"char_start_idx\": 989,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"38\"\n },\n {\n \"char_end_idx\": 1030,\n \"char_start_idx\": 1028,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"1\"\n },\n {\n \"char_end_idx\": 1032,\n \"char_start_idx\": 1030,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"1\"\n },\n {\n \"char_end_idx\": 1050,\n \"char_start_idx\": 1032,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"17\"\n },\n {\n \"char_end_idx\": 1074,\n \"char_start_idx\": 1050,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"23\"\n },\n {\n \"char_end_idx\": 1136,\n \"char_start_idx\": 1074,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"61\"\n },\n {\n \"char_end_idx\": 1180,\n \"char_start_idx\": 1136,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"43\"\n },\n {\n \"char_end_idx\": 1224,\n \"char_start_idx\": 1180,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"43\"\n },\n {\n \"char_end_idx\": 1276,\n \"char_start_idx\": 1224,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"51\"\n },\n {\n \"char_end_idx\": 1624,\n \"char_start_idx\": 1276,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"347\"\n },\n {\n \"char_end_idx\": 1661,\n \"char_start_idx\": 1624,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"36\"\n },\n {\n \"char_end_idx\": 1725,\n \"char_start_idx\": 1661,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"63\"\n },\n {\n \"char_end_idx\": 1750,\n \"char_start_idx\": 1725,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"24\"\n },\n {\n \"char_end_idx\": 1796,\n \"char_start_idx\": 1750,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"45\"\n },\n {\n \"char_end_idx\": 1849,\n \"char_start_idx\": 1796,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"52\"\n },\n {\n \"char_end_idx\": 1890,\n \"char_start_idx\": 1849,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"40\"\n },\n {\n \"char_end_idx\": 1923,\n \"char_start_idx\": 1890,\n \"key\": \"length\",\n \"type\": \"local\",\n \"value\": \"32\"\n }\n]"},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"1952"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"1952\"\n }\n]"},"metadata_html":{"kind":"list like","value":[{"char_end_idx":23,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["single-title"]},"key":"html","relative_end_pos":0,"relative_start_pos":4,"type":"local","value":"h2"},{"char_end_idx":530,"char_start_idx":24,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"p"},{"char_end_idx":715,"char_start_idx":531,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"p"},{"char_end_idx":716,"char_start_idx":716,"html_attrs":{"attrs":["class","src","alt","srcset","sizes","data-recalc-dims"],"values":["alignnone wp-image-2197","http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=55%2C42","adamava","http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?w=854 854w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=300%2C231 300w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=768%2C591 768w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=24%2C18 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=36%2C28 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=48%2C37 48w","(max-width: 55px) 100vw, 55px","1"]},"key":"html","relative_end_pos":5,"relative_start_pos":4,"type":"local","value":"img"},{"char_end_idx":716,"char_start_idx":716,"html_attrs":{"attrs":["style","width"],"values":["border: none;","12%"]},"key":"html","relative_end_pos":6,"relative_start_pos":3,"type":"local","value":"td"},{"char_end_idx":840,"char_start_idx":716,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":0,"relative_start_pos":7,"type":"local","value":"td"},{"char_end_idx":841,"char_start_idx":716,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":2,"type":"local","value":"tr"},{"char_end_idx":841,"char_start_idx":716,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":1,"type":"local","value":"tbody"},{"char_end_idx":841,"char_start_idx":716,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":2,"relative_start_pos":0,"type":"local","value":"table"},{"char_end_idx":841,"char_start_idx":841,"html_attrs":{"attrs":["class","src","alt","data-recalc-dims"],"values":["alignnone wp-image-2202","http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/VT-HOME-GAME-WEEKENDS.gif?resize=66%2C49","VT-HOME-GAME-WEEKENDS","1"]},"key":"html","relative_end_pos":8,"relative_start_pos":7,"type":"local","value":"img"},{"char_end_idx":841,"char_start_idx":841,"html_attrs":{"attrs":["style","width"],"values":["border: none;","12%"]},"key":"html","relative_end_pos":9,"relative_start_pos":6,"type":"local","value":"td"},{"char_end_idx":990,"char_start_idx":841,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":0,"relative_start_pos":10,"type":"local","value":"td"},{"char_end_idx":991,"char_start_idx":841,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":5,"type":"local","value":"tr"},{"char_end_idx":991,"char_start_idx":841,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":4,"type":"local","value":"tbody"},{"char_end_idx":991,"char_start_idx":841,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":2,"relative_start_pos":3,"type":"local","value":"table"},{"char_end_idx":991,"char_start_idx":991,"html_attrs":{"attrs":["class","src","alt","srcset","sizes","data-recalc-dims"],"values":["alignnone wp-image-2204","http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=55%2C55","emoji-headbanger","http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?w=1000 1000w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=150%2C150 150w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=300%2C300 300w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=768%2C768 768w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=24%2C24 24w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=36%2C36 36w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=48%2C48 48w","(max-width: 55px) 100vw, 55px","1"]},"key":"html","relative_end_pos":8,"relative_start_pos":7,"type":"local","value":"img"},{"char_end_idx":991,"char_start_idx":991,"html_attrs":{"attrs":["style","width"],"values":["border: none;","12%"]},"key":"html","relative_end_pos":9,"relative_start_pos":6,"type":"local","value":"td"},{"char_end_idx":1137,"char_start_idx":991,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":0,"relative_start_pos":10,"type":"local","value":"td"},{"char_end_idx":1138,"char_start_idx":991,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":5,"type":"local","value":"tr"},{"char_end_idx":1138,"char_start_idx":991,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":4,"type":"local","value":"tbody"},{"char_end_idx":1138,"char_start_idx":991,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":2,"relative_start_pos":3,"type":"local","value":"table"},{"char_end_idx":1138,"char_start_idx":1138,"html_attrs":{"attrs":["class","src","alt","srcset","sizes","data-recalc-dims"],"values":["wp-image-1882 alignleft","http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=52%2C58","Mike-Wazowski2","http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=270%2C300 270w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=22%2C24 22w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=32%2C36 32w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=43%2C48 43w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?w=491 491w","(max-width: 52px) 100vw, 52px","1"]},"key":"html","relative_end_pos":8,"relative_start_pos":7,"type":"local","value":"img"},{"char_end_idx":1138,"char_start_idx":1138,"html_attrs":{"attrs":["style","width"],"values":["border: none;","12%"]},"key":"html","relative_end_pos":9,"relative_start_pos":6,"type":"local","value":"td"},{"char_end_idx":1280,"char_start_idx":1138,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":0,"relative_start_pos":10,"type":"local","value":"td"},{"char_end_idx":1281,"char_start_idx":1138,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":5,"type":"local","value":"tr"},{"char_end_idx":1281,"char_start_idx":1138,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":4,"type":"local","value":"tbody"},{"char_end_idx":1281,"char_start_idx":1138,"html_attrs":{"attrs":["style"],"values":["border: none;"]},"key":"html","relative_end_pos":2,"relative_start_pos":3,"type":"local","value":"table"},{"char_end_idx":1281,"char_start_idx":24,"html_attrs":{"attrs":["class"],"values":["entry"]},"key":"html","relative_end_pos":3,"relative_start_pos":0,"type":"local","value":"div"},{"char_end_idx":1282,"char_start_idx":1281,"html_attrs":{"attrs":["class"],"values":["meta-nav"]},"key":"html","relative_end_pos":0,"relative_start_pos":6,"type":"local","value":"span"},{"char_end_idx":1320,"char_start_idx":1281,"html_attrs":{"attrs":["class","href","rel"],"values":["styled-button","http://welkerpedia.org/2016/08/YMSB_Burlington_-_2010_-_Scratchboard/","prev"]},"key":"html","relative_end_pos":0,"relative_start_pos":5,"type":"local","value":"a"},{"char_end_idx":1356,"char_start_idx":1355,"html_attrs":{"attrs":["class"],"values":["meta-nav"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"span"},{"char_end_idx":1356,"char_start_idx":1321,"html_attrs":{"attrs":["class","href","rel"],"values":["styled-button","http://welkerpedia.org/2016/08/Civilization_-_2016_-_1st_Edition/","next"]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":1357,"char_start_idx":1281,"html_attrs":{"attrs":["class"],"values":["page-navigation"]},"key":"html","relative_end_pos":0,"relative_start_pos":4,"type":"local","value":"nav"},{"char_end_idx":1396,"char_start_idx":1373,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"span"},{"char_end_idx":1398,"char_start_idx":1357,"html_attrs":{"attrs":["id"],"values":["comments"]},"key":"html","relative_end_pos":0,"relative_start_pos":2,"type":"local","value":"h5"},{"char_end_idx":1543,"char_start_idx":1398,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":4,"type":"local","value":"p"},{"char_end_idx":1544,"char_start_idx":1398,"html_attrs":{"attrs":["id","class"],"values":["div-comment-34","comment-body"]},"key":"html","relative_end_pos":0,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":1544,"char_start_idx":1398,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-sassyhooper even thread-even depth-1","comment-34"]},"key":"html","relative_end_pos":1,"relative_start_pos":2,"type":"local","value":"li"},{"char_end_idx":1544,"char_start_idx":1544,"html_attrs":{"attrs":["id","class"],"values":["div-comment-35","comment-body"]},"key":"html","relative_end_pos":4,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":1544,"char_start_idx":1544,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-adam odd alt thread-odd thread-alt depth-1","comment-35"]},"key":"html","relative_end_pos":5,"relative_start_pos":2,"type":"local","value":"li"},{"char_end_idx":1662,"char_start_idx":1544,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":8,"type":"local","value":"p"},{"char_end_idx":1729,"char_start_idx":1663,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"p"},{"char_end_idx":1730,"char_start_idx":1544,"html_attrs":{"attrs":["id","class"],"values":["div-comment-36","comment-body"]},"key":"html","relative_end_pos":0,"relative_start_pos":7,"type":"local","value":"div"},{"char_end_idx":1730,"char_start_idx":1544,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-levitator even thread-even depth-1","comment-36"]},"key":"html","relative_end_pos":1,"relative_start_pos":6,"type":"local","value":"li"},{"char_end_idx":1730,"char_start_idx":1730,"html_attrs":{"attrs":["id","class"],"values":["div-comment-38","comment-body"]},"key":"html","relative_end_pos":4,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":1730,"char_start_idx":1730,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-nigelluther odd alt thread-odd thread-alt depth-1","comment-38"]},"key":"html","relative_end_pos":5,"relative_start_pos":2,"type":"local","value":"li"},{"char_end_idx":1730,"char_start_idx":1730,"html_attrs":{"attrs":["id","class"],"values":["div-comment-39","comment-body"]},"key":"html","relative_end_pos":8,"relative_start_pos":7,"type":"local","value":"div"},{"char_end_idx":1730,"char_start_idx":1730,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-jbarber even thread-even depth-1","comment-39"]},"key":"html","relative_end_pos":9,"relative_start_pos":6,"type":"local","value":"li"},{"char_end_idx":1797,"char_start_idx":1730,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":12,"type":"local","value":"p"},{"char_end_idx":1798,"char_start_idx":1730,"html_attrs":{"attrs":["id","class"],"values":["div-comment-40","comment-body"]},"key":"html","relative_end_pos":0,"relative_start_pos":11,"type":"local","value":"div"},{"char_end_idx":1798,"char_start_idx":1730,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-villanuevaguadalupe odd alt thread-odd thread-alt depth-1","comment-40"]},"key":"html","relative_end_pos":1,"relative_start_pos":10,"type":"local","value":"li"},{"char_end_idx":1798,"char_start_idx":1798,"html_attrs":{"attrs":["id","class"],"values":["div-comment-41","comment-body"]},"key":"html","relative_end_pos":4,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":1798,"char_start_idx":1798,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-coshie1 even thread-even depth-1","comment-41"]},"key":"html","relative_end_pos":5,"relative_start_pos":2,"type":"local","value":"li"},{"char_end_idx":1798,"char_start_idx":1798,"html_attrs":{"attrs":["id","class"],"values":["div-comment-42","comment-body"]},"key":"html","relative_end_pos":8,"relative_start_pos":7,"type":"local","value":"div"},{"char_end_idx":1798,"char_start_idx":1798,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-milescoletrain odd alt thread-odd thread-alt depth-1","comment-42"]},"key":"html","relative_end_pos":9,"relative_start_pos":6,"type":"local","value":"li"},{"char_end_idx":1798,"char_start_idx":1798,"html_attrs":{"attrs":["id","class"],"values":["div-comment-43","comment-body"]},"key":"html","relative_end_pos":12,"relative_start_pos":11,"type":"local","value":"div"},{"char_end_idx":1798,"char_start_idx":1798,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-rubindawg even thread-even depth-1","comment-43"]},"key":"html","relative_end_pos":13,"relative_start_pos":10,"type":"local","value":"li"},{"char_end_idx":1924,"char_start_idx":1798,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":16,"type":"local","value":"p"},{"char_end_idx":1925,"char_start_idx":1798,"html_attrs":{"attrs":["id","class"],"values":["div-comment-46","comment-body"]},"key":"html","relative_end_pos":0,"relative_start_pos":15,"type":"local","value":"div"},{"char_end_idx":1925,"char_start_idx":1798,"html_attrs":{"attrs":["class","id"],"values":["comment byuser comment-author-tspagnola odd alt thread-odd thread-alt depth-1","comment-46"]},"key":"html","relative_end_pos":1,"relative_start_pos":14,"type":"local","value":"li"},{"char_end_idx":1925,"char_start_idx":1398,"html_attrs":{"attrs":["class"],"values":["commentlist"]},"key":"html","relative_end_pos":2,"relative_start_pos":1,"type":"local","value":"ol"},{"char_end_idx":1951,"char_start_idx":1939,"html_attrs":{"attrs":["rel","id","href","style"],"values":["nofollow","cancel-comment-reply-link","/2016/08/welcome-to-welkerpedia/#respond","display:none;"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"a"},{"char_end_idx":1951,"char_start_idx":1939,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"small"},{"char_end_idx":1951,"char_start_idx":1925,"html_attrs":{"attrs":["id","class"],"values":["reply-title","comment-reply-title"]},"key":"html","relative_end_pos":2,"relative_start_pos":4,"type":"local","value":"h3"},{"char_end_idx":1952,"char_start_idx":1925,"html_attrs":{"attrs":["id","class"],"values":["respond","comment-respond"]},"key":"html","relative_end_pos":0,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":1952,"char_start_idx":1357,"html_attrs":{"attrs":["class"],"values":["comments-template"]},"key":"html","relative_end_pos":1,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":1952,"char_start_idx":0,"html_attrs":{"attrs":["id","class"],"values":["content","single-post singlepost1"]},"key":"html","relative_end_pos":2,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":1952,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["right_container"]},"key":"html","relative_end_pos":3,"relative_start_pos":2,"type":"local","value":"div"},{"char_end_idx":1952,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["portfolio_gallery_wrap"]},"key":"html","relative_end_pos":4,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":1952,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["single single-post postid-1875 single-format-standard custom-background no-js"]},"key":"html","relative_end_pos":5,"relative_start_pos":0,"type":"local","value":"body"}],"string":"[\n {\n \"char_end_idx\": 23,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"single-title\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"h2\"\n },\n {\n \"char_end_idx\": 530,\n \"char_start_idx\": 24,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 715,\n \"char_start_idx\": 531,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 716,\n \"char_start_idx\": 716,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"src\",\n \"alt\",\n \"srcset\",\n \"sizes\",\n \"data-recalc-dims\"\n ],\n \"values\": [\n \"alignnone wp-image-2197\",\n \"http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=55%2C42\",\n \"adamava\",\n \"http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?w=854 854w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=300%2C231 300w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=768%2C591 768w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=24%2C18 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=36%2C28 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=48%2C37 48w\",\n \"(max-width: 55px) 100vw, 55px\",\n \"1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"img\"\n },\n {\n \"char_end_idx\": 716,\n \"char_start_idx\": 716,\n \"html_attrs\": {\n \"attrs\": [\n \"style\",\n \"width\"\n ],\n \"values\": [\n \"border: none;\",\n \"12%\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 6,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 840,\n \"char_start_idx\": 716,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 841,\n \"char_start_idx\": 716,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"tr\"\n },\n {\n \"char_end_idx\": 841,\n \"char_start_idx\": 716,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"tbody\"\n },\n {\n \"char_end_idx\": 841,\n \"char_start_idx\": 716,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"table\"\n },\n {\n \"char_end_idx\": 841,\n \"char_start_idx\": 841,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"src\",\n \"alt\",\n \"data-recalc-dims\"\n ],\n \"values\": [\n \"alignnone wp-image-2202\",\n \"http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/VT-HOME-GAME-WEEKENDS.gif?resize=66%2C49\",\n \"VT-HOME-GAME-WEEKENDS\",\n \"1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 8,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"img\"\n },\n {\n \"char_end_idx\": 841,\n \"char_start_idx\": 841,\n \"html_attrs\": {\n \"attrs\": [\n \"style\",\n \"width\"\n ],\n \"values\": [\n \"border: none;\",\n \"12%\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 9,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 990,\n \"char_start_idx\": 841,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 10,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 991,\n \"char_start_idx\": 841,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"tr\"\n },\n {\n \"char_end_idx\": 991,\n \"char_start_idx\": 841,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"tbody\"\n },\n {\n \"char_end_idx\": 991,\n \"char_start_idx\": 841,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"table\"\n },\n {\n \"char_end_idx\": 991,\n \"char_start_idx\": 991,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"src\",\n \"alt\",\n \"srcset\",\n \"sizes\",\n \"data-recalc-dims\"\n ],\n \"values\": [\n \"alignnone wp-image-2204\",\n \"http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=55%2C55\",\n \"emoji-headbanger\",\n \"http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?w=1000 1000w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=150%2C150 150w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=300%2C300 300w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=768%2C768 768w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=24%2C24 24w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=36%2C36 36w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=48%2C48 48w\",\n \"(max-width: 55px) 100vw, 55px\",\n \"1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 8,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"img\"\n },\n {\n \"char_end_idx\": 991,\n \"char_start_idx\": 991,\n \"html_attrs\": {\n \"attrs\": [\n \"style\",\n \"width\"\n ],\n \"values\": [\n \"border: none;\",\n \"12%\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 9,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 1137,\n \"char_start_idx\": 991,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 10,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 1138,\n \"char_start_idx\": 991,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"tr\"\n },\n {\n \"char_end_idx\": 1138,\n \"char_start_idx\": 991,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"tbody\"\n },\n {\n \"char_end_idx\": 1138,\n \"char_start_idx\": 991,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"table\"\n },\n {\n \"char_end_idx\": 1138,\n \"char_start_idx\": 1138,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"src\",\n \"alt\",\n \"srcset\",\n \"sizes\",\n \"data-recalc-dims\"\n ],\n \"values\": [\n \"wp-image-1882 alignleft\",\n \"http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=52%2C58\",\n \"Mike-Wazowski2\",\n \"http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=270%2C300 270w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=22%2C24 22w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=32%2C36 32w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=43%2C48 43w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?w=491 491w\",\n \"(max-width: 52px) 100vw, 52px\",\n \"1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 8,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"img\"\n },\n {\n \"char_end_idx\": 1138,\n \"char_start_idx\": 1138,\n \"html_attrs\": {\n \"attrs\": [\n \"style\",\n \"width\"\n ],\n \"values\": [\n \"border: none;\",\n \"12%\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 9,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 1280,\n \"char_start_idx\": 1138,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 10,\n \"type\": \"local\",\n \"value\": \"td\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 1138,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"tr\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 1138,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"tbody\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 1138,\n \"html_attrs\": {\n \"attrs\": [\n \"style\"\n ],\n \"values\": [\n \"border: none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"table\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 24,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"entry\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1282,\n \"char_start_idx\": 1281,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"meta-nav\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 1320,\n \"char_start_idx\": 1281,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"href\",\n \"rel\"\n ],\n \"values\": [\n \"styled-button\",\n \"http://welkerpedia.org/2016/08/YMSB_Burlington_-_2010_-_Scratchboard/\",\n \"prev\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 1356,\n \"char_start_idx\": 1355,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"meta-nav\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 1356,\n \"char_start_idx\": 1321,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"href\",\n \"rel\"\n ],\n \"values\": [\n \"styled-button\",\n \"http://welkerpedia.org/2016/08/Civilization_-_2016_-_1st_Edition/\",\n \"next\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 1357,\n \"char_start_idx\": 1281,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"page-navigation\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"nav\"\n },\n {\n \"char_end_idx\": 1396,\n \"char_start_idx\": 1373,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 1398,\n \"char_start_idx\": 1357,\n \"html_attrs\": {\n \"attrs\": [\n \"id\"\n ],\n \"values\": [\n \"comments\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"h5\"\n },\n {\n \"char_end_idx\": 1543,\n \"char_start_idx\": 1398,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 1544,\n \"char_start_idx\": 1398,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-34\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1544,\n \"char_start_idx\": 1398,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-sassyhooper even thread-even depth-1\",\n \"comment-34\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1544,\n \"char_start_idx\": 1544,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-35\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1544,\n \"char_start_idx\": 1544,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-adam odd alt thread-odd thread-alt depth-1\",\n \"comment-35\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1662,\n \"char_start_idx\": 1544,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 8,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 1729,\n \"char_start_idx\": 1663,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1544,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-36\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1544,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-levitator even thread-even depth-1\",\n \"comment-36\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-38\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-nigelluther odd alt thread-odd thread-alt depth-1\",\n \"comment-38\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-39\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 8,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-jbarber even thread-even depth-1\",\n \"comment-39\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 9,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1797,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 12,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-40\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 11,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1730,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-villanuevaguadalupe odd alt thread-odd thread-alt depth-1\",\n \"comment-40\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 10,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-41\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-coshie1 even thread-even depth-1\",\n \"comment-41\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-42\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 8,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-milescoletrain odd alt thread-odd thread-alt depth-1\",\n \"comment-42\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 9,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-43\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 12,\n \"relative_start_pos\": 11,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-rubindawg even thread-even depth-1\",\n \"comment-43\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 13,\n \"relative_start_pos\": 10,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1924,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 16,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 1925,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"div-comment-46\",\n \"comment-body\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 15,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1925,\n \"char_start_idx\": 1798,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment byuser comment-author-tspagnola odd alt thread-odd thread-alt depth-1\",\n \"comment-46\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 14,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 1925,\n \"char_start_idx\": 1398,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"commentlist\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"ol\"\n },\n {\n \"char_end_idx\": 1951,\n \"char_start_idx\": 1939,\n \"html_attrs\": {\n \"attrs\": [\n \"rel\",\n \"id\",\n \"href\",\n \"style\"\n ],\n \"values\": [\n \"nofollow\",\n \"cancel-comment-reply-link\",\n \"/2016/08/welcome-to-welkerpedia/#respond\",\n \"display:none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 1951,\n \"char_start_idx\": 1939,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"small\"\n },\n {\n \"char_end_idx\": 1951,\n \"char_start_idx\": 1925,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"reply-title\",\n \"comment-reply-title\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"h3\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 1925,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"respond\",\n \"comment-respond\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 1357,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comments-template\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"content\",\n \"single-post singlepost1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"right_container\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"portfolio_gallery_wrap\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"single single-post postid-1875 single-format-standard custom-background no-js\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"body\"\n }\n]"},"metadata_paragraph":{"kind":"list like","value":[{"char_end_idx":23,"char_start_idx":0,"key":"paragraph","marker":"h2","type":"local","value":"Welcome to Welkerpedia!"},{"char_end_idx":531,"char_start_idx":23,"key":"paragraph","marker":"p","type":"local","value":"\nWe are so excited to finally launch WELKERPEDIA, a fan-created and fan-driven online community focused on the artwork of David Welker. There is much to see and do here! We welcome you to peruse the WORKS (in several different searchable methods), participate in WATERCOOLER discussions, as well as upload photographs of your own frame-ups and prints. As you probably know, David is a prolific artist, so this website will be frequently updated. If you see something that needs tweaking, please let us know.\n"},{"char_end_idx":716,"char_start_idx":531,"key":"paragraph","marker":"p","type":"local","value":"DAVID WELKER – is the Captain. (Oh Captain, My Captain!) He is the reason we’re here, and he promises frequent visits to infuse Welkerpedia with wisdom, insight, and general badassery.\n"},{"char_end_idx":1281,"char_start_idx":716,"key":"paragraph","marker":"div","type":"local","value":"ADAM – is the Webmaster. He makes links work and the pages do magical, swooshy things. He’s the duct tape of this operation.\nHEATH – is the Art Curator. His job is to gather the images and art specs (size/run/edition). He’s the guy that provides/updates the print specifics.\nJOSH – is the Watercooler Watchman (a.k.a. forum moderator). He minimizes assholery. Think of him as the sheriff – a sheriff who knows his Welker.\nAnd I’m ARROW, the Editor (and only grrrl). I write and organize stuff – lots of stuff. I am also the creator of the bi-monthly Walkabouts. xo\n"},{"char_end_idx":1357,"char_start_idx":1281,"key":"paragraph","marker":"nav","type":"local","value":"← YMSB Burlington – 2010 – Scratchboard Civilization – 2016 – 1st Edition →\n"},{"char_end_idx":1398,"char_start_idx":1357,"key":"paragraph","marker":"h5","type":"local","value":"11 comments on “Welcome to Welkerpedia!”\n"},{"char_end_idx":1544,"char_start_idx":1398,"key":"paragraph","marker":"p","type":"local","value":"YaY! It looks great! Thanks for all the hard work! I feel very honored to be amongst the first to walkabout around here! DW fangirl for life ????\n"},{"char_end_idx":1663,"char_start_idx":1544,"key":"paragraph","marker":"p","type":"local","value":"I love that users can upload frame ups when thw thumbnail of a print is selected. I hope folks take advantage of that.\n"},{"char_end_idx":1730,"char_start_idx":1663,"key":"paragraph","marker":"p","type":"local","value":"I clearly see I’ll be getting nothing “productive” done today….lol\n"},{"char_end_idx":1798,"char_start_idx":1730,"key":"paragraph","marker":"p","type":"local","value":"thanks for having me. I have been officially jumped into this gang.\n"},{"char_end_idx":1925,"char_start_idx":1798,"key":"paragraph","marker":"p","type":"local","value":"Thanks all for the time in passion with this effort. So happy to be a part of this community. Images of frame-ups forthcoming.\n"},{"char_end_idx":1951,"char_start_idx":1925,"key":"paragraph","marker":"h3","type":"local","value":"Leave a Reply Cancel reply"},{"char_end_idx":1952,"char_start_idx":1951,"key":"paragraph","marker":"div","type":"local","value":"\n"}],"string":"[\n {\n \"char_end_idx\": 23,\n \"char_start_idx\": 0,\n \"key\": \"paragraph\",\n \"marker\": \"h2\",\n \"type\": \"local\",\n \"value\": \"Welcome to Welkerpedia!\"\n },\n {\n \"char_end_idx\": 531,\n \"char_start_idx\": 23,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"\\nWe are so excited to finally launch WELKERPEDIA, a fan-created and fan-driven online community focused on the artwork of David Welker. There is much to see and do here! We welcome you to peruse the WORKS (in several different searchable methods), participate in WATERCOOLER discussions, as well as upload photographs of your own frame-ups and prints. As you probably know, David is a prolific artist, so this website will be frequently updated. If you see something that needs tweaking, please let us know.\\n\"\n },\n {\n \"char_end_idx\": 716,\n \"char_start_idx\": 531,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"DAVID WELKER – is the Captain. (Oh Captain, My Captain!) He is the reason we’re here, and he promises frequent visits to infuse Welkerpedia with wisdom, insight, and general badassery.\\n\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"paragraph\",\n \"marker\": \"div\",\n \"type\": \"local\",\n \"value\": \"ADAM – is the Webmaster. He makes links work and the pages do magical, swooshy things. He’s the duct tape of this operation.\\nHEATH – is the Art Curator. His job is to gather the images and art specs (size/run/edition). He’s the guy that provides/updates the print specifics.\\nJOSH – is the Watercooler Watchman (a.k.a. forum moderator). He minimizes assholery. Think of him as the sheriff – a sheriff who knows his Welker.\\nAnd I’m ARROW, the Editor (and only grrrl). I write and organize stuff – lots of stuff. I am also the creator of the bi-monthly Walkabouts. xo\\n\"\n },\n {\n \"char_end_idx\": 1357,\n \"char_start_idx\": 1281,\n \"key\": \"paragraph\",\n \"marker\": \"nav\",\n \"type\": \"local\",\n \"value\": \"← YMSB Burlington – 2010 – Scratchboard Civilization – 2016 – 1st Edition →\\n\"\n },\n {\n \"char_end_idx\": 1398,\n \"char_start_idx\": 1357,\n \"key\": \"paragraph\",\n \"marker\": \"h5\",\n \"type\": \"local\",\n \"value\": \"11 comments on “Welcome to Welkerpedia!”\\n\"\n },\n {\n \"char_end_idx\": 1544,\n \"char_start_idx\": 1398,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"YaY! It looks great! Thanks for all the hard work! I feel very honored to be amongst the first to walkabout around here! DW fangirl for life ????\\n\"\n },\n {\n \"char_end_idx\": 1663,\n \"char_start_idx\": 1544,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"I love that users can upload frame ups when thw thumbnail of a print is selected. I hope folks take advantage of that.\\n\"\n },\n {\n \"char_end_idx\": 1730,\n \"char_start_idx\": 1663,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"I clearly see I’ll be getting nothing “productive” done today….lol\\n\"\n },\n {\n \"char_end_idx\": 1798,\n \"char_start_idx\": 1730,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"thanks for having me. I have been officially jumped into this gang.\\n\"\n },\n {\n \"char_end_idx\": 1925,\n \"char_start_idx\": 1798,\n \"key\": \"paragraph\",\n \"marker\": \"p\",\n \"type\": \"local\",\n \"value\": \"Thanks all for the time in passion with this effort. So happy to be a part of this community. Images of frame-ups forthcoming.\\n\"\n },\n {\n \"char_end_idx\": 1951,\n \"char_start_idx\": 1925,\n \"key\": \"paragraph\",\n \"marker\": \"h3\",\n \"type\": \"local\",\n \"value\": \"Leave a Reply Cancel reply\"\n },\n {\n \"char_end_idx\": 1952,\n \"char_start_idx\": 1951,\n \"key\": \"paragraph\",\n \"marker\": \"div\",\n \"type\": \"local\",\n \"value\": \"\\n\"\n }\n]"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"list like","value":[{"key":"title","type":"global","value":"Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker"}],"string":"[\n {\n \"key\": \"title\",\n \"type\": \"global\",\n \"value\": \"Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker\"\n }\n]"},"metadata_url":{"kind":"list like","value":[{"key":"url","type":"global","value":"http://welkerpedia.org/2016/08/welcome-to-welkerpedia/"}],"string":"[\n {\n \"key\": \"url\",\n \"type\": \"global\",\n \"value\": \"http://welkerpedia.org/2016/08/welcome-to-welkerpedia/\"\n }\n]"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"string","value":"Welcome to Welkerpedia!\nWe are so excited to finally launch WELKERPEDIA, a fan-created and fan-driven online community focused on the artwork of David Welker. There is much to see and do here! We welcome you to peruse the WORKS (in several different searchable methods), participate in WATERCOOLER discussions, as well as upload photographs of your own frame-ups and prints. As you probably know, David is a prolific artist, so this website will be frequently updated. If you see something that needs tweaking, please let us know.\nDAVID WELKER – is the Captain. (Oh Captain, My Captain!) He is the reason we’re here, and he promises frequent visits to infuse Welkerpedia with wisdom, insight, and general badassery.\nADAM – is the Webmaster. He makes links work and the pages do magical, swooshy things. He’s the duct tape of this operation.\nHEATH – is the Art Curator. His job is to gather the images and art specs (size/run/edition). He’s the guy that provides/updates the print specifics.\nJOSH – is the Watercooler Watchman (a.k.a. forum moderator). He minimizes assholery. Think of him as the sheriff – a sheriff who knows his Welker.\nAnd I’m ARROW, the Editor (and only grrrl). I write and organize stuff – lots of stuff. I am also the creator of the bi-monthly Walkabouts. xo\n← YMSB Burlington – 2010 – Scratchboard Civilization – 2016 – 1st Edition →\n11 comments on “Welcome to Welkerpedia!”\nYaY! It looks great! Thanks for all the hard work! I feel very honored to be amongst the first to walkabout around here! DW fangirl for life ????\nI love that users can upload frame ups when thw thumbnail of a print is selected. I hope folks take advantage of that.\nI clearly see I’ll be getting nothing “productive” done today….lol\nthanks for having me. I have been officially jumped into this gang.\nThanks all for the time in passion with this effort. So happy to be a part of this community. Images of frame-ups forthcoming.\nLeave a Reply Cancel reply\n"},"url":{"kind":"string","value":"http://welkerpedia.org/2016/08/welcome-to-welkerpedia/"},"metadata_entity":{"kind":"list like","value":[{"char_end_idx":157,"char_start_idx":145,"key":"entity","type":"local","value":"David_Welker"},{"char_end_idx":297,"char_start_idx":286,"key":"entity","type":"local","value":"Water_dispenser"},{"char_end_idx":402,"char_start_idx":397,"key":"entity","type":"local","value":"David_Welker"},{"char_end_idx":543,"char_start_idx":531,"key":"entity","type":"local","value":"David_Welker"},{"char_end_idx":720,"char_start_idx":716,"key":"entity","type":"local","value":"Adam_(given_name)"},{"char_end_idx":739,"char_start_idx":730,"key":"entity","type":"local","value":"Webmaster"},{"char_end_idx":846,"char_start_idx":841,"key":"entity","type":"local","value":"Hampstead_Heath"},{"char_end_idx":867,"char_start_idx":856,"key":"entity","type":"local","value":"Curator"},{"char_end_idx":995,"char_start_idx":991,"key":"entity","type":"local","value":"Josh_Lyman"},{"char_end_idx":1136,"char_start_idx":1130,"key":"entity","type":"local","value":"David_Welker"},{"char_end_idx":1401,"char_start_idx":1398,"key":"entity","type":"local","value":"High-intensity_interval_training"}],"string":"[\n {\n \"char_end_idx\": 157,\n \"char_start_idx\": 145,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 297,\n \"char_start_idx\": 286,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"Water_dispenser\"\n },\n {\n \"char_end_idx\": 402,\n \"char_start_idx\": 397,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 543,\n \"char_start_idx\": 531,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 720,\n \"char_start_idx\": 716,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"Adam_(given_name)\"\n },\n {\n \"char_end_idx\": 739,\n \"char_start_idx\": 730,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"Webmaster\"\n },\n {\n \"char_end_idx\": 846,\n \"char_start_idx\": 841,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"Hampstead_Heath\"\n },\n {\n \"char_end_idx\": 867,\n \"char_start_idx\": 856,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"Curator\"\n },\n {\n \"char_end_idx\": 995,\n \"char_start_idx\": 991,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"Josh_Lyman\"\n },\n {\n \"char_end_idx\": 1136,\n \"char_start_idx\": 1130,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 1401,\n \"char_start_idx\": 1398,\n \"key\": \"entity\",\n \"type\": \"local\",\n \"value\": \"High-intensity_interval_training\"\n }\n]"},"metadata_entity_paragraph":{"kind":"list like","value":[{"char_end_idx":531,"char_start_idx":23,"key":"entity_paragraph","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"David_Welker"},{"char_end_idx":531,"char_start_idx":23,"key":"entity_paragraph","relative_end_pos":1,"relative_start_pos":1,"type":"local","value":"Water_dispenser"},{"char_end_idx":716,"char_start_idx":531,"key":"entity_paragraph","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"David_Welker"},{"char_end_idx":1281,"char_start_idx":716,"key":"entity_paragraph","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"Adam_(given_name)"},{"char_end_idx":1281,"char_start_idx":716,"key":"entity_paragraph","relative_end_pos":1,"relative_start_pos":1,"type":"local","value":"Webmaster"},{"char_end_idx":1281,"char_start_idx":716,"key":"entity_paragraph","relative_end_pos":2,"relative_start_pos":2,"type":"local","value":"Hampstead_Heath"},{"char_end_idx":1281,"char_start_idx":716,"key":"entity_paragraph","relative_end_pos":3,"relative_start_pos":3,"type":"local","value":"Curator"},{"char_end_idx":1281,"char_start_idx":716,"key":"entity_paragraph","relative_end_pos":4,"relative_start_pos":4,"type":"local","value":"Josh_Lyman"},{"char_end_idx":1281,"char_start_idx":716,"key":"entity_paragraph","relative_end_pos":5,"relative_start_pos":5,"type":"local","value":"David_Welker"},{"char_end_idx":1544,"char_start_idx":1398,"key":"entity_paragraph","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"High-intensity_interval_training"}],"string":"[\n {\n \"char_end_idx\": 531,\n \"char_start_idx\": 23,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 531,\n \"char_start_idx\": 23,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"Water_dispenser\"\n },\n {\n \"char_end_idx\": 716,\n \"char_start_idx\": 531,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"Adam_(given_name)\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"Webmaster\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"Hampstead_Heath\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"Curator\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"Josh_Lyman\"\n },\n {\n \"char_end_idx\": 1281,\n \"char_start_idx\": 716,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"David_Welker\"\n },\n {\n \"char_end_idx\": 1544,\n \"char_start_idx\": 1398,\n \"key\": \"entity_paragraph\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"High-intensity_interval_training\"\n }\n]"}}},{"rowIdx":1,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":1018,"string":"1,018"},"c4_timestamp":{"kind":"string","value":"1555916274000"},"html":{"kind":"truncated","value":"\"\\n\\n\\n
\\n\\t\\n\\n\\n\\t\\tContact - PHIRE\n"],"string":"[\n \"Contact - PHIRE\\n\"\n]"},"metadata_generation_datasource":{"kind":"list like","value":[{"key":"datasource","type":"global","value":"phiremedical.org > contact"}],"string":"[\n {\n \"key\": \"datasource\",\n \"type\": \"global\",\n \"value\": \"phiremedical.org > contact\"\n }\n]"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":799,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"799\"},{\"char_end_idx\""},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"1077"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"1077\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"class\",\"role\"],\"values\":[\"masthead inl"},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":4,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"li\",\"type\":\"local\",\"value\":\"Home\"}"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"list like","value":[{"key":"title","type":"global","value":"Contact - PHIRE"}],"string":"[\n {\n \"key\": \"title\",\n \"type\": \"global\",\n \"value\": \"Contact - PHIRE\"\n }\n]"},"metadata_url":{"kind":"list like","value":[{"key":"url","type":"global","value":"http://phiremedical.org/contact/"}],"string":"[\n {\n \"key\": \"url\",\n \"type\": \"global\",\n \"value\": \"http://phiremedical.org/contact/\"\n }\n]"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"Home\\nAbout PHIRE\\nTeam\\nPHIRE Medical Doctors\\nPHIRE Scientists\\nPHIRE Associate Specialists\\nPHIR"},"url":{"kind":"string","value":"http://phiremedical.org/contact/"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":16,\"char_start_idx\":11,\"key\":\"entity\",\"type\":\"local\",\"value\":\"The_Price_Is_Right_mo"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":16,\"char_start_idx\":4,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_start"}}},{"rowIdx":3,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":623,"string":"623"},"c4_timestamp":{"kind":"string","value":"1556245513000"},"html":{"kind":"truncated","value":"\"\\n\\n\\n\\n\\n\\n\\nFlagship Motel – Old Orchard Beach, ME – Ameriquest\n"],"string":"[\n \"Flagship Motel – Old Orchard Beach, ME – Ameriquest\\n\"\n]"},"metadata_generation_datasource":{"kind":"truncated","value":"[{\"key\":\"datasource\",\"type\":\"global\",\"value\":\"ameriquest.com.mk > listings > flagship motel old orch"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":418,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"418\"},{\"char_end_idx\""},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"2153"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"2153\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"data-ls_id\"],\"values\":[\"#site_top\"]},\""},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":62,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"div\",\"type\":\"local\",\"value\":\"Face"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"list like","value":[{"key":"title","type":"global","value":"Flagship Motel – Old Orchard Beach, ME – Ameriquest"}],"string":"[\n {\n \"key\": \"title\",\n \"type\": \"global\",\n \"value\": \"Flagship Motel – Old Orchard Beach, ME – Ameriquest\"\n }\n]"},"metadata_url":{"kind":"truncated","value":"[{\"key\":\"url\",\"type\":\"global\",\"value\":\"http://ameriquest.com.mk/listings/flagship-motel-old-orchard-"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"Facebook ProfileInstagram ProfileSkype ProfileYoutube Profile\\nOur seaside community boasts a diver"},"url":{"kind":"string","value":"http://ameriquest.com.mk/listings/flagship-motel-old-orchard-beach-me/"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":207,\"char_start_idx\":194,\"key\":\"entity\",\"type\":\"local\",\"value\":\"United_States\"},{\"c"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":606,\"char_start_idx\":62,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_sta"}}},{"rowIdx":4,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":665,"string":"665"},"c4_timestamp":{"kind":"string","value":"1556225665000"},"html":{"kind":"truncated","value":"\"\\n\\n \\n \\n

\\n Tag"},"html_head":{"kind":"truncated","value":"[\"\\n \\n \\n \\\"Love, love, love all you need is love\\\" — Women's Education &amp; Leadership League posts > all you need is love"}],"string":"[\n {\n \"key\": \"datasource\",\n \"type\": \"global\",\n \"value\": \"www.well4women.org > posts > all you need is love\"\n }\n]"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":87,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"87\"},{\"char_end_idx\":9"},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"4177"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"4177\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"href\",\"class\"],\"values\":[\"#\",\"body-ove"},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":18,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"div\",\"type\":\"local\",\"value\":\"Febr"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"truncated","value":"[{\"key\":\"title\",\"type\":\"global\",\"value\":\"\\\"Love, love, love all you need is love\\\" — Women's Educ"},"metadata_url":{"kind":"list like","value":[{"key":"url","type":"global","value":"http://www.well4women.org/posts/all-you-need-is-love"}],"string":"[\n {\n \"key\": \"url\",\n \"type\": \"global\",\n \"value\": \"http://www.well4women.org/posts/all-you-need-is-love\"\n }\n]"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"February 22, 2017\\nThe Beatles captured a universal feeling that all of us can relate to. Love. The"},"url":{"kind":"string","value":"http://www.well4women.org/posts/all-you-need-is-love"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":29,\"char_start_idx\":22,\"key\":\"entity\",\"type\":\"local\",\"value\":\"The_Beatles\"},{\"char_"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":502,\"char_start_idx\":18,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_sta"}}},{"rowIdx":5,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":75,"string":"75"},"c4_timestamp":{"kind":"string","value":"1556092297000"},"html":{"kind":"truncated","value":"\"\\n\\n\\nConsultation and engagement service / our services / AgewellUK / helping us all to "},"html_title":{"kind":"truncated","value":"[\"<title>Consultation and engagement service / our services / AgewellUK / helping us all to age well"},"metadata_generation_datasource":{"kind":"truncated","value":"[{\"key\":\"datasource\",\"type\":\"global\",\"value\":\"www.agewelluk.org.uk > consultation and engagement ser"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":726,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"726\"},{\"char_end_idx\""},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"4028"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"4028\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"class\",\"type\",\"value\"],\"values\":[\"port"},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":4,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"li\",\"type\":\"local\",\"value\":\"Home\"}"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"truncated","value":"[{\"key\":\"title\",\"type\":\"global\",\"value\":\"Consultation and engagement service / our services / Agewel"},"metadata_url":{"kind":"truncated","value":"[{\"key\":\"url\",\"type\":\"global\",\"value\":\"http://www.agewelluk.org.uk/consultation-and-engagement-servi"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"Home\\nAbout Agewell\\nWho We Are\\nOur Vision\\nOur Roots\\nOur Structure\\nWhat People Say About Us\\nAg"},"url":{"kind":"string","value":"http://www.agewelluk.org.uk/consultation-and-engagement-service.html?theme=default"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":89,\"char_start_idx\":87,\"key\":\"entity\",\"type\":\"local\",\"value\":\"People_Like_Us_(music"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":89,\"char_start_idx\":64,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_star"}}},{"rowIdx":6,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":75,"string":"75"},"c4_timestamp":{"kind":"string","value":"1555849447000"},"html":{"kind":"truncated","value":"\"<!DOCTYPE html>\\r\\n<!--[if IE 6]>\\r\\n<html id=\\\"ie6\\\" lang=\\\"en-US\\\" prefix=\\\"og: http://ogp.me/ns#"},"html_footer":{"kind":"truncated","value":"[\"<footer class=\\\"entry-meta\\\">&#13;\\n\\t\\t\\t</footer>\",\"<footer class=\\\"entry-meta\\\">&#13;\\n\\t\\t\\t</"},"html_head":{"kind":"truncated","value":"[\"<head>&#13;\\n<meta charset=\\\"UTF-8\\\"/>&#13;\\n<meta name=\\\"viewport\\\" content=\\\"width=device-width\\"},"html_title":{"kind":"list like","value":["<title>Industry Writing | Mediascape Blog&#13;\n"],"string":"[\n \"Industry Writing | Mediascape Blog&#13;\\n\"\n]"},"metadata_generation_datasource":{"kind":"truncated","value":"[{\"key\":\"datasource\",\"type\":\"global\",\"value\":\"www.tft.ucla.edu > mediascape > blog > category > indu"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":151,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"151\"},{\"char_end_idx\""},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"6333"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"6333\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"src\"],\"values\":[\"./wp-content/uploads/"},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":9,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"h3\",\"type\":\"local\",\"value\":\"Main m"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"list like","value":[{"key":"title","type":"global","value":"Industry Writing | Mediascape Blog"}],"string":"[\n {\n \"key\": \"title\",\n \"type\": \"global\",\n \"value\": \"Industry Writing | Mediascape Blog\"\n }\n]"},"metadata_url":{"kind":"truncated","value":"[{\"key\":\"url\",\"type\":\"global\",\"value\":\"http://www.tft.ucla.edu/mediascape/blog/category/industry-wri"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"Main menu\\nMy ties to the newest installment in the Ghostbusters franchise run deeper than an affin"},"url":{"kind":"string","value":"http://www.tft.ucla.edu/mediascape/blog/category/industry-writing/"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":63,\"char_start_idx\":51,\"key\":\"entity\",\"type\":\"local\",\"value\":\"Ghostbusters\"},{\"char"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":444,\"char_start_idx\":10,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_sta"}}},{"rowIdx":7,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":734,"string":"734"},"c4_timestamp":{"kind":"string","value":"1555944750000"},"html":{"kind":"truncated","value":"\"\\n\\n\\n \\n

\\n\\n "},"html_head":{"kind":"truncated","value":"[\"\\n \\n Water and Poverty: How Access to Safe Water Reduces Poverty - Lifewater International blog > water poverty"}],"string":"[\n {\n \"key\": \"datasource\",\n \"type\": \"global\",\n \"value\": \"www.lifewater.org > blog > water poverty\"\n }\n]"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":253,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"253\"},{\"char_end_idx\""},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"12361"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"12361\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"class\",\"d\"],\"values\":[\"icon-facebook-1"},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":68,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"div\",\"type\":\"local\",\"value\":\"Shar"},"metadata_timestamp":{"kind":"list like","value":[],"string":"[]"},"metadata_title":{"kind":"truncated","value":"[{\"key\":\"title\",\"type\":\"global\",\"value\":\"Water and Poverty: How Access to Safe Water Reduces Poverty"},"metadata_url":{"kind":"list like","value":[{"key":"url","type":"global","value":"https://www.lifewater.org/blog/water-poverty/"}],"string":"[\n {\n \"key\": \"url\",\n \"type\": \"global\",\n \"value\": \"https://www.lifewater.org/blog/water-poverty/\"\n }\n]"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"Share on Facebook Share on Twitter Share by Email Share on LinkedIn\\nLifewater Home / Blog / Water "},"url":{"kind":"string","value":"https://www.lifewater.org/blog/water-poverty/"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":67,\"char_start_idx\":59,\"key\":\"entity\",\"type\":\"local\",\"value\":\"LinkedIn\"},{\"char_end"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":68,\"char_start_idx\":0,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_start"}}},{"rowIdx":8,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":1003,"string":"1,003"},"c4_timestamp":{"kind":"string","value":"1555972604000"},"html":{"kind":"truncated","value":"\"&#13;\\n Good wind for racing | 2010 USODA Layline Nationals&#13;\\n "},"html_title":{"kind":"list like","value":[" Good wind for racing | 2010 USODA Layline Nationals&#13;\n &#13;\n "],"string":"[\n \" Good wind for racing | 2010 USODA Layline Nationals&#13;\\n &#13;\\n \"\n]"},"metadata_generation_datasource":{"kind":"list like","value":[{"key":"datasource","type":"global","value":"optinationals2010.org > good wind for racing"}],"string":"[\n {\n \"key\": \"datasource\",\n \"type\": \"global\",\n \"value\": \"optinationals2010.org > good wind for racing\"\n }\n]"},"metadata_generation_length_sentence":{"kind":"truncated","value":"[{\"char_end_idx\":179,\"char_start_idx\":0,\"key\":\"length\",\"type\":\"local\",\"value\":\"179\"},{\"char_end_idx\""},"metadata_generation_length_text":{"kind":"list like","value":[{"key":"length","type":"global","value":"1598"}],"string":"[\n {\n \"key\": \"length\",\n \"type\": \"global\",\n \"value\": \"1598\"\n }\n]"},"metadata_html":{"kind":"truncated","value":"[{\"char_end_idx\":0,\"char_start_idx\":0,\"html_attrs\":{\"attrs\":[\"id\",\"class\"],\"values\":[\"header\",\"clear"},"metadata_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":4,\"char_start_idx\":0,\"key\":\"paragraph\",\"marker\":\"li\",\"type\":\"local\",\"value\":\"Home\"}"},"metadata_timestamp":{"kind":"list like","value":[{"key":"timestamp","type":"global","value":"2010-07-24T00:00:00"}],"string":"[\n {\n \"key\": \"timestamp\",\n \"type\": \"global\",\n \"value\": \"2010-07-24T00:00:00\"\n }\n]"},"metadata_title":{"kind":"list like","value":[{"key":"title","type":"global","value":" Good wind for racing | 2010 USODA Layline Nationals"}],"string":"[\n {\n \"key\": \"title\",\n \"type\": \"global\",\n \"value\": \" Good wind for racing | 2010 USODA Layline Nationals\"\n }\n]"},"metadata_url":{"kind":"truncated","value":"[{\"key\":\"url\",\"type\":\"global\",\"value\":\"http://optinationals2010.org/2010/07/24/good-wind-for-racing/"},"metadata_website_desc":{"kind":"list like","value":[],"string":"[]"},"text":{"kind":"truncated","value":"\"Home\\nRegatta Information\\nAccommodations\\nShop\\nDirections\\nWeather\\nResults\\nPhotos\\nVideo\\nIt wa"},"url":{"kind":"string","value":"http://optinationals2010.org/2010/07/24/good-wind-for-racing/?replytocom=33"},"metadata_entity":{"kind":"truncated","value":"[{\"char_end_idx\":710,\"char_start_idx\":704,\"key\":\"entity\",\"type\":\"local\",\"value\":\"Belize\"},{\"char_end"},"metadata_entity_paragraph":{"kind":"truncated","value":"[{\"char_end_idx\":929,\"char_start_idx\":604,\"key\":\"entity_paragraph\",\"relative_end_pos\":0,\"relative_st"}}},{"rowIdx":9,"cells":{"HtmlPreprocessor_error":{"kind":"number","value":0,"string":"0"},"HtmlPreprocessor_error_comment":{"kind":"string","value":""},"c4_shard":{"kind":"number","value":991,"string":"991"},"c4_timestamp":{"kind":"string","value":"1555820885000"},"html":{"kind":"truncated","value":"\"\\n\\n<"},"html_footer":{"kind":"truncated","value":"[\"
\\n
\\n\\n <link rel="canonical" href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/" /> <!-- /all in one seo pack --> <link rel="alternate" type="application/rss+xml" title="Welkerpedia.org - The Art of David Welker &raquo; Feed" href="http://welkerpedia.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Welkerpedia.org - The Art of David Welker &raquo; Comments Feed" href="http://welkerpedia.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Welkerpedia.org - The Art of David Welker &raquo; Welcome to Welkerpedia! Comments Feed" href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/feed/" /> <script type="text/javascript"> var ajaxurl = 'http://welkerpedia.org/wp-admin/admin-ajax.php'; </script> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"http:\/\/welkerpedia.org\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.5.2"}}; !function(a,b,c){function d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&f.getContext("2d"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline="top",g.font="600 32px Arial",a){case"flag":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length>3e3;case"diversity":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+","+c[1]+","+c[2]+","+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+","+c[1]+","+c[2]+","+c[3],d!==e;case"simple":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case"unicode8":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i;for(i=Array("simple","flag","unicode8","diversity"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='bdp-fontawesome-stylesheets-css' href='http://welkerpedia.org/wp-content/plugins/blog-designer-pro/css/font-awesome.min.css?ver=4.5.2' type='text/css' media='all' /> <link rel='stylesheet' id='bdp-galleryslider-stylesheets-css' href='http://welkerpedia.org/wp-content/plugins/blog-designer-pro/css/flexslider.css?ver=4.5.2' type='text/css' media='all' /> <link rel='stylesheet' id='siteorigin-panels-front-css' href='http://welkerpedia.org/wp-content/plugins/siteorigin-panels/css/front.css?ver=2.4.14' type='text/css' media='all' /> <link rel='stylesheet' id='single-style-css-css' href='http://welkerpedia.org/wp-content/plugins/blog-designer-pro/css/single/single_style.css?ver=4.5.2' type='text/css' media='all' /> <link rel='stylesheet' id='bp-legacy-css-css' href='http://welkerpedia.org/wp-content/plugins/buddypress/bp-templates/bp-legacy/css/buddypress.min.css?ver=2.5.3' type='text/css' media='screen' /> <link rel='stylesheet' id='easy-facebook-likebox-plugin-styles-css' href='http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/css/public.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='easy-facebook-likebox-animate-css' href='http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/css/animate.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='easy-facebook-likebox-popup-styles-css' href='http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/popup/magnific-popup.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='sb_instagram_styles-css' href='http://welkerpedia.org/wp-content/plugins/instagram-feed/css/sb-instagram.min.css?ver=1.4.9' type='text/css' media='all' /> <link rel='stylesheet' id='sb_instagram_icons-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css?ver=4.6.3' type='text/css' media='all' /> <link rel='stylesheet' id='menu-image-css' href='http://welkerpedia.org/wp-content/plugins/menu-image/menu-image.css?ver=1.1' type='text/css' media='all' /> <link rel='stylesheet' id='wdwt_shortcode_style-css' href='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/shortcode/css/style.css?ver=2.0.14' type='text/css' media='all' /> <link rel='stylesheet' id='portfolio-gallery-style-css' href='http://welkerpedia.org/wp-content/themes/portfolio-gallery/style.css?ver=2.0.14' type='text/css' media='all' /> <link rel='stylesheet' id='wdwt_font-awesome-css' href='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/css/font-awesome/font-awesome.css?ver=2.0.14' type='text/css' media='all' /> <link rel='stylesheet' id='wdwt_mCustomScrollbar-css' href='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/css/jquery.mCustomScrollbar.css?ver=2.0.14' type='text/css' media='all' /> <link rel='stylesheet' id='jetpack_css-css' href='http://welkerpedia.org/wp-content/plugins/jetpack/css/jetpack.css?ver=4.0.3' type='text/css' media='all' /> <script type='text/javascript' src='http://welkerpedia.org/wp-includes/js/jquery/jquery.js?ver=1.12.3'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.0'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/blog-designer-pro/js/ajax.js?ver=4.5.2'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/blog-designer-pro/js/SocialShare.js?ver=4.5.2'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/blog-designer-pro/js/jquery.flexslider-min.js?ver=4.5.2'></script> <script type='text/javascript'> /* <![CDATA[ */ var BP_Confirm = {"are_you_sure":"Are you sure?"}; /* ]]> */ </script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/confirm.min.js?ver=2.5.3'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/widget-members.min.js?ver=2.5.3'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/jquery-query.min.js?ver=2.5.3'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/jquery-cookie.min.js?ver=2.5.3'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/jquery-scroll-to.min.js?ver=2.5.3'></script> <script type='text/javascript'> /* <![CDATA[ */ var BP_DTheme = {"accepted":"Accepted","close":"Close","comments":"comments","leave_group_confirm":"Are you sure you want to leave this group?","mark_as_fav":"Favorite","my_favs":"My Favorites","rejected":"Rejected","remove_fav":"Remove Favorite","show_all":"Show all","show_all_comments":"Show all comments for this thread","show_x_comments":"Show all %d comments","unsaved_changes":"Your profile has unsaved changes. If you leave the page, the changes will be lost.","view":"View"}; /* ]]> */ </script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.min.js?ver=2.5.3'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.min.js?ver=4.3.1'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/js/jquery.cookie.js?ver=4.3.1'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/js/public.js?ver=4.3.1'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.infinitescroll.js?ver=2.0.14'></script> <script type='text/javascript'> /* <![CDATA[ */ var wdwt_custom_js = {"wdwt_images_right_click":"1"}; /* ]]> */ </script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/javascript.js?ver=2.0.14'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery-hover-effect.js?ver=2.0.14'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.mobile.min.js?ver=2.0.14'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.mCustomScrollbar.concat.min.js?ver=2.0.14'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.fullscreen-0.4.1.js?ver=2.0.14'></script> <script type='text/javascript'> /* <![CDATA[ */ var admin_ajax_url = "http:\/\/welkerpedia.org\/wp-admin\/admin-ajax.php"; /* ]]> */ </script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/lightbox.js?ver=2.0.14'></script> <link rel='https://api.w.org/' href='http://welkerpedia.org/wp-json/' /> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://welkerpedia.org/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://welkerpedia.org/wp-includes/wlwmanifest.xml" /> <link rel='prev' title='YMSB Burlington &#8211; 2010 &#8211; Scratchboard' href='http://welkerpedia.org/2016/08/YMSB_Burlington_-_2010_-_Scratchboard/' /> <link rel='next' title='Civilization &#8211; 2016 &#8211; 1st Edition' href='http://welkerpedia.org/2016/08/Civilization_-_2016_-_1st_Edition/' /> <meta name="generator" content="WordPress 4.5.2" /> <link rel='shortlink' href='http://wp.me/p7QRgY-uf' /> <link rel="alternate" type="application/json+oembed" href="http://welkerpedia.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwelkerpedia.org%2F2016%2F08%2Fwelcome-to-welkerpedia%2F" /> <link rel="alternate" type="text/xml+oembed" href="http://welkerpedia.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwelkerpedia.org%2F2016%2F08%2Fwelcome-to-welkerpedia%2F&#038;format=xml" /> <script type="text/javascript">var ajaxurl = 'http://welkerpedia.org/wp-admin/admin-ajax.php';</script> <!-- <meta name="NextGEN" version="2.1.43" /> --> <link rel='dns-prefetch' href='//v0.wordpress.com'> <link rel='dns-prefetch' href='//i0.wp.com'> <link rel='dns-prefetch' href='//i1.wp.com'> <link rel='dns-prefetch' href='//i2.wp.com'> <style type='text/css'>img#wpstats{display:none}</style> <style type="text/css"> .left_container{ left:0; width:20%; } .right_container{ float:right; width:79.445%; } </style> <style type="text/css"> #sidebar1, #sidebar2 { display:none; } #content, .blog{ display:block; float:left; width:95%; } #blog, .blog{ width:100%; } </style> <style> .image_list_item, .SearchPost { border: 15px solid; margin: 50px; } .gallery_description_hover, .home_description_hover { height: 19.6px; -webkit-line-clamp:1; } .gallery-post-info h4, .image_list_item h4,.SearchPost h4 { height: 48px; -webkit-line-clamp:2; } @media screen and (min-width: 1024px) { .image_list_item, .SearchPost{ /*2*/ width:calc(50% - 100px); padding-bottom:calc(66.666666666667% - 100px); } .SearchPost{ padding-bottom:calc(66.666666666667% - 100px); } .GalleryPost{ /* width:50%;*/ width: 25%; /* padding-bottom:66.666666666667%;*/ padding-bottom:25%; } } @media screen and (min-width: 1324px) { .image_list_item, .SearchPost{ /*3*/ width:calc(33.333333333333% - 100px); padding-bottom:calc(44.444444444444% - 100px); } .SearchPost{ padding-bottom:calc(44.444444444444% - 100px); } .GalleryPost{ /* width:33.333333333333%;*/ width: 25%; /* padding-bottom:44.444444444444%;*/ padding-bottom:25%; } } @media screen and (min-width: 1624px) { .image_list_item, .SearchPost{ /*4*/ width:calc(25% - 100px); padding-bottom:calc(33.333333333333% - 100px); } .SearchPost{ padding-bottom:calc(33.333333333333% - 100px); } .GalleryPost{ /* width:25%;*/ width: 25%; /* padding-bottom:33.333333333333%;*/ padding-bottom:25%; } } @media screen and (min-width: 1924px) { .image_list_item, .SearchPost{ /*5*/ width:calc(20% - 100px); padding-bottom:calc(26.666666666667% - 100px); } .SearchPost{ padding-bottom:calc(26.666666666667% - 100px); } .GalleryPost{ /* width:20%;*/ width: 25%; /* padding-bottom:26.666666666667%;*/ padding-bottom:25%; } } @media screen and (min-width: 2224px) { .image_list_item, .SearchPost{ /*6*/ width:calc(16.666666666667% - 100px); padding-bottom:calc(22.222222222222% - 100px); } .SearchPost{ padding-bottom:calc(22.222222222222% - 100px); } .GalleryPost{ /* width:16.666666666667%;*/ width: 25%; /* padding-bottom:22.222222222222%;*/ padding-bottom:25%; } } @media screen and (max-width: 1024px) { .image_list_item, .SearchPost{ /* 3*/ width:calc(33.333333333333% - 100px); padding-bottom:calc(44.444444444444% - 100px); } .SearchPost{ padding-bottom:calc(44.444444444444% - 100px); } .GalleryPost{ /* width:33.333333333333%;*/ width: 25%; /* padding-bottom:44.444444444444%;*/ padding-bottom:25%; } } @media screen and (max-width: 900px) { .image_list_item, .SearchPost{ /* 2*/ width:calc(50% - 100px); padding-bottom:calc(66.666666666667% - 100px); } .SearchPost{ padding-bottom:calc(66.666666666667% - 100px); } .GalleryPost{ /* width:50%;*/ width:25%; /* padding-bottom:66.666666666667%;*/ padding-bottom:25%; } } @media screen and (max-width: 600px) { .image_list_item, .SearchPost{ /* 2*/ width:calc(100% - 100px); padding-bottom:calc(133.33333333333% - 100px); } .SearchPost{ padding-bottom:calc(133.33333333333% - 100px); } .GalleryPost{ /* width:100%;*/ width:25%; /* padding-bottom:133.33333333333%;*/ padding-bottom:25%; } } </style> <style type="text/css"> @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Bold.ttf"); font-weight:bold; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-BoldItalic.ttf"); font-weight:bold; font-style:italic; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-ExtraBold.ttf"); font-weight:bolder; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-ExtraBoldItalic.ttf"); font-weight:bolder; font-style:italic; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Italic.ttf"); font-style:italic; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Light.ttf"); font-weight:lighter; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-LightItalic.ttf"); font-weight:lighter; font-style:italic; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Regular.ttf"); } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Semibold.ttf"); font-weight:500; } @font-face { font-family: "OpenSans"; src: url("http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-SemiboldItalic.ttf"); font-weight:500; font-style:italic; } h1, h2, h3, h4, h5, h6, .widget-title { font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif; font-weight: normal; letter-spacing: 0.00em; text-transform: none; font-variant: normal; font-style: normal; } body { font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif; font-weight: normal; letter-spacing: 0.00em; text-transform: none; font-variant: normal; font-style: normal; } .nav, .metabar, .subtext, .subhead, .reply a, .editpage, #page .wp-pagenavi, .post-edit-link, #wp-calendar caption, #wp-calendar thead th, .soapbox-links a, .fancybox, .standard-form .admin-links, .ftitle small { font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif; font-weight: normal; letter-spacing: 0.00em; text-transform: none; font-variant: normal; font-style: normal; } input, textarea { font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif; font-weight: normal; letter-spacing: 0.00em; text-transform: none; font-variant: normal; font-style: normal; } </style> <style type="text/css"> h1, h2, h3, h4, h5, h6, h1>a,h2>a, h3>a, h4>a, h5>a, h6>a,h1 > a:link,h2 > a:link, h3 > a:link, h4 > a:link, h5 > a:link, h6 > a:link,h1 > a:hover,h2 > a:hover,h3 > a:hover,h4 > a:hover,h5 > a:hover,h6 > a:hover,h1> a:visited,h2> a:visited,h3 > a:visited,h4 > a:visited,h5 > a:visited,h6 > a:visited { color:#595959; } #content .image_list_item, #right_bottom .image_list_item,.SearchPost{ border-color: #494949 !important; } #right_middle{ background:#f2f2f2; } #back h3 a{ color: #1c1c1c !important; } a:link.site-title-a,a:hover.site-title-a,a:visited.site-title-a,a.site-title-a,#logo h1, .site-tagline{ color:#FFFFFF; } #commentform #submit,.reply,#reply-title small,.button-color, #portfolio_load_more { color:#181ece !important; background-color: #D3D3D3; } .widget_calendar td >a { /* background-color: #D3D3D3;*/ color: #181ece; } .button-color:hover button,.button-color:hover a, #portfolio_load_more:hover{ color:#e7e8fa !important; } .button-color .contact_send,.button-color a, #portfolio_load_more{ color:#181ece !important ; } .button_hover:after { background-color: #2a2a2a; } .reply a,#reply-title small a:link{ color:#181ece !important; } #back,#sidebar3{ /* background:rgba(224,224,224,0.3);*/ } #footer-bottom { /* background:rgba(224,224,224,0.3); background: -webkit-linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01)); background: -o-linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01)); background: -moz-linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01)); background: linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01)); */} #header-block{ background-color:#000000; } #header { color: #595959; } body,.logged-in-as a:link,.logged-in-as a:visited{ color: #606060; } input,textarea{ color:#3124e2; } ::-webkit-input-placeholder { color:#3124e2; } ::-moz-placeholder { color:#3124e2; } #footer-bottom { color: #FFFFFF; } a:link, a:visited,aside .sidebar-container ul li:before { text-decoration: none; color: #3a3a3a; } .responsive_menu, .top-nav-list .current-menu-item,.top-nav-list .open,.top-nav-list li.current-menu-item, .top-nav-list li.current_page_item{ color: #4c4c4c !important; /* background-color: rgba(0,0,0,0.4);*/ } a:hover,aside .sidebar-container ul li:hover:before { color: #5b5959; } #menu-button-block { background-color: #e0e0e0; } .blog.bage-news .news-post{ border-bottom:1px solid #e0e0e0; } .top-nav-list li.current-menu-item:before,.top-nav-list li:before { /* background-color: rgba(0,0,0,0.01);*/ } .top-nav-list li.current-menu-item:hover:before,.top-nav-list li:hover:before { /* background-color: rgba(0,0,0,0.2);*/ } .top-nav-list li.haschild:hover { /*background-color: rgba(0,0,0,0.2);*/ } .top-nav-list li li:hover .top-nav-list a:hover, .top-nav-list .current-menu-item a:hover,.top-nav-list li a:hover { color:#4c4c4c !important; } .top-nav-list li.current-menu-item a, .top-nav-list li.current_page_item a{ color: #4c4c4c !important; } .top-nav-list> ul > li ul, .top-nav-list > li ul { } .caption,.back_div,.slide .GalleryPost article { background:rgba(255,255,255,0.4); } .da-empty .caption{ background:rgba(211,211,211,0.5); } .button-color{ background:#D3D3D3; color:#181ece; } .top-nav-list, .top-nav-list li > a,#top-nav div ul li a, #top-nav > div > ul > li > a, #top-nav > div > div > ul > li > a{ color:#515151; } .top-nav-list > li:hover > a, .top-nav-list > li ul > li > a:hover{ color:#4c4c4c; } .Form_main_div .bar:before,.Form_main_div .bar:after { background:#5264AE; /* contac us page inputs active under line color*/ } .da-thumbs div article{ background-color:rgba(255,255,255,0.5); } .da-empty.on_hover .masonry_item_content{ background-color:rgba(211,211,211,0.5); } .on_hover .masonry_item_content{ background-color:rgba(255,255,255,0.5); } .masonry_item_content{ background-color:#FFFFFF; } .da-thumbs div article.da-empty{ background-color:rgba(211,211,211,0.7); } .wdwt-social-link .fa{ color: #000000; } .wdwt-social-link{ border-color: #000000; } #search-submit{ background:url(http://welkerpedia.org/wp-content/themes/portfolio-gallery/images/search-dark.png) right top no-repeat; background-position-y:6px; background-size:contain; } #searchsubmit { background: transparent url(http://welkerpedia.org/wp-content/themes/portfolio-gallery/images/search-dark.png) no-repeat; background-size: 75%; background-position: 10px 10px; } @media screen and (max-width: 1024px) { #top-nav-list .haschild.open ul li{ background-color: rgba(0,0,0,1) !important; } #top-nav ul, #top-nav > div ul{ color:#515151 !important; background-color:rgba(224,224,224,0.9) !important; } } @media only screen and (max-width: 767px) { .top-nav-list li.current-menu-item > a, .top-nav-list li.current-menu-item > a:visited{ color: #4c4c4c !important; background-color: rgba(0,0,0,0.4); } #top-nav-list .haschild.open ul li{ background-color: rgba(0,0,0,1) !important; } .top-nav-list > li:hover > a, .top-nav-list> li > a:hover, .top-nav-list> li > a:focus,.top-nav-list > li > a:active { color:#4c4c4c !important; } #top-nav > li > a, #top-nav > li > a:link, #top-nav > li > a:visited { color:#515151; } .top-nav-list li ul li > a, .top-nav-list li ul li > a:link, .top-nav-list li ul li > a:visited { color:#515151 !important; } .top-nav-list li ul li:hover > a,.top-nav-list li ul li > a:hover,.top-nav-list li ul li > a:focus, .top-nav-list li ul li > a:active { color:#4c4c4c !important; background-color:#e0e0e0 !important; } .top-nav-list li.has-sub > a, .top-nav-list li.has-sub > a:link, .top-nav-list li.has-sub > a:visited { background:#e0e0e0 !important; } .top-nav-list li.has-sub:hover > a, .top-nav-list li.has-sub > a:hover, .top-nav-list li.has-sub > a:focus, .top-nav-list li.has-sub > a:active { background:#e0e0e0 !important; } .top-nav-list li ul li.has-sub > a, .top-nav-list li ul li.has-sub > a:link, .top-nav-list li ul li.has-sub > a:visited{ background:#e0e0e0 !important; } .top-nav-list li ul li.has-sub:hover > a,.top-nav-list li ul li.has-sub > a:hover, .top-nav-list li ul li.has-sub > a:focus, .top-nav-list li ul li.has-sub > a:active { background:#e4e4e4 !important; } .top-nav-list li.current-menu-ancestor > a:hover, .top-nav-list li.current-menu-item > a:focus, .top-nav-list li.current-menu-item > a:active{ color:#515151 !important; background-color:#e0e0e0 !important; } .top-nav-list li.current-menu-parent > a, .top-nav-list li.current-menu-parent > a:link, .top-nav-list li.current-menu-parent > a:visited,.top-nav-list li.current-menu-parent > a:hover, .top-nav-list li.current-menu-parent > a:focus, .top-nav-list li.current-menu-parent > a:active,.top-nav-list li.has-sub.current-menu-item > a, .top-nav-list li.has-sub.current-menu-item > a:link, .top-nav-list li.has-sub.current-menu-item > a:visited,.top-nav-list li.has-sub.current-menu-ancestor > a:hover, .top-nav-list li.has-sub.current-menu-item > a:focus, .top-nav-list li.has-sub.current-menu-item > a:active, .top-nav-list li.current-menu-ancestor > a, .top-nav-list li.current-menu-ancestor > a:link, .top-nav-list li.current-menu-ancestor > a:visited,.top-nav-list li.current-menu-ancestor > a:hover, .top-nav-list li.current-menu-ancestor > a:focus, .top-nav-list li.current-menu-ancestor > a:active { color:#515151 !important; background:#e0e0e0 !important; } .top-nav-list li ul li.current-menu-item > a,.top-nav-list li ul li.current-menu-item > a:link, .top-nav-list li ul li.current-menu-item > a:visited,.top-nav-list li ul li.current-menu-ancestor > a:hover, .top-nav-list li ul li.current-menu-item > a:focus, .top-nav-list li ul li.current-menu-item > a:active, #top-nav > div ul, #top-nav ul{ color:#515151 !important; background-color:rgba(224,224,224,0.9) !important; } .top-nav-list li ul li.current-menu-parent > a, .top-nav-list li ul li.current-menu-parent > a:link, .top-nav-list li ul li.current-menu-parent > a:visited,.top-nav-list li ul li.current-menu-parent > a:hover, .top-nav-list li ul li.current-menu-parent > a:focus, .top-nav-list li ul li.current-menu-parent > a:active, .top-nav-list li ul li.has-sub.current-menu-item > a,.top-nav-list li ul li.has-sub.current-menu-item > a:link, .top-nav-list li ul li.has-sub.current-menu-item > a:visited, .top-nav-list li ul li.has-sub.current-menu-ancestor > a:hover,.top-nav-list li ul li.has-sub.current-menu-item > a:focus, .top-nav-list li ul li.has-sub.current-menu-item > a:active, .top-nav-list li ul li.current-menu-ancestor > a, .top-nav-list li ul li.current-menu-ancestor > a:link, .top-nav-list li ul li.current-menu-ancestor > a:visited,.top-nav-list li ul li.current-menu-ancestor > a:hover,.top-nav-list li ul li.current-menu-ancestor > a:focus, .top-nav-list li ul li.current-menu-ancestor > a:active { color:#515151 !important; background:#e4e4e4 !important; } } </style> <style type="text/css" id="custom-background-css"> body.custom-background { background-color: #ffffff; } </style> <link rel="icon" href="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=32%2C32" sizes="32x32" /> <link rel="icon" href="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=96%2C96" sizes="192x192" /> <link rel="apple-touch-icon-precomposed" href="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=96%2C96" /> <meta name="msapplication-TileImage" content="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=96%2C96" /> </head> <body class="single single-post postid-1875 single-format-standard custom-background no-js"> <div class="portfolio_gallery_wrap"> <div class="left_container "> <div class="left_content"> <div id="back"> <div id="logo-block"> <a id="logo" href="http://welkerpedia.org/" title="Welkerpedia.org &#8211; The Art of David Welker"> <img id="site-title" src="http://welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png" alt="logo"> </a> </div> <div class="responsive_menu" > <div class="active_menu_responsive"> <p><span style="display:inline-block; float:left; padding:0 10px;"> <span id='trigram-for-heaven'></span></span><span style="position:relative;">Menu </span></p> </div> </div> <div class="phone-menu-block"> <div id="top-nav"> <ul id="top-nav-list" class=" top-nav-list"><li id="menu-item-378" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-378"><a href="http://welkerpedia.org/biography/" class="menu-image-title-hide menu-image-hovered"><span class="menu-image-title">Welker</span><span class='menu-image-hover-wrapper'><img width="200" height="40" src="http://welkerpedia.org/wp-content/uploads/2016/08/menu-welker-1.png" class="menu-image menu-image-title-hide" alt="menu-welker" srcset="http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welker-1.png?w=200 200w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welker-1.png?resize=24%2C5 24w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welker-1.png?resize=36%2C7 36w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welker-1.png?resize=48%2C10 48w" sizes="(max-width: 200px) 100vw, 200px" /><img width="200" height="40" src="http://welkerpedia.org/wp-content/uploads/2016/08/menu-welkerhov.png" class="hovered-image menu-image-title-hide" alt="menu-welkerhov" style="margin-left: -200px;" srcset="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welkerhov.png?w=200 200w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welkerhov.png?resize=24%2C5 24w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welkerhov.png?resize=36%2C7 36w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-welkerhov.png?resize=48%2C10 48w" sizes="(max-width: 200px) 100vw, 200px" /></span></a></li> <li id="menu-item-1744" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1744"><a href="http://welkerpedia.org/works/" class="menu-image-title-hide menu-image-hovered"><span class="menu-image-title">Works</span><span class='menu-image-hover-wrapper'><img width="200" height="40" src="http://welkerpedia.org/wp-content/uploads/2016/08/menu-works.png" class="menu-image menu-image-title-hide" alt="menu-works" srcset="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-works.png?w=200 200w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-works.png?resize=24%2C5 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-works.png?resize=36%2C7 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-works.png?resize=48%2C10 48w" sizes="(max-width: 200px) 100vw, 200px" /><img width="200" height="40" src="http://welkerpedia.org/wp-content/uploads/2016/08/menu-workshov.png" class="hovered-image menu-image-title-hide" alt="menu-workshov" style="margin-left: -200px;" srcset="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-workshov.png?w=200 200w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-workshov.png?resize=24%2C5 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-workshov.png?resize=36%2C7 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-workshov.png?resize=48%2C10 48w" sizes="(max-width: 200px) 100vw, 200px" /></span></a></li> <li id="menu-item-1782" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1782"><a href="http://welkerpedia.org/walkabouts/" class="menu-image-title-hide menu-image-hovered"><span class="menu-image-title">Walkabouts</span><span class='menu-image-hover-wrapper'><img width="200" height="40" src="http://welkerpedia.org/wp-content/uploads/2016/08/menu-walkabouts.png" class="menu-image menu-image-title-hide" alt="menu-walkabouts" srcset="http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkabouts.png?w=200 200w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkabouts.png?resize=24%2C5 24w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkabouts.png?resize=36%2C7 36w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkabouts.png?resize=48%2C10 48w" sizes="(max-width: 200px) 100vw, 200px" /><img width="200" height="40" src="http://welkerpedia.org/wp-content/uploads/2016/08/menu-walkaboutshov.png" class="hovered-image menu-image-title-hide" alt="menu-walkaboutshov" style="margin-left: -200px;" srcset="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkaboutshov.png?w=200 200w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkaboutshov.png?resize=24%2C5 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkaboutshov.png?resize=36%2C7 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/menu-walkaboutshov.png?resize=48%2C10 48w" sizes="(max-width: 200px) 100vw, 200px" /></span></a></li> </ul> </div> </div> </div> <aside id="sidebar3" > <div class="sidebar-container"> <div id="search-2" class="widget-sidebar sidebar-3 widget_search"><form class="ast-search" role="search" method="get" action="http://welkerpedia.org/"> <input type="text" placeholder="Search..." id="search-input" name="s" value=""/> <input type="submit" value="" id="search-submit" /> </form></div> <div id="widget_sp_image-11" class="widget-sidebar sidebar-3 widget_sp_image"><a href="https://www.facebook.com/groups/welkerpedia.org/" id="" target="_blank" class="widget_sp_image-image-link" title="" rel=""><img width="997" height="296" alt="" class="attachment-full" style="max-width: 100%;" src="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/like-us-on-facebook.png?fit=997%2C296" /></a></div> <div id="widget_sp_image-7" class="widget-sidebar sidebar-3 widget_sp_image"><a href="http://welkerstudios.com" id="" target="_blank" class="widget_sp_image-image-link" title="" rel=""><img width="400" height="225" alt="" class="attachment-full" style="max-width: 100%;" src="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/wp-ws-banner.png?fit=400%2C225" /></a></div> <div class="clear"></div> </div> </aside> <div id="footer-bottom"> </div> </div> </div><div class="right_container"> <div id="content"> <div class="single-post singlepost1"> <h2 class="single-title">Welcome to Welkerpedia!</h2> <div class="entry"> <p><img class="size-full wp-image-2089 aligncenter" src="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?resize=1000%2C600" alt="welkerpedia_logo" srcset="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?w=1000 1000w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?resize=300%2C180 300w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?resize=768%2C461 768w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?resize=24%2C14 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?resize=36%2C22 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/welkerpedia_logo.png?resize=48%2C29 48w" sizes="(max-width: 1000px) 100vw, 1000px" data-recalc-dims="1" /></p> <p>We are so excited to finally launch WELKERPEDIA, a fan-created and fan-driven online community focused on the artwork of David Welker.  There is much to see and do here!  We welcome you to peruse the WORKS (in several different searchable methods), participate in WATERCOOLER discussions, as well as upload photographs of your own frame-ups and prints.  As you probably know, David is a prolific artist, so this website will be frequently updated.  If you see something that needs tweaking, please let us know.</p> <p>Now to meet the Skully Crew:</p> <p>DAVID WELKER &#8211; is the Captain.  (Oh Captain, My Captain!)  He is the reason we&#8217;re here, and he promises frequent visits to infuse Welkerpedia with wisdom, insight, and general badassery.</p> <table style="border: none;"> <tbody> <tr> <td style="border: none;" width="12%"><img class="alignnone wp-image-2197" src="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=55%2C42" alt="adamava" srcset="http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?w=854 854w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=300%2C231 300w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=768%2C591 768w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=24%2C18 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=36%2C28 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=48%2C37 48w" sizes="(max-width: 55px) 100vw, 55px" data-recalc-dims="1" /></td> <td style="border: none;">ADAM &#8211; is the Webmaster.  He makes links work and the pages do magical, swooshy things.  He&#8217;s the duct tape of this operation.</td> </tr> </tbody> </table> <table style="border: none;"> <tbody> <tr> <td style="border: none;" width="12%"><img class="alignnone wp-image-2202" src="http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/VT-HOME-GAME-WEEKENDS.gif?resize=66%2C49" alt="VT-HOME-GAME-WEEKENDS" data-recalc-dims="1" /></td> <td style="border: none;">HEATH &#8211; is the Art Curator.  His job is to gather the images and art specs (size/run/edition).  He&#8217;s the guy that provides/updates the print specifics.</td> </tr> </tbody> </table> <table style="border: none;"> <tbody> <tr> <td style="border: none;" width="12%"><img class="alignnone wp-image-2204" src="http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=55%2C55" alt="emoji-headbanger" srcset="http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?w=1000 1000w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=150%2C150 150w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=300%2C300 300w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=768%2C768 768w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=24%2C24 24w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=36%2C36 36w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=48%2C48 48w" sizes="(max-width: 55px) 100vw, 55px" data-recalc-dims="1" /></td> <td style="border: none;">JOSH &#8211; is the Watercooler Watchman (a.k.a. forum moderator).  He minimizes assholery.  Think of him as the sheriff &#8211; a sheriff who knows his Welker.</td> </tr> </tbody> </table> <table style="border: none;"> <tbody> <tr> <td style="border: none;" width="12%"><img class="wp-image-1882 alignleft" src="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=52%2C58" alt="Mike-Wazowski2" srcset="http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=270%2C300 270w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=22%2C24 22w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=32%2C36 32w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=43%2C48 43w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?w=491 491w" sizes="(max-width: 52px) 100vw, 52px" data-recalc-dims="1" /></td> <td style="border: none;">And I&#8217;m ARROW, the Editor (and only grrrl).  I write and organize stuff &#8211; lots of stuff.  I am also the creator of the bi-monthly Walkabouts.  xo</td> </tr> </tbody> </table> </div> <div class="entry-meta"> <span class="sep date"></span><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/" title="2:06 pm" rel="bookmark"><time class="entry-date" datetime="2016-08-22T14:06:34+00:00">August 22, 2016</time></a><span class="by-author"> <span class="sep author"></span> <span class="author vcard"><a class="url fn n" href="http://welkerpedia.org/author/arrow/" title="View all posts by Arrow" rel="author">Arrow</a></span></span> </div> <div class="entry-meta-cat"><span class="categories-links"><span class="sep category"></span> <a href="http://welkerpedia.org/category/uncategorized/" rel="category tag">Uncategorized</a>, <a href="http://welkerpedia.org/category/walkabouts-articles/" rel="category tag">Walkabout Articles</a>, <a href="http://welkerpedia.org/category/walkabouts/" rel="category tag">Walkabouts</a></span></div> <nav class="page-navigation"> <a class="styled-button" href="http://welkerpedia.org/2016/08/YMSB_Burlington_-_2010_-_Scratchboard/" rel="prev"><span class="meta-nav">&larr;</span> YMSB Burlington &#8211; 2010 &#8211; Scratchboard</a> <a class="styled-button" href="http://welkerpedia.org/2016/08/Civilization_-_2016_-_1st_Edition/" rel="next">Civilization &#8211; 2016 &#8211; 1st Edition <span class="meta-nav">&rarr;</span></a> </nav> <div class="clear"></div> <div class="comments-template"> <h5 id="comments"> 11 comments on &ldquo;<span>Welcome to Welkerpedia!</span>&rdquo; </h5> <div class="navigation"> <div class="previous"></div><!-- end of .previous --> <div class="next"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/comment-page-2/#comments" >Newer comments &#8250;</a></div><!-- end of .next --> </div><!-- end of.navigation --> <ol class="commentlist"> <li class="comment byuser comment-author-sassyhooper even thread-even depth-1" id="comment-34"> <div id="div-comment-34" class="comment-body"> <div class="comment-author vcard"> <img src="//www.gravatar.com/avatar/c101f290f457e5997b909dada83864b1?s=60&#038;r=g&#038;d=mm" class="avatar user-21-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Samantha Waldo" /> <cite class="fn"><a href='http://welkerpedia.org/members/sassyhooper/' rel='external nofollow' class='url'>Samantha Waldo</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-34"> August 31, 2016 at 8:59 am</a> </div> <p>YaY!  It looks great!  Thanks for all the hard work!  I feel very honored to be amongst the first to walkabout around here!  DW fangirl for life ????</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-adam odd alt thread-odd thread-alt depth-1" id="comment-35"> <div id="div-comment-35" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/1/57c6517092dfd-bpfull.png" class="avatar user-1-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Adam" /> <cite class="fn"><a href='http://welkerpedia.org/members/adam/' rel='external nofollow' class='url'>Adam</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-35"> August 31, 2016 at 9:22 am</a> </div> <p>Thanks Samantha. Look for great things to come!</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-levitator even thread-even depth-1" id="comment-36"> <div id="div-comment-36" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/16/57c6d2e33e80b-bpfull.jpg" class="avatar user-16-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Jason Wickham" /> <cite class="fn"><a href='http://welkerpedia.org/members/levitator/' rel='external nofollow' class='url'>Jason Wickham</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-36"> August 31, 2016 at 9:44 am</a> </div> <p>I love that users can upload frame ups when thw thumbnail of a print is selected.   I hope folks take advantage of that.</p> <p>I clearly see I&#8217;ll be getting nothing  &#8220;productive&#8221; done today&#8230;.lol</p> <p>&nbsp;</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-nigelluther odd alt thread-odd thread-alt depth-1" id="comment-38"> <div id="div-comment-38" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/63/57c82aca1543d-bpfull.jpg" class="avatar user-63-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Nigel Luther" /> <cite class="fn"><a href='http://welkerpedia.org/members/nigelluther/' rel='external nofollow' class='url'>Nigel Luther</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-38"> August 31, 2016 at 11:35 am</a> </div> <p>This is Awesome</p> <p>&nbsp;</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-jbarber even thread-even depth-1" id="comment-39"> <div id="div-comment-39" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/49/57c6e7104bba4-bpfull.jpg" class="avatar user-49-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Jeff Barber" /> <cite class="fn"><a href='http://welkerpedia.org/members/jbarber/' rel='external nofollow' class='url'>Jeff Barber</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-39"> August 31, 2016 at 1:05 pm</a> </div> <p>Happy to be a member of the new site!</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-villanuevaguadalupe odd alt thread-odd thread-alt depth-1" id="comment-40"> <div id="div-comment-40" class="comment-body"> <div class="comment-author vcard"> <img src="//www.gravatar.com/avatar/c1e26ebaddcbdf2e7b59d6195acec792?s=60&#038;r=g&#038;d=mm" class="avatar user-74-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Guadalupe" /> <cite class="fn"><a href='http://welkerpedia.org/members/villanuevaguadalupe/' rel='external nofollow' class='url'>Guadalupe</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-40"> August 31, 2016 at 1:19 pm</a> </div> <p>thanks for having me. I have been officially jumped into this gang.</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-coshie1 even thread-even depth-1" id="comment-41"> <div id="div-comment-41" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/77/57c72b8d76e21-bpfull.jpg" class="avatar user-77-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Coshie" /> <cite class="fn"><a href='http://welkerpedia.org/members/coshie1/' rel='external nofollow' class='url'>Coshie</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-41"> August 31, 2016 at 3:11 pm</a> </div> <p>Great idea &amp; great site! Congrats on your efforts to set it up.</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-milescoletrain odd alt thread-odd thread-alt depth-1" id="comment-42"> <div id="div-comment-42" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/81/57c744d90eb13-bpfull.jpg" class="avatar user-81-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of todd antoniac" /> <cite class="fn"><a href='http://welkerpedia.org/members/milescoletrain/' rel='external nofollow' class='url'>todd antoniac</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-42"> August 31, 2016 at 5:07 pm</a> </div> <p>This is going to a fantastic Fansite&#8230;Happy to be a part of it!!</p> <p>&nbsp;</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-rubindawg even thread-even depth-1" id="comment-43"> <div id="div-comment-43" class="comment-body"> <div class="comment-author vcard"> <img src="//www.gravatar.com/avatar/0731449d911f0f4c95242b8d20d1f01f?s=60&#038;r=g&#038;d=mm" class="avatar user-82-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Tera" /> <cite class="fn"><a href='http://welkerpedia.org/members/rubindawg/' rel='external nofollow' class='url'>Tera</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-43"> August 31, 2016 at 5:46 pm</a> </div> <p>You guys are awesome! Thanks for all the hard work!</p> <p>YAY</p> </div> </li><!-- #comment-## --> <li class="comment byuser comment-author-tspagnola odd alt thread-odd thread-alt depth-1" id="comment-46"> <div id="div-comment-46" class="comment-body"> <div class="comment-author vcard"> <img src="http://welkerpedia.org/wp-content/uploads/avatars/92/57c9be76dbfa8-bpfull.jpg" class="avatar user-92-avatar avatar-60 photo" width="60" height="60" alt="Profile photo of Tim Spagnola" /> <cite class="fn"><a href='http://welkerpedia.org/members/tspagnola/' rel='external nofollow' class='url'>Tim Spagnola</a></cite> <span class="says">says:</span> </div> <div class="comment-meta commentmetadata"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/#comment-46"> September 2, 2016 at 2:02 pm</a> </div> <p>Thanks all for the time in passion with this effort. So happy to be a part of this community. Images of frame-ups forthcoming.</p> </div> </li><!-- #comment-## --> <div class="clear"></div> </ol> <div class="navigation"> <div class="previous"></div><!-- end of .previous --> <div class="next"><a href="http://welkerpedia.org/2016/08/welcome-to-welkerpedia/comment-page-2/#comments" >Newer comments &#8250;</a></div><!-- end of .next --> </div><!-- end of.navigation --> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2016/08/welcome-to-welkerpedia/#respond" style="display:none;">Cancel reply</a></small></h3><p class="must-log-in">You must be <a href="http://welkerpedia.org/wp-login.php?redirect_to=http%3A%2F%2Fwelkerpedia.org%2F2016%2F08%2Fwelcome-to-welkerpedia%2F">logged in</a> to post a comment.</p> </div><!-- #respond --> </div> </div> </div> <div class="clear"></div> </div> <!-- ngg_resource_manager_marker --><script type='text/javascript' src='http://welkerpedia.org/wp-includes/js/masonry.min.js?ver=3.1.2'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-includes/js/jquery/jquery.masonry.min.js?ver=3.1.2'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/jetpack/modules/photon/photon.js?ver=20130122'></script> <script type='text/javascript'> /* <![CDATA[ */ var sb_instagram_js_options = {"sb_instagram_at":"1459425207.3a81a9asdfasf.27ec29a95c0945d6a18195325a59603d"}; /* ]]> */ </script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/instagram-feed/js/sb-instagram.min.js?ver=1.4.9'></script> <script type='text/javascript' src='http://s0.wp.com/wp-content/js/devicepx-jetpack.js?ver=201917'></script> <script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?ver=2019Apraa'></script> <script type='text/javascript'> /* <![CDATA[ */ var WPGroHo = {"my_hash":""}; /* ]]> */ </script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/plugins/jetpack/modules/wpgroho.js?ver=4.5.2'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/responsive.js?ver=2.0.14'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-includes/js/comment-reply.min.js?ver=4.5.2'></script> <script type='text/javascript' src='http://welkerpedia.org/wp-includes/js/wp-embed.min.js?ver=4.5.2'></script> <!-- Generated in 0.818 seconds. (108 q) --> <div style="display:none"> <div class="grofile-hash-map-c101f290f457e5997b909dada83864b1"> </div> <div class="grofile-hash-map-8295ebdde40aa9590b470b049d0f6d29"> </div> <div class="grofile-hash-map-f5b1b1957cf9a38a7def21851c7abd86"> </div> <div class="grofile-hash-map-11bac9f13aecb948ad646190408ad765"> </div> <div class="grofile-hash-map-3243c66c91232486c8243618789e999d"> </div> <div class="grofile-hash-map-c1e26ebaddcbdf2e7b59d6195acec792"> </div> <div class="grofile-hash-map-fa43e9d1d64bebc258eb0fd62c3468b9"> </div> <div class="grofile-hash-map-6d35071ab0f489bea89c0acdbabcf554"> </div> <div class="grofile-hash-map-0731449d911f0f4c95242b8d20d1f01f"> </div> <div class="grofile-hash-map-b2b9645a736c1a157b89917c069b0e54"> </div> </div> <script type='text/javascript' src='http://stats.wp.com/e-201917.js' async defer></script> <script type='text/javascript'> _stq = window._stq || []; _stq.push([ 'view', {v:'ext',j:'1:4.0.3',blog:'116032192',post:'1875',tz:'-4',srv:'welkerpedia.org'} ]); _stq.push([ 'clickTrackerInit', '116032192', '1875' ]); </script> <div class="clear"></div> </div> <div class="clear"></div> </body> </html>
[]
[ "<head>&#13;\n<meta charset=\"UTF-8\"/>&#13;\n<meta name=\"viewport\" content=\"width=device-width\"/>&#13;\n<meta name=\"viewport\" content=\"initial-scale=1.0\"/>&#13;\n<meta name=\"HandheldFriendly\" content=\"true\"/>&#13;\n<link rel=\"profile\" href=\"http://gmpg.org/xfn/11\"/>&#13;\n<link rel=\"pingback\" href=\"http://welkerpedia.org/xmlrpc.php\"/>&#13;\n<title>Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker</title>\n\n<!-- All in One SEO Pack 2.4.2 by Michael Torbert of Semper Fi Web Design[350,430] -->\n<link rel=\"canonical\" href=\"http://welkerpedia.org/2016/08/welcome-to-welkerpedia/\"/>\n<!-- /all in one seo pack -->\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Welkerpedia.org - The Art of David Welker » Feed\" href=\"http://welkerpedia.org/feed/\"/>\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Welkerpedia.org - The Art of David Welker » Comments Feed\" href=\"http://welkerpedia.org/comments/feed/\"/>\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Welkerpedia.org - The Art of David Welker » Welcome to Welkerpedia! Comments Feed\" href=\"http://welkerpedia.org/2016/08/welcome-to-welkerpedia/feed/\"/>\n <script type=\"text/javascript\">&#13;\n var ajaxurl = 'http://welkerpedia.org/wp-admin/admin-ajax.php';&#13;\n </script>&#13;\n \t\t<script type=\"text/javascript\">\n\t\t\twindow._wpemojiSettings = {\"baseUrl\":\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/72x72\\/\",\"ext\":\".png\",\"source\":{\"concatemoji\":\"http:\\/\\/welkerpedia.org\\/wp-includes\\/js\\/wp-emoji-release.min.js?ver=4.5.2\"}};\n\t\t\t!function(a,b,c){function d(a){var c,d,e,f=b.createElement(\"canvas\"),g=f.getContext&amp;&amp;f.getContext(\"2d\"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline=\"top\",g.font=\"600 32px Arial\",a){case\"flag\":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length&gt;3e3;case\"diversity\":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+\",\"+c[1]+\",\"+c[2]+\",\"+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+\",\"+c[1]+\",\"+c[2]+\",\"+c[3],d!==e;case\"simple\":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case\"unicode8\":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement(\"script\");c.src=a,c.type=\"text/javascript\",b.getElementsByTagName(\"head\")[0].appendChild(c)}var f,g,h,i;for(i=Array(\"simple\",\"flag\",\"unicode8\",\"diversity\"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h&lt;i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&amp;&amp;c.supports[i[h]],\"flag\"!==i[h]&amp;&amp;(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&amp;&amp;c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&amp;&amp;!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener(\"DOMContentLoaded\",g,!1),a.addEventListener(\"load\",g,!1)):(a.attachEvent(\"onload\",g),b.attachEvent(\"onreadystatechange\",function(){\"complete\"===b.readyState&amp;&amp;c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&amp;&amp;f.twemoji&amp;&amp;(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);\n\t\t</script>\n\t\t<style type=\"text/css\">\nimg.wp-smiley,\nimg.emoji {\n\tdisplay: inline !important;\n\tborder: none !important;\n\tbox-shadow: none !important;\n\theight: 1em !important;\n\twidth: 1em !important;\n\tmargin: 0 .07em !important;\n\tvertical-align: -0.1em !important;\n\tbackground: none !important;\n\tpadding: 0 !important;\n}\n</style>\n<link rel=\"stylesheet\" id=\"bdp-fontawesome-stylesheets-css\" href=\"http://welkerpedia.org/wp-content/plugins/blog-designer-pro/css/font-awesome.min.css?ver=4.5.2\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"bdp-galleryslider-stylesheets-css\" href=\"http://welkerpedia.org/wp-content/plugins/blog-designer-pro/css/flexslider.css?ver=4.5.2\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"siteorigin-panels-front-css\" href=\"http://welkerpedia.org/wp-content/plugins/siteorigin-panels/css/front.css?ver=2.4.14\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"single-style-css-css\" href=\"http://welkerpedia.org/wp-content/plugins/blog-designer-pro/css/single/single_style.css?ver=4.5.2\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"bp-legacy-css-css\" href=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-templates/bp-legacy/css/buddypress.min.css?ver=2.5.3\" type=\"text/css\" media=\"screen\"/>\n<link rel=\"stylesheet\" id=\"easy-facebook-likebox-plugin-styles-css\" href=\"http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/css/public.css?ver=4.3.1\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"easy-facebook-likebox-animate-css\" href=\"http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/css/animate.css?ver=4.3.1\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"easy-facebook-likebox-popup-styles-css\" href=\"http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/popup/magnific-popup.css?ver=4.3.1\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"sb_instagram_styles-css\" href=\"http://welkerpedia.org/wp-content/plugins/instagram-feed/css/sb-instagram.min.css?ver=1.4.9\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"sb_instagram_icons-css\" href=\"https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css?ver=4.6.3\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"menu-image-css\" href=\"http://welkerpedia.org/wp-content/plugins/menu-image/menu-image.css?ver=1.1\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"wdwt_shortcode_style-css\" href=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/shortcode/css/style.css?ver=2.0.14\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"portfolio-gallery-style-css\" href=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/style.css?ver=2.0.14\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"wdwt_font-awesome-css\" href=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/css/font-awesome/font-awesome.css?ver=2.0.14\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"wdwt_mCustomScrollbar-css\" href=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/css/jquery.mCustomScrollbar.css?ver=2.0.14\" type=\"text/css\" media=\"all\"/>\n<link rel=\"stylesheet\" id=\"jetpack_css-css\" href=\"http://welkerpedia.org/wp-content/plugins/jetpack/css/jetpack.css?ver=4.0.3\" type=\"text/css\" media=\"all\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-includes/js/jquery/jquery.js?ver=1.12.3\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.0\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/blog-designer-pro/js/ajax.js?ver=4.5.2\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/blog-designer-pro/js/SocialShare.js?ver=4.5.2\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/blog-designer-pro/js/jquery.flexslider-min.js?ver=4.5.2\"/>\n<script type=\"text/javascript\">\n/* &lt;![CDATA[ */\nvar BP_Confirm = {\"are_you_sure\":\"Are you sure?\"};\n/* ]]&gt; */\n</script>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/confirm.min.js?ver=2.5.3\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/widget-members.min.js?ver=2.5.3\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/jquery-query.min.js?ver=2.5.3\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/jquery-cookie.min.js?ver=2.5.3\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-core/js/jquery-scroll-to.min.js?ver=2.5.3\"/>\n<script type=\"text/javascript\">\n/* &lt;![CDATA[ */\nvar BP_DTheme = {\"accepted\":\"Accepted\",\"close\":\"Close\",\"comments\":\"comments\",\"leave_group_confirm\":\"Are you sure you want to leave this group?\",\"mark_as_fav\":\"Favorite\",\"my_favs\":\"My Favorites\",\"rejected\":\"Rejected\",\"remove_fav\":\"Remove Favorite\",\"show_all\":\"Show all\",\"show_all_comments\":\"Show all comments for this thread\",\"show_x_comments\":\"Show all %d comments\",\"unsaved_changes\":\"Your profile has unsaved changes. If you leave the page, the changes will be lost.\",\"view\":\"View\"};\n/* ]]&gt; */\n</script>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.min.js?ver=2.5.3\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/popup/jquery.magnific-popup.min.js?ver=4.3.1\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/js/jquery.cookie.js?ver=4.3.1\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/plugins/easy-facebook-likebox/public/assets/js/public.js?ver=4.3.1\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.infinitescroll.js?ver=2.0.14\"/>\n<script type=\"text/javascript\">\n/* &lt;![CDATA[ */\nvar wdwt_custom_js = {\"wdwt_images_right_click\":\"1\"};\n/* ]]&gt; */\n</script>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/javascript.js?ver=2.0.14\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery-hover-effect.js?ver=2.0.14\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.mobile.min.js?ver=2.0.14\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.mCustomScrollbar.concat.min.js?ver=2.0.14\"/>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/jquery.fullscreen-0.4.1.js?ver=2.0.14\"/>\n<script type=\"text/javascript\">\n/* &lt;![CDATA[ */\nvar admin_ajax_url = \"http:\\/\\/welkerpedia.org\\/wp-admin\\/admin-ajax.php\";\n/* ]]&gt; */\n</script>\n<script type=\"text/javascript\" src=\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/js/lightbox.js?ver=2.0.14\"/>\n<link rel=\"https://api.w.org/\" href=\"http://welkerpedia.org/wp-json/\"/>\n<link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://welkerpedia.org/xmlrpc.php?rsd\"/>\n<link rel=\"wlwmanifest\" type=\"application/wlwmanifest+xml\" href=\"http://welkerpedia.org/wp-includes/wlwmanifest.xml\"/> \n<link rel=\"prev\" title=\"YMSB Burlington – 2010 – Scratchboard\" href=\"http://welkerpedia.org/2016/08/YMSB_Burlington_-_2010_-_Scratchboard/\"/>\n<link rel=\"next\" title=\"Civilization – 2016 – 1st Edition\" href=\"http://welkerpedia.org/2016/08/Civilization_-_2016_-_1st_Edition/\"/>\n<meta name=\"generator\" content=\"WordPress 4.5.2\"/>\n<link rel=\"shortlink\" href=\"http://wp.me/p7QRgY-uf\"/>\n<link rel=\"alternate\" type=\"application/json+oembed\" href=\"http://welkerpedia.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwelkerpedia.org%2F2016%2F08%2Fwelcome-to-welkerpedia%2F\"/>\n<link rel=\"alternate\" type=\"text/xml+oembed\" href=\"http://welkerpedia.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwelkerpedia.org%2F2016%2F08%2Fwelcome-to-welkerpedia%2F&amp;format=xml\"/>\n\n\t<script type=\"text/javascript\">var ajaxurl = 'http://welkerpedia.org/wp-admin/admin-ajax.php';</script>\n\n<!-- <meta name=\"NextGEN\" version=\"2.1.43\" /> -->\n&#13;\n<link rel=\"dns-prefetch\" href=\"//v0.wordpress.com\"/>&#13;\n<link rel=\"dns-prefetch\" href=\"//i0.wp.com\"/>&#13;\n<link rel=\"dns-prefetch\" href=\"//i1.wp.com\"/>&#13;\n<link rel=\"dns-prefetch\" href=\"//i2.wp.com\"/>&#13;\n<style type=\"text/css\">img#wpstats{display:none}</style> <style type=\"text/css\">\n .left_container{\n left:0;\n width:20%;\n }\n .right_container{\n float:right;\n width:79.445%;\n }\n \n \n </style>\n <style type=\"text/css\">\n #sidebar1,\n #sidebar2 {\n display:none;\n }\n #content, .blog{\n display:block; \n float:left;\n width:95%;\n } \n #blog, .blog{\n width:100%;\n } \n </style>\n <style>\n .image_list_item, .SearchPost {\n border: 15px solid;\n margin: 50px;\n }\n .gallery_description_hover, .home_description_hover {\n height: 19.6px;\n -webkit-line-clamp:1;\n }\n .gallery-post-info h4, .image_list_item h4,.SearchPost h4 {\n height: 48px;\n -webkit-line-clamp:2;\n }\n @media screen and (min-width: 1024px) {\n .image_list_item, .SearchPost{\n /*2*/\n width:calc(50% - 100px);\n padding-bottom:calc(66.666666666667% - 100px);\n }\n .SearchPost{\n padding-bottom:calc(66.666666666667% - 100px);\n }\n .GalleryPost{\n /* width:50%;*/\nwidth: 25%;\n /* padding-bottom:66.666666666667%;*/\npadding-bottom:25%;\n } \n }\n @media screen and (min-width: 1324px) {\n .image_list_item, .SearchPost{\n /*3*/\n width:calc(33.333333333333% - 100px);\n padding-bottom:calc(44.444444444444% - 100px);\n }\n .SearchPost{\n padding-bottom:calc(44.444444444444% - 100px);\n }\n .GalleryPost{\n /* width:33.333333333333%;*/\nwidth: 25%;\n /* padding-bottom:44.444444444444%;*/\npadding-bottom:25%;\n } \n }\n @media screen and (min-width: 1624px) {\n .image_list_item, .SearchPost{\n /*4*/\n width:calc(25% - 100px);\n padding-bottom:calc(33.333333333333% - 100px);\n }\n .SearchPost{\n padding-bottom:calc(33.333333333333% - 100px);\n }\n .GalleryPost{\n /* width:25%;*/\nwidth: 25%;\n /* padding-bottom:33.333333333333%;*/\npadding-bottom:25%;\n } \n }\n @media screen and (min-width: 1924px) {\n .image_list_item, .SearchPost{\n /*5*/\n width:calc(20% - 100px);\n padding-bottom:calc(26.666666666667% - 100px);\n }\n .SearchPost{\n padding-bottom:calc(26.666666666667% - 100px);\n }\n .GalleryPost{\n /* width:20%;*/\nwidth: 25%;\n /* padding-bottom:26.666666666667%;*/\npadding-bottom:25%;\n } \n }\n @media screen and (min-width: 2224px) {\n .image_list_item, .SearchPost{\n /*6*/\n width:calc(16.666666666667% - 100px);\n padding-bottom:calc(22.222222222222% - 100px);\n }\n .SearchPost{\n padding-bottom:calc(22.222222222222% - 100px);\n }\n .GalleryPost{\n /* width:16.666666666667%;*/\nwidth: 25%;\n /* padding-bottom:22.222222222222%;*/\npadding-bottom:25%;\n } \n }\n @media screen and (max-width: 1024px) {\n .image_list_item, .SearchPost{\n /* 3*/\n width:calc(33.333333333333% - 100px);\n padding-bottom:calc(44.444444444444% - 100px);\n } \n .SearchPost{\n padding-bottom:calc(44.444444444444% - 100px);\n } \n .GalleryPost{\n /* width:33.333333333333%;*/\nwidth: 25%;\n /* padding-bottom:44.444444444444%;*/\npadding-bottom:25%;\n } \n }\n\n @media screen and (max-width: 900px) {\n .image_list_item, .SearchPost{\n /* 2*/\n width:calc(50% - 100px);\n padding-bottom:calc(66.666666666667% - 100px);\n } \n .SearchPost{\n padding-bottom:calc(66.666666666667% - 100px);\n } \n .GalleryPost{\n /* width:50%;*/\nwidth:25%;\n /* padding-bottom:66.666666666667%;*/\npadding-bottom:25%;\n } \n }\n @media screen and (max-width: 600px) {\n .image_list_item, .SearchPost{\n /* 2*/\n width:calc(100% - 100px);\n padding-bottom:calc(133.33333333333% - 100px);\n } \n .SearchPost{\n padding-bottom:calc(133.33333333333% - 100px);\n } \n .GalleryPost{\n /* width:100%;*/\nwidth:25%;\n /* padding-bottom:133.33333333333%;*/\npadding-bottom:25%;\n } \n }\n \n </style>\n <style type=\"text/css\"> @font-face { &#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Bold.ttf\");&#13;\n font-weight:bold;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-BoldItalic.ttf\");&#13;\n font-weight:bold;&#13;\n font-style:italic;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-ExtraBold.ttf\");&#13;\n font-weight:bolder;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-ExtraBoldItalic.ttf\");&#13;\n font-weight:bolder;&#13;\n font-style:italic; &#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Italic.ttf\");&#13;\n font-style:italic;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Light.ttf\");&#13;\n font-weight:lighter;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-LightItalic.ttf\");&#13;\n font-weight:lighter;&#13;\n font-style:italic;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Regular.ttf\"); &#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-Semibold.ttf\");&#13;\n font-weight:500;&#13;\n }&#13;\n @font-face {&#13;\n font-family: \"OpenSans\";&#13;\n src: url(\"http://welkerpedia.org/wp-content/themes/portfolio-gallery/inc/fonts/OpenSans-SemiboldItalic.ttf\");&#13;\n font-weight:500;&#13;\n font-style:italic;&#13;\n }&#13;\n h1, h2, h3, h4, h5, h6, .widget-title {&#13;\n font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;&#13;\n font-weight: normal;&#13;\n letter-spacing: 0.00em;&#13;\n text-transform: none;&#13;\n font-variant: normal;&#13;\n font-style: normal;&#13;\n }&#13;\n body {&#13;\n font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;&#13;\n font-weight: normal;&#13;\n letter-spacing: 0.00em;&#13;\n text-transform: none;&#13;\n font-variant: normal;&#13;\n font-style: normal;&#13;\n }&#13;\n .nav, .metabar, .subtext, .subhead, .reply a, .editpage, #page .wp-pagenavi, .post-edit-link, #wp-calendar caption, #wp-calendar thead th, .soapbox-links a, .fancybox, .standard-form .admin-links, .ftitle small {&#13;\n font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;&#13;\n font-weight: normal;&#13;\n letter-spacing: 0.00em;&#13;\n text-transform: none;&#13;\n font-variant: normal;&#13;\n font-style: normal;&#13;\n }&#13;\n input, textarea {&#13;\n font-family: Calibri,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;&#13;\n font-weight: normal;&#13;\n letter-spacing: 0.00em;&#13;\n text-transform: none;&#13;\n font-variant: normal;&#13;\n font-style: normal;&#13;\n }&#13;\n </style> <style type=\"text/css\">\n h1, h2, h3, h4, h5, h6, h1&gt;a,h2&gt;a, h3&gt;a, h4&gt;a, h5&gt;a, h6&gt;a,h1 &gt; a:link,h2 &gt; a:link, h3 &gt; a:link, h4 &gt; a:link, h5 &gt; a:link, h6 &gt; a:link,h1 &gt; a:hover,h2 &gt; a:hover,h3 &gt; a:hover,h4 &gt; a:hover,h5 &gt; a:hover,h6 &gt; a:hover,h1&gt; a:visited,h2&gt; a:visited,h3 &gt; a:visited,h4 &gt; a:visited,h5 &gt; a:visited,h6 &gt; a:visited {\n color:#595959;\n }\n #content .image_list_item, #right_bottom .image_list_item,.SearchPost{\n border-color: #494949 !important;\n }\n #right_middle{\n background:#f2f2f2;\n }\n #back h3 a{\n color: #1c1c1c !important;\n }\n a:link.site-title-a,a:hover.site-title-a,a:visited.site-title-a,a.site-title-a,#logo h1, .site-tagline{\n color:#FFFFFF;\n }\n #commentform #submit,.reply,#reply-title small,.button-color, #portfolio_load_more {\n color:#181ece !important;\n background-color: #D3D3D3;\n }\n .widget_calendar td &gt;a {\n /* background-color: #D3D3D3;*/\n color: #181ece;\n }\n \n\n .button-color:hover button,.button-color:hover a, #portfolio_load_more:hover{\n color:#e7e8fa !important;\n }\n .button-color .contact_send,.button-color a, #portfolio_load_more{\n color:#181ece !important ;\n }\n .button_hover:after {\n background-color: #2a2a2a;\n }\n .reply a,#reply-title small a:link{\n color:#181ece !important;\n }\n #back,#sidebar3{\n /* background:rgba(224,224,224,0.3);*/\n }\n #footer-bottom {\n /* background:rgba(224,224,224,0.3);\n background: -webkit-linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01));\n background: -o-linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01)); \n background: -moz-linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01));\n background: linear-gradient(rgba(224,224,224,0.3), rgba(224,224,224,0.01));\n */}\n #header-block{\n background-color:#000000;\n }\n #header {\n color: #595959;\n }\n body,.logged-in-as a:link,.logged-in-as a:visited{\n color: #606060;\n }\n input,textarea{\n color:#3124e2;\n }\n ::-webkit-input-placeholder {\n color:#3124e2;\n }\n ::-moz-placeholder {\n color:#3124e2;\n }\n #footer-bottom {\n color: #FFFFFF;\n }\n a:link, a:visited,aside .sidebar-container ul li:before {\n text-decoration: none;\n color: #3a3a3a;\n }\n .responsive_menu, .top-nav-list .current-menu-item,.top-nav-list .open,.top-nav-list li.current-menu-item, .top-nav-list li.current_page_item{\n color: #4c4c4c !important;\n /* background-color: rgba(0,0,0,0.4);*/\n }\n a:hover,aside .sidebar-container ul li:hover:before {\n color: #5b5959;\n }\n #menu-button-block {\n background-color: #e0e0e0;\n }\n .blog.bage-news .news-post{\n border-bottom:1px solid #e0e0e0;\n }\n .top-nav-list li.current-menu-item:before,.top-nav-list li:before {\n /* background-color: rgba(0,0,0,0.01);*/\n }\n .top-nav-list li.current-menu-item:hover:before,.top-nav-list li:hover:before {\n /* background-color: rgba(0,0,0,0.2);*/\n }\n .top-nav-list li.haschild:hover {\n /*background-color: rgba(0,0,0,0.2);*/\n }\n .top-nav-list li li:hover .top-nav-list a:hover, .top-nav-list .current-menu-item a:hover,.top-nav-list li a:hover {\n color:#4c4c4c !important;\n }\n .top-nav-list li.current-menu-item a, .top-nav-list li.current_page_item a{\n color: #4c4c4c !important;\n }\n .top-nav-list&gt; ul &gt; li ul, .top-nav-list &gt; li ul {\n \n }\n .caption,.back_div,.slide .GalleryPost article { \n background:rgba(255,255,255,0.4);\n }\n .da-empty .caption{ \n background:rgba(211,211,211,0.5);\n }\n .button-color{\n background:#D3D3D3;\n color:#181ece;\n }\n .top-nav-list, .top-nav-list li &gt; a,#top-nav div ul li a, #top-nav &gt; div &gt; ul &gt; li &gt; a, #top-nav &gt; div &gt; div &gt; ul &gt; li &gt; a{\n color:#515151;\n }\n .top-nav-list &gt; li:hover &gt; a, .top-nav-list &gt; li ul &gt; li &gt; a:hover{\n color:#4c4c4c;\n }\n \n .Form_main_div .bar:before,.Form_main_div .bar:after {\n background:#5264AE; /* contac us page inputs active under line color*/\n }\n .da-thumbs div article{\n background-color:rgba(255,255,255,0.5);\n }\n .da-empty.on_hover .masonry_item_content{\n background-color:rgba(211,211,211,0.5);\n }\n .on_hover .masonry_item_content{\n background-color:rgba(255,255,255,0.5);\n }\n .masonry_item_content{\n background-color:#FFFFFF;\n }\n \n .da-thumbs div article.da-empty{\n background-color:rgba(211,211,211,0.7);\n \n }\n .wdwt-social-link .fa{\n color: #000000;\n } \n .wdwt-social-link{\n border-color: #000000;\n }\n \n #search-submit{\n background:url(http://welkerpedia.org/wp-content/themes/portfolio-gallery/images/search-dark.png) right top no-repeat;\n background-position-y:6px; \n background-size:contain;\n }\n #searchsubmit {\n background: transparent url(http://welkerpedia.org/wp-content/themes/portfolio-gallery/images/search-dark.png) no-repeat;\n background-size: 75%;\n background-position: 10px 10px;\n }\n \n @media screen and (max-width: 1024px) {\n #top-nav-list .haschild.open ul li{\n background-color: rgba(0,0,0,1) !important; \n }\n #top-nav ul, #top-nav &gt; div ul{\n color:#515151 !important;\n background-color:rgba(224,224,224,0.9) !important;\n }\n }\n @media only screen and (max-width: 767px) {\n .top-nav-list li.current-menu-item &gt; a, .top-nav-list li.current-menu-item &gt; a:visited{\n color: #4c4c4c !important;\n background-color: rgba(0,0,0,0.4);\n }\n #top-nav-list .haschild.open ul li{\n background-color: rgba(0,0,0,1) !important; \n }\n .top-nav-list &gt; li:hover &gt; a, .top-nav-list&gt; li &gt; a:hover, .top-nav-list&gt; li &gt; a:focus,.top-nav-list &gt; li &gt; a:active {\n color:#4c4c4c !important;\n }\n #top-nav &gt; li &gt; a, #top-nav &gt; li &gt; a:link, #top-nav &gt; li &gt; a:visited {\n color:#515151;\n }\n .top-nav-list li ul li &gt; a, .top-nav-list li ul li &gt; a:link, .top-nav-list li ul li &gt; a:visited {\n color:#515151 !important;\n }\n .top-nav-list li ul li:hover &gt; a,.top-nav-list li ul li &gt; a:hover,.top-nav-list li ul li &gt; a:focus, .top-nav-list li ul li &gt; a:active {\n color:#4c4c4c !important;\n background-color:#e0e0e0 !important;\n }\n .top-nav-list li.has-sub &gt; a, .top-nav-list li.has-sub &gt; a:link, .top-nav-list li.has-sub &gt; a:visited {\n background:#e0e0e0 !important;\n }\n .top-nav-list li.has-sub:hover &gt; a, .top-nav-list li.has-sub &gt; a:hover, .top-nav-list li.has-sub &gt; a:focus, .top-nav-list li.has-sub &gt; a:active {\n background:#e0e0e0 !important;\n }\n .top-nav-list li ul li.has-sub &gt; a, .top-nav-list li ul li.has-sub &gt; a:link, .top-nav-list li ul li.has-sub &gt; a:visited{\n background:#e0e0e0 !important;\n }\n .top-nav-list li ul li.has-sub:hover &gt; a,.top-nav-list li ul li.has-sub &gt; a:hover, .top-nav-list li ul li.has-sub &gt; a:focus, .top-nav-list li ul li.has-sub &gt; a:active {\n background:#e4e4e4 !important;\n }\n .top-nav-list li.current-menu-ancestor &gt; a:hover, .top-nav-list li.current-menu-item &gt; a:focus, .top-nav-list li.current-menu-item &gt; a:active{\n color:#515151 !important;\n background-color:#e0e0e0 !important;\n }\n .top-nav-list li.current-menu-parent &gt; a, .top-nav-list li.current-menu-parent &gt; a:link, .top-nav-list li.current-menu-parent &gt; a:visited,.top-nav-list li.current-menu-parent &gt; a:hover, .top-nav-list li.current-menu-parent &gt; a:focus, .top-nav-list li.current-menu-parent &gt; a:active,.top-nav-list li.has-sub.current-menu-item &gt; a, .top-nav-list li.has-sub.current-menu-item &gt; a:link, .top-nav-list li.has-sub.current-menu-item &gt; a:visited,.top-nav-list li.has-sub.current-menu-ancestor &gt; a:hover, .top-nav-list li.has-sub.current-menu-item &gt; a:focus, .top-nav-list li.has-sub.current-menu-item &gt; a:active,\n .top-nav-list li.current-menu-ancestor &gt; a, .top-nav-list li.current-menu-ancestor &gt; a:link, .top-nav-list li.current-menu-ancestor &gt; a:visited,.top-nav-list li.current-menu-ancestor &gt; a:hover, .top-nav-list li.current-menu-ancestor &gt; a:focus, .top-nav-list li.current-menu-ancestor &gt; a:active {\n color:#515151 !important;\n background:#e0e0e0 !important;\n }\n .top-nav-list li ul li.current-menu-item &gt; a,.top-nav-list li ul li.current-menu-item &gt; a:link, .top-nav-list li ul li.current-menu-item &gt; a:visited,.top-nav-list li ul li.current-menu-ancestor &gt; a:hover, .top-nav-list li ul li.current-menu-item &gt; a:focus, .top-nav-list li ul li.current-menu-item &gt; a:active, #top-nav &gt; div ul, #top-nav ul{\n color:#515151 !important;\n background-color:rgba(224,224,224,0.9) !important;\n }\n .top-nav-list li ul li.current-menu-parent &gt; a, .top-nav-list li ul li.current-menu-parent &gt; a:link, .top-nav-list li ul li.current-menu-parent &gt; a:visited,.top-nav-list li ul li.current-menu-parent &gt; a:hover, .top-nav-list li ul li.current-menu-parent &gt; a:focus, .top-nav-list li ul li.current-menu-parent &gt; a:active, .top-nav-list li ul li.has-sub.current-menu-item &gt; a,.top-nav-list li ul li.has-sub.current-menu-item &gt; a:link, .top-nav-list li ul li.has-sub.current-menu-item &gt; a:visited,\n .top-nav-list li ul li.has-sub.current-menu-ancestor &gt; a:hover,.top-nav-list li ul li.has-sub.current-menu-item &gt; a:focus, .top-nav-list li ul li.has-sub.current-menu-item &gt; a:active,\n .top-nav-list li ul li.current-menu-ancestor &gt; a, .top-nav-list li ul li.current-menu-ancestor &gt; a:link, .top-nav-list li ul li.current-menu-ancestor &gt; a:visited,.top-nav-list li ul li.current-menu-ancestor &gt; a:hover,.top-nav-list li ul li.current-menu-ancestor &gt; a:focus, .top-nav-list li ul li.current-menu-ancestor &gt; a:active {\n color:#515151 !important;\n background:#e4e4e4 !important;\n }\n }\n\n\n </style>\n <style type=\"text/css\" id=\"custom-background-css\">\nbody.custom-background { background-color: #ffffff; }\n</style>\n<link rel=\"icon\" href=\"http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=32%2C32\" sizes=\"32x32\"/>\n<link rel=\"icon\" href=\"http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=96%2C96\" sizes=\"192x192\"/>\n<link rel=\"apple-touch-icon-precomposed\" href=\"http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=96%2C96\"/>\n<meta name=\"msapplication-TileImage\" content=\"http://i2.wp.com/welkerpedia.org/wp-content/uploads/2017/10/favicon-96x96.png?fit=96%2C96\"/>\n&#13;\n</head>&#13;\n" ]
[ "<title>Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker</title>\n\n" ]
[ { "key": "datasource", "type": "global", "value": "welkerpedia.org > welcome to welkerpedia" } ]
[ { "char_end_idx": 157, "char_start_idx": 0, "key": "length", "type": "local", "value": "157" }, { "char_end_idx": 373, "char_start_idx": 157, "key": "length", "type": "local", "value": "215" }, { "char_end_idx": 467, "char_start_idx": 373, "key": "length", "type": "local", "value": "93" }, { "char_end_idx": 529, "char_start_idx": 467, "key": "length", "type": "local", "value": "61" }, { "char_end_idx": 560, "char_start_idx": 529, "key": "length", "type": "local", "value": "30" }, { "char_end_idx": 714, "char_start_idx": 560, "key": "length", "type": "local", "value": "153" }, { "char_end_idx": 739, "char_start_idx": 714, "key": "length", "type": "local", "value": "24" }, { "char_end_idx": 801, "char_start_idx": 739, "key": "length", "type": "local", "value": "61" }, { "char_end_idx": 839, "char_start_idx": 801, "key": "length", "type": "local", "value": "37" }, { "char_end_idx": 867, "char_start_idx": 839, "key": "length", "type": "local", "value": "27" }, { "char_end_idx": 933, "char_start_idx": 867, "key": "length", "type": "local", "value": "65" }, { "char_end_idx": 989, "char_start_idx": 933, "key": "length", "type": "local", "value": "55" }, { "char_end_idx": 1028, "char_start_idx": 989, "key": "length", "type": "local", "value": "38" }, { "char_end_idx": 1030, "char_start_idx": 1028, "key": "length", "type": "local", "value": "1" }, { "char_end_idx": 1032, "char_start_idx": 1030, "key": "length", "type": "local", "value": "1" }, { "char_end_idx": 1050, "char_start_idx": 1032, "key": "length", "type": "local", "value": "17" }, { "char_end_idx": 1074, "char_start_idx": 1050, "key": "length", "type": "local", "value": "23" }, { "char_end_idx": 1136, "char_start_idx": 1074, "key": "length", "type": "local", "value": "61" }, { "char_end_idx": 1180, "char_start_idx": 1136, "key": "length", "type": "local", "value": "43" }, { "char_end_idx": 1224, "char_start_idx": 1180, "key": "length", "type": "local", "value": "43" }, { "char_end_idx": 1276, "char_start_idx": 1224, "key": "length", "type": "local", "value": "51" }, { "char_end_idx": 1624, "char_start_idx": 1276, "key": "length", "type": "local", "value": "347" }, { "char_end_idx": 1661, "char_start_idx": 1624, "key": "length", "type": "local", "value": "36" }, { "char_end_idx": 1725, "char_start_idx": 1661, "key": "length", "type": "local", "value": "63" }, { "char_end_idx": 1750, "char_start_idx": 1725, "key": "length", "type": "local", "value": "24" }, { "char_end_idx": 1796, "char_start_idx": 1750, "key": "length", "type": "local", "value": "45" }, { "char_end_idx": 1849, "char_start_idx": 1796, "key": "length", "type": "local", "value": "52" }, { "char_end_idx": 1890, "char_start_idx": 1849, "key": "length", "type": "local", "value": "40" }, { "char_end_idx": 1923, "char_start_idx": 1890, "key": "length", "type": "local", "value": "32" } ]
[ { "key": "length", "type": "global", "value": "1952" } ]
[ { "char_end_idx": 23, "char_start_idx": 0, "html_attrs": { "attrs": [ "class" ], "values": [ "single-title" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 4, "type": "local", "value": "h2" }, { "char_end_idx": 530, "char_start_idx": 24, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 1, "type": "local", "value": "p" }, { "char_end_idx": 715, "char_start_idx": 531, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "p" }, { "char_end_idx": 716, "char_start_idx": 716, "html_attrs": { "attrs": [ "class", "src", "alt", "srcset", "sizes", "data-recalc-dims" ], "values": [ "alignnone wp-image-2197", "http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=55%2C42", "adamava", "http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?w=854 854w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=300%2C231 300w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=768%2C591 768w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=24%2C18 24w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=36%2C28 36w, http://i0.wp.com/welkerpedia.org/wp-content/uploads/2016/08/adamava.png?resize=48%2C37 48w", "(max-width: 55px) 100vw, 55px", "1" ] }, "key": "html", "relative_end_pos": 5, "relative_start_pos": 4, "type": "local", "value": "img" }, { "char_end_idx": 716, "char_start_idx": 716, "html_attrs": { "attrs": [ "style", "width" ], "values": [ "border: none;", "12%" ] }, "key": "html", "relative_end_pos": 6, "relative_start_pos": 3, "type": "local", "value": "td" }, { "char_end_idx": 840, "char_start_idx": 716, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 7, "type": "local", "value": "td" }, { "char_end_idx": 841, "char_start_idx": 716, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 2, "type": "local", "value": "tr" }, { "char_end_idx": 841, "char_start_idx": 716, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 1, "type": "local", "value": "tbody" }, { "char_end_idx": 841, "char_start_idx": 716, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 0, "type": "local", "value": "table" }, { "char_end_idx": 841, "char_start_idx": 841, "html_attrs": { "attrs": [ "class", "src", "alt", "data-recalc-dims" ], "values": [ "alignnone wp-image-2202", "http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/VT-HOME-GAME-WEEKENDS.gif?resize=66%2C49", "VT-HOME-GAME-WEEKENDS", "1" ] }, "key": "html", "relative_end_pos": 8, "relative_start_pos": 7, "type": "local", "value": "img" }, { "char_end_idx": 841, "char_start_idx": 841, "html_attrs": { "attrs": [ "style", "width" ], "values": [ "border: none;", "12%" ] }, "key": "html", "relative_end_pos": 9, "relative_start_pos": 6, "type": "local", "value": "td" }, { "char_end_idx": 990, "char_start_idx": 841, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 10, "type": "local", "value": "td" }, { "char_end_idx": 991, "char_start_idx": 841, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 5, "type": "local", "value": "tr" }, { "char_end_idx": 991, "char_start_idx": 841, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 4, "type": "local", "value": "tbody" }, { "char_end_idx": 991, "char_start_idx": 841, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 3, "type": "local", "value": "table" }, { "char_end_idx": 991, "char_start_idx": 991, "html_attrs": { "attrs": [ "class", "src", "alt", "srcset", "sizes", "data-recalc-dims" ], "values": [ "alignnone wp-image-2204", "http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=55%2C55", "emoji-headbanger", "http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?w=1000 1000w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=150%2C150 150w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=300%2C300 300w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=768%2C768 768w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=24%2C24 24w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=36%2C36 36w, http://i1.wp.com/welkerpedia.org/wp-content/uploads/2016/08/emoji-headbanger.png?resize=48%2C48 48w", "(max-width: 55px) 100vw, 55px", "1" ] }, "key": "html", "relative_end_pos": 8, "relative_start_pos": 7, "type": "local", "value": "img" }, { "char_end_idx": 991, "char_start_idx": 991, "html_attrs": { "attrs": [ "style", "width" ], "values": [ "border: none;", "12%" ] }, "key": "html", "relative_end_pos": 9, "relative_start_pos": 6, "type": "local", "value": "td" }, { "char_end_idx": 1137, "char_start_idx": 991, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 10, "type": "local", "value": "td" }, { "char_end_idx": 1138, "char_start_idx": 991, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 5, "type": "local", "value": "tr" }, { "char_end_idx": 1138, "char_start_idx": 991, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 4, "type": "local", "value": "tbody" }, { "char_end_idx": 1138, "char_start_idx": 991, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 3, "type": "local", "value": "table" }, { "char_end_idx": 1138, "char_start_idx": 1138, "html_attrs": { "attrs": [ "class", "src", "alt", "srcset", "sizes", "data-recalc-dims" ], "values": [ "wp-image-1882 alignleft", "http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=52%2C58", "Mike-Wazowski2", "http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=270%2C300 270w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=22%2C24 22w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=32%2C36 32w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?resize=43%2C48 43w, http://i2.wp.com/welkerpedia.org/wp-content/uploads/2016/08/Mike-Wazowski2.jpg?w=491 491w", "(max-width: 52px) 100vw, 52px", "1" ] }, "key": "html", "relative_end_pos": 8, "relative_start_pos": 7, "type": "local", "value": "img" }, { "char_end_idx": 1138, "char_start_idx": 1138, "html_attrs": { "attrs": [ "style", "width" ], "values": [ "border: none;", "12%" ] }, "key": "html", "relative_end_pos": 9, "relative_start_pos": 6, "type": "local", "value": "td" }, { "char_end_idx": 1280, "char_start_idx": 1138, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 10, "type": "local", "value": "td" }, { "char_end_idx": 1281, "char_start_idx": 1138, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 5, "type": "local", "value": "tr" }, { "char_end_idx": 1281, "char_start_idx": 1138, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 4, "type": "local", "value": "tbody" }, { "char_end_idx": 1281, "char_start_idx": 1138, "html_attrs": { "attrs": [ "style" ], "values": [ "border: none;" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 3, "type": "local", "value": "table" }, { "char_end_idx": 1281, "char_start_idx": 24, "html_attrs": { "attrs": [ "class" ], "values": [ "entry" ] }, "key": "html", "relative_end_pos": 3, "relative_start_pos": 0, "type": "local", "value": "div" }, { "char_end_idx": 1282, "char_start_idx": 1281, "html_attrs": { "attrs": [ "class" ], "values": [ "meta-nav" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 6, "type": "local", "value": "span" }, { "char_end_idx": 1320, "char_start_idx": 1281, "html_attrs": { "attrs": [ "class", "href", "rel" ], "values": [ "styled-button", "http://welkerpedia.org/2016/08/YMSB_Burlington_-_2010_-_Scratchboard/", "prev" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 5, "type": "local", "value": "a" }, { "char_end_idx": 1356, "char_start_idx": 1355, "html_attrs": { "attrs": [ "class" ], "values": [ "meta-nav" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "span" }, { "char_end_idx": 1356, "char_start_idx": 1321, "html_attrs": { "attrs": [ "class", "href", "rel" ], "values": [ "styled-button", "http://welkerpedia.org/2016/08/Civilization_-_2016_-_1st_Edition/", "next" ] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 0, "type": "local", "value": "a" }, { "char_end_idx": 1357, "char_start_idx": 1281, "html_attrs": { "attrs": [ "class" ], "values": [ "page-navigation" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 4, "type": "local", "value": "nav" }, { "char_end_idx": 1396, "char_start_idx": 1373, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "span" }, { "char_end_idx": 1398, "char_start_idx": 1357, "html_attrs": { "attrs": [ "id" ], "values": [ "comments" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 2, "type": "local", "value": "h5" }, { "char_end_idx": 1543, "char_start_idx": 1398, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 4, "type": "local", "value": "p" }, { "char_end_idx": 1544, "char_start_idx": 1398, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-34", "comment-body" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 3, "type": "local", "value": "div" }, { "char_end_idx": 1544, "char_start_idx": 1398, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-sassyhooper even thread-even depth-1", "comment-34" ] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 2, "type": "local", "value": "li" }, { "char_end_idx": 1544, "char_start_idx": 1544, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-35", "comment-body" ] }, "key": "html", "relative_end_pos": 4, "relative_start_pos": 3, "type": "local", "value": "div" }, { "char_end_idx": 1544, "char_start_idx": 1544, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-adam odd alt thread-odd thread-alt depth-1", "comment-35" ] }, "key": "html", "relative_end_pos": 5, "relative_start_pos": 2, "type": "local", "value": "li" }, { "char_end_idx": 1662, "char_start_idx": 1544, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 8, "type": "local", "value": "p" }, { "char_end_idx": 1729, "char_start_idx": 1663, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "p" }, { "char_end_idx": 1730, "char_start_idx": 1544, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-36", "comment-body" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 7, "type": "local", "value": "div" }, { "char_end_idx": 1730, "char_start_idx": 1544, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-levitator even thread-even depth-1", "comment-36" ] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 6, "type": "local", "value": "li" }, { "char_end_idx": 1730, "char_start_idx": 1730, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-38", "comment-body" ] }, "key": "html", "relative_end_pos": 4, "relative_start_pos": 3, "type": "local", "value": "div" }, { "char_end_idx": 1730, "char_start_idx": 1730, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-nigelluther odd alt thread-odd thread-alt depth-1", "comment-38" ] }, "key": "html", "relative_end_pos": 5, "relative_start_pos": 2, "type": "local", "value": "li" }, { "char_end_idx": 1730, "char_start_idx": 1730, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-39", "comment-body" ] }, "key": "html", "relative_end_pos": 8, "relative_start_pos": 7, "type": "local", "value": "div" }, { "char_end_idx": 1730, "char_start_idx": 1730, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-jbarber even thread-even depth-1", "comment-39" ] }, "key": "html", "relative_end_pos": 9, "relative_start_pos": 6, "type": "local", "value": "li" }, { "char_end_idx": 1797, "char_start_idx": 1730, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 12, "type": "local", "value": "p" }, { "char_end_idx": 1798, "char_start_idx": 1730, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-40", "comment-body" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 11, "type": "local", "value": "div" }, { "char_end_idx": 1798, "char_start_idx": 1730, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-villanuevaguadalupe odd alt thread-odd thread-alt depth-1", "comment-40" ] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 10, "type": "local", "value": "li" }, { "char_end_idx": 1798, "char_start_idx": 1798, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-41", "comment-body" ] }, "key": "html", "relative_end_pos": 4, "relative_start_pos": 3, "type": "local", "value": "div" }, { "char_end_idx": 1798, "char_start_idx": 1798, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-coshie1 even thread-even depth-1", "comment-41" ] }, "key": "html", "relative_end_pos": 5, "relative_start_pos": 2, "type": "local", "value": "li" }, { "char_end_idx": 1798, "char_start_idx": 1798, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-42", "comment-body" ] }, "key": "html", "relative_end_pos": 8, "relative_start_pos": 7, "type": "local", "value": "div" }, { "char_end_idx": 1798, "char_start_idx": 1798, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-milescoletrain odd alt thread-odd thread-alt depth-1", "comment-42" ] }, "key": "html", "relative_end_pos": 9, "relative_start_pos": 6, "type": "local", "value": "li" }, { "char_end_idx": 1798, "char_start_idx": 1798, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-43", "comment-body" ] }, "key": "html", "relative_end_pos": 12, "relative_start_pos": 11, "type": "local", "value": "div" }, { "char_end_idx": 1798, "char_start_idx": 1798, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-rubindawg even thread-even depth-1", "comment-43" ] }, "key": "html", "relative_end_pos": 13, "relative_start_pos": 10, "type": "local", "value": "li" }, { "char_end_idx": 1924, "char_start_idx": 1798, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 16, "type": "local", "value": "p" }, { "char_end_idx": 1925, "char_start_idx": 1798, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "div-comment-46", "comment-body" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 15, "type": "local", "value": "div" }, { "char_end_idx": 1925, "char_start_idx": 1798, "html_attrs": { "attrs": [ "class", "id" ], "values": [ "comment byuser comment-author-tspagnola odd alt thread-odd thread-alt depth-1", "comment-46" ] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 14, "type": "local", "value": "li" }, { "char_end_idx": 1925, "char_start_idx": 1398, "html_attrs": { "attrs": [ "class" ], "values": [ "commentlist" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 1, "type": "local", "value": "ol" }, { "char_end_idx": 1951, "char_start_idx": 1939, "html_attrs": { "attrs": [ "rel", "id", "href", "style" ], "values": [ "nofollow", "cancel-comment-reply-link", "/2016/08/welcome-to-welkerpedia/#respond", "display:none;" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 1, "type": "local", "value": "a" }, { "char_end_idx": 1951, "char_start_idx": 1939, "html_attrs": { "attrs": [], "values": [] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 0, "type": "local", "value": "small" }, { "char_end_idx": 1951, "char_start_idx": 1925, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "reply-title", "comment-reply-title" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 4, "type": "local", "value": "h3" }, { "char_end_idx": 1952, "char_start_idx": 1925, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "respond", "comment-respond" ] }, "key": "html", "relative_end_pos": 0, "relative_start_pos": 3, "type": "local", "value": "div" }, { "char_end_idx": 1952, "char_start_idx": 1357, "html_attrs": { "attrs": [ "class" ], "values": [ "comments-template" ] }, "key": "html", "relative_end_pos": 1, "relative_start_pos": 1, "type": "local", "value": "div" }, { "char_end_idx": 1952, "char_start_idx": 0, "html_attrs": { "attrs": [ "id", "class" ], "values": [ "content", "single-post singlepost1" ] }, "key": "html", "relative_end_pos": 2, "relative_start_pos": 3, "type": "local", "value": "div" }, { "char_end_idx": 1952, "char_start_idx": 0, "html_attrs": { "attrs": [ "class" ], "values": [ "right_container" ] }, "key": "html", "relative_end_pos": 3, "relative_start_pos": 2, "type": "local", "value": "div" }, { "char_end_idx": 1952, "char_start_idx": 0, "html_attrs": { "attrs": [ "class" ], "values": [ "portfolio_gallery_wrap" ] }, "key": "html", "relative_end_pos": 4, "relative_start_pos": 1, "type": "local", "value": "div" }, { "char_end_idx": 1952, "char_start_idx": 0, "html_attrs": { "attrs": [ "class" ], "values": [ "single single-post postid-1875 single-format-standard custom-background no-js" ] }, "key": "html", "relative_end_pos": 5, "relative_start_pos": 0, "type": "local", "value": "body" } ]
[ { "char_end_idx": 23, "char_start_idx": 0, "key": "paragraph", "marker": "h2", "type": "local", "value": "Welcome to Welkerpedia!" }, { "char_end_idx": 531, "char_start_idx": 23, "key": "paragraph", "marker": "p", "type": "local", "value": "\nWe are so excited to finally launch WELKERPEDIA, a fan-created and fan-driven online community focused on the artwork of David Welker. There is much to see and do here! We welcome you to peruse the WORKS (in several different searchable methods), participate in WATERCOOLER discussions, as well as upload photographs of your own frame-ups and prints. As you probably know, David is a prolific artist, so this website will be frequently updated. If you see something that needs tweaking, please let us know.\n" }, { "char_end_idx": 716, "char_start_idx": 531, "key": "paragraph", "marker": "p", "type": "local", "value": "DAVID WELKER – is the Captain. (Oh Captain, My Captain!) He is the reason we’re here, and he promises frequent visits to infuse Welkerpedia with wisdom, insight, and general badassery.\n" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "paragraph", "marker": "div", "type": "local", "value": "ADAM – is the Webmaster. He makes links work and the pages do magical, swooshy things. He’s the duct tape of this operation.\nHEATH – is the Art Curator. His job is to gather the images and art specs (size/run/edition). He’s the guy that provides/updates the print specifics.\nJOSH – is the Watercooler Watchman (a.k.a. forum moderator). He minimizes assholery. Think of him as the sheriff – a sheriff who knows his Welker.\nAnd I’m ARROW, the Editor (and only grrrl). I write and organize stuff – lots of stuff. I am also the creator of the bi-monthly Walkabouts. xo\n" }, { "char_end_idx": 1357, "char_start_idx": 1281, "key": "paragraph", "marker": "nav", "type": "local", "value": "← YMSB Burlington – 2010 – Scratchboard Civilization – 2016 – 1st Edition →\n" }, { "char_end_idx": 1398, "char_start_idx": 1357, "key": "paragraph", "marker": "h5", "type": "local", "value": "11 comments on “Welcome to Welkerpedia!”\n" }, { "char_end_idx": 1544, "char_start_idx": 1398, "key": "paragraph", "marker": "p", "type": "local", "value": "YaY! It looks great! Thanks for all the hard work! I feel very honored to be amongst the first to walkabout around here! DW fangirl for life ????\n" }, { "char_end_idx": 1663, "char_start_idx": 1544, "key": "paragraph", "marker": "p", "type": "local", "value": "I love that users can upload frame ups when thw thumbnail of a print is selected. I hope folks take advantage of that.\n" }, { "char_end_idx": 1730, "char_start_idx": 1663, "key": "paragraph", "marker": "p", "type": "local", "value": "I clearly see I’ll be getting nothing “productive” done today….lol\n" }, { "char_end_idx": 1798, "char_start_idx": 1730, "key": "paragraph", "marker": "p", "type": "local", "value": "thanks for having me. I have been officially jumped into this gang.\n" }, { "char_end_idx": 1925, "char_start_idx": 1798, "key": "paragraph", "marker": "p", "type": "local", "value": "Thanks all for the time in passion with this effort. So happy to be a part of this community. Images of frame-ups forthcoming.\n" }, { "char_end_idx": 1951, "char_start_idx": 1925, "key": "paragraph", "marker": "h3", "type": "local", "value": "Leave a Reply Cancel reply" }, { "char_end_idx": 1952, "char_start_idx": 1951, "key": "paragraph", "marker": "div", "type": "local", "value": "\n" } ]
[]
[ { "key": "title", "type": "global", "value": "Welcome to Welkerpedia! | Welkerpedia.org - The Art of David Welker" } ]
[ { "key": "url", "type": "global", "value": "http://welkerpedia.org/2016/08/welcome-to-welkerpedia/" } ]
[]
Welcome to Welkerpedia! We are so excited to finally launch WELKERPEDIA, a fan-created and fan-driven online community focused on the artwork of David Welker. There is much to see and do here! We welcome you to peruse the WORKS (in several different searchable methods), participate in WATERCOOLER discussions, as well as upload photographs of your own frame-ups and prints. As you probably know, David is a prolific artist, so this website will be frequently updated. If you see something that needs tweaking, please let us know. DAVID WELKER – is the Captain. (Oh Captain, My Captain!) He is the reason we’re here, and he promises frequent visits to infuse Welkerpedia with wisdom, insight, and general badassery. ADAM – is the Webmaster. He makes links work and the pages do magical, swooshy things. He’s the duct tape of this operation. HEATH – is the Art Curator. His job is to gather the images and art specs (size/run/edition). He’s the guy that provides/updates the print specifics. JOSH – is the Watercooler Watchman (a.k.a. forum moderator). He minimizes assholery. Think of him as the sheriff – a sheriff who knows his Welker. And I’m ARROW, the Editor (and only grrrl). I write and organize stuff – lots of stuff. I am also the creator of the bi-monthly Walkabouts. xo ← YMSB Burlington – 2010 – Scratchboard Civilization – 2016 – 1st Edition → 11 comments on “Welcome to Welkerpedia!” YaY! It looks great! Thanks for all the hard work! I feel very honored to be amongst the first to walkabout around here! DW fangirl for life ???? I love that users can upload frame ups when thw thumbnail of a print is selected. I hope folks take advantage of that. I clearly see I’ll be getting nothing “productive” done today….lol thanks for having me. I have been officially jumped into this gang. Thanks all for the time in passion with this effort. So happy to be a part of this community. Images of frame-ups forthcoming. Leave a Reply Cancel reply
http://welkerpedia.org/2016/08/welcome-to-welkerpedia/
[ { "char_end_idx": 157, "char_start_idx": 145, "key": "entity", "type": "local", "value": "David_Welker" }, { "char_end_idx": 297, "char_start_idx": 286, "key": "entity", "type": "local", "value": "Water_dispenser" }, { "char_end_idx": 402, "char_start_idx": 397, "key": "entity", "type": "local", "value": "David_Welker" }, { "char_end_idx": 543, "char_start_idx": 531, "key": "entity", "type": "local", "value": "David_Welker" }, { "char_end_idx": 720, "char_start_idx": 716, "key": "entity", "type": "local", "value": "Adam_(given_name)" }, { "char_end_idx": 739, "char_start_idx": 730, "key": "entity", "type": "local", "value": "Webmaster" }, { "char_end_idx": 846, "char_start_idx": 841, "key": "entity", "type": "local", "value": "Hampstead_Heath" }, { "char_end_idx": 867, "char_start_idx": 856, "key": "entity", "type": "local", "value": "Curator" }, { "char_end_idx": 995, "char_start_idx": 991, "key": "entity", "type": "local", "value": "Josh_Lyman" }, { "char_end_idx": 1136, "char_start_idx": 1130, "key": "entity", "type": "local", "value": "David_Welker" }, { "char_end_idx": 1401, "char_start_idx": 1398, "key": "entity", "type": "local", "value": "High-intensity_interval_training" } ]
[ { "char_end_idx": 531, "char_start_idx": 23, "key": "entity_paragraph", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "David_Welker" }, { "char_end_idx": 531, "char_start_idx": 23, "key": "entity_paragraph", "relative_end_pos": 1, "relative_start_pos": 1, "type": "local", "value": "Water_dispenser" }, { "char_end_idx": 716, "char_start_idx": 531, "key": "entity_paragraph", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "David_Welker" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "entity_paragraph", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "Adam_(given_name)" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "entity_paragraph", "relative_end_pos": 1, "relative_start_pos": 1, "type": "local", "value": "Webmaster" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "entity_paragraph", "relative_end_pos": 2, "relative_start_pos": 2, "type": "local", "value": "Hampstead_Heath" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "entity_paragraph", "relative_end_pos": 3, "relative_start_pos": 3, "type": "local", "value": "Curator" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "entity_paragraph", "relative_end_pos": 4, "relative_start_pos": 4, "type": "local", "value": "Josh_Lyman" }, { "char_end_idx": 1281, "char_start_idx": 716, "key": "entity_paragraph", "relative_end_pos": 5, "relative_start_pos": 5, "type": "local", "value": "David_Welker" }, { "char_end_idx": 1544, "char_start_idx": 1398, "key": "entity_paragraph", "relative_end_pos": 0, "relative_start_pos": 0, "type": "local", "value": "High-intensity_interval_training" } ]
0
1,018
1555916274000
"<!DOCTYPE html>\n<!--[if IE 8]>\n<html id=\"ie8\" lang=\"en\">\n<![endif]-->\n<!--[if !(IE 8)]><!--(...TRUNCATED)
["<footer class=\"entry-meta\">\n\t\t<span class=\"tag-label\">Tags:</span> <a href=\"https://usheal(...TRUNCATED)
["<head>\n<meta charset=\"UTF-8\"/>\n<meta name=\"viewport\" content=\"width=device-width\"/>\n<titl(...TRUNCATED)
[ "<title>It’s Like A Birthday Party Every Day | Casey Hinds AF Vet</title>\n" ]
[{"key":"datasource","type":"global","value":"ushealthykids.org > its like a birthday party every da(...TRUNCATED)
[{"char_end_idx":164,"char_start_idx":0,"key":"length","type":"local","value":"164"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "2122" } ]
[{"char_end_idx":4,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["assistive-text"]},"(...TRUNCATED)
[{"char_end_idx":4,"char_start_idx":0,"key":"paragraph","marker":"h1","type":"local","value":"Menu"}(...TRUNCATED)
[ { "key": "timestamp", "type": "global", "value": "2014-08-24T00:00:00" } ]
[{"key":"title","type":"global","value":"It’s Like A Birthday Party Every Day | Casey Hinds AF Vet(...TRUNCATED)
[{"key":"url","type":"global","value":"https://ushealthykids.org/2014/08/24/its-like-a-birthday-part(...TRUNCATED)
[]
"Menu\nReading that quote from a new Kindergarten parent describing the sugar overload at her child(...TRUNCATED)
https://ushealthykids.org/2014/08/24/its-like-a-birthday-party-every-day/
[{"char_end_idx":47,"char_start_idx":35,"key":"entity","type":"local","value":"Kindergarten"},{"char(...TRUNCATED)
[{"char_end_idx":532,"char_start_idx":5,"key":"entity_paragraph","relative_end_pos":0,"relative_star(...TRUNCATED)
0
392
1556014203000
"<!DOCTYPE html>\n<!--[if lt IE 10 ]>\n<html lang=\"en-GB\" prefix=\"og: http://ogp.me/ns#\" class=\(...TRUNCATED)
["<footer id=\"footer\" class=\"footer solid-bg\">\n\n\t\t\n<!-- !Bottom-bar -->\n<div id=\"bottom-b(...TRUNCATED)
["<head>\n\t<meta charset=\"UTF-8\"/>\n\n\n\t\t<meta name=\"viewport\" content=\"width=device-width,(...TRUNCATED)
[ "<title>Contact - PHIRE</title>\n" ]
[ { "key": "datasource", "type": "global", "value": "phiremedical.org > contact" } ]
[{"char_end_idx":799,"char_start_idx":0,"key":"length","type":"local","value":"799"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "1077" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["class","role"],"values":["masthead inl(...TRUNCATED)
[{"char_end_idx":4,"char_start_idx":0,"key":"paragraph","marker":"li","type":"local","value":"Home"}(...TRUNCATED)
[]
[ { "key": "title", "type": "global", "value": "Contact - PHIRE" } ]
[ { "key": "url", "type": "global", "value": "http://phiremedical.org/contact/" } ]
[]
"Home\nAbout PHIRE\nTeam\nPHIRE Medical Doctors\nPHIRE Scientists\nPHIRE Associate Specialists\nPHIR(...TRUNCATED)
http://phiremedical.org/contact/
[{"char_end_idx":16,"char_start_idx":11,"key":"entity","type":"local","value":"The_Price_Is_Right_mo(...TRUNCATED)
[{"char_end_idx":16,"char_start_idx":4,"key":"entity_paragraph","relative_end_pos":0,"relative_start(...TRUNCATED)
0
623
1556245513000
"<!DOCTYPE html>\n<html lang=\"en-US\" >\n<head>\n<meta charset=\"UTF-8\" />\n<link rel=\"profile\" (...TRUNCATED)
["<footer id=\"footer\" class=\"site-footer\" itemscope=\"itemscope\" itemtype=\"http://schema.org/W(...TRUNCATED)
["<head>\n<meta charset=\"UTF-8\"/>\n<link rel=\"profile\" href=\"http://gmpg.org/xfn/11\"/>\n<link (...TRUNCATED)
[ "<title>Flagship Motel – Old Orchard Beach, ME – Ameriquest</title>\n" ]
[{"key":"datasource","type":"global","value":"ameriquest.com.mk > listings > flagship motel old orch(...TRUNCATED)
[{"char_end_idx":418,"char_start_idx":0,"key":"length","type":"local","value":"418"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "2153" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["data-ls_id"],"values":["#site_top"]},"(...TRUNCATED)
[{"char_end_idx":62,"char_start_idx":0,"key":"paragraph","marker":"div","type":"local","value":"Face(...TRUNCATED)
[]
[ { "key": "title", "type": "global", "value": "Flagship Motel – Old Orchard Beach, ME – Ameriquest" } ]
[{"key":"url","type":"global","value":"http://ameriquest.com.mk/listings/flagship-motel-old-orchard-(...TRUNCATED)
[]
"Facebook ProfileInstagram ProfileSkype ProfileYoutube Profile\nOur seaside community boasts a diver(...TRUNCATED)
http://ameriquest.com.mk/listings/flagship-motel-old-orchard-beach-me/
[{"char_end_idx":207,"char_start_idx":194,"key":"entity","type":"local","value":"United_States"},{"c(...TRUNCATED)
[{"char_end_idx":606,"char_start_idx":62,"key":"entity_paragraph","relative_end_pos":0,"relative_sta(...TRUNCATED)
0
665
1556225665000
"<!doctype html>\n<html xmlns:og=\"http://opengraphprotocol.org/schema/\" xmlns:fb=\"http://www.face(...TRUNCATED)
["<footer class=\"entry-footer clear\">\n \n \n <p class=\"entry-tags\">\n Tag(...TRUNCATED)
["<head>\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"/>\n \n <meta n(...TRUNCATED)
["<title>\"Love, love, love all you need is love\" — Women's Education &amp; Leadership League</t(...TRUNCATED)
[ { "key": "datasource", "type": "global", "value": "www.well4women.org > posts > all you need is love" } ]
[{"char_end_idx":87,"char_start_idx":0,"key":"length","type":"local","value":"87"},{"char_end_idx":9(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "4177" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["href","class"],"values":["#","body-ove(...TRUNCATED)
[{"char_end_idx":18,"char_start_idx":0,"key":"paragraph","marker":"div","type":"local","value":"Febr(...TRUNCATED)
[]
[{"key":"title","type":"global","value":"\"Love, love, love all you need is love\" — Women's Educ(...TRUNCATED)
[ { "key": "url", "type": "global", "value": "http://www.well4women.org/posts/all-you-need-is-love" } ]
[]
"February 22, 2017\nThe Beatles captured a universal feeling that all of us can relate to. Love. The(...TRUNCATED)
http://www.well4women.org/posts/all-you-need-is-love
[{"char_end_idx":29,"char_start_idx":22,"key":"entity","type":"local","value":"The_Beatles"},{"char_(...TRUNCATED)
[{"char_end_idx":502,"char_start_idx":18,"key":"entity_paragraph","relative_end_pos":0,"relative_sta(...TRUNCATED)
0
75
1556092297000
"<!DOCTYPE html>\n<!--# Twoclicks Business Hosting -->\n<html xmlns=\"http://www.w3.org/1999/xhtml\"(...TRUNCATED)
[]
["<head>\n<title>Consultation and engagement service / our services / AgewellUK / helping us all to (...TRUNCATED)
["<title>Consultation and engagement service / our services / AgewellUK / helping us all to age well(...TRUNCATED)
[{"key":"datasource","type":"global","value":"www.agewelluk.org.uk > consultation and engagement ser(...TRUNCATED)
[{"char_end_idx":726,"char_start_idx":0,"key":"length","type":"local","value":"726"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "4028" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["class","type","value"],"values":["port(...TRUNCATED)
[{"char_end_idx":4,"char_start_idx":0,"key":"paragraph","marker":"li","type":"local","value":"Home"}(...TRUNCATED)
[]
[{"key":"title","type":"global","value":"Consultation and engagement service / our services / Agewel(...TRUNCATED)
[{"key":"url","type":"global","value":"http://www.agewelluk.org.uk/consultation-and-engagement-servi(...TRUNCATED)
[]
"Home\nAbout Agewell\nWho We Are\nOur Vision\nOur Roots\nOur Structure\nWhat People Say About Us\nAg(...TRUNCATED)
http://www.agewelluk.org.uk/consultation-and-engagement-service.html?theme=default
[{"char_end_idx":89,"char_start_idx":87,"key":"entity","type":"local","value":"People_Like_Us_(music(...TRUNCATED)
[{"char_end_idx":89,"char_start_idx":64,"key":"entity_paragraph","relative_end_pos":0,"relative_star(...TRUNCATED)
0
75
1555849447000
"<!DOCTYPE html>\r\n<!--[if IE 6]>\r\n<html id=\"ie6\" lang=\"en-US\" prefix=\"og: http://ogp.me/ns#(...TRUNCATED)
["<footer class=\"entry-meta\">&#13;\n\t\t\t</footer>","<footer class=\"entry-meta\">&#13;\n\t\t\t</(...TRUNCATED)
["<head>&#13;\n<meta charset=\"UTF-8\"/>&#13;\n<meta name=\"viewport\" content=\"width=device-width\(...TRUNCATED)
[ "<title>Industry Writing | Mediascape Blog</title>&#13;\n" ]
[{"key":"datasource","type":"global","value":"www.tft.ucla.edu > mediascape > blog > category > indu(...TRUNCATED)
[{"char_end_idx":151,"char_start_idx":0,"key":"length","type":"local","value":"151"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "6333" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["src"],"values":["./wp-content/uploads/(...TRUNCATED)
[{"char_end_idx":9,"char_start_idx":0,"key":"paragraph","marker":"h3","type":"local","value":"Main m(...TRUNCATED)
[]
[ { "key": "title", "type": "global", "value": "Industry Writing | Mediascape Blog" } ]
[{"key":"url","type":"global","value":"http://www.tft.ucla.edu/mediascape/blog/category/industry-wri(...TRUNCATED)
[]
"Main menu\nMy ties to the newest installment in the Ghostbusters franchise run deeper than an affin(...TRUNCATED)
http://www.tft.ucla.edu/mediascape/blog/category/industry-writing/
[{"char_end_idx":63,"char_start_idx":51,"key":"entity","type":"local","value":"Ghostbusters"},{"char(...TRUNCATED)
[{"char_end_idx":444,"char_start_idx":10,"key":"entity_paragraph","relative_end_pos":0,"relative_sta(...TRUNCATED)
0
734
1555944750000
"<!doctype html>\n<html lang=\"en-US\" prefix=\"og: http://ogp.me/ns#\">\n<head>\n <meta charset=(...TRUNCATED)
["<footer class=\"primary-footer footer-style-full\">\n <div class=\"footer-top\">\n\n (...TRUNCATED)
["<head>\n <meta charset=\"utf-8\"/>\n <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\(...TRUNCATED)
["<title>Water and Poverty: How Access to Safe Water Reduces Poverty - Lifewater International</titl(...TRUNCATED)
[ { "key": "datasource", "type": "global", "value": "www.lifewater.org > blog > water poverty" } ]
[{"char_end_idx":253,"char_start_idx":0,"key":"length","type":"local","value":"253"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "12361" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["class","d"],"values":["icon-facebook-1(...TRUNCATED)
[{"char_end_idx":68,"char_start_idx":0,"key":"paragraph","marker":"div","type":"local","value":"Shar(...TRUNCATED)
[]
[{"key":"title","type":"global","value":"Water and Poverty: How Access to Safe Water Reduces Poverty(...TRUNCATED)
[ { "key": "url", "type": "global", "value": "https://www.lifewater.org/blog/water-poverty/" } ]
[]
"Share on Facebook Share on Twitter Share by Email Share on LinkedIn\nLifewater Home / Blog / Water (...TRUNCATED)
https://www.lifewater.org/blog/water-poverty/
[{"char_end_idx":67,"char_start_idx":59,"key":"entity","type":"local","value":"LinkedIn"},{"char_end(...TRUNCATED)
[{"char_end_idx":68,"char_start_idx":0,"key":"entity_paragraph","relative_end_pos":0,"relative_start(...TRUNCATED)
0
1,003
1555972604000
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \r\n \"http://www.w3.org/TR/xhtml11/DTD/xhtml(...TRUNCATED)
[]
["<head>&#13;\n <title> Good wind for racing | 2010 USODA Layline Nationals</title>&#13;\n (...TRUNCATED)
[ "<title> Good wind for racing | 2010 USODA Layline Nationals</title>&#13;\n &#13;\n " ]
[ { "key": "datasource", "type": "global", "value": "optinationals2010.org > good wind for racing" } ]
[{"char_end_idx":179,"char_start_idx":0,"key":"length","type":"local","value":"179"},{"char_end_idx"(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "1598" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["id","class"],"values":["header","clear(...TRUNCATED)
[{"char_end_idx":4,"char_start_idx":0,"key":"paragraph","marker":"li","type":"local","value":"Home"}(...TRUNCATED)
[ { "key": "timestamp", "type": "global", "value": "2010-07-24T00:00:00" } ]
[ { "key": "title", "type": "global", "value": " Good wind for racing | 2010 USODA Layline Nationals" } ]
[{"key":"url","type":"global","value":"http://optinationals2010.org/2010/07/24/good-wind-for-racing/(...TRUNCATED)
[]
"Home\nRegatta Information\nAccommodations\nShop\nDirections\nWeather\nResults\nPhotos\nVideo\nIt wa(...TRUNCATED)
http://optinationals2010.org/2010/07/24/good-wind-for-racing/?replytocom=33
[{"char_end_idx":710,"char_start_idx":704,"key":"entity","type":"local","value":"Belize"},{"char_end(...TRUNCATED)
[{"char_end_idx":929,"char_start_idx":604,"key":"entity_paragraph","relative_end_pos":0,"relative_st(...TRUNCATED)
0
991
1555820885000
"<!DOCTYPE html>\n<!--[if IE 7 ]> <html lang=\"en-GB\" class=\"ie ie7 ielt9 no-js\"> <![endif]-->\n<(...TRUNCATED)
["<footer id=\"footer\" class=\"content footer\">\n <div class=\"wrap\">\n\n <!-- footer l(...TRUNCATED)
["<head>\n <meta charset=\"utf-8\"/>\n <meta name=\"viewport\" content=\"width=device-width, i(...TRUNCATED)
[ "<title>Age UK Maidstone | Wheelchair Hire</title> \n " ]
[{"key":"datasource","type":"global","value":"www.ageuk.org.uk > maidstone > our services > wheelcha(...TRUNCATED)
[{"char_end_idx":76,"char_start_idx":0,"key":"length","type":"local","value":"76"},{"char_end_idx":1(...TRUNCATED)
[ { "key": "length", "type": "global", "value": "1828" } ]
[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_e(...TRUNCATED)
[{"char_end_idx":233,"char_start_idx":0,"key":"paragraph","marker":"div","type":"local","value":"Age(...TRUNCATED)
[]
[ { "key": "title", "type": "global", "value": "Age UK Maidstone | Wheelchair Hire" } ]
[{"key":"url","type":"global","value":"https://www.ageuk.org.uk/maidstone/our-services/wheelchair-hi(...TRUNCATED)
[]
"Age UK Maidstone uses cookies to ensure that we give you the best experience. By continuing to use (...TRUNCATED)
https://www.ageuk.org.uk/maidstone/our-services/wheelchair-hire/
[{"char_end_idx":634,"char_start_idx":623,"key":"entity","type":"local","value":"Millstreet"},{"char(...TRUNCATED)
[{"char_end_idx":716,"char_start_idx":494,"key":"entity_paragraph","relative_end_pos":0,"relative_st(...TRUNCATED)
End of preview. Expand in Data Studio

No dataset card yet

Downloads last month
138
Size of the auto-converted Parquet files (First 5GB):
1.59 GB
Number of rows (First 5GB):
33,274