diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 00000000..e69de29b diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 00000000..f64dbab0 --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,78 @@ +:root { + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #AF00DB; + --dark-hl-3: #C586C0; + --light-hl-4: #001080; + --dark-hl-4: #9CDCFE; + --light-hl-5: #008000; + --dark-hl-5: #6A9955; + --light-hl-6: #0000FF; + --dark-hl-6: #569CD6; + --light-hl-7: #0070C1; + --dark-hl-7: #4FC1FF; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +pre, code { background: var(--code-background); } diff --git a/assets/main.js b/assets/main.js new file mode 100644 index 00000000..f7c83669 --- /dev/null +++ b/assets/main.js @@ -0,0 +1,58 @@ +"use strict"; +"use strict";(()=>{var Qe=Object.create;var ae=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Ce=Object.getOwnPropertyNames;var Oe=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var _e=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Me=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ce(e))!Re.call(t,i)&&i!==n&&ae(t,i,{get:()=>e[i],enumerable:!(r=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Qe(Oe(t)):{},Me(e||!t||!t.__esModule?ae(n,"default",{value:t,enumerable:!0}):n,t));var de=_e((ce,he)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var h=t.utils.clone(n)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(r.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(n+=r[l+1]*i[h+1],l+=2,h+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),m=s.str.charAt(1),v;m in s.node.edges?v=s.node.edges[m]:(v=new t.TokenSet,s.node.edges[m]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof ce=="object"?he.exports=n():e.lunr=n()}(this,function(){return t})})()});var le=[];function B(t,e){le.push({selector:e,constructor:t})}var Y=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureFocusedElementVisible(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){le.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureFocusedElementVisible(){this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null);let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(n&&n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let r=document.createElement("p");r.classList.add("warning"),r.textContent="This member is normally hidden due to your filter settings.",n.prepend(r)}}};var I=class{constructor(e){this.el=e.el,this.app=e.app}};var J=class{constructor(){this.listeners={}}addEventListener(e,n){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(n)}removeEventListener(e,n){if(!(e in this.listeners))return;let r=this.listeners[e];for(let i=0,s=r.length;i{let n=Date.now();return(...r)=>{n+e-Date.now()<0&&(t(...r),n=Date.now())}};var re=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.navigation=document.querySelector(".col-menu"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.searchInput=document.querySelector("#tsd-search input"),this.searchInput&&this.searchInput.addEventListener("focus",()=>{this.hideShowToolbar()}),this.onResize(),this.onScroll()}triggerResize(){let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onScroll(){this.scrollTop=window.scrollY||0;let n=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(n),this.hideShowToolbar()}hideShowToolbar(){let n=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0||!!this.searchInput&&this.searchInput===document.activeElement,n!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.navigation?.classList.toggle("col-menu--hide")),this.lastY=this.scrollTop}},R=re;R.instance=new re;var X=class extends I{constructor(n){super(n);this.anchors=[];this.index=-1;R.instance.addEventListener("resize",()=>this.onResize()),R.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substring(0,n.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let i=r.href;if(i.indexOf("#")==-1||i.substring(0,n.length)!=n)return;let s=i.substring(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=r.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let n;for(let i=0,s=this.anchors.length;ii.position-s.position);let r=new CustomEvent("scroll",{detail:{scrollTop:R.instance.scrollTop}});this.onScroll(r)}onScroll(n){let r=n.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>r;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var me=De(de());function ve(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let n=document.querySelector("#tsd-search input"),r=document.querySelector("#tsd-search .results");if(!n||!r)throw new Error("The input field or the result list wrapper was not found");let i=!1;r.addEventListener("mousedown",()=>i=!0),r.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),n.addEventListener("focus",()=>t.classList.add("has-focus")),n.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Fe(t,r,n,s)}function Fe(t,e,n,r){n.addEventListener("input",ue(()=>{He(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ve(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?pe(e,-1):s.key==="ArrowDown"?pe(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function Ae(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=me.Index.load(window.searchData.index))}function He(t,e,n,r){if(Ae(r,t),!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s=i?r.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${fe(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes??"";let m=document.createElement("a");m.href=r.base+u.url,m.innerHTML=l,h.append(m),e.appendChild(h)}}function pe(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ve(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}function fe(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(ie(t.substring(s,o)),`${ie(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(ie(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function ie(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var F="mousedown",ye="mousemove",j="mouseup",Z={x:0,y:0},ge=!1,se=!1,Be=!1,A=!1,xe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(xe?"is-mobile":"not-mobile");xe&&"ontouchstart"in document.documentElement&&(Be=!0,F="touchstart",ye="touchmove",j="touchend");document.addEventListener(F,t=>{se=!0,A=!1;let e=F=="touchstart"?t.targetTouches[0]:t;Z.y=e.pageY||0,Z.x=e.pageX||0});document.addEventListener(ye,t=>{if(se&&!A){let e=F=="touchstart"?t.targetTouches[0]:t,n=Z.x-(e.pageX||0),r=Z.y-(e.pageY||0);A=Math.sqrt(n*n+r*r)>10}});document.addEventListener(j,()=>{se=!1});document.addEventListener("click",t=>{ge&&(t.preventDefault(),t.stopImmediatePropagation(),ge=!1)});var K=class extends I{constructor(n){super(n);this.className=this.el.dataset.toggle||"",this.el.addEventListener(j,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(F,r=>this.onDocumentPointerDown(r)),document.addEventListener(j,r=>this.onDocumentPointerUp(r))}setActive(n){if(this.active==n)return;this.active=n,document.documentElement.classList.toggle("has-"+this.className,n),this.el.classList.toggle("active",n);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(n){A||(this.setActive(!0),n.preventDefault())}onDocumentPointerDown(n){if(this.active){if(n.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(n){if(!A&&this.active&&n.target.closest(".col-menu")){let r=n.target.closest("a");if(r){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),r.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var oe;try{oe=localStorage}catch{oe={getItem(){return null},setItem(){}}}var Q=oe;var Le=document.head.appendChild(document.createElement("style"));Le.dataset.for="filters";var ee=class extends I{constructor(n){super(n);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),Le.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.checked}setLocalStorage(n){Q.setItem(this.key,n.toString()),this.value=n,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(n=>{n.style.display="block";let r=Array.from(n.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);n.style.display=r?"none":"block"})}};var te=class extends I{constructor(n){super(n);this.calculateHeights(),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.textContent.replace(/\s+/g,"-").toLowerCase()}`,this.setLocalStorage(this.fromLocalStorage(),!0),this.summary.addEventListener("click",r=>this.toggleVisibility(r)),this.icon.style.transform=this.getIconRotation()}getIconRotation(n=this.el.open){return`rotate(${n?0:-90}deg)`}calculateHeights(){let n=this.el.open,{position:r,left:i}=this.el.style;this.el.style.position="fixed",this.el.style.left="-9999px",this.el.open=!0,this.expandedHeight=this.el.offsetHeight+"px",this.el.open=!1,this.collapsedHeight=this.el.offsetHeight+"px",this.el.open=n,this.el.style.height=n?this.expandedHeight:this.collapsedHeight,this.el.style.position=r,this.el.style.left=i}toggleVisibility(n){n.preventDefault(),this.el.style.overflow="hidden",this.el.open?this.collapse():this.expand()}expand(n=!0){this.el.open=!0,this.animate(this.collapsedHeight,this.expandedHeight,{opening:!0,duration:n?300:0})}collapse(n=!0){this.animate(this.expandedHeight,this.collapsedHeight,{opening:!1,duration:n?300:0})}animate(n,r,{opening:i,duration:s=300}){if(this.animation)return;let o={duration:s,easing:"ease"};this.animation=this.el.animate({height:[n,r]},o),this.icon.animate({transform:[this.icon.style.transform||this.getIconRotation(!i),this.getIconRotation(i)]},o).addEventListener("finish",()=>{this.icon.style.transform=this.getIconRotation(i)}),this.animation.addEventListener("finish",()=>this.animationEnd(i))}animationEnd(n){this.el.open=n,this.animation=void 0,this.el.style.height="auto",this.el.style.overflow="visible",this.setLocalStorage(n)}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.open}setLocalStorage(n,r=!1){this.fromLocalStorage()===n&&!r||(Q.setItem(this.key,n.toString()),this.el.open=n,this.handleValueChange(r))}handleValueChange(n=!1){this.fromLocalStorage()===this.el.open&&!n||(this.fromLocalStorage()?this.expand(!1):this.collapse(!1))}};function be(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,Ee(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),Ee(t.value)})}function Ee(t){document.documentElement.dataset.theme=t}ve();B(X,".menu-highlight");B(K,"a[data-toggle]");B(te,".tsd-index-accordion");B(ee,".tsd-filter-item input[type=checkbox]");var we=document.getElementById("theme");we&&be(we);var je=new Y;Object.defineProperty(window,"app",{value:je});})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/assets/search.js b/assets/search.js new file mode 100644 index 00000000..845c1f1f --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":128,\"name\":\"Welo\",\"url\":\"classes/Welo.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Welo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"classes/Welo.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"classes/Welo.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"classes/Welo.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"classes/Welo.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"classes/Welo.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"keychain\",\"url\":\"classes/Welo.html#keychain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"classes/Welo.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Welo.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"opened\",\"url\":\"classes/Welo.html#opened\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":1024,\"name\":\"_opening\",\"url\":\"classes/Welo.html#_opening\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"determine\",\"url\":\"classes/Welo.html#determine\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"fetch\",\"url\":\"classes/Welo.html#fetch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"open\",\"url\":\"classes/Welo.html#open\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"getComponents\",\"url\":\"classes/Welo.html#getComponents\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"getDefaultManifest\",\"url\":\"classes/Welo.html#getDefaultManifest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/Welo.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/Welo.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Welo\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/Welo.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Welo\"},{\"kind\":64,\"name\":\"createWelo\",\"url\":\"functions/createWelo.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":128,\"name\":\"StaticAccess\",\"url\":\"classes/StaticAccess.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StaticAccess.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"StaticAccess\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"classes/StaticAccess.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StaticAccess\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"classes/StaticAccess.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StaticAccess\"},{\"kind\":1024,\"name\":\"write\",\"url\":\"classes/StaticAccess.html#write\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StaticAccess\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/StaticAccess.html#close\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StaticAccess\"},{\"kind\":2048,\"name\":\"canAppend\",\"url\":\"classes/StaticAccess.html#canAppend\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StaticAccess\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/StaticAccess.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StaticAccess\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/StaticAccess.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StaticAccess\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/StaticAccess.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StaticAccess\"},{\"kind\":64,\"name\":\"staticAccess\",\"url\":\"functions/staticAccess-1.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":128,\"name\":\"Entry\",\"url\":\"classes/Entry.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Entry.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"classes/Entry.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"block\",\"url\":\"classes/Entry.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"cid\",\"url\":\"classes/Entry.html#cid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"classes/Entry.html#auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"sig\",\"url\":\"classes/Entry.html#sig\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"classes/Entry.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"payload\",\"url\":\"classes/Entry.html#payload\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"next\",\"url\":\"classes/Entry.html#next\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":1024,\"name\":\"refs\",\"url\":\"classes/Entry.html#refs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Entry\"},{\"kind\":64,\"name\":\"basalEntry\",\"url\":\"functions/basalEntry.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":128,\"name\":\"Identity\",\"url\":\"classes/Identity.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Identity.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Identity.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"block\",\"url\":\"classes/Identity.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"pubkey\",\"url\":\"classes/Identity.html#pubkey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"classes/Identity.html#auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/Identity.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"pub\",\"url\":\"classes/Identity.html#pub\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":1024,\"name\":\"sig\",\"url\":\"classes/Identity.html#sig\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":2048,\"name\":\"sign\",\"url\":\"classes/Identity.html#sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":2048,\"name\":\"verify\",\"url\":\"classes/Identity.html#verify\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Identity\"},{\"kind\":64,\"name\":\"basalIdentity\",\"url\":\"functions/basalIdentity.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":128,\"name\":\"Keyvalue\",\"url\":\"classes/Keyvalue.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Keyvalue.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":262144,\"name\":\"selectors\",\"url\":\"classes/Keyvalue.html#selectors\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.get\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.get.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Keyvalue.selectors.selectors.__type.get\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.get.__type-10.__type-11.__type-12\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type.get.__type.__type\"},{\"kind\":1024,\"name\":\"keys\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.keys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.keys.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Keyvalue.selectors.selectors.__type.keys\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.keys.__type-14.__type-15.__type-16\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type.keys.__type.__type\"},{\"kind\":1024,\"name\":\"values\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.values\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.values.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Keyvalue.selectors.selectors.__type.values\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.values.__type-18.__type-19.__type-20\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type.values.__type.__type\"},{\"kind\":1024,\"name\":\"entries\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.entries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.entries.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Keyvalue.selectors.selectors.__type.entries\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#selectors.selectors-1.__type-5.entries.__type-6.__type-7.__type-8\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"Keyvalue.selectors.selectors.__type.entries.__type.__type\"},{\"kind\":262144,\"name\":\"creators\",\"url\":\"classes/Keyvalue.html#creators\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#creators.creators-1.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"Keyvalue.creators.creators\"},{\"kind\":1024,\"name\":\"put\",\"url\":\"classes/Keyvalue.html#creators.creators-1.__type.put\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Keyvalue.creators.creators.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#creators.creators-1.__type.put.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Keyvalue.creators.creators.__type.put\"},{\"kind\":1024,\"name\":\"del\",\"url\":\"classes/Keyvalue.html#creators.creators-1.__type.del\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Keyvalue.creators.creators.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Keyvalue.html#creators.creators-1.__type.del.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Keyvalue.creators.creators.__type.del\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"classes/Keyvalue.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"classes/Keyvalue.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":1024,\"name\":\"replica\",\"url\":\"classes/Keyvalue.html#replica\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"classes/Keyvalue.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":1024,\"name\":\"blockstore\",\"url\":\"classes/Keyvalue.html#blockstore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":1024,\"name\":\"_index\",\"url\":\"classes/Keyvalue.html#_index\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Keyvalue\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Keyvalue.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":262144,\"name\":\"index\",\"url\":\"classes/Keyvalue.html#index\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":2048,\"name\":\"latest\",\"url\":\"classes/Keyvalue.html#latest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Keyvalue\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/Keyvalue.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Keyvalue\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/Keyvalue.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Keyvalue\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/Keyvalue.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Keyvalue\"},{\"kind\":64,\"name\":\"keyvalueStore\",\"url\":\"functions/keyvalueStore.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"liveReplicator\",\"url\":\"functions/liveReplicator.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":128,\"name\":\"Address\",\"url\":\"classes/Address.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"asAddress\",\"url\":\"classes/Address.html#asAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Address\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/Address.html#fromString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Address\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Address.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Address\"},{\"kind\":1024,\"name\":\"cid\",\"url\":\"classes/Address.html#cid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Address\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/Address.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Address\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/Address.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Address\"},{\"kind\":128,\"name\":\"Manifest\",\"url\":\"classes/Manifest.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/Manifest.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":2048,\"name\":\"fetch\",\"url\":\"classes/Manifest.html#fetch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":2048,\"name\":\"asManifest\",\"url\":\"classes/Manifest.html#asManifest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Manifest.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Manifest.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"classes/Manifest.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"classes/Manifest.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"entry\",\"url\":\"classes/Manifest.html#entry\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"classes/Manifest.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"meta\",\"url\":\"classes/Manifest.html#meta\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"classes/Manifest.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":262144,\"name\":\"address\",\"url\":\"classes/Manifest.html#address\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":2048,\"name\":\"getTag\",\"url\":\"classes/Manifest.html#getTag\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":1024,\"name\":\"block\",\"url\":\"classes/Manifest.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Manifest\"},{\"kind\":128,\"name\":\"Playable\",\"url\":\"classes/Playable.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Playable.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Playable\"},{\"kind\":1024,\"name\":\"_isStarted\",\"url\":\"classes/Playable.html#_isStarted\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Playable\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/Playable.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Playable\"},{\"kind\":1024,\"name\":\"_starting\",\"url\":\"classes/Playable.html#_starting\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Playable\"},{\"kind\":1024,\"name\":\"_stopping\",\"url\":\"classes/Playable.html#_stopping\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Playable\"},{\"kind\":1024,\"name\":\"lifecycle\",\"url\":\"classes/Playable.html#lifecycle\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Playable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Playable.html#lifecycle.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Playable.lifecycle\"},{\"kind\":1024,\"name\":\"starting\",\"url\":\"classes/Playable.html#lifecycle.__type.starting\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Playable.lifecycle.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Playable.html#lifecycle.__type.starting.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Playable.lifecycle.__type.starting\"},{\"kind\":1024,\"name\":\"stopping\",\"url\":\"classes/Playable.html#lifecycle.__type.stopping\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Playable.lifecycle.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Playable.html#lifecycle.__type.stopping.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Playable.lifecycle.__type.stopping\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/Playable.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Playable\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/Playable.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Playable\"},{\"kind\":128,\"name\":\"Database\",\"url\":\"classes/Database.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"open\",\"url\":\"classes/Database.html#open\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Database.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"classes/Database.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"classes/Database.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"classes/Database.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"classes/Database.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"replica\",\"url\":\"classes/Database.html#replica\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"classes/Database.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"classes/Database.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"classes/Database.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"classes/Database.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Database.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":1024,\"name\":\"#onStoreUpdate\",\"url\":\"classes/Database.html#_onStoreUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Database.html#_onStoreUpdate.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Database.#onStoreUpdate\"},{\"kind\":262144,\"name\":\"address\",\"url\":\"classes/Database.html#address\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/Database.html#close\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Database\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/Database.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Database\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/Database.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Database\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/Database.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Database\"},{\"kind\":256,\"name\":\"Config\",\"url\":\"interfaces/Config.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"interfaces/Config.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/Config.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/Config.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/Config.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":1024,\"name\":\"keychain\",\"url\":\"interfaces/Config.html#keychain\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"interfaces/Config.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"interfaces/Config.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"kind\":256,\"name\":\"Create\",\"url\":\"interfaces/Create.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/Create.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Create\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"interfaces/Create.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Create\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/Create.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Create\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"interfaces/Create.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Create\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/Create.html#start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Create\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"interfaces/Create.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Create\"},{\"kind\":256,\"name\":\"Determine\",\"url\":\"interfaces/Determine.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/Determine.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Determine.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/Determine.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"entry\",\"url\":\"interfaces/Determine.html#entry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/Determine.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"interfaces/Determine.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"meta\",\"url\":\"interfaces/Determine.html#meta\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/Determine.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Determine\"},{\"kind\":256,\"name\":\"OpenOptions\",\"url\":\"interfaces/OpenOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/OpenOptions.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenOptions\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/OpenOptions.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenOptions\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"interfaces/OpenOptions.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenOptions\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/OpenOptions.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenOptions\"},{\"kind\":2,\"name\":\"\",\"url\":\"modules/_internal_.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"AccessInstance\",\"url\":\"interfaces/_internal_.AccessInstance.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"canAppend\",\"url\":\"interfaces/_internal_.AccessInstance.html#canAppend\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".AccessInstance\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.AccessInstance.html#canAppend.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".AccessInstance.canAppend\"},{\"kind\":1024,\"name\":\"close\",\"url\":\"interfaces/_internal_.AccessInstance.html#close\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".AccessInstance\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.AccessInstance.html#close.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".AccessInstance.close\"},{\"kind\":256,\"name\":\"EntryInstance\",\"url\":\"interfaces/_internal_.EntryInstance.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/_internal_.EntryInstance.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryInstance\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.EntryInstance.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryInstance\"},{\"kind\":1024,\"name\":\"cid\",\"url\":\"interfaces/_internal_.EntryInstance.html#cid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryInstance\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/_internal_.EntryInstance.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".EntryInstance\"},{\"kind\":1024,\"name\":\"payload\",\"url\":\"interfaces/_internal_.EntryInstance.html#payload\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".EntryInstance\"},{\"kind\":1024,\"name\":\"next\",\"url\":\"interfaces/_internal_.EntryInstance.html#next\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".EntryInstance\"},{\"kind\":1024,\"name\":\"refs\",\"url\":\"interfaces/_internal_.EntryInstance.html#refs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".EntryInstance\"},{\"kind\":256,\"name\":\"SignedEntry\",\"url\":\"interfaces/_internal_.SignedEntry.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"interfaces/_internal_.SignedEntry.html#auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".SignedEntry\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/_internal_.SignedEntry.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".SignedEntry\"},{\"kind\":1024,\"name\":\"sig\",\"url\":\"interfaces/_internal_.SignedEntry.html#sig\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".SignedEntry\"},{\"kind\":256,\"name\":\"EntryData\",\"url\":\"interfaces/_internal_.EntryData.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/_internal_.EntryData.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryData\"},{\"kind\":1024,\"name\":\"payload\",\"url\":\"interfaces/_internal_.EntryData.html#payload\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryData\"},{\"kind\":1024,\"name\":\"next\",\"url\":\"interfaces/_internal_.EntryData.html#next\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryData\"},{\"kind\":1024,\"name\":\"refs\",\"url\":\"interfaces/_internal_.EntryData.html#refs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryData\"},{\"kind\":256,\"name\":\"IdentityInstance\",\"url\":\"interfaces/_internal_.IdentityInstance.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/_internal_.IdentityInstance.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityInstance\"},{\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/_internal_.IdentityInstance.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityInstance\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"interfaces/_internal_.IdentityInstance.html#auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityInstance\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/_internal_.IdentityInstance.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityInstance\"},{\"kind\":1024,\"name\":\"sign\",\"url\":\"interfaces/_internal_.IdentityInstance.html#sign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityInstance\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityInstance.html#sign.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityInstance.sign\"},{\"kind\":1024,\"name\":\"verify\",\"url\":\"interfaces/_internal_.IdentityInstance.html#verify\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityInstance\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityInstance.html#verify.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityInstance.verify\"},{\"kind\":256,\"name\":\"IdentityValue\",\"url\":\"interfaces/_internal_.IdentityValue.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/_internal_.IdentityValue.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityValue\"},{\"kind\":1024,\"name\":\"pub\",\"url\":\"interfaces/_internal_.IdentityValue.html#pub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityValue\"},{\"kind\":1024,\"name\":\"sig\",\"url\":\"interfaces/_internal_.IdentityValue.html#sig\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityValue\"},{\"kind\":256,\"name\":\"StoreInstance\",\"url\":\"interfaces/_internal_.StoreInstance.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"creators\",\"url\":\"interfaces/_internal_.StoreInstance.html#creators\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".StoreInstance\"},{\"kind\":1024,\"name\":\"selectors\",\"url\":\"interfaces/_internal_.StoreInstance.html#selectors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".StoreInstance\"},{\"kind\":1024,\"name\":\"latest\",\"url\":\"interfaces/_internal_.StoreInstance.html#latest\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".StoreInstance\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.StoreInstance.html#latest.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".StoreInstance.latest\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"interfaces/_internal_.StoreInstance.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".StoreInstance\"},{\"kind\":256,\"name\":\"ReplicatorModule\",\"url\":\"interfaces/_internal_.ReplicatorModule.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"create\",\"url\":\"interfaces/_internal_.ReplicatorModule.html#create\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ReplicatorModule\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.ReplicatorModule.html#create.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".ReplicatorModule.create\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.ReplicatorModule.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".ReplicatorModule\"},{\"kind\":256,\"name\":\"Replicator\",\"url\":\"interfaces/_internal_.Replicator.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"interfaces/_internal_.Replicator.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Replicator\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"interfaces/_internal_.Replicator.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Replicator\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"interfaces/_internal_.Replicator.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Replicator\"},{\"kind\":256,\"name\":\"Components\",\"url\":\"interfaces/_internal_.Components.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/_internal_.Components.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Components\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"interfaces/_internal_.Components.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Components\"},{\"kind\":1024,\"name\":\"entry\",\"url\":\"interfaces/_internal_.Components.html#entry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Components\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.Components.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Components\"},{\"kind\":4194304,\"name\":\"GossipHelia\",\"url\":\"types/_internal_.GossipHelia.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":4194304,\"name\":\"GossipLibp2p\",\"url\":\"types/_internal_.GossipLibp2p.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":4194304,\"name\":\"GossipServiceMap\",\"url\":\"types/_internal_.GossipServiceMap.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":128,\"name\":\"IpfsBlocks\",\"url\":\"classes/_internal_.IpfsBlocks.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":2048,\"name\":\"encode\",\"url\":\"classes/_internal_.IpfsBlocks.html#encode-2\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":2048,\"name\":\"decode\",\"url\":\"classes/_internal_.IpfsBlocks.html#decode-2\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.IpfsBlocks.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"classes/_internal_.IpfsBlocks.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".IpfsBlocks\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/_internal_.IpfsBlocks.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":2048,\"name\":\"put\",\"url\":\"classes/_internal_.IpfsBlocks.html#put\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":262144,\"name\":\"encode\",\"url\":\"classes/_internal_.IpfsBlocks.html#encode\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.IpfsBlocks.html#encode.encode-1.__type-2\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\".IpfsBlocks.encode.encode\"},{\"kind\":262144,\"name\":\"decode\",\"url\":\"classes/_internal_.IpfsBlocks.html#decode\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".IpfsBlocks\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.IpfsBlocks.html#decode.decode-1.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\".IpfsBlocks.decode.decode\"},{\"kind\":256,\"name\":\"Events\",\"url\":\"interfaces/_internal_.Events.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"opened\",\"url\":\"interfaces/_internal_.Events.html#opened\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Events\"},{\"kind\":1024,\"name\":\"closed\",\"url\":\"interfaces/_internal_.Events.html#closed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Events\"},{\"kind\":256,\"name\":\"Config\",\"url\":\"interfaces/_internal_.Config.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"write\",\"url\":\"interfaces/_internal_.Config.html#write\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":256,\"name\":\"AccessComponent\",\"url\":\"interfaces/_internal_.AccessComponent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"create\",\"url\":\"interfaces/_internal_.AccessComponent.html#create\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".AccessComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.AccessComponent.html#create.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".AccessComponent.create\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.AccessComponent.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".AccessComponent\"},{\"kind\":256,\"name\":\"EntryComponent\",\"url\":\"interfaces/_internal_.EntryComponent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"create\",\"url\":\"interfaces/_internal_.EntryComponent.html#create\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.EntryComponent.html#create.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".EntryComponent.create\"},{\"kind\":1024,\"name\":\"fetch\",\"url\":\"interfaces/_internal_.EntryComponent.html#fetch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.EntryComponent.html#fetch.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".EntryComponent.fetch\"},{\"kind\":1024,\"name\":\"asEntry\",\"url\":\"interfaces/_internal_.EntryComponent.html#asEntry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.EntryComponent.html#asEntry.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".EntryComponent.asEntry\"},{\"kind\":1024,\"name\":\"verify\",\"url\":\"interfaces/_internal_.EntryComponent.html#verify\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".EntryComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.EntryComponent.html#verify.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".EntryComponent.verify\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.EntryComponent.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".EntryComponent\"},{\"kind\":256,\"name\":\"IdentityComponent\",\"url\":\"interfaces/_internal_.IdentityComponent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"gen\",\"url\":\"interfaces/_internal_.IdentityComponent.html#gen\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#gen.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.gen\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"interfaces/_internal_.IdentityComponent.html#get\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#get.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.get\"},{\"kind\":1024,\"name\":\"fetch\",\"url\":\"interfaces/_internal_.IdentityComponent.html#fetch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#fetch.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.fetch\"},{\"kind\":1024,\"name\":\"asIdentity\",\"url\":\"interfaces/_internal_.IdentityComponent.html#asIdentity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#asIdentity.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.asIdentity\"},{\"kind\":1024,\"name\":\"import\",\"url\":\"interfaces/_internal_.IdentityComponent.html#import\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#import.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.import\"},{\"kind\":1024,\"name\":\"export\",\"url\":\"interfaces/_internal_.IdentityComponent.html#export\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#export.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.export\"},{\"kind\":1024,\"name\":\"sign\",\"url\":\"interfaces/_internal_.IdentityComponent.html#sign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#sign.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.sign\"},{\"kind\":1024,\"name\":\"verify\",\"url\":\"interfaces/_internal_.IdentityComponent.html#verify\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".IdentityComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.IdentityComponent.html#verify.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".IdentityComponent.verify\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.IdentityComponent.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".IdentityComponent\"},{\"kind\":256,\"name\":\"Config\",\"url\":\"interfaces/_internal_.Config-1.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"snap\",\"url\":\"interfaces/_internal_.Config-1.html#snap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":128,\"name\":\"Replica\",\"url\":\"classes/_internal_.Replica.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.Replica.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"classes/_internal_.Replica.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"classes/_internal_.Replica.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"classes/_internal_.Replica.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"classes/_internal_.Replica.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/_internal_.Replica.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"classes/_internal_.Replica.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"#datastore\",\"url\":\"classes/_internal_.Replica.html#_datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"#blockstore\",\"url\":\"classes/_internal_.Replica.html#_blockstore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"#graph\",\"url\":\"classes/_internal_.Replica.html#_graph\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"_queue\",\"url\":\"classes/_internal_.Replica.html#_queue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":1024,\"name\":\"root\",\"url\":\"classes/_internal_.Replica.html#root\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":262144,\"name\":\"graph\",\"url\":\"classes/_internal_.Replica.html#graph\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":262144,\"name\":\"heads\",\"url\":\"classes/_internal_.Replica.html#heads\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":262144,\"name\":\"tails\",\"url\":\"classes/_internal_.Replica.html#tails\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":262144,\"name\":\"missing\",\"url\":\"classes/_internal_.Replica.html#missing\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":262144,\"name\":\"denied\",\"url\":\"classes/_internal_.Replica.html#denied\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"traverse\",\"url\":\"classes/_internal_.Replica.html#traverse\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"has\",\"url\":\"classes/_internal_.Replica.html#has\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"known\",\"url\":\"classes/_internal_.Replica.html#known\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"add\",\"url\":\"classes/_internal_.Replica.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"write\",\"url\":\"classes/_internal_.Replica.html#write\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"writes\",\"url\":\"classes/_internal_.Replica.html#writes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"newEntry\",\"url\":\"classes/_internal_.Replica.html#newEntry\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"#updateRoot\",\"url\":\"classes/_internal_.Replica.html#_updateRoot\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/_internal_.Replica.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/_internal_.Replica.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".Replica\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/_internal_.Replica.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".Replica\"},{\"kind\":128,\"name\":\"Paily\",\"url\":\"classes/_internal_.Paily.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/_internal_.Paily.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"open\",\"url\":\"classes/_internal_.Paily.html#open\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.Paily.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":1024,\"name\":\"root\",\"url\":\"classes/_internal_.Paily.html#root\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":1024,\"name\":\"blockFetcher\",\"url\":\"classes/_internal_.Paily.html#blockFetcher\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/_internal_.Paily.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":1024,\"name\":\"#queue\",\"url\":\"classes/_internal_.Paily.html#_queue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Paily\"},{\"kind\":1024,\"name\":\"blockstore\",\"url\":\"classes/_internal_.Paily.html#blockstore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/_internal_.Paily.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"has\",\"url\":\"classes/_internal_.Paily.html#has\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"put\",\"url\":\"classes/_internal_.Paily.html#put\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/_internal_.Paily.html#delete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"_all\",\"url\":\"classes/_internal_.Paily.html#_all\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"_allKeys\",\"url\":\"classes/_internal_.Paily.html#_allKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":2048,\"name\":\"diff\",\"url\":\"classes/_internal_.Paily.html#diff\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Paily\"},{\"kind\":256,\"name\":\"Events\",\"url\":\"interfaces/_internal_.Events-1.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/_internal_.Events-1.html#update\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Events\"},{\"kind\":256,\"name\":\"StoreComponent\",\"url\":\"interfaces/_internal_.StoreComponent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"create\",\"url\":\"interfaces/_internal_.StoreComponent.html#create\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".StoreComponent\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.StoreComponent.html#create.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".StoreComponent.create\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.StoreComponent.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".StoreComponent\"},{\"kind\":128,\"name\":\"LiveReplicator\",\"url\":\"classes/_internal_.LiveReplicator.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.LiveReplicator.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"classes/_internal_.LiveReplicator.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"classes/_internal_.LiveReplicator.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"classes/_internal_.LiveReplicator.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"replica\",\"url\":\"classes/_internal_.LiveReplicator.html#replica\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"classes/_internal_.LiveReplicator.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"classes/_internal_.LiveReplicator.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"shared\",\"url\":\"classes/_internal_.LiveReplicator.html#shared\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"directs\",\"url\":\"classes/_internal_.LiveReplicator.html#directs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":1024,\"name\":\"#onPeerJoin\",\"url\":\"classes/_internal_.LiveReplicator.html#_onPeerJoin\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".LiveReplicator\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.LiveReplicator.html#_onPeerJoin.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".LiveReplicator.#onPeerJoin\"},{\"kind\":1024,\"name\":\"#onPeersLeave\",\"url\":\"classes/_internal_.LiveReplicator.html#_onPeersLeave\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".LiveReplicator\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.LiveReplicator.html#_onPeersLeave.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".LiveReplicator.#onPeersLeave\"},{\"kind\":1024,\"name\":\"#onReplicaHeadsUpdate\",\"url\":\"classes/_internal_.LiveReplicator.html#_onReplicaHeadsUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".LiveReplicator\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.LiveReplicator.html#_onReplicaHeadsUpdate.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".LiveReplicator.#onReplicaHeadsUpdate\"},{\"kind\":1024,\"name\":\"_onHeadsMessage\",\"url\":\"classes/_internal_.LiveReplicator.html#_onHeadsMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.LiveReplicator.html#_onHeadsMessage.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".LiveReplicator._onHeadsMessage\"},{\"kind\":2048,\"name\":\"broadcast\",\"url\":\"classes/_internal_.LiveReplicator.html#broadcast\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".LiveReplicator\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/_internal_.LiveReplicator.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".LiveReplicator\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/_internal_.LiveReplicator.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".LiveReplicator\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/_internal_.LiveReplicator.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".LiveReplicator\"},{\"kind\":256,\"name\":\"Protocol\",\"url\":\"interfaces/_internal_.Protocol.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.Protocol.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Protocol\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"interfaces/_internal_.Protocol.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Protocol\"},{\"kind\":256,\"name\":\"ManifestData\",\"url\":\"interfaces/_internal_.ManifestData.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/_internal_.ManifestData.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/_internal_.ManifestData.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":1024,\"name\":\"entry\",\"url\":\"interfaces/_internal_.ManifestData.html#entry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.ManifestData.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"interfaces/_internal_.ManifestData.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":1024,\"name\":\"meta\",\"url\":\"interfaces/_internal_.ManifestData.html#meta\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/_internal_.ManifestData.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ManifestData\"},{\"kind\":256,\"name\":\"DbComponents\",\"url\":\"interfaces/_internal_.DbComponents.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/_internal_.DbComponents.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbComponents\"},{\"kind\":1024,\"name\":\"entry\",\"url\":\"interfaces/_internal_.DbComponents.html#entry\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbComponents\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.DbComponents.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbComponents\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"interfaces/_internal_.DbComponents.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbComponents\"},{\"kind\":256,\"name\":\"DbEvents\",\"url\":\"interfaces/_internal_.DbEvents.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"closed\",\"url\":\"interfaces/_internal_.DbEvents.html#closed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbEvents\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/_internal_.DbEvents.html#update\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbEvents\"},{\"kind\":4194304,\"name\":\"AccessProtocol\",\"url\":\"types/_internal_.AccessProtocol.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":4194304,\"name\":\"EntryProtocol\",\"url\":\"types/_internal_.EntryProtocol.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":4194304,\"name\":\"IdentityProtocol\",\"url\":\"types/_internal_.IdentityProtocol.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":4194304,\"name\":\"StoreProtocol\",\"url\":\"types/_internal_.StoreProtocol.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"Open\",\"url\":\"interfaces/_internal_.Open.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"interfaces/_internal_.Open.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Open\"},{\"kind\":256,\"name\":\"Props\",\"url\":\"interfaces/_internal_.Props.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"interfaces/_internal_.Props.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Props\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.Props.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Props\"},{\"kind\":1024,\"name\":\"replica\",\"url\":\"interfaces/_internal_.Props.html#replica\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Props\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/_internal_.Props.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Props\"},{\"kind\":1024,\"name\":\"blockstore\",\"url\":\"interfaces/_internal_.Props.html#blockstore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Props\"},{\"kind\":256,\"name\":\"Fetch\",\"url\":\"interfaces/_internal_.Fetch.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.Fetch.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/_internal_.Fetch.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":256,\"name\":\"AsManifest\",\"url\":\"interfaces/_internal_.AsManifest.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/_internal_.AsManifest.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".AsManifest\"},{\"kind\":256,\"name\":\"DbOpen\",\"url\":\"interfaces/_internal_.DbOpen.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/_internal_.DbOpen.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/_internal_.DbOpen.html#start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.DbOpen.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"interfaces/_internal_.DbOpen.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"interfaces/_internal_.DbOpen.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.DbOpen.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"interfaces/_internal_.DbOpen.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"interfaces/_internal_.DbOpen.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/_internal_.DbOpen.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbOpen\"},{\"kind\":256,\"name\":\"DbConfig\",\"url\":\"interfaces/_internal_.DbConfig.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"replicators\",\"url\":\"interfaces/_internal_.DbConfig.html#replicators\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"replica\",\"url\":\"interfaces/_internal_.DbConfig.html#replica\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"store\",\"url\":\"interfaces/_internal_.DbConfig.html#store\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"access\",\"url\":\"interfaces/_internal_.DbConfig.html#access\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.DbConfig.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.DbConfig.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/_internal_.DbConfig.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"interfaces/_internal_.DbConfig.html#manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"components\",\"url\":\"interfaces/_internal_.DbConfig.html#components\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".DbConfig\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/_internal_.DbConfig.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".DbConfig\"},{\"kind\":256,\"name\":\"Put\",\"url\":\"interfaces/_internal_.Put.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"op\",\"url\":\"interfaces/_internal_.Put.html#op\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Put\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/_internal_.Put.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Put\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/_internal_.Put.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Put\"},{\"kind\":256,\"name\":\"Del\",\"url\":\"interfaces/_internal_.Del.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"op\",\"url\":\"interfaces/_internal_.Del.html#op\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Del\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/_internal_.Del.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Del\"},{\"kind\":256,\"name\":\"ComponentProtocol\",\"url\":\"interfaces/_internal_.ComponentProtocol.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/_internal_.ComponentProtocol.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ComponentProtocol\"},{\"kind\":32,\"name\":\"protocol\",\"url\":\"variables/_internal_.protocol-1.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":32,\"name\":\"protocol\",\"url\":\"variables/_internal_.protocol-2.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":32,\"name\":\"protocol\",\"url\":\"variables/_internal_.protocol-3.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":32,\"name\":\"protocol\",\"url\":\"variables/_internal_.protocol-4.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"Creator\",\"url\":\"interfaces/_internal_.Creator.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"Selector\",\"url\":\"interfaces/_internal_.Selector.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/_internal_.Selector.html#Selector.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\".Selector.Selector\"},{\"kind\":256,\"name\":\"OpenedEmit\",\"url\":\"interfaces/_internal_.OpenedEmit.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/_internal_.OpenedEmit.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".OpenedEmit\"},{\"kind\":256,\"name\":\"ClosedEmit\",\"url\":\"interfaces/_internal_.ClosedEmit.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/_internal_.ClosedEmit.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".ClosedEmit\"},{\"kind\":256,\"name\":\"ReplicaEvents\",\"url\":\"interfaces/_internal_.ReplicaEvents.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"write\",\"url\":\"interfaces/_internal_.ReplicaEvents.html#write\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ReplicaEvents\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/_internal_.ReplicaEvents.html#update\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".ReplicaEvents\"},{\"kind\":128,\"name\":\"Graph\",\"url\":\"classes/_internal_.Graph.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.Graph.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":1024,\"name\":\"blockstore\",\"url\":\"classes/_internal_.Graph.html#blockstore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":1024,\"name\":\"_root\",\"url\":\"classes/_internal_.Graph.html#_root\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":1024,\"name\":\"_state\",\"url\":\"classes/_internal_.Graph.html#_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/_internal_.Graph.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":1024,\"name\":\"queue\",\"url\":\"classes/_internal_.Graph.html#queue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/_internal_.Graph.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/_internal_.Graph.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"root\",\"url\":\"classes/_internal_.Graph.html#root\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"state\",\"url\":\"classes/_internal_.Graph.html#state\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"nodes\",\"url\":\"classes/_internal_.Graph.html#nodes\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"heads\",\"url\":\"classes/_internal_.Graph.html#heads\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"tails\",\"url\":\"classes/_internal_.Graph.html#tails\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"missing\",\"url\":\"classes/_internal_.Graph.html#missing\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":262144,\"name\":\"denied\",\"url\":\"classes/_internal_.Graph.html#denied\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"known\",\"url\":\"classes/_internal_.Graph.html#known\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/_internal_.Graph.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"has\",\"url\":\"classes/_internal_.Graph.html#has\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"add\",\"url\":\"classes/_internal_.Graph.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"miss\",\"url\":\"classes/_internal_.Graph.html#miss\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"deny\",\"url\":\"classes/_internal_.Graph.html#deny\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/_internal_.Graph.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/_internal_.Graph.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".Graph\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/_internal_.Graph.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\".Graph\"},{\"kind\":4194304,\"name\":\"Code\",\"url\":\"types/_internal_.Code.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":128,\"name\":\"Monitor\",\"url\":\"classes/_internal_.Monitor.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.Monitor.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":1024,\"name\":\"_isStarted\",\"url\":\"classes/_internal_.Monitor.html#_isStarted\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Monitor\"},{\"kind\":1024,\"name\":\"peers\",\"url\":\"classes/_internal_.Monitor.html#peers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":1024,\"name\":\"#refreshPeers\",\"url\":\"classes/_internal_.Monitor.html#_refreshPeers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Monitor\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.Monitor.html#_refreshPeers.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".Monitor.#refreshPeers\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/_internal_.Monitor.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":1024,\"name\":\"libp2p\",\"url\":\"classes/_internal_.Monitor.html#libp2p\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":1024,\"name\":\"topic\",\"url\":\"classes/_internal_.Monitor.html#topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/_internal_.Monitor.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/_internal_.Monitor.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Monitor\"},{\"kind\":128,\"name\":\"Direct\",\"url\":\"classes/_internal_.Direct.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.Direct.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":1024,\"name\":\"libp2p\",\"url\":\"classes/_internal_.Direct.html#libp2p\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":1024,\"name\":\"localPeerId\",\"url\":\"classes/_internal_.Direct.html#localPeerId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":1024,\"name\":\"remotePeerId\",\"url\":\"classes/_internal_.Direct.html#remotePeerId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":1024,\"name\":\"#onSubscriptionChange\",\"url\":\"classes/_internal_.Direct.html#_onSubscriptionChange\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Direct\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.Direct.html#_onSubscriptionChange.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".Direct.#onSubscriptionChange\"},{\"kind\":1024,\"name\":\"#onMessage\",\"url\":\"classes/_internal_.Direct.html#_onMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Direct\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/_internal_.Direct.html#_onMessage.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\".Direct.#onMessage\"},{\"kind\":1024,\"name\":\"#isStarted\",\"url\":\"classes/_internal_.Direct.html#_isStarted\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\".Direct\"},{\"kind\":2048,\"name\":\"isStarted\",\"url\":\"classes/_internal_.Direct.html#isStarted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/_internal_.Direct.html#start\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/_internal_.Direct.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":262144,\"name\":\"topic\",\"url\":\"classes/_internal_.Direct.html#topic\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":2048,\"name\":\"isOpen\",\"url\":\"classes/_internal_.Direct.html#isOpen\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":2048,\"name\":\"publish\",\"url\":\"classes/_internal_.Direct.html#publish\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Direct\"},{\"kind\":256,\"name\":\"Config\",\"url\":\"interfaces/_internal_.Config-2.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"ipfs\",\"url\":\"interfaces/_internal_.Config-2.html#ipfs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":1024,\"name\":\"replica\",\"url\":\"interfaces/_internal_.Config-2.html#replica\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.Config-2.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":1024,\"name\":\"datastore\",\"url\":\"interfaces/_internal_.Config-2.html#datastore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":1024,\"name\":\"blockstore\",\"url\":\"interfaces/_internal_.Config-2.html#blockstore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/_internal_.Config-2.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Config\"},{\"kind\":256,\"name\":\"Create\",\"url\":\"interfaces/_internal_.Create.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.Create.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Create\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/_internal_.Create.html#tag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Create\"},{\"kind\":1024,\"name\":\"payload\",\"url\":\"interfaces/_internal_.Create.html#payload\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Create\"},{\"kind\":1024,\"name\":\"next\",\"url\":\"interfaces/_internal_.Create.html#next\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Create\"},{\"kind\":1024,\"name\":\"refs\",\"url\":\"interfaces/_internal_.Create.html#refs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\".Create\"},{\"kind\":256,\"name\":\"Fetch\",\"url\":\"interfaces/_internal_.Fetch-1.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.Fetch-1.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/_internal_.Fetch-1.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":1024,\"name\":\"cid\",\"url\":\"interfaces/_internal_.Fetch-1.html#cid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"interfaces/_internal_.Fetch-1.html#timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":4194304,\"name\":\"AsEntry\",\"url\":\"types/_internal_.AsEntry.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"Get\",\"url\":\"interfaces/_internal_.Get.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/_internal_.Get.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Get\"},{\"kind\":1024,\"name\":\"identities\",\"url\":\"interfaces/_internal_.Get.html#identities\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Get\"},{\"kind\":1024,\"name\":\"keychain\",\"url\":\"interfaces/_internal_.Get.html#keychain\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Get\"},{\"kind\":256,\"name\":\"Fetch\",\"url\":\"interfaces/_internal_.Fetch-2.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/_internal_.Fetch-2.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"interfaces/_internal_.Fetch-2.html#auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Fetch\"},{\"kind\":4194304,\"name\":\"AsIdentity\",\"url\":\"types/_internal_.AsIdentity.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"Import\",\"url\":\"interfaces/_internal_.Import.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/_internal_.Import.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Import\"},{\"kind\":1024,\"name\":\"identities\",\"url\":\"interfaces/_internal_.Import.html#identities\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Import\"},{\"kind\":1024,\"name\":\"keychain\",\"url\":\"interfaces/_internal_.Import.html#keychain\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Import\"},{\"kind\":1024,\"name\":\"kpi\",\"url\":\"interfaces/_internal_.Import.html#kpi\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".Import\"},{\"kind\":256,\"name\":\"PeerStatusChangeData\",\"url\":\"interfaces/_internal_.PeerStatusChangeData.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"peerId\",\"url\":\"interfaces/_internal_.PeerStatusChangeData.html#peerId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".PeerStatusChangeData\"},{\"kind\":256,\"name\":\"AddressEmit\",\"url\":\"interfaces/_internal_.AddressEmit.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/_internal_.AddressEmit.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".AddressEmit\"},{\"kind\":256,\"name\":\"MonitorEvents\",\"url\":\"interfaces/_internal_.MonitorEvents.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"peer-join\",\"url\":\"interfaces/_internal_.MonitorEvents.html#peer_join\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".MonitorEvents\"},{\"kind\":1024,\"name\":\"peer-leave\",\"url\":\"interfaces/_internal_.MonitorEvents.html#peer_leave\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".MonitorEvents\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/_internal_.MonitorEvents.html#update\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".MonitorEvents\"},{\"kind\":256,\"name\":\"DirectEvents\",\"url\":\"interfaces/_internal_.DirectEvents.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"peered\",\"url\":\"interfaces/_internal_.DirectEvents.html#peered\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DirectEvents\"},{\"kind\":1024,\"name\":\"unpeered\",\"url\":\"interfaces/_internal_.DirectEvents.html#unpeered\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DirectEvents\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/_internal_.DirectEvents.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".DirectEvents\"},{\"kind\":4194304,\"name\":\"GraphRoot\",\"url\":\"types/_internal_.GraphRoot.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":4194304,\"name\":\"GraphState\",\"url\":\"types/_internal_.GraphState.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"GraphEvents\",\"url\":\"interfaces/_internal_.GraphEvents.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"add\",\"url\":\"interfaces/_internal_.GraphEvents.html#add\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".GraphEvents\"},{\"kind\":1024,\"name\":\"miss\",\"url\":\"interfaces/_internal_.GraphEvents.html#miss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".GraphEvents\"},{\"kind\":1024,\"name\":\"deny\",\"url\":\"interfaces/_internal_.GraphEvents.html#deny\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".GraphEvents\"},{\"kind\":128,\"name\":\"Node\",\"url\":\"classes/_internal_.Node.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":2048,\"name\":\"decode\",\"url\":\"classes/_internal_.Node.html#decode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/_internal_.Node.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/_internal_.Node.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/_internal_.Node.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":1024,\"name\":\"in\",\"url\":\"classes/_internal_.Node.html#in\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"classes/_internal_.Node.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":1024,\"name\":\"missing\",\"url\":\"classes/_internal_.Node.html#missing\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":1024,\"name\":\"denied\",\"url\":\"classes/_internal_.Node.html#denied\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":2048,\"name\":\"encode\",\"url\":\"classes/_internal_.Node.html#encode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\".Node\"},{\"kind\":4194304,\"name\":\"StateKeys\",\"url\":\"types/_internal_.StateKeys.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":256,\"name\":\"NodeObj\",\"url\":\"interfaces/_internal_.NodeObj.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"in\",\"url\":\"interfaces/_internal_.NodeObj.html#in\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeObj\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/_internal_.NodeObj.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeObj\"},{\"kind\":1024,\"name\":\"missing\",\"url\":\"interfaces/_internal_.NodeObj.html#missing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeObj\"},{\"kind\":1024,\"name\":\"denied\",\"url\":\"interfaces/_internal_.NodeObj.html#denied\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeObj\"},{\"kind\":256,\"name\":\"GraphChangeData\",\"url\":\"interfaces/_internal_.GraphChangeData.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"cid\",\"url\":\"interfaces/_internal_.GraphChangeData.html#cid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".GraphChangeData\"},{\"kind\":256,\"name\":\"NodeValue\",\"url\":\"interfaces/_internal_.NodeValue.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"\"},{\"kind\":1024,\"name\":\"in\",\"url\":\"interfaces/_internal_.NodeValue.html#in\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeValue\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/_internal_.NodeValue.html#out\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeValue\"},{\"kind\":1024,\"name\":\"missing\",\"url\":\"interfaces/_internal_.NodeValue.html#missing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeValue\"},{\"kind\":1024,\"name\":\"denied\",\"url\":\"interfaces/_internal_.NodeValue.html#denied\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\".NodeValue\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,59.399]],[\"comment/0\",[]],[\"name/1\",[1,34.797]],[\"comment/1\",[]],[\"name/2\",[2,43.282]],[\"comment/2\",[]],[\"name/3\",[3,39.001]],[\"comment/3\",[]],[\"name/4\",[4,40.914]],[\"comment/4\",[]],[\"name/5\",[5,43.282]],[\"comment/5\",[]],[\"name/6\",[6,38.166]],[\"comment/6\",[]],[\"name/7\",[7,48.397]],[\"comment/7\",[]],[\"name/8\",[8,34.24]],[\"comment/8\",[]],[\"name/9\",[9,42.028]],[\"comment/9\",[]],[\"name/10\",[10,54.284]],[\"comment/10\",[]],[\"name/11\",[11,59.399]],[\"comment/11\",[]],[\"name/12\",[12,54.284]],[\"comment/12\",[]],[\"name/13\",[13,43.282]],[\"comment/13\",[]],[\"name/14\",[14,48.397]],[\"comment/14\",[]],[\"name/15\",[15,59.399]],[\"comment/15\",[]],[\"name/16\",[16,59.399]],[\"comment/16\",[]],[\"name/17\",[17,38.166]],[\"comment/17\",[]],[\"name/18\",[18,37.395]],[\"comment/18\",[]],[\"name/19\",[19,39.001]],[\"comment/19\",[]],[\"name/20\",[20,59.399]],[\"comment/20\",[]],[\"name/21\",[21,54.284]],[\"comment/21\",[]],[\"name/22\",[1,34.797]],[\"comment/22\",[]],[\"name/23\",[22,39.912]],[\"comment/23\",[]],[\"name/24\",[23,43.282]],[\"comment/24\",[]],[\"name/25\",[24,48.397]],[\"comment/25\",[]],[\"name/26\",[25,50.914]],[\"comment/26\",[]],[\"name/27\",[26,54.284]],[\"comment/27\",[]],[\"name/28\",[17,38.166]],[\"comment/28\",[]],[\"name/29\",[18,37.395]],[\"comment/29\",[]],[\"name/30\",[19,39.001]],[\"comment/30\",[]],[\"name/31\",[21,54.284]],[\"comment/31\",[]],[\"name/32\",[27,44.715]],[\"comment/32\",[]],[\"name/33\",[1,34.797]],[\"comment/33\",[]],[\"name/34\",[8,34.24]],[\"comment/34\",[]],[\"name/35\",[28,44.715]],[\"comment/35\",[]],[\"name/36\",[29,46.388]],[\"comment/36\",[]],[\"name/37\",[30,46.388]],[\"comment/37\",[]],[\"name/38\",[31,48.397]],[\"comment/38\",[]],[\"name/39\",[32,43.282]],[\"comment/39\",[]],[\"name/40\",[33,48.397]],[\"comment/40\",[]],[\"name/41\",[34,48.397]],[\"comment/41\",[]],[\"name/42\",[35,48.397]],[\"comment/42\",[]],[\"name/43\",[36,59.399]],[\"comment/43\",[]],[\"name/44\",[8,34.24]],[\"comment/44\",[]],[\"name/45\",[1,34.797]],[\"comment/45\",[]],[\"name/46\",[37,43.282]],[\"comment/46\",[]],[\"name/47\",[28,44.715]],[\"comment/47\",[]],[\"name/48\",[38,59.399]],[\"comment/48\",[]],[\"name/49\",[30,46.388]],[\"comment/49\",[]],[\"name/50\",[39,50.914]],[\"comment/50\",[]],[\"name/51\",[40,54.284]],[\"comment/51\",[]],[\"name/52\",[31,48.397]],[\"comment/52\",[]],[\"name/53\",[41,50.914]],[\"comment/53\",[]],[\"name/54\",[42,48.397]],[\"comment/54\",[]],[\"name/55\",[43,59.399]],[\"comment/55\",[]],[\"name/56\",[44,59.399]],[\"comment/56\",[]],[\"name/57\",[1,34.797]],[\"comment/57\",[]],[\"name/58\",[45,54.284]],[\"comment/58\",[]],[\"name/59\",[46,25.01]],[\"comment/59\",[]],[\"name/60\",[47,44.715]],[\"comment/60\",[]],[\"name/61\",[46,25.01]],[\"comment/61\",[]],[\"name/62\",[46,25.01]],[\"comment/62\",[]],[\"name/63\",[48,59.399]],[\"comment/63\",[]],[\"name/64\",[46,25.01]],[\"comment/64\",[]],[\"name/65\",[46,25.01]],[\"comment/65\",[]],[\"name/66\",[49,59.399]],[\"comment/66\",[]],[\"name/67\",[46,25.01]],[\"comment/67\",[]],[\"name/68\",[46,25.01]],[\"comment/68\",[]],[\"name/69\",[50,59.399]],[\"comment/69\",[]],[\"name/70\",[46,25.01]],[\"comment/70\",[]],[\"name/71\",[46,25.01]],[\"comment/71\",[]],[\"name/72\",[51,54.284]],[\"comment/72\",[]],[\"name/73\",[46,25.01]],[\"comment/73\",[]],[\"name/74\",[52,48.397]],[\"comment/74\",[]],[\"name/75\",[46,25.01]],[\"comment/75\",[]],[\"name/76\",[53,54.284]],[\"comment/76\",[]],[\"name/77\",[46,25.01]],[\"comment/77\",[]],[\"name/78\",[22,39.912]],[\"comment/78\",[]],[\"name/79\",[23,43.282]],[\"comment/79\",[]],[\"name/80\",[54,43.282]],[\"comment/80\",[]],[\"name/81\",[3,39.001]],[\"comment/81\",[]],[\"name/82\",[55,44.715]],[\"comment/82\",[]],[\"name/83\",[56,59.399]],[\"comment/83\",[]],[\"name/84\",[9,42.028]],[\"comment/84\",[]],[\"name/85\",[57,59.399]],[\"comment/85\",[]],[\"name/86\",[58,54.284]],[\"comment/86\",[]],[\"name/87\",[17,38.166]],[\"comment/87\",[]],[\"name/88\",[18,37.395]],[\"comment/88\",[]],[\"name/89\",[19,39.001]],[\"comment/89\",[]],[\"name/90\",[59,59.399]],[\"comment/90\",[]],[\"name/91\",[60,54.284]],[\"comment/91\",[]],[\"name/92\",[61,43.282]],[\"comment/92\",[]],[\"name/93\",[62,59.399]],[\"comment/93\",[]],[\"name/94\",[63,59.399]],[\"comment/94\",[]],[\"name/95\",[1,34.797]],[\"comment/95\",[]],[\"name/96\",[29,46.388]],[\"comment/96\",[]],[\"name/97\",[64,59.399]],[\"comment/97\",[]],[\"name/98\",[65,54.284]],[\"comment/98\",[]],[\"name/99\",[22,39.912]],[\"comment/99\",[]],[\"name/100\",[66,42.028]],[\"comment/100\",[]],[\"name/101\",[13,43.282]],[\"comment/101\",[]],[\"name/102\",[67,54.284]],[\"comment/102\",[]],[\"name/103\",[1,34.797]],[\"comment/103\",[]],[\"name/104\",[37,43.282]],[\"comment/104\",[]],[\"name/105\",[68,43.282]],[\"comment/105\",[]],[\"name/106\",[69,40.914]],[\"comment/106\",[]],[\"name/107\",[27,44.715]],[\"comment/107\",[]],[\"name/108\",[8,34.24]],[\"comment/108\",[]],[\"name/109\",[70,50.914]],[\"comment/109\",[]],[\"name/110\",[32,43.282]],[\"comment/110\",[]],[\"name/111\",[61,43.282]],[\"comment/111\",[]],[\"name/112\",[71,59.399]],[\"comment/112\",[]],[\"name/113\",[28,44.715]],[\"comment/113\",[]],[\"name/114\",[72,59.399]],[\"comment/114\",[]],[\"name/115\",[1,34.797]],[\"comment/115\",[]],[\"name/116\",[73,54.284]],[\"comment/116\",[]],[\"name/117\",[17,38.166]],[\"comment/117\",[]],[\"name/118\",[74,59.399]],[\"comment/118\",[]],[\"name/119\",[75,59.399]],[\"comment/119\",[]],[\"name/120\",[76,59.399]],[\"comment/120\",[]],[\"name/121\",[46,25.01]],[\"comment/121\",[]],[\"name/122\",[77,59.399]],[\"comment/122\",[]],[\"name/123\",[46,25.01]],[\"comment/123\",[]],[\"name/124\",[78,59.399]],[\"comment/124\",[]],[\"name/125\",[46,25.01]],[\"comment/125\",[]],[\"name/126\",[18,37.395]],[\"comment/126\",[]],[\"name/127\",[19,39.001]],[\"comment/127\",[]],[\"name/128\",[79,59.399]],[\"comment/128\",[]],[\"name/129\",[14,48.397]],[\"comment/129\",[]],[\"name/130\",[1,34.797]],[\"comment/130\",[]],[\"name/131\",[6,38.166]],[\"comment/131\",[]],[\"name/132\",[22,39.912]],[\"comment/132\",[]],[\"name/133\",[8,34.24]],[\"comment/133\",[]],[\"name/134\",[2,43.282]],[\"comment/134\",[]],[\"name/135\",[54,43.282]],[\"comment/135\",[]],[\"name/136\",[69,40.914]],[\"comment/136\",[]],[\"name/137\",[68,43.282]],[\"comment/137\",[]],[\"name/138\",[3,39.001]],[\"comment/138\",[]],[\"name/139\",[4,40.914]],[\"comment/139\",[]],[\"name/140\",[9,42.028]],[\"comment/140\",[]],[\"name/141\",[80,59.399]],[\"comment/141\",[]],[\"name/142\",[46,25.01]],[\"comment/142\",[]],[\"name/143\",[61,43.282]],[\"comment/143\",[]],[\"name/144\",[25,50.914]],[\"comment/144\",[]],[\"name/145\",[17,38.166]],[\"comment/145\",[]],[\"name/146\",[18,37.395]],[\"comment/146\",[]],[\"name/147\",[19,39.001]],[\"comment/147\",[]],[\"name/148\",[23,43.282]],[\"comment/148\",[]],[\"name/149\",[2,43.282]],[\"comment/149\",[]],[\"name/150\",[3,39.001]],[\"comment/150\",[]],[\"name/151\",[8,34.24]],[\"comment/151\",[]],[\"name/152\",[6,38.166]],[\"comment/152\",[]],[\"name/153\",[7,48.397]],[\"comment/153\",[]],[\"name/154\",[5,43.282]],[\"comment/154\",[]],[\"name/155\",[4,40.914]],[\"comment/155\",[]],[\"name/156\",[66,42.028]],[\"comment/156\",[]],[\"name/157\",[3,39.001]],[\"comment/157\",[]],[\"name/158\",[2,43.282]],[\"comment/158\",[]],[\"name/159\",[8,34.24]],[\"comment/159\",[]],[\"name/160\",[5,43.282]],[\"comment/160\",[]],[\"name/161\",[18,37.395]],[\"comment/161\",[]],[\"name/162\",[4,40.914]],[\"comment/162\",[]],[\"name/163\",[12,54.284]],[\"comment/163\",[]],[\"name/164\",[81,37.395]],[\"comment/164\",[]],[\"name/165\",[37,43.282]],[\"comment/165\",[]],[\"name/166\",[69,40.914]],[\"comment/166\",[]],[\"name/167\",[27,44.715]],[\"comment/167\",[]],[\"name/168\",[8,34.24]],[\"comment/168\",[]],[\"name/169\",[68,43.282]],[\"comment/169\",[]],[\"name/170\",[70,50.914]],[\"comment/170\",[]],[\"name/171\",[32,43.282]],[\"comment/171\",[]],[\"name/172\",[82,59.399]],[\"comment/172\",[]],[\"name/173\",[8,34.24]],[\"comment/173\",[]],[\"name/174\",[3,39.001]],[\"comment/174\",[]],[\"name/175\",[2,43.282]],[\"comment/175\",[]],[\"name/176\",[83,48.397]],[\"comment/176\",[]],[\"name/177\",[84,59.399]],[\"comment/177\",[]],[\"name/178\",[85,59.399]],[\"comment/178\",[]],[\"name/179\",[26,54.284]],[\"comment/179\",[]],[\"name/180\",[46,25.01]],[\"comment/180\",[]],[\"name/181\",[25,50.914]],[\"comment/181\",[]],[\"name/182\",[46,25.01]],[\"comment/182\",[]],[\"name/183\",[86,59.399]],[\"comment/183\",[]],[\"name/184\",[28,44.715]],[\"comment/184\",[]],[\"name/185\",[8,34.24]],[\"comment/185\",[]],[\"name/186\",[29,46.388]],[\"comment/186\",[]],[\"name/187\",[32,43.282]],[\"comment/187\",[]],[\"name/188\",[33,48.397]],[\"comment/188\",[]],[\"name/189\",[34,48.397]],[\"comment/189\",[]],[\"name/190\",[35,48.397]],[\"comment/190\",[]],[\"name/191\",[87,59.399]],[\"comment/191\",[]],[\"name/192\",[30,46.388]],[\"comment/192\",[]],[\"name/193\",[88,59.399]],[\"comment/193\",[]],[\"name/194\",[31,48.397]],[\"comment/194\",[]],[\"name/195\",[89,59.399]],[\"comment/195\",[]],[\"name/196\",[32,43.282]],[\"comment/196\",[]],[\"name/197\",[33,48.397]],[\"comment/197\",[]],[\"name/198\",[34,48.397]],[\"comment/198\",[]],[\"name/199\",[35,48.397]],[\"comment/199\",[]],[\"name/200\",[90,59.399]],[\"comment/200\",[]],[\"name/201\",[37,43.282]],[\"comment/201\",[]],[\"name/202\",[28,44.715]],[\"comment/202\",[]],[\"name/203\",[30,46.388]],[\"comment/203\",[]],[\"name/204\",[39,50.914]],[\"comment/204\",[]],[\"name/205\",[41,50.914]],[\"comment/205\",[]],[\"name/206\",[46,25.01]],[\"comment/206\",[]],[\"name/207\",[42,48.397]],[\"comment/207\",[]],[\"name/208\",[46,25.01]],[\"comment/208\",[]],[\"name/209\",[91,59.399]],[\"comment/209\",[]],[\"name/210\",[39,50.914]],[\"comment/210\",[]],[\"name/211\",[40,54.284]],[\"comment/211\",[]],[\"name/212\",[31,48.397]],[\"comment/212\",[]],[\"name/213\",[92,59.399]],[\"comment/213\",[]],[\"name/214\",[51,54.284]],[\"comment/214\",[]],[\"name/215\",[45,54.284]],[\"comment/215\",[]],[\"name/216\",[58,54.284]],[\"comment/216\",[]],[\"name/217\",[46,25.01]],[\"comment/217\",[]],[\"name/218\",[9,42.028]],[\"comment/218\",[]],[\"name/219\",[93,59.399]],[\"comment/219\",[]],[\"name/220\",[66,42.028]],[\"comment/220\",[]],[\"name/221\",[46,25.01]],[\"comment/221\",[]],[\"name/222\",[81,37.395]],[\"comment/222\",[]],[\"name/223\",[94,59.399]],[\"comment/223\",[]],[\"name/224\",[17,38.166]],[\"comment/224\",[]],[\"name/225\",[18,37.395]],[\"comment/225\",[]],[\"name/226\",[19,39.001]],[\"comment/226\",[]],[\"name/227\",[4,40.914]],[\"comment/227\",[]],[\"name/228\",[69,40.914]],[\"comment/228\",[]],[\"name/229\",[68,43.282]],[\"comment/229\",[]],[\"name/230\",[27,44.715]],[\"comment/230\",[]],[\"name/231\",[8,34.24]],[\"comment/231\",[]],[\"name/232\",[95,59.399]],[\"comment/232\",[]],[\"name/233\",[96,59.399]],[\"comment/233\",[]],[\"name/234\",[97,59.399]],[\"comment/234\",[]],[\"name/235\",[98,59.399]],[\"comment/235\",[]],[\"name/236\",[99,50.914]],[\"comment/236\",[]],[\"name/237\",[100,50.914]],[\"comment/237\",[]],[\"name/238\",[1,34.797]],[\"comment/238\",[]],[\"name/239\",[5,43.282]],[\"comment/239\",[]],[\"name/240\",[47,44.715]],[\"comment/240\",[]],[\"name/241\",[52,48.397]],[\"comment/241\",[]],[\"name/242\",[99,50.914]],[\"comment/242\",[]],[\"name/243\",[46,25.01]],[\"comment/243\",[]],[\"name/244\",[100,50.914]],[\"comment/244\",[]],[\"name/245\",[46,25.01]],[\"comment/245\",[]],[\"name/246\",[9,42.028]],[\"comment/246\",[]],[\"name/247\",[10,54.284]],[\"comment/247\",[]],[\"name/248\",[101,54.284]],[\"comment/248\",[]],[\"name/249\",[23,43.282]],[\"comment/249\",[]],[\"name/250\",[24,48.397]],[\"comment/250\",[]],[\"name/251\",[102,59.399]],[\"comment/251\",[]],[\"name/252\",[66,42.028]],[\"comment/252\",[]],[\"name/253\",[46,25.01]],[\"comment/253\",[]],[\"name/254\",[81,37.395]],[\"comment/254\",[]],[\"name/255\",[103,59.399]],[\"comment/255\",[]],[\"name/256\",[66,42.028]],[\"comment/256\",[]],[\"name/257\",[46,25.01]],[\"comment/257\",[]],[\"name/258\",[13,43.282]],[\"comment/258\",[]],[\"name/259\",[46,25.01]],[\"comment/259\",[]],[\"name/260\",[104,54.284]],[\"comment/260\",[]],[\"name/261\",[46,25.01]],[\"comment/261\",[]],[\"name/262\",[42,48.397]],[\"comment/262\",[]],[\"name/263\",[46,25.01]],[\"comment/263\",[]],[\"name/264\",[81,37.395]],[\"comment/264\",[]],[\"name/265\",[105,59.399]],[\"comment/265\",[]],[\"name/266\",[106,59.399]],[\"comment/266\",[]],[\"name/267\",[46,25.01]],[\"comment/267\",[]],[\"name/268\",[47,44.715]],[\"comment/268\",[]],[\"name/269\",[46,25.01]],[\"comment/269\",[]],[\"name/270\",[13,43.282]],[\"comment/270\",[]],[\"name/271\",[46,25.01]],[\"comment/271\",[]],[\"name/272\",[107,54.284]],[\"comment/272\",[]],[\"name/273\",[46,25.01]],[\"comment/273\",[]],[\"name/274\",[108,54.284]],[\"comment/274\",[]],[\"name/275\",[46,25.01]],[\"comment/275\",[]],[\"name/276\",[109,59.399]],[\"comment/276\",[]],[\"name/277\",[46,25.01]],[\"comment/277\",[]],[\"name/278\",[41,50.914]],[\"comment/278\",[]],[\"name/279\",[46,25.01]],[\"comment/279\",[]],[\"name/280\",[42,48.397]],[\"comment/280\",[]],[\"name/281\",[46,25.01]],[\"comment/281\",[]],[\"name/282\",[81,37.395]],[\"comment/282\",[]],[\"name/283\",[23,43.282]],[\"comment/283\",[]],[\"name/284\",[110,59.399]],[\"comment/284\",[]],[\"name/285\",[54,43.282]],[\"comment/285\",[]],[\"name/286\",[1,34.797]],[\"comment/286\",[]],[\"name/287\",[22,39.912]],[\"comment/287\",[]],[\"name/288\",[6,38.166]],[\"comment/288\",[]],[\"name/289\",[8,34.24]],[\"comment/289\",[]],[\"name/290\",[69,40.914]],[\"comment/290\",[]],[\"name/291\",[9,42.028]],[\"comment/291\",[]],[\"name/292\",[4,40.914]],[\"comment/292\",[]],[\"name/293\",[3,39.001]],[\"comment/293\",[]],[\"name/294\",[55,44.715]],[\"comment/294\",[]],[\"name/295\",[111,50.914]],[\"comment/295\",[]],[\"name/296\",[112,59.399]],[\"comment/296\",[]],[\"name/297\",[113,50.914]],[\"comment/297\",[]],[\"name/298\",[111,50.914]],[\"comment/298\",[]],[\"name/299\",[114,54.284]],[\"comment/299\",[]],[\"name/300\",[115,54.284]],[\"comment/300\",[]],[\"name/301\",[116,46.388]],[\"comment/301\",[]],[\"name/302\",[117,46.388]],[\"comment/302\",[]],[\"name/303\",[118,59.399]],[\"comment/303\",[]],[\"name/304\",[119,50.914]],[\"comment/304\",[]],[\"name/305\",[120,54.284]],[\"comment/305\",[]],[\"name/306\",[121,50.914]],[\"comment/306\",[]],[\"name/307\",[24,48.397]],[\"comment/307\",[]],[\"name/308\",[122,59.399]],[\"comment/308\",[]],[\"name/309\",[123,59.399]],[\"comment/309\",[]],[\"name/310\",[124,59.399]],[\"comment/310\",[]],[\"name/311\",[17,38.166]],[\"comment/311\",[]],[\"name/312\",[18,37.395]],[\"comment/312\",[]],[\"name/313\",[19,39.001]],[\"comment/313\",[]],[\"name/314\",[125,59.399]],[\"comment/314\",[]],[\"name/315\",[66,42.028]],[\"comment/315\",[]],[\"name/316\",[14,48.397]],[\"comment/316\",[]],[\"name/317\",[1,34.797]],[\"comment/317\",[]],[\"name/318\",[113,50.914]],[\"comment/318\",[]],[\"name/319\",[126,59.399]],[\"comment/319\",[]],[\"name/320\",[127,54.284]],[\"comment/320\",[]],[\"name/321\",[128,54.284]],[\"comment/321\",[]],[\"name/322\",[55,44.715]],[\"comment/322\",[]],[\"name/323\",[47,44.715]],[\"comment/323\",[]],[\"name/324\",[119,50.914]],[\"comment/324\",[]],[\"name/325\",[52,48.397]],[\"comment/325\",[]],[\"name/326\",[129,59.399]],[\"comment/326\",[]],[\"name/327\",[130,59.399]],[\"comment/327\",[]],[\"name/328\",[131,59.399]],[\"comment/328\",[]],[\"name/329\",[132,59.399]],[\"comment/329\",[]],[\"name/330\",[9,42.028]],[\"comment/330\",[]],[\"name/331\",[133,48.397]],[\"comment/331\",[]],[\"name/332\",[134,59.399]],[\"comment/332\",[]],[\"name/333\",[66,42.028]],[\"comment/333\",[]],[\"name/334\",[46,25.01]],[\"comment/334\",[]],[\"name/335\",[81,37.395]],[\"comment/335\",[]],[\"name/336\",[60,54.284]],[\"comment/336\",[]],[\"name/337\",[1,34.797]],[\"comment/337\",[]],[\"name/338\",[5,43.282]],[\"comment/338\",[]],[\"name/339\",[22,39.912]],[\"comment/339\",[]],[\"name/340\",[6,38.166]],[\"comment/340\",[]],[\"name/341\",[54,43.282]],[\"comment/341\",[]],[\"name/342\",[69,40.914]],[\"comment/342\",[]],[\"name/343\",[4,40.914]],[\"comment/343\",[]],[\"name/344\",[135,59.399]],[\"comment/344\",[]],[\"name/345\",[136,59.399]],[\"comment/345\",[]],[\"name/346\",[137,59.399]],[\"comment/346\",[]],[\"name/347\",[46,25.01]],[\"comment/347\",[]],[\"name/348\",[138,59.399]],[\"comment/348\",[]],[\"name/349\",[46,25.01]],[\"comment/349\",[]],[\"name/350\",[139,59.399]],[\"comment/350\",[]],[\"name/351\",[46,25.01]],[\"comment/351\",[]],[\"name/352\",[140,59.399]],[\"comment/352\",[]],[\"name/353\",[46,25.01]],[\"comment/353\",[]],[\"name/354\",[141,59.399]],[\"comment/354\",[]],[\"name/355\",[17,38.166]],[\"comment/355\",[]],[\"name/356\",[18,37.395]],[\"comment/356\",[]],[\"name/357\",[19,39.001]],[\"comment/357\",[]],[\"name/358\",[81,37.395]],[\"comment/358\",[]],[\"name/359\",[81,37.395]],[\"comment/359\",[]],[\"name/360\",[23,43.282]],[\"comment/360\",[]],[\"name/361\",[142,59.399]],[\"comment/361\",[]],[\"name/362\",[37,43.282]],[\"comment/362\",[]],[\"name/363\",[69,40.914]],[\"comment/363\",[]],[\"name/364\",[27,44.715]],[\"comment/364\",[]],[\"name/365\",[8,34.24]],[\"comment/365\",[]],[\"name/366\",[68,43.282]],[\"comment/366\",[]],[\"name/367\",[70,50.914]],[\"comment/367\",[]],[\"name/368\",[32,43.282]],[\"comment/368\",[]],[\"name/369\",[143,59.399]],[\"comment/369\",[]],[\"name/370\",[69,40.914]],[\"comment/370\",[]],[\"name/371\",[27,44.715]],[\"comment/371\",[]],[\"name/372\",[8,34.24]],[\"comment/372\",[]],[\"name/373\",[68,43.282]],[\"comment/373\",[]],[\"name/374\",[144,59.399]],[\"comment/374\",[]],[\"name/375\",[101,54.284]],[\"comment/375\",[]],[\"name/376\",[133,48.397]],[\"comment/376\",[]],[\"name/377\",[145,59.399]],[\"comment/377\",[]],[\"name/378\",[146,59.399]],[\"comment/378\",[]],[\"name/379\",[147,59.399]],[\"comment/379\",[]],[\"name/380\",[148,59.399]],[\"comment/380\",[]],[\"name/381\",[14,48.397]],[\"comment/381\",[]],[\"name/382\",[22,39.912]],[\"comment/382\",[]],[\"name/383\",[149,59.399]],[\"comment/383\",[]],[\"name/384\",[22,39.912]],[\"comment/384\",[]],[\"name/385\",[6,38.166]],[\"comment/385\",[]],[\"name/386\",[54,43.282]],[\"comment/386\",[]],[\"name/387\",[3,39.001]],[\"comment/387\",[]],[\"name/388\",[55,44.715]],[\"comment/388\",[]],[\"name/389\",[13,43.282]],[\"comment/389\",[]],[\"name/390\",[6,38.166]],[\"comment/390\",[]],[\"name/391\",[61,43.282]],[\"comment/391\",[]],[\"name/392\",[67,54.284]],[\"comment/392\",[]],[\"name/393\",[28,44.715]],[\"comment/393\",[]],[\"name/394\",[150,59.399]],[\"comment/394\",[]],[\"name/395\",[3,39.001]],[\"comment/395\",[]],[\"name/396\",[18,37.395]],[\"comment/396\",[]],[\"name/397\",[6,38.166]],[\"comment/397\",[]],[\"name/398\",[2,43.282]],[\"comment/398\",[]],[\"name/399\",[5,43.282]],[\"comment/399\",[]],[\"name/400\",[8,34.24]],[\"comment/400\",[]],[\"name/401\",[22,39.912]],[\"comment/401\",[]],[\"name/402\",[4,40.914]],[\"comment/402\",[]],[\"name/403\",[83,48.397]],[\"comment/403\",[]],[\"name/404\",[151,59.399]],[\"comment/404\",[]],[\"name/405\",[2,43.282]],[\"comment/405\",[]],[\"name/406\",[54,43.282]],[\"comment/406\",[]],[\"name/407\",[68,43.282]],[\"comment/407\",[]],[\"name/408\",[69,40.914]],[\"comment/408\",[]],[\"name/409\",[8,34.24]],[\"comment/409\",[]],[\"name/410\",[6,38.166]],[\"comment/410\",[]],[\"name/411\",[3,39.001]],[\"comment/411\",[]],[\"name/412\",[22,39.912]],[\"comment/412\",[]],[\"name/413\",[4,40.914]],[\"comment/413\",[]],[\"name/414\",[83,48.397]],[\"comment/414\",[]],[\"name/415\",[52,48.397]],[\"comment/415\",[]],[\"name/416\",[152,54.284]],[\"comment/416\",[]],[\"name/417\",[153,54.284]],[\"comment/417\",[]],[\"name/418\",[154,59.399]],[\"comment/418\",[]],[\"name/419\",[53,54.284]],[\"comment/419\",[]],[\"name/420\",[152,54.284]],[\"comment/420\",[]],[\"name/421\",[153,54.284]],[\"comment/421\",[]],[\"name/422\",[155,59.399]],[\"comment/422\",[]],[\"name/423\",[81,37.395]],[\"comment/423\",[]],[\"name/424\",[81,37.395]],[\"comment/424\",[]],[\"name/425\",[81,37.395]],[\"comment/425\",[]],[\"name/426\",[81,37.395]],[\"comment/426\",[]],[\"name/427\",[81,37.395]],[\"comment/427\",[]],[\"name/428\",[156,59.399]],[\"comment/428\",[]],[\"name/429\",[157,59.399]],[\"comment/429\",[]],[\"name/430\",[46,25.01]],[\"comment/430\",[]],[\"name/431\",[158,59.399]],[\"comment/431\",[]],[\"name/432\",[61,43.282]],[\"comment/432\",[]],[\"name/433\",[159,59.399]],[\"comment/433\",[]],[\"name/434\",[61,43.282]],[\"comment/434\",[]],[\"name/435\",[160,59.399]],[\"comment/435\",[]],[\"name/436\",[24,48.397]],[\"comment/436\",[]],[\"name/437\",[133,48.397]],[\"comment/437\",[]],[\"name/438\",[111,50.914]],[\"comment/438\",[]],[\"name/439\",[1,34.797]],[\"comment/439\",[]],[\"name/440\",[55,44.715]],[\"comment/440\",[]],[\"name/441\",[161,59.399]],[\"comment/441\",[]],[\"name/442\",[162,59.399]],[\"comment/442\",[]],[\"name/443\",[9,42.028]],[\"comment/443\",[]],[\"name/444\",[128,54.284]],[\"comment/444\",[]],[\"name/445\",[163,59.399]],[\"comment/445\",[]],[\"name/446\",[65,54.284]],[\"comment/446\",[]],[\"name/447\",[113,50.914]],[\"comment/447\",[]],[\"name/448\",[164,59.399]],[\"comment/448\",[]],[\"name/449\",[165,59.399]],[\"comment/449\",[]],[\"name/450\",[114,54.284]],[\"comment/450\",[]],[\"name/451\",[115,54.284]],[\"comment/451\",[]],[\"name/452\",[116,46.388]],[\"comment/452\",[]],[\"name/453\",[117,46.388]],[\"comment/453\",[]],[\"name/454\",[120,54.284]],[\"comment/454\",[]],[\"name/455\",[47,44.715]],[\"comment/455\",[]],[\"name/456\",[119,50.914]],[\"comment/456\",[]],[\"name/457\",[121,50.914]],[\"comment/457\",[]],[\"name/458\",[166,54.284]],[\"comment/458\",[]],[\"name/459\",[167,54.284]],[\"comment/459\",[]],[\"name/460\",[17,38.166]],[\"comment/460\",[]],[\"name/461\",[18,37.395]],[\"comment/461\",[]],[\"name/462\",[19,39.001]],[\"comment/462\",[]],[\"name/463\",[127,54.284]],[\"comment/463\",[]],[\"name/464\",[168,59.399]],[\"comment/464\",[]],[\"name/465\",[1,34.797]],[\"comment/465\",[]],[\"name/466\",[73,54.284]],[\"comment/466\",[]],[\"name/467\",[169,59.399]],[\"comment/467\",[]],[\"name/468\",[170,59.399]],[\"comment/468\",[]],[\"name/469\",[46,25.01]],[\"comment/469\",[]],[\"name/470\",[17,38.166]],[\"comment/470\",[]],[\"name/471\",[171,54.284]],[\"comment/471\",[]],[\"name/472\",[172,54.284]],[\"comment/472\",[]],[\"name/473\",[18,37.395]],[\"comment/473\",[]],[\"name/474\",[19,39.001]],[\"comment/474\",[]],[\"name/475\",[173,59.399]],[\"comment/475\",[]],[\"name/476\",[1,34.797]],[\"comment/476\",[]],[\"name/477\",[171,54.284]],[\"comment/477\",[]],[\"name/478\",[174,59.399]],[\"comment/478\",[]],[\"name/479\",[175,59.399]],[\"comment/479\",[]],[\"name/480\",[176,59.399]],[\"comment/480\",[]],[\"name/481\",[46,25.01]],[\"comment/481\",[]],[\"name/482\",[177,59.399]],[\"comment/482\",[]],[\"name/483\",[46,25.01]],[\"comment/483\",[]],[\"name/484\",[17,38.166]],[\"comment/484\",[]],[\"name/485\",[17,38.166]],[\"comment/485\",[]],[\"name/486\",[18,37.395]],[\"comment/486\",[]],[\"name/487\",[19,39.001]],[\"comment/487\",[]],[\"name/488\",[172,54.284]],[\"comment/488\",[]],[\"name/489\",[178,59.399]],[\"comment/489\",[]],[\"name/490\",[179,59.399]],[\"comment/490\",[]],[\"name/491\",[23,43.282]],[\"comment/491\",[]],[\"name/492\",[5,43.282]],[\"comment/492\",[]],[\"name/493\",[54,43.282]],[\"comment/493\",[]],[\"name/494\",[6,38.166]],[\"comment/494\",[]],[\"name/495\",[3,39.001]],[\"comment/495\",[]],[\"name/496\",[55,44.715]],[\"comment/496\",[]],[\"name/497\",[83,48.397]],[\"comment/497\",[]],[\"name/498\",[66,42.028]],[\"comment/498\",[]],[\"name/499\",[8,34.24]],[\"comment/499\",[]],[\"name/500\",[32,43.282]],[\"comment/500\",[]],[\"name/501\",[33,48.397]],[\"comment/501\",[]],[\"name/502\",[34,48.397]],[\"comment/502\",[]],[\"name/503\",[35,48.397]],[\"comment/503\",[]],[\"name/504\",[13,43.282]],[\"comment/504\",[]],[\"name/505\",[6,38.166]],[\"comment/505\",[]],[\"name/506\",[8,34.24]],[\"comment/506\",[]],[\"name/507\",[29,46.388]],[\"comment/507\",[]],[\"name/508\",[180,59.399]],[\"comment/508\",[]],[\"name/509\",[104,54.284]],[\"comment/509\",[]],[\"name/510\",[47,44.715]],[\"comment/510\",[]],[\"name/511\",[37,43.282]],[\"comment/511\",[]],[\"name/512\",[181,54.284]],[\"comment/512\",[]],[\"name/513\",[7,48.397]],[\"comment/513\",[]],[\"name/514\",[13,43.282]],[\"comment/514\",[]],[\"name/515\",[6,38.166]],[\"comment/515\",[]],[\"name/516\",[30,46.388]],[\"comment/516\",[]],[\"name/517\",[107,54.284]],[\"comment/517\",[]],[\"name/518\",[108,54.284]],[\"comment/518\",[]],[\"name/519\",[37,43.282]],[\"comment/519\",[]],[\"name/520\",[181,54.284]],[\"comment/520\",[]],[\"name/521\",[7,48.397]],[\"comment/521\",[]],[\"name/522\",[182,59.399]],[\"comment/522\",[]],[\"name/523\",[183,59.399]],[\"comment/523\",[]],[\"name/524\",[184,59.399]],[\"comment/524\",[]],[\"name/525\",[185,59.399]],[\"comment/525\",[]],[\"name/526\",[61,43.282]],[\"comment/526\",[]],[\"name/527\",[186,59.399]],[\"comment/527\",[]],[\"name/528\",[187,38.547,188,42.18]],[\"comment/528\",[]],[\"name/529\",[187,38.547,189,42.18]],[\"comment/529\",[]],[\"name/530\",[133,48.397]],[\"comment/530\",[]],[\"name/531\",[190,59.399]],[\"comment/531\",[]],[\"name/532\",[191,59.399]],[\"comment/532\",[]],[\"name/533\",[192,59.399]],[\"comment/533\",[]],[\"name/534\",[193,59.399]],[\"comment/534\",[]],[\"name/535\",[194,59.399]],[\"comment/535\",[]],[\"name/536\",[195,59.399]],[\"comment/536\",[]],[\"name/537\",[196,59.399]],[\"comment/537\",[]],[\"name/538\",[121,50.914]],[\"comment/538\",[]],[\"name/539\",[166,54.284]],[\"comment/539\",[]],[\"name/540\",[167,54.284]],[\"comment/540\",[]],[\"name/541\",[197,59.399]],[\"comment/541\",[]],[\"name/542\",[100,50.914]],[\"comment/542\",[]],[\"name/543\",[198,59.399]],[\"comment/543\",[]],[\"name/544\",[199,59.399]],[\"comment/544\",[]],[\"name/545\",[1,34.797]],[\"comment/545\",[]],[\"name/546\",[200,50.914]],[\"comment/546\",[]],[\"name/547\",[201,50.914]],[\"comment/547\",[]],[\"name/548\",[116,46.388]],[\"comment/548\",[]],[\"name/549\",[117,46.388]],[\"comment/549\",[]],[\"name/550\",[99,50.914]],[\"comment/550\",[]],[\"name/551\",[202,59.399]],[\"comment/551\",[]],[\"name/552\",[203,59.399]],[\"comment/552\",[]],[\"name/553\",[200,50.914]],[\"comment/553\",[]],[\"name/554\",[201,50.914]],[\"comment/554\",[]],[\"name/555\",[116,46.388]],[\"comment/555\",[]],[\"name/556\",[117,46.388]],[\"comment/556\",[]],[\"name/557\",[204,59.399]],[\"comment/557\",[]],[\"name/558\",[29,46.388]],[\"comment/558\",[]],[\"name/559\",[205,59.399]],[\"comment/559\",[]],[\"name/560\",[200,50.914]],[\"comment/560\",[]],[\"name/561\",[201,50.914]],[\"comment/561\",[]],[\"name/562\",[116,46.388]],[\"comment/562\",[]],[\"name/563\",[117,46.388]],[\"comment/563\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":46,\"name\":{\"59\":{},\"61\":{},\"62\":{},\"64\":{},\"65\":{},\"67\":{},\"68\":{},\"70\":{},\"71\":{},\"73\":{},\"75\":{},\"77\":{},\"121\":{},\"123\":{},\"125\":{},\"142\":{},\"180\":{},\"182\":{},\"206\":{},\"208\":{},\"217\":{},\"221\":{},\"243\":{},\"245\":{},\"253\":{},\"257\":{},\"259\":{},\"261\":{},\"263\":{},\"267\":{},\"269\":{},\"271\":{},\"273\":{},\"275\":{},\"277\":{},\"279\":{},\"281\":{},\"334\":{},\"347\":{},\"349\":{},\"351\":{},\"353\":{},\"430\":{},\"469\":{},\"481\":{},\"483\":{}},\"comment\":{}}],[\"_all\",{\"_index\":130,\"name\":{\"327\":{}},\"comment\":{}}],[\"_allkeys\",{\"_index\":131,\"name\":{\"328\":{}},\"comment\":{}}],[\"_index\",{\"_index\":56,\"name\":{\"83\":{}},\"comment\":{}}],[\"_isstarted\",{\"_index\":73,\"name\":{\"116\":{},\"466\":{}},\"comment\":{}}],[\"_onheadsmessage\",{\"_index\":140,\"name\":{\"352\":{}},\"comment\":{}}],[\"_opening\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"_queue\",{\"_index\":112,\"name\":{\"296\":{}},\"comment\":{}}],[\"_root\",{\"_index\":161,\"name\":{\"441\":{}},\"comment\":{}}],[\"_starting\",{\"_index\":74,\"name\":{\"118\":{}},\"comment\":{}}],[\"_state\",{\"_index\":162,\"name\":{\"442\":{}},\"comment\":{}}],[\"_stopping\",{\"_index\":75,\"name\":{\"119\":{}},\"comment\":{}}],[\"access\",{\"_index\":69,\"name\":{\"106\":{},\"136\":{},\"166\":{},\"228\":{},\"290\":{},\"342\":{},\"363\":{},\"370\":{},\"408\":{}},\"comment\":{}}],[\"accesscomponent\",{\"_index\":102,\"name\":{\"251\":{}},\"comment\":{}}],[\"accessinstance\",{\"_index\":85,\"name\":{\"178\":{}},\"comment\":{}}],[\"accessprotocol\",{\"_index\":145,\"name\":{\"377\":{}},\"comment\":{}}],[\"add\",{\"_index\":121,\"name\":{\"306\":{},\"457\":{},\"538\":{}},\"comment\":{}}],[\"address\",{\"_index\":61,\"name\":{\"92\":{},\"111\":{},\"143\":{},\"391\":{},\"432\":{},\"434\":{},\"526\":{}},\"comment\":{}}],[\"addressemit\",{\"_index\":185,\"name\":{\"525\":{}},\"comment\":{}}],[\"asaddress\",{\"_index\":62,\"name\":{\"93\":{}},\"comment\":{}}],[\"asentry\",{\"_index\":104,\"name\":{\"260\":{},\"509\":{}},\"comment\":{}}],[\"asidentity\",{\"_index\":107,\"name\":{\"272\":{},\"517\":{}},\"comment\":{}}],[\"asmanifest\",{\"_index\":67,\"name\":{\"102\":{},\"392\":{}},\"comment\":{}}],[\"auth\",{\"_index\":30,\"name\":{\"37\":{},\"49\":{},\"192\":{},\"203\":{},\"516\":{}},\"comment\":{}}],[\"basalentry\",{\"_index\":36,\"name\":{\"43\":{}},\"comment\":{}}],[\"basalidentity\",{\"_index\":43,\"name\":{\"55\":{}},\"comment\":{}}],[\"block\",{\"_index\":28,\"name\":{\"35\":{},\"47\":{},\"113\":{},\"184\":{},\"202\":{},\"393\":{}},\"comment\":{}}],[\"blockfetcher\",{\"_index\":126,\"name\":{\"319\":{}},\"comment\":{}}],[\"blocks\",{\"_index\":6,\"name\":{\"6\":{},\"131\":{},\"152\":{},\"288\":{},\"340\":{},\"385\":{},\"390\":{},\"397\":{},\"410\":{},\"494\":{},\"505\":{},\"515\":{}},\"comment\":{}}],[\"blockstore\",{\"_index\":55,\"name\":{\"82\":{},\"294\":{},\"322\":{},\"388\":{},\"440\":{},\"496\":{}},\"comment\":{}}],[\"broadcast\",{\"_index\":141,\"name\":{\"354\":{}},\"comment\":{}}],[\"canappend\",{\"_index\":26,\"name\":{\"27\":{},\"179\":{}},\"comment\":{}}],[\"cid\",{\"_index\":29,\"name\":{\"36\":{},\"96\":{},\"186\":{},\"507\":{},\"558\":{}},\"comment\":{}}],[\"clone\",{\"_index\":163,\"name\":{\"445\":{}},\"comment\":{}}],[\"close\",{\"_index\":25,\"name\":{\"26\":{},\"144\":{},\"181\":{}},\"comment\":{}}],[\"closed\",{\"_index\":101,\"name\":{\"248\":{},\"375\":{}},\"comment\":{}}],[\"closedemit\",{\"_index\":159,\"name\":{\"433\":{}},\"comment\":{}}],[\"code\",{\"_index\":127,\"name\":{\"320\":{},\"463\":{}},\"comment\":{}}],[\"componentprotocol\",{\"_index\":155,\"name\":{\"422\":{}},\"comment\":{}}],[\"components\",{\"_index\":4,\"name\":{\"4\":{},\"139\":{},\"155\":{},\"162\":{},\"227\":{},\"292\":{},\"343\":{},\"402\":{},\"413\":{}},\"comment\":{}}],[\"config\",{\"_index\":23,\"name\":{\"24\":{},\"79\":{},\"148\":{},\"249\":{},\"283\":{},\"360\":{},\"491\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":1,\"name\":{\"1\":{},\"22\":{},\"33\":{},\"45\":{},\"57\":{},\"95\":{},\"103\":{},\"115\":{},\"130\":{},\"238\":{},\"286\":{},\"317\":{},\"337\":{},\"439\":{},\"465\":{},\"476\":{},\"545\":{}},\"comment\":{}}],[\"create\",{\"_index\":66,\"name\":{\"100\":{},\"156\":{},\"220\":{},\"252\":{},\"256\":{},\"315\":{},\"333\":{},\"498\":{}},\"comment\":{}}],[\"createwelo\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"creator\",{\"_index\":156,\"name\":{\"428\":{}},\"comment\":{}}],[\"creators\",{\"_index\":51,\"name\":{\"72\":{},\"214\":{}},\"comment\":{}}],[\"data\",{\"_index\":88,\"name\":{\"193\":{}},\"comment\":{}}],[\"database\",{\"_index\":79,\"name\":{\"128\":{}},\"comment\":{}}],[\"datastore\",{\"_index\":3,\"name\":{\"3\":{},\"81\":{},\"138\":{},\"150\":{},\"157\":{},\"174\":{},\"293\":{},\"387\":{},\"395\":{},\"411\":{},\"495\":{}},\"comment\":{}}],[\"dbcomponents\",{\"_index\":143,\"name\":{\"369\":{}},\"comment\":{}}],[\"dbconfig\",{\"_index\":151,\"name\":{\"404\":{}},\"comment\":{}}],[\"dbevents\",{\"_index\":144,\"name\":{\"374\":{}},\"comment\":{}}],[\"dbopen\",{\"_index\":150,\"name\":{\"394\":{}},\"comment\":{}}],[\"decode\",{\"_index\":100,\"name\":{\"237\":{},\"244\":{},\"542\":{}},\"comment\":{}}],[\"del\",{\"_index\":53,\"name\":{\"76\":{},\"419\":{}},\"comment\":{}}],[\"delete\",{\"_index\":129,\"name\":{\"326\":{}},\"comment\":{}}],[\"denied\",{\"_index\":117,\"name\":{\"302\":{},\"453\":{},\"549\":{},\"556\":{},\"563\":{}},\"comment\":{}}],[\"deny\",{\"_index\":167,\"name\":{\"459\":{},\"540\":{}},\"comment\":{}}],[\"determine\",{\"_index\":12,\"name\":{\"12\":{},\"163\":{}},\"comment\":{}}],[\"diff\",{\"_index\":132,\"name\":{\"329\":{}},\"comment\":{}}],[\"direct\",{\"_index\":173,\"name\":{\"475\":{}},\"comment\":{}}],[\"directevents\",{\"_index\":190,\"name\":{\"531\":{}},\"comment\":{}}],[\"directs\",{\"_index\":136,\"name\":{\"345\":{}},\"comment\":{}}],[\"encode\",{\"_index\":99,\"name\":{\"236\":{},\"242\":{},\"550\":{}},\"comment\":{}}],[\"entries\",{\"_index\":50,\"name\":{\"69\":{}},\"comment\":{}}],[\"entry\",{\"_index\":27,\"name\":{\"32\":{},\"107\":{},\"167\":{},\"230\":{},\"364\":{},\"371\":{}},\"comment\":{}}],[\"entrycomponent\",{\"_index\":103,\"name\":{\"255\":{}},\"comment\":{}}],[\"entrydata\",{\"_index\":89,\"name\":{\"195\":{}},\"comment\":{}}],[\"entryinstance\",{\"_index\":86,\"name\":{\"183\":{}},\"comment\":{}}],[\"entryprotocol\",{\"_index\":146,\"name\":{\"378\":{}},\"comment\":{}}],[\"equals\",{\"_index\":65,\"name\":{\"98\":{},\"446\":{}},\"comment\":{}}],[\"events\",{\"_index\":9,\"name\":{\"9\":{},\"84\":{},\"140\":{},\"218\":{},\"246\":{},\"291\":{},\"330\":{},\"443\":{}},\"comment\":{}}],[\"exists\",{\"_index\":199,\"name\":{\"544\":{}},\"comment\":{}}],[\"export\",{\"_index\":109,\"name\":{\"276\":{}},\"comment\":{}}],[\"fetch\",{\"_index\":13,\"name\":{\"13\":{},\"101\":{},\"258\":{},\"270\":{},\"389\":{},\"504\":{},\"514\":{}},\"comment\":{}}],[\"fromstring\",{\"_index\":63,\"name\":{\"94\":{}},\"comment\":{}}],[\"gen\",{\"_index\":106,\"name\":{\"266\":{}},\"comment\":{}}],[\"get\",{\"_index\":47,\"name\":{\"60\":{},\"240\":{},\"268\":{},\"323\":{},\"455\":{},\"510\":{}},\"comment\":{}}],[\"getcomponents\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"getdefaultmanifest\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"gettag\",{\"_index\":71,\"name\":{\"112\":{}},\"comment\":{}}],[\"gossiphelia\",{\"_index\":95,\"name\":{\"232\":{}},\"comment\":{}}],[\"gossiplibp2p\",{\"_index\":96,\"name\":{\"233\":{}},\"comment\":{}}],[\"gossipservicemap\",{\"_index\":97,\"name\":{\"234\":{}},\"comment\":{}}],[\"graph\",{\"_index\":111,\"name\":{\"295\":{},\"298\":{},\"438\":{}},\"comment\":{}}],[\"graphchangedata\",{\"_index\":204,\"name\":{\"557\":{}},\"comment\":{}}],[\"graphevents\",{\"_index\":196,\"name\":{\"537\":{}},\"comment\":{}}],[\"graphroot\",{\"_index\":194,\"name\":{\"535\":{}},\"comment\":{}}],[\"graphstate\",{\"_index\":195,\"name\":{\"536\":{}},\"comment\":{}}],[\"has\",{\"_index\":119,\"name\":{\"304\":{},\"324\":{},\"456\":{}},\"comment\":{}}],[\"heads\",{\"_index\":114,\"name\":{\"299\":{},\"450\":{}},\"comment\":{}}],[\"id\",{\"_index\":39,\"name\":{\"50\":{},\"204\":{},\"210\":{}},\"comment\":{}}],[\"identities\",{\"_index\":181,\"name\":{\"512\":{},\"520\":{}},\"comment\":{}}],[\"identity\",{\"_index\":8,\"name\":{\"8\":{},\"34\":{},\"44\":{},\"108\":{},\"133\":{},\"151\":{},\"159\":{},\"168\":{},\"173\":{},\"185\":{},\"231\":{},\"289\":{},\"365\":{},\"372\":{},\"400\":{},\"409\":{},\"499\":{},\"506\":{}},\"comment\":{}}],[\"identitycomponent\",{\"_index\":105,\"name\":{\"265\":{}},\"comment\":{}}],[\"identityinstance\",{\"_index\":90,\"name\":{\"200\":{}},\"comment\":{}}],[\"identityprotocol\",{\"_index\":147,\"name\":{\"379\":{}},\"comment\":{}}],[\"identityvalue\",{\"_index\":91,\"name\":{\"209\":{}},\"comment\":{}}],[\"import\",{\"_index\":108,\"name\":{\"274\":{},\"518\":{}},\"comment\":{}}],[\"in\",{\"_index\":200,\"name\":{\"546\":{},\"553\":{},\"560\":{}},\"comment\":{}}],[\"index\",{\"_index\":57,\"name\":{\"85\":{}},\"comment\":{}}],[\"init\",{\"_index\":198,\"name\":{\"543\":{}},\"comment\":{}}],[\"internal\",{\"_index\":84,\"name\":{\"177\":{}},\"comment\":{}}],[\"ipfs\",{\"_index\":5,\"name\":{\"5\":{},\"154\":{},\"160\":{},\"239\":{},\"338\":{},\"399\":{},\"492\":{}},\"comment\":{}}],[\"ipfsblocks\",{\"_index\":98,\"name\":{\"235\":{}},\"comment\":{}}],[\"isopen\",{\"_index\":178,\"name\":{\"489\":{}},\"comment\":{}}],[\"isstarted\",{\"_index\":17,\"name\":{\"17\":{},\"28\":{},\"87\":{},\"117\":{},\"145\":{},\"224\":{},\"311\":{},\"355\":{},\"460\":{},\"470\":{},\"484\":{},\"485\":{}},\"comment\":{}}],[\"join\",{\"_index\":188,\"name\":{\"528\":{}},\"comment\":{}}],[\"key\",{\"_index\":153,\"name\":{\"417\":{},\"421\":{}},\"comment\":{}}],[\"keychain\",{\"_index\":7,\"name\":{\"7\":{},\"153\":{},\"513\":{},\"521\":{}},\"comment\":{}}],[\"keys\",{\"_index\":48,\"name\":{\"63\":{}},\"comment\":{}}],[\"keyvalue\",{\"_index\":44,\"name\":{\"56\":{}},\"comment\":{}}],[\"keyvaluestore\",{\"_index\":59,\"name\":{\"90\":{}},\"comment\":{}}],[\"known\",{\"_index\":120,\"name\":{\"305\":{},\"454\":{}},\"comment\":{}}],[\"kpi\",{\"_index\":182,\"name\":{\"522\":{}},\"comment\":{}}],[\"latest\",{\"_index\":58,\"name\":{\"86\":{},\"216\":{}},\"comment\":{}}],[\"leave\",{\"_index\":189,\"name\":{\"529\":{}},\"comment\":{}}],[\"libp2p\",{\"_index\":171,\"name\":{\"471\":{},\"477\":{}},\"comment\":{}}],[\"lifecycle\",{\"_index\":76,\"name\":{\"120\":{}},\"comment\":{}}],[\"livereplicator\",{\"_index\":60,\"name\":{\"91\":{},\"336\":{}},\"comment\":{}}],[\"localpeerid\",{\"_index\":174,\"name\":{\"478\":{}},\"comment\":{}}],[\"manifest\",{\"_index\":22,\"name\":{\"23\":{},\"78\":{},\"99\":{},\"132\":{},\"287\":{},\"339\":{},\"382\":{},\"384\":{},\"401\":{},\"412\":{}},\"comment\":{}}],[\"manifestdata\",{\"_index\":142,\"name\":{\"361\":{}},\"comment\":{}}],[\"message\",{\"_index\":193,\"name\":{\"534\":{}},\"comment\":{}}],[\"meta\",{\"_index\":70,\"name\":{\"109\":{},\"170\":{},\"367\":{}},\"comment\":{}}],[\"miss\",{\"_index\":166,\"name\":{\"458\":{},\"539\":{}},\"comment\":{}}],[\"missing\",{\"_index\":116,\"name\":{\"301\":{},\"452\":{},\"548\":{},\"555\":{},\"562\":{}},\"comment\":{}}],[\"monitor\",{\"_index\":168,\"name\":{\"464\":{}},\"comment\":{}}],[\"monitorevents\",{\"_index\":186,\"name\":{\"527\":{}},\"comment\":{}}],[\"name\",{\"_index\":37,\"name\":{\"46\":{},\"104\":{},\"165\":{},\"201\":{},\"362\":{},\"511\":{},\"519\":{}},\"comment\":{}}],[\"newentry\",{\"_index\":123,\"name\":{\"309\":{}},\"comment\":{}}],[\"next\",{\"_index\":34,\"name\":{\"41\":{},\"189\":{},\"198\":{},\"502\":{}},\"comment\":{}}],[\"node\",{\"_index\":197,\"name\":{\"541\":{}},\"comment\":{}}],[\"nodeobj\",{\"_index\":203,\"name\":{\"552\":{}},\"comment\":{}}],[\"nodes\",{\"_index\":165,\"name\":{\"449\":{}},\"comment\":{}}],[\"nodevalue\",{\"_index\":205,\"name\":{\"559\":{}},\"comment\":{}}],[\"onmessage\",{\"_index\":177,\"name\":{\"482\":{}},\"comment\":{}}],[\"onpeerjoin\",{\"_index\":137,\"name\":{\"346\":{}},\"comment\":{}}],[\"onpeersleave\",{\"_index\":138,\"name\":{\"348\":{}},\"comment\":{}}],[\"onreplicaheadsupdate\",{\"_index\":139,\"name\":{\"350\":{}},\"comment\":{}}],[\"onstoreupdate\",{\"_index\":80,\"name\":{\"141\":{}},\"comment\":{}}],[\"onsubscriptionchange\",{\"_index\":176,\"name\":{\"480\":{}},\"comment\":{}}],[\"op\",{\"_index\":152,\"name\":{\"416\":{},\"420\":{}},\"comment\":{}}],[\"open\",{\"_index\":14,\"name\":{\"14\":{},\"129\":{},\"316\":{},\"381\":{}},\"comment\":{}}],[\"opened\",{\"_index\":10,\"name\":{\"10\":{},\"247\":{}},\"comment\":{}}],[\"openedemit\",{\"_index\":158,\"name\":{\"431\":{}},\"comment\":{}}],[\"openoptions\",{\"_index\":82,\"name\":{\"172\":{}},\"comment\":{}}],[\"out\",{\"_index\":201,\"name\":{\"547\":{},\"554\":{},\"561\":{}},\"comment\":{}}],[\"paily\",{\"_index\":125,\"name\":{\"314\":{}},\"comment\":{}}],[\"payload\",{\"_index\":33,\"name\":{\"40\":{},\"188\":{},\"197\":{},\"501\":{}},\"comment\":{}}],[\"peer\",{\"_index\":187,\"name\":{\"528\":{},\"529\":{}},\"comment\":{}}],[\"peered\",{\"_index\":191,\"name\":{\"532\":{}},\"comment\":{}}],[\"peerid\",{\"_index\":184,\"name\":{\"524\":{}},\"comment\":{}}],[\"peers\",{\"_index\":169,\"name\":{\"467\":{}},\"comment\":{}}],[\"peerstatuschangedata\",{\"_index\":183,\"name\":{\"523\":{}},\"comment\":{}}],[\"playable\",{\"_index\":72,\"name\":{\"114\":{}},\"comment\":{}}],[\"props\",{\"_index\":149,\"name\":{\"383\":{}},\"comment\":{}}],[\"protocol\",{\"_index\":81,\"name\":{\"164\":{},\"222\":{},\"254\":{},\"264\":{},\"282\":{},\"335\":{},\"358\":{},\"359\":{},\"423\":{},\"424\":{},\"425\":{},\"426\":{},\"427\":{}},\"comment\":{}}],[\"provider\",{\"_index\":83,\"name\":{\"176\":{},\"403\":{},\"414\":{},\"497\":{}},\"comment\":{}}],[\"pub\",{\"_index\":40,\"name\":{\"51\":{},\"211\":{}},\"comment\":{}}],[\"pubkey\",{\"_index\":38,\"name\":{\"48\":{}},\"comment\":{}}],[\"publish\",{\"_index\":179,\"name\":{\"490\":{}},\"comment\":{}}],[\"put\",{\"_index\":52,\"name\":{\"74\":{},\"241\":{},\"325\":{},\"415\":{}},\"comment\":{}}],[\"queue\",{\"_index\":128,\"name\":{\"321\":{},\"444\":{}},\"comment\":{}}],[\"refreshpeers\",{\"_index\":170,\"name\":{\"468\":{}},\"comment\":{}}],[\"refs\",{\"_index\":35,\"name\":{\"42\":{},\"190\":{},\"199\":{},\"503\":{}},\"comment\":{}}],[\"remotepeerid\",{\"_index\":175,\"name\":{\"479\":{}},\"comment\":{}}],[\"replica\",{\"_index\":54,\"name\":{\"80\":{},\"135\":{},\"285\":{},\"341\":{},\"386\":{},\"406\":{},\"493\":{}},\"comment\":{}}],[\"replicaevents\",{\"_index\":160,\"name\":{\"435\":{}},\"comment\":{}}],[\"replicator\",{\"_index\":94,\"name\":{\"223\":{}},\"comment\":{}}],[\"replicatormodule\",{\"_index\":93,\"name\":{\"219\":{}},\"comment\":{}}],[\"replicators\",{\"_index\":2,\"name\":{\"2\":{},\"134\":{},\"149\":{},\"158\":{},\"175\":{},\"398\":{},\"405\":{}},\"comment\":{}}],[\"root\",{\"_index\":113,\"name\":{\"297\":{},\"318\":{},\"447\":{}},\"comment\":{}}],[\"selector\",{\"_index\":157,\"name\":{\"429\":{}},\"comment\":{}}],[\"selectors\",{\"_index\":45,\"name\":{\"58\":{},\"215\":{}},\"comment\":{}}],[\"shared\",{\"_index\":135,\"name\":{\"344\":{}},\"comment\":{}}],[\"sig\",{\"_index\":31,\"name\":{\"38\":{},\"52\":{},\"194\":{},\"212\":{}},\"comment\":{}}],[\"sign\",{\"_index\":41,\"name\":{\"53\":{},\"205\":{},\"278\":{}},\"comment\":{}}],[\"signedentry\",{\"_index\":87,\"name\":{\"191\":{}},\"comment\":{}}],[\"snap\",{\"_index\":110,\"name\":{\"284\":{}},\"comment\":{}}],[\"start\",{\"_index\":18,\"name\":{\"18\":{},\"29\":{},\"88\":{},\"126\":{},\"146\":{},\"161\":{},\"225\":{},\"312\":{},\"356\":{},\"396\":{},\"461\":{},\"473\":{},\"486\":{}},\"comment\":{}}],[\"starting\",{\"_index\":77,\"name\":{\"122\":{}},\"comment\":{}}],[\"state\",{\"_index\":164,\"name\":{\"448\":{}},\"comment\":{}}],[\"statekeys\",{\"_index\":202,\"name\":{\"551\":{}},\"comment\":{}}],[\"staticaccess\",{\"_index\":21,\"name\":{\"21\":{},\"31\":{}},\"comment\":{}}],[\"stop\",{\"_index\":19,\"name\":{\"19\":{},\"30\":{},\"89\":{},\"127\":{},\"147\":{},\"226\":{},\"313\":{},\"357\":{},\"462\":{},\"474\":{},\"487\":{}},\"comment\":{}}],[\"stopping\",{\"_index\":78,\"name\":{\"124\":{}},\"comment\":{}}],[\"store\",{\"_index\":68,\"name\":{\"105\":{},\"137\":{},\"169\":{},\"229\":{},\"366\":{},\"373\":{},\"407\":{}},\"comment\":{}}],[\"storecomponent\",{\"_index\":134,\"name\":{\"332\":{}},\"comment\":{}}],[\"storeinstance\",{\"_index\":92,\"name\":{\"213\":{}},\"comment\":{}}],[\"storeprotocol\",{\"_index\":148,\"name\":{\"380\":{}},\"comment\":{}}],[\"tag\",{\"_index\":32,\"name\":{\"39\":{},\"110\":{},\"171\":{},\"187\":{},\"196\":{},\"368\":{},\"500\":{}},\"comment\":{}}],[\"tails\",{\"_index\":115,\"name\":{\"300\":{},\"451\":{}},\"comment\":{}}],[\"timeout\",{\"_index\":180,\"name\":{\"508\":{}},\"comment\":{}}],[\"topic\",{\"_index\":172,\"name\":{\"472\":{},\"488\":{}},\"comment\":{}}],[\"tostring\",{\"_index\":64,\"name\":{\"97\":{}},\"comment\":{}}],[\"traverse\",{\"_index\":118,\"name\":{\"303\":{}},\"comment\":{}}],[\"unpeered\",{\"_index\":192,\"name\":{\"533\":{}},\"comment\":{}}],[\"update\",{\"_index\":133,\"name\":{\"331\":{},\"376\":{},\"437\":{},\"530\":{}},\"comment\":{}}],[\"updateroot\",{\"_index\":124,\"name\":{\"310\":{}},\"comment\":{}}],[\"value\",{\"_index\":154,\"name\":{\"418\":{}},\"comment\":{}}],[\"values\",{\"_index\":49,\"name\":{\"66\":{}},\"comment\":{}}],[\"verify\",{\"_index\":42,\"name\":{\"54\":{},\"207\":{},\"262\":{},\"280\":{}},\"comment\":{}}],[\"welo\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"write\",{\"_index\":24,\"name\":{\"25\":{},\"250\":{},\"307\":{},\"436\":{}},\"comment\":{}}],[\"writes\",{\"_index\":122,\"name\":{\"308\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 00000000..496e66f2 --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1279 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-text: #222; + --light-color-text-aside: #707070; + --light-color-link: #4da6ff; + --light-color-ts: #db1373; + --light-color-ts-interface: #139d2c; + --light-color-ts-enum: #9c891a; + --light-color-ts-class: #2484e5; + --light-color-ts-function: #572be7; + --light-color-ts-namespace: #b111c9; + --light-color-ts-private: #707070; + --light-color-ts-variable: #4d68ff; + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + --dark-color-ts: #ff6492; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-class: #61b0ff; + --dark-color-ts-function: #9772ff; + --dark-color-ts-namespace: #e14dff; + --dark-color-ts-private: #e2e2e2; + --dark-color-ts-variable: #4d68ff; + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-function: var(--light-color-ts-function); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-private: var(--light-color-ts-private); + --color-ts-variable: var(--light-color-ts-variable); + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-private: var(--dark-color-ts-private); + --color-ts-variable: var(--dark-color-ts-variable); + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-function: var(--light-color-ts-function); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-private: var(--light-color-ts-private); + --color-ts-variable: var(--light-color-ts-variable); + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-private: var(--dark-color-ts-private); + --color-ts-variable: var(--dark-color-ts-variable); + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +pre { + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1600px; + padding: 0 2rem; +} + +@media (min-width: 640px) { + .container { + padding: 0 4rem; + } +} +@media (min-width: 1200px) { + .container { + padding: 0 8rem; + } +} +@media (min-width: 1600px) { + .container { + padding: 0 12rem; + } +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + display: flex; + justify-content: space-between; + position: relative; + margin: 0 auto; +} + +.col-4, +.col-8 { + box-sizing: border-box; + float: left; + padding: 2rem 1rem; +} + +.col-4 { + flex: 0 0 25%; +} +.col-8 { + flex: 1 0; + flex-wrap: wrap; + padding-left: 0; +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes shift-to-left { + from { + transform: translate(0, 0); + } + to { + transform: translate(-25%, 0); + } +} +@keyframes unshift-to-left { + from { + transform: translate(-25%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; +} + +pre { + padding: 10px; + border: 0.1em solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +@media (max-width: 1024px) { + html .col-content { + float: none; + max-width: 100%; + width: 100%; + padding-top: 3rem; + } + html .col-menu { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + max-width: 25rem; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-menu > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu :is(header, footer, .col-content) { + animation: shift-to-left 0.4s; + } + + .to-has-menu .col-menu { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu :is(header, footer, .col-content) { + animation: unshift-to-left 0.4s; + } + + .from-has-menu .col-menu { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu :is(header, footer, .col-content) { + transform: translate(-25%, 0); + } + .has-menu .col-menu { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} +.tsd-index-panel a, +.tsd-index-panel a.tsd-parent-kind-module { + color: var(--color-ts); +} +.tsd-index-panel a.tsd-parent-kind-interface { + color: var(--color-ts-interface); +} +.tsd-index-panel a.tsd-parent-kind-enum { + color: var(--color-ts-enum); +} +.tsd-index-panel a.tsd-parent-kind-class { + color: var(--color-ts-class); +} +.tsd-index-panel a.tsd-kind-module { + color: var(--color-ts-namespace); +} +.tsd-index-panel a.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-index-panel a.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-index-panel a.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-index-panel a.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-index-panel a.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-index-panel a.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-index-panel a.tsd-is-private { + color: var(--color-ts-private); +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: absolute; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} +.tsd-member [data-tsd-kind] { + color: var(--color-ts); +} +.tsd-member [data-tsd-kind="Interface"] { + color: var(--color-ts-interface); +} +.tsd-member [data-tsd-kind="Enum"] { + color: var(--color-ts-enum); +} +.tsd-member [data-tsd-kind="Class"] { + color: var(--color-ts-class); +} +.tsd-member [data-tsd-kind="Private"] { + color: var(--color-ts-private); +} + +.tsd-navigation a { + display: block; + margin: 0.4rem 0; + border-left: 2px solid transparent; + color: var(--color-text); + text-decoration: none; + transition: border-left-color 0.1s; +} +.tsd-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul { + margin: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li { + padding: 0; +} + +.tsd-navigation.primary .tsd-accordion-details > ul { + margin-top: 0.75rem; +} +.tsd-navigation.primary a { + padding: 0.75rem 0.5rem; + margin: 0; +} +.tsd-navigation.primary ul li a { + margin-left: 0.5rem; +} +.tsd-navigation.primary ul li li a { + margin-left: 1.5rem; +} +.tsd-navigation.primary ul li li li a { + margin-left: 2.5rem; +} +.tsd-navigation.primary ul li li li li a { + margin-left: 3.5rem; +} +.tsd-navigation.primary ul li li li li li a { + margin-left: 4.5rem; +} +.tsd-navigation.primary ul li li li li li li a { + margin-left: 5.5rem; +} +.tsd-navigation.primary li.current > a { + border-left: 0.15rem var(--color-text) solid; +} +.tsd-navigation.primary li.selected > a { + font-weight: bold; + border-left: 0.2rem var(--color-text) solid; +} +.tsd-navigation.primary ul li a:hover { + border-left: 0.2rem var(--color-text-aside) solid; +} +.tsd-navigation.primary li.globals + li > span, +.tsd-navigation.primary li.globals + li > a { + padding-top: 20px; +} + +.tsd-navigation.secondary.tsd-navigation--toolbar-hide { + max-height: calc(100vh - 1rem); + top: 0.5rem; +} +.tsd-navigation.secondary > ul { + display: inline; + padding-right: 0.5rem; + transition: opacity 0.2s; +} +.tsd-navigation.secondary ul li a { + padding-left: 0; +} +.tsd-navigation.secondary ul li li a { + padding-left: 1.1rem; +} +.tsd-navigation.secondary ul li li li a { + padding-left: 2.2rem; +} +.tsd-navigation.secondary ul li li li li a { + padding-left: 3.3rem; +} +.tsd-navigation.secondary ul li li li li li a { + padding-left: 4.4rem; +} +.tsd-navigation.secondary ul li li li li li li a { + padding-left: 5.5rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + margin: 0.25rem 0; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; +} +.tsd-accordion-summary > h1, +.tsd-accordion-summary > h2, +.tsd-accordion-summary > h3, +.tsd-accordion-summary > h4, +.tsd-accordion-summary > h5 { + display: inline-flex; + align-items: center; + vertical-align: middle; + margin-bottom: 0; + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} +.tsd-accordion-summary { + display: block; + cursor: pointer; +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; +} +.tsd-index-accordion .tsd-accordion-summary svg { + margin-right: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +@media (min-width: 1025px) { + .col-content { + margin: 2rem auto; + } + + .menu-sticky-wrap { + position: sticky; + height: calc(100vh - 2rem); + top: 4rem; + right: 0; + padding: 0 1.5rem; + padding-top: 1rem; + margin-top: 3rem; + transition: 0.3s ease-in-out; + transition-property: top, padding-top, padding, height; + overflow-y: auto; + } + .col-menu { + border-left: 1px solid var(--color-accent); + } + .col-menu--hide { + top: 1rem; + } + .col-menu .tsd-navigation:not(:last-child) { + padding-bottom: 1.75rem; + } +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: fixed; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-page-toolbar--hide { + transform: translateY(-100%); +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +@media (max-width: 1024px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} diff --git a/classes/Address.html b/classes/Address.html new file mode 100644 index 00000000..7081174d --- /dev/null +++ b/classes/Address.html @@ -0,0 +1,177 @@ +Address | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Address

+
+

Manifest Address

+

May also be referred to as the database address. +It is a CID with a prefix that says it's an hldb manifest.

+
+
+

Hierarchy

+
    +
  • Address
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
cid +
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
cid: CID<unknown, number, number, Version>
+
+

Methods

+
+ +
    + +
  • +

    Checks if two addresses are equal

    +

    Similar to CID.equals.

    + +

    Returns

    +
    +

    Parameters

    +
      +
    • +
      address: Address
      +

      another Address

      +
    +

    Returns boolean

+
+ +
    + +
  • +

    Converts the Address to a string

    + +

    Returns

    +
    +

    Parameters

    +
      +
    • +
      base: Codec<"base32", "b"> = base32
      +

      the base encoding to use

      +
    +

    Returns string

+
+ +
    + +
  • +

    Optimistically coerce values into an Address

    +

    Similar to CID.asCID.

    + +

    Returns

    +
    +

    Parameters

    +
      +
    • +
      Optional address: any
      +

      Anything you want to check is an Address

      +
    +

    Returns null | Address

+
+ +
    + +
  • +

    Attempt to parse a string into an Address

    + +

    Returns

    +
    +

    Parameters

    +
      +
    • +
      string: string
    +

    Returns Address

+
+
\ No newline at end of file diff --git a/classes/Database.html b/classes/Database.html new file mode 100644 index 00000000..7beef7a4 --- /dev/null +++ b/classes/Database.html @@ -0,0 +1,265 @@ +Database | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Database

+
+

Database Class

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
#onStoreUpdate: ((this: Database) => void)
+
+

Type declaration

+
+
+ +
+
+ +
blocks: IpfsBlocks
+
+ +
components: DbComponents
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
+
+ +
identity: IdentityInstance<any>
+
+ +
manifest: Manifest
+
+ +
replica: Replica
+
+ +
replicators: Replicator[]
+
+ +
+
+

Accessors

+
+ +
+
+

Methods

+
+ +
    + +
  • +

    Close the Database

    +

    Welo database factory listens for the closed method to be called +to manage lifecycles of databases it's managing.

    +
    +

    Returns Promise<void>

+
+ +
+
+ +
+
+ +
+
+ +
    + +
  • +

    Open a Database

    +

    Welo Database factory uses this method, and provides the modules needed, +to return databases from its open instance method.

    + +

    Returns

    +
    +

    Parameters

    +
      +
    • +
      options: DbOpen
      +

      Contains properties and modules for the database to use

      +
    +

    Returns Promise<Database>

+
+
\ No newline at end of file diff --git a/classes/Entry.html b/classes/Entry.html new file mode 100644 index 00000000..dfaf452e --- /dev/null +++ b/classes/Entry.html @@ -0,0 +1,162 @@ +Entry | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Entry

+
+

Hierarchy

+
    +
  • Entry
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
auth: CID<unknown, number, number, Version>
+
+ +
block: BlockView<SignedEntry, number, number, 1>
+
+ +
cid: CID<unknown, number, number, Version>
+
+ +
identity: IdentityInstance<any>
+
+ +
next: CID<unknown, number, number, Version>[]
+
+ +
payload: any
+
+ +
refs: CID<unknown, number, number, Version>[]
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/Identity.html b/classes/Identity.html new file mode 100644 index 00000000..e2bf59ed --- /dev/null +++ b/classes/Identity.html @@ -0,0 +1,185 @@ +Identity | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Identity

+
+

Hierarchy

+
    +
  • Identity
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
auth: CID<unknown, number, number, Version>
+
+ +
block: BlockView<IdentityValue, number, number, 1>
+
+ +
+
+ +
name?: string
+
+ +
+
+ +
pubkey: PublicKey
+
+ +
+
+

Methods

+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/Keyvalue.html b/classes/Keyvalue.html new file mode 100644 index 00000000..4e1637e9 --- /dev/null +++ b/classes/Keyvalue.html @@ -0,0 +1,340 @@ +Keyvalue | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Keyvalue

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
_index: null | Paily
+
+ +
blockstore: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
config?: Config
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
+
+ +
manifest: Manifest
+
+ +
replica: Replica
+
+

Accessors

+
+ +
    +
  • get creators(): {
        del: ((key: string) => Del);
        put: ((key: string, value: any) => Put);
    }
  • +
  • +

    Returns {
        del: ((key: string) => Del);
        put: ((key: string, value: any) => Put);
    }

    +
      +
    • +
      del: ((key: string) => Del)
      +
        +
      • +
          +
        • (key: string): Del
        • +
        • +
          +

          Parameters

          +
            +
          • +
            key: string
          +

          Returns Del

    • +
    • +
      put: ((key: string, value: any) => Put)
      +
        +
      • +
          +
        • (key: string, value: any): Put
        • +
        • +
          +

          Parameters

          +
            +
          • +
            key: string
          • +
          • +
            value: any
          +

          Returns Put

+
+ +
+
+ +
    +
  • get selectors(): {
        entries: ((state: Paily) => (() => AsyncIterable<[string, any]>));
        get: ((state: Paily) => ((key: string) => Promise<undefined | Object>));
        keys: ((state: Paily) => (() => AsyncGenerator<string, void, unknown>));
        values: ((state: Paily) => (() => AsyncGenerator<undefined | Object, void, unknown>));
    }
  • +
  • +

    Returns {
        entries: ((state: Paily) => (() => AsyncIterable<[string, any]>));
        get: ((state: Paily) => ((key: string) => Promise<undefined | Object>));
        keys: ((state: Paily) => (() => AsyncGenerator<string, void, unknown>));
        values: ((state: Paily) => (() => AsyncGenerator<undefined | Object, void, unknown>));
    }

    +
      +
    • +
      entries: ((state: Paily) => (() => AsyncIterable<[string, any]>))
      +
        +
      • +
          +
        • (state: Paily): (() => AsyncIterable<[string, any]>)
        • +
        • +
          +

          Parameters

          +
          +

          Returns (() => AsyncIterable<[string, any]>)

          +
            +
          • +
              +
            • (): AsyncIterable<[string, any]>
            • +
            • +

              Returns AsyncIterable<[string, any]>

    • +
    • +
      get: ((state: Paily) => ((key: string) => Promise<undefined | Object>))
      +
        +
      • +
          +
        • (state: Paily): ((key: string) => Promise<undefined | Object>)
        • +
        • +
          +

          Parameters

          +
          +

          Returns ((key: string) => Promise<undefined | Object>)

          +
            +
          • +
              +
            • (key: string): Promise<undefined | Object>
            • +
            • +
              +

              Parameters

              +
                +
              • +
                key: string
              +

              Returns Promise<undefined | Object>

    • +
    • +
      keys: ((state: Paily) => (() => AsyncGenerator<string, void, unknown>))
      +
    • +
    • +
      values: ((state: Paily) => (() => AsyncGenerator<undefined | Object, void, unknown>))
      +
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/Manifest.html b/classes/Manifest.html new file mode 100644 index 00000000..b0541c3c --- /dev/null +++ b/classes/Manifest.html @@ -0,0 +1,238 @@ +Manifest | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Manifest

+
+

Database Manifest

+

Manifests contain setup configuration required to participate in a Database.

+
+
+

Hierarchy

+
    +
  • Manifest
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
access: Protocol<string, Record<string, unknown>>
+
+ +
block: BlockView<ManifestData, number, number, 1>
+
+ +
entry: Protocol<string, Record<string, unknown>>
+
+ +
identity: Protocol<string, Record<string, unknown>>
+
+ +
meta?: any
+
+ +
name: string
+
+ +
store: Protocol<string, Record<string, unknown>>
+
+ +
+
+

Accessors

+
+ +
+
+

Methods

+
+ +
    + +
  • +

    Get the Manifest Tag

    +

    The manifest tag is a unique identifier for a database that is customizable. +It must be globally unique like the manifest address. +Since they may not exist in the encoded manifest this method can be used in any case.

    + +

    Returns

    the tag of the manifest

    +
    +

    Returns Uint8Array

+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/Playable.html b/classes/Playable.html new file mode 100644 index 00000000..1dea6fb4 --- /dev/null +++ b/classes/Playable.html @@ -0,0 +1,198 @@ +Playable | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Playable

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
_isStarted: boolean
+
+ +
_starting: null | Promise<void>
+
+ +
_stopping: null | Promise<void>
+
+ +
lifecycle: {
    starting: (() => Promise<void>);
    stopping: (() => Promise<void>);
}
+
+

Type declaration

+
+
+

Methods

+
+ +
    + +
  • +

    Returns boolean

+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/StaticAccess.html b/classes/StaticAccess.html new file mode 100644 index 00000000..c67f03d5 --- /dev/null +++ b/classes/StaticAccess.html @@ -0,0 +1,179 @@ +StaticAccess | welo - v2.3.0
+
+ +
+
+
+
+ +

Class StaticAccess

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
config: Config
+
+ +
manifest: Manifest
+
+ +
write: Set<string>
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/Welo.html b/classes/Welo.html new file mode 100644 index 00000000..2028c303 --- /dev/null +++ b/classes/Welo.html @@ -0,0 +1,293 @@ +Welo | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Welo

+
+

Database Factory

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
_opening: Map<string, Promise<Database>>
+
+ +
blocks: IpfsBlocks
+
+ +
components: Components
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
+
+ +
identity: IdentityInstance<any>
+
+ +
+
+ +
keychain: KeyChain
+
+ +
opened: Map<string, Database>
+
+ +
replicators: ReplicatorModule<Replicator, string>[]
+
+

Methods

+
+ +
    + +
  • +

    Deterministically create a database manifest

    +

    Options are shallow merged with defaultManifest.

    + +

    Returns

    +
    +

    Parameters

    +
      +
    • +
      options: Determine
      +

      Override defaults used to create the manifest.

      +
    +

    Returns Promise<Manifest>

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
    + +
  • +

    Opens a database for a manifest.

    +

    This method will throw an error if the database is already opened or being opened. +Use opened to get opened databases.

    + +

    Returns

    the database instance for the given manifest

    +
    +
    +

    Parameters

    +
      +
    • +
      manifest: Manifest
      +

      the manifest of the database to open

      +
    • +
    • +
      options: OpenOptions = {}
      +

      optional configuration for how to run the database

      +
    +

    Returns Promise<Database>

+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.Direct.html b/classes/_internal_.Direct.html new file mode 100644 index 00000000..7f543250 --- /dev/null +++ b/classes/_internal_.Direct.html @@ -0,0 +1,240 @@ +Direct | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Direct

+
+

Hierarchy

+
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
#isStarted: boolean
+
+ +
#onMessage: ((this: Direct, evt: CustomEvent<Message>) => void)
+
+

Type declaration

+
+
+ +
#onSubscriptionChange: ((this: Direct, evt: CustomEvent<SubscriptionChangeData>) => void)
+
+

Type declaration

+
+
+ +
+
+ +
localPeerId: PeerId
+
+ +
remotePeerId: PeerId
+
+

Accessors

+
+ +
+
+

Methods

+
+ +
+
+ +
    + +
  • +

    Returns boolean

+
+ +
+
+ +
    + +
  • +

    Returns void

+
+ +
    + +
  • +

    Returns void

+
+
\ No newline at end of file diff --git a/classes/_internal_.Graph.html b/classes/_internal_.Graph.html new file mode 100644 index 00000000..a1eb243b --- /dev/null +++ b/classes/_internal_.Graph.html @@ -0,0 +1,354 @@ +Graph | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Graph

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
_root: null | GraphRoot
+
+ +
_state: null | GraphState
+
+ +
blockstore: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
+
+ +
+
+

Accessors

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.IpfsBlocks.html b/classes/_internal_.IpfsBlocks.html new file mode 100644 index 00000000..0cae16b2 --- /dev/null +++ b/classes/_internal_.IpfsBlocks.html @@ -0,0 +1,258 @@ +IpfsBlocks | welo - v2.3.0
+
+ +
+
+
+
+ +

Class IpfsBlocks

+
+

Hierarchy

+
    +
  • IpfsBlocks
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
+
+

Accessors

+
+ +
+
+ +
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.LiveReplicator.html b/classes/_internal_.LiveReplicator.html new file mode 100644 index 00000000..8f963928 --- /dev/null +++ b/classes/_internal_.LiveReplicator.html @@ -0,0 +1,277 @@ +LiveReplicator | welo - v2.3.0
+
+ +
+
+
+
+ +

Class LiveReplicator

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
#onPeerJoin: ((this: LiveReplicator, evt: CustomEvent<PeerStatusChangeData>) => void)
+
+

Type declaration

+
+
+ +
#onPeersLeave: ((this: LiveReplicator, evt: CustomEvent<PeerStatusChangeData>) => void)
+
+

Type declaration

+
+
+ +
#onReplicaHeadsUpdate: ((this: LiveReplicator) => void)
+
+

Type declaration

+
+
+ +
_onHeadsMessage: ((this: LiveReplicator, evt: CustomEvent<SignedMessage>) => void)
+
+

Type declaration

+
+
+ +
+
+ +
blocks: IpfsBlocks
+
+ +
components: Pick<DbComponents, "identity" | "entry">
+
+ +
directs: Map<string, Direct>
+
+ +
+
+ +
manifest: Manifest
+
+ +
replica: Replica
+
+ +
shared: Monitor
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.Monitor.html b/classes/_internal_.Monitor.html new file mode 100644 index 00000000..d8810792 --- /dev/null +++ b/classes/_internal_.Monitor.html @@ -0,0 +1,178 @@ +Monitor | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Monitor

+
+

Hierarchy

+
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
#refreshPeers: ((this: Monitor, evt: CustomEvent<SubscriptionChangeData>) => void)
+
+

Type declaration

+
+
+ +
_isStarted: boolean
+
+ +
+
+ +
peers: Set<string>
+
+ +
topic: string
+
+

Methods

+
+ +
    + +
  • +

    Returns boolean

+
+ +
    + +
  • +

    Returns void

+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.Node.html b/classes/_internal_.Node.html new file mode 100644 index 00000000..62427f3f --- /dev/null +++ b/classes/_internal_.Node.html @@ -0,0 +1,172 @@ +Node | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Node

+
+

Hierarchy

+
    +
  • Node
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
denied: Boolean
+
+ +
in: Set<string>
+
+ +
missing: Boolean
+
+ +
out: Set<string>
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.Paily.html b/classes/_internal_.Paily.html new file mode 100644 index 00000000..c6aea72c --- /dev/null +++ b/classes/_internal_.Paily.html @@ -0,0 +1,286 @@ +Paily | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Paily

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
+
+ +
blockFetcher: BlockFetcher
+
+ +
blockstore: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
code: Code
+
+ +
root: Link<ShardEntry[], 113, 18, 1>
+
+

Methods

+
+ +
+
+ +
    + +
  • +

    Returns AsyncIterable<Key>

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/classes/_internal_.Replica.html b/classes/_internal_.Replica.html new file mode 100644 index 00000000..b38f42cb --- /dev/null +++ b/classes/_internal_.Replica.html @@ -0,0 +1,390 @@ +Replica | welo - v2.3.0
+
+ +
+
+
+
+ +

Class Replica

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
#blockstore: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
#datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
#graph: null | Graph
+
+ +
+
+ +
+
+ +
blocks: IpfsBlocks
+
+ +
components: Pick<DbComponents, "identity" | "entry">
+
+ +
+
+ +
identity: IdentityInstance<any>
+
+ +
manifest: Manifest
+
+ +
root: null | CID<unknown, number, number, Version>
+
+

Accessors

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      __namedParameters: {
          direction: "descend" | "ascend";
      } = ...
      +
        +
      • +
        direction: "descend" | "ascend"
    +

    Returns Promise<EntryInstance<any>[]>

+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/functions/basalEntry.html b/functions/basalEntry.html new file mode 100644 index 00000000..876ec5f1 --- /dev/null +++ b/functions/basalEntry.html @@ -0,0 +1,68 @@ +basalEntry | welo - v2.3.0
+
+ +
+
+
+
+ +

Function basalEntry

+
+
+
+
\ No newline at end of file diff --git a/functions/basalIdentity.html b/functions/basalIdentity.html new file mode 100644 index 00000000..241ba15e --- /dev/null +++ b/functions/basalIdentity.html @@ -0,0 +1,68 @@ +basalIdentity | welo - v2.3.0
+
+ +
+
+
+
+ +

Function basalIdentity

+
+
+
+
\ No newline at end of file diff --git a/functions/createWelo.html b/functions/createWelo.html new file mode 100644 index 00000000..f7994df0 --- /dev/null +++ b/functions/createWelo.html @@ -0,0 +1,77 @@ +createWelo | welo - v2.3.0
+
+ +
+
+
+
+ +

Function createWelo

+
+
+
+
\ No newline at end of file diff --git a/functions/keyvalueStore.html b/functions/keyvalueStore.html new file mode 100644 index 00000000..cf0e81e1 --- /dev/null +++ b/functions/keyvalueStore.html @@ -0,0 +1,68 @@ +keyvalueStore | welo - v2.3.0
+
+ +
+
+
+
+ +

Function keyvalueStore

+
+
+
+
\ No newline at end of file diff --git a/functions/liveReplicator.html b/functions/liveReplicator.html new file mode 100644 index 00000000..9c18186c --- /dev/null +++ b/functions/liveReplicator.html @@ -0,0 +1,68 @@ +liveReplicator | welo - v2.3.0
+
+ +
+
+
+
+ +

Function liveReplicator

+
+
+
+
\ No newline at end of file diff --git a/functions/staticAccess-1.html b/functions/staticAccess-1.html new file mode 100644 index 00000000..324a26a3 --- /dev/null +++ b/functions/staticAccess-1.html @@ -0,0 +1,68 @@ +staticAccess | welo - v2.3.0
+
+ +
+
+
+
+ +

Function staticAccess

+
+
+
+
\ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 00000000..3d8ab82c --- /dev/null +++ b/index.html @@ -0,0 +1,79 @@ +welo - v2.3.0
+
+ +
+
+
+
+

welo - v2.3.0

+

npm +Codecov +node-current +NPM +Matrix

+welo opal painting + + + +

welo

+
+

peer-to-peer, collaborative states using Merkle-CRDTs

+

HLDB implementation in Typescript

+ + +

Install

+
+
npm install welo
+
+ + +

Usage

+
+
import { createHelia } from 'helia'
import { createWelo } from 'welo'

/** look at Helia for more configuration */
const ipfs = await createHelia()

/** see more config options in the API docs */
const welo = await createWelo({ ipfs })

/** create a manifest for a keyvalue database */
const manifest = await welo.determine({
name: 'this is the databases name',
type: 'keyvalue'
})

/** open the keyvalue database */
const keyvalue = await welo.open(manifest)

/** The keyvalue API docs are not uploaded yet */

const entryCID = await keyvalue.put('key', 'value')
const value = await keyvalue.get('key')
const entryCID = await keyvalue.del('key') +
+

Check out the tests for more usage examples for now.

+ + +

API

+
+

Check out the API Docs

+ + +

License

+
+

This project is dual licensed under APACHE-2.0 and MIT.

+ + +

Funding

+
+

Thanks to Protocol Labs for funding this project through this grant.

+
+
+
\ No newline at end of file diff --git a/interfaces/Config.html b/interfaces/Config.html new file mode 100644 index 00000000..20bc6bad --- /dev/null +++ b/interfaces/Config.html @@ -0,0 +1,109 @@ +Config | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Config

+
+

Hierarchy

+
    +
  • Config
+
+
+
+ +
+
+

Properties

+
+ +
blocks: IpfsBlocks
+
+ +
components: Components
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
identity: IdentityInstance<any>
+
+ +
+
+ +
keychain: KeyChain
+
+ +
replicators: ReplicatorModule<Replicator, string>[]
+
+
\ No newline at end of file diff --git a/interfaces/Create.html b/interfaces/Create.html new file mode 100644 index 00000000..9e3cbc47 --- /dev/null +++ b/interfaces/Create.html @@ -0,0 +1,102 @@ +Create | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Create

+
+

Hierarchy

+
    +
  • Create
+
+
+
+ +
+
+

Properties

+
+ +
components?: Components
+
+ +
datastore?: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
identity?: IdentityInstance<any>
+
+ +
+
+ +
replicators?: ReplicatorModule<Replicator, string>[]
+
+ +
start?: boolean
+
+
\ No newline at end of file diff --git a/interfaces/Determine.html b/interfaces/Determine.html new file mode 100644 index 00000000..0a796252 --- /dev/null +++ b/interfaces/Determine.html @@ -0,0 +1,116 @@ +Determine | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Determine

+
+

Hierarchy

+
    +
  • Determine
+
+
+
+ +
+
+

Properties

+
+ +
+
+ +
+
+ +
identity?: IdentityProtocol
+
+ +
meta?: any
+
+ +
name: string
+
+ +
protocol?: string
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/OpenOptions.html b/interfaces/OpenOptions.html new file mode 100644 index 00000000..78c8801f --- /dev/null +++ b/interfaces/OpenOptions.html @@ -0,0 +1,88 @@ +OpenOptions | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface OpenOptions

+
+

Hierarchy

+
    +
  • OpenOptions
+
+
+
+ +
+
+

Properties

+
+ +
datastore?: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
identity?: IdentityInstance<any>
+
+ +
provider?: Ed25519PeerId
+
+ +
replicators?: ReplicatorModule<Replicator, string>[]
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.AccessComponent.html b/interfaces/_internal_.AccessComponent.html new file mode 100644 index 00000000..01d17fd6 --- /dev/null +++ b/interfaces/_internal_.AccessComponent.html @@ -0,0 +1,98 @@ +AccessComponent | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface AccessComponent<T, P>

+
+

Type Parameters

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
create: ((config: Open) => T)
+
+

Type declaration

+
    +
  • +
      +
    • (config: Open): T
    • +
    • +
      +

      Parameters

      +
      +

      Returns T

+
+ +
protocol: P
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.AccessInstance.html b/interfaces/_internal_.AccessInstance.html new file mode 100644 index 00000000..f0f62222 --- /dev/null +++ b/interfaces/_internal_.AccessInstance.html @@ -0,0 +1,102 @@ +AccessInstance | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface AccessInstance

+
+

Hierarchy

+
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
canAppend: ((entry: EntryInstance<any>) => Promise<boolean>)
+
+

Type declaration

+
+
+ +
close: (() => Promise<void>)
+
+

Type declaration

+
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.AddressEmit.html b/interfaces/_internal_.AddressEmit.html new file mode 100644 index 00000000..b3bf298b --- /dev/null +++ b/interfaces/_internal_.AddressEmit.html @@ -0,0 +1,71 @@ +AddressEmit | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface AddressEmit

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
address: Address
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.AsManifest.html b/interfaces/_internal_.AsManifest.html new file mode 100644 index 00000000..3e876ddb --- /dev/null +++ b/interfaces/_internal_.AsManifest.html @@ -0,0 +1,68 @@ +AsManifest | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface AsManifest

+
+

Hierarchy

+
    +
  • AsManifest
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
block: BlockView<ManifestData, number, number, 1>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.ClosedEmit.html b/interfaces/_internal_.ClosedEmit.html new file mode 100644 index 00000000..f31a9f7f --- /dev/null +++ b/interfaces/_internal_.ClosedEmit.html @@ -0,0 +1,71 @@ +ClosedEmit | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface ClosedEmit

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
address: Address
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.ComponentProtocol.html b/interfaces/_internal_.ComponentProtocol.html new file mode 100644 index 00000000..9616424b --- /dev/null +++ b/interfaces/_internal_.ComponentProtocol.html @@ -0,0 +1,79 @@ +ComponentProtocol | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface ComponentProtocol<P>

+
+

Type Parameters

+
    +
  • +

    P extends string = string

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
protocol: P
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Components.html b/interfaces/_internal_.Components.html new file mode 100644 index 00000000..c00646d4 --- /dev/null +++ b/interfaces/_internal_.Components.html @@ -0,0 +1,89 @@ +Components | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Components

+
+

Hierarchy

+
    +
  • Components
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
access: AccessComponent<AccessInstance, string>[]
+
+ +
entry: EntryComponent<EntryInstance<unknown>, string>[]
+
+ +
identity: IdentityComponent<IdentityInstance<unknown>, string>[]
+
+ +
store: StoreComponent<StoreInstance, string>[]
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Config-1.html b/interfaces/_internal_.Config-1.html new file mode 100644 index 00000000..e7d0cd90 --- /dev/null +++ b/interfaces/_internal_.Config-1.html @@ -0,0 +1,70 @@ +Config | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Config

+
+

Hierarchy

+
    +
  • Record<string, unknown> +
      +
    • Config
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
snap?: CID<unknown, number, number, Version>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Config-2.html b/interfaces/_internal_.Config-2.html new file mode 100644 index 00000000..a43f3e1d --- /dev/null +++ b/interfaces/_internal_.Config-2.html @@ -0,0 +1,103 @@ +Config | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Config

+
+

Hierarchy

+
    +
  • Config
+
+
+
+ +
+
+

Properties

+
+ +
blocks: IpfsBlocks
+
+ +
blockstore: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
+
+ +
provider?: Ed25519PeerId
+
+ +
replica: Replica
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Config.html b/interfaces/_internal_.Config.html new file mode 100644 index 00000000..56955382 --- /dev/null +++ b/interfaces/_internal_.Config.html @@ -0,0 +1,70 @@ +Config | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Config

+
+

Hierarchy

+
    +
  • Record<string, unknown> +
      +
    • Config
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
write: (string | Uint8Array)[]
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Create.html b/interfaces/_internal_.Create.html new file mode 100644 index 00000000..20da40dc --- /dev/null +++ b/interfaces/_internal_.Create.html @@ -0,0 +1,102 @@ +Create | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Create

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
identity: IdentityInstance<any>
+
+ +
next: CID<unknown, number, number, Version>[]
+
+ +
payload: any
+
+ +
refs: CID<unknown, number, number, Version>[]
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Creator.html b/interfaces/_internal_.Creator.html new file mode 100644 index 00000000..b4d8a686 --- /dev/null +++ b/interfaces/_internal_.Creator.html @@ -0,0 +1,134 @@ +Creator | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/interfaces/_internal_.DbComponents.html b/interfaces/_internal_.DbComponents.html new file mode 100644 index 00000000..7e0d14c1 --- /dev/null +++ b/interfaces/_internal_.DbComponents.html @@ -0,0 +1,89 @@ +DbComponents | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface DbComponents

+
+

Hierarchy

+
    +
  • DbComponents
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
entry: EntryComponent<EntryInstance<unknown>, string>
+
+ +
identity: IdentityComponent<IdentityInstance<unknown>, string>
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.DbConfig.html b/interfaces/_internal_.DbConfig.html new file mode 100644 index 00000000..8fe55d01 --- /dev/null +++ b/interfaces/_internal_.DbConfig.html @@ -0,0 +1,139 @@ +DbConfig | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface DbConfig

+
+

Hierarchy

+
    +
  • Omit<DbOpen, "start" | "ipfs" | "replicators"> +
      +
    • DbConfig
+
+
+
+ +
+
+

Properties

+
+ +
+
+ +
blocks: IpfsBlocks
+
+ +
components: DbComponents
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
identity: IdentityInstance<any>
+
+ +
manifest: Manifest
+
+ +
provider?: Ed25519PeerId
+
+ +
replica: Replica
+
+ +
replicators: Replicator[]
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.DbEvents.html b/interfaces/_internal_.DbEvents.html new file mode 100644 index 00000000..c6a9ab31 --- /dev/null +++ b/interfaces/_internal_.DbEvents.html @@ -0,0 +1,75 @@ +DbEvents | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface DbEvents

+
+

Hierarchy

+
    +
  • DbEvents
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
update: CustomEvent<undefined>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.DbOpen.html b/interfaces/_internal_.DbOpen.html new file mode 100644 index 00000000..ff64a3b0 --- /dev/null +++ b/interfaces/_internal_.DbOpen.html @@ -0,0 +1,124 @@ +DbOpen | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface DbOpen

+
+

Hierarchy

+
    +
  • DbOpen
+
+
+
+ +
+
+

Properties

+
+ +
blocks: IpfsBlocks
+
+ +
components: DbComponents
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
identity: IdentityInstance<any>
+
+ +
+
+ +
manifest: Manifest
+
+ +
provider?: Ed25519PeerId
+
+ +
replicators: ReplicatorModule<Replicator, string>[]
+
+ +
start?: boolean
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Del.html b/interfaces/_internal_.Del.html new file mode 100644 index 00000000..4780822d --- /dev/null +++ b/interfaces/_internal_.Del.html @@ -0,0 +1,75 @@ +Del | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Del

+
+

Hierarchy

+
    +
  • Del
+
+
+
+ +
+
+

Properties

+
key +op +
+
+

Properties

+
+ +
key: string
+
+ +
op: "DEL"
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.DirectEvents.html b/interfaces/_internal_.DirectEvents.html new file mode 100644 index 00000000..466a2166 --- /dev/null +++ b/interfaces/_internal_.DirectEvents.html @@ -0,0 +1,82 @@ +DirectEvents | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface DirectEvents

+
+

Hierarchy

+
    +
  • DirectEvents
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
peered: CustomEvent<undefined>
+
+ +
unpeered: CustomEvent<undefined>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.EntryComponent.html b/interfaces/_internal_.EntryComponent.html new file mode 100644 index 00000000..403d7eb4 --- /dev/null +++ b/interfaces/_internal_.EntryComponent.html @@ -0,0 +1,158 @@ +EntryComponent | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface EntryComponent<T, P>

+
+

Type Parameters

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
asEntry: ((entry: AsEntry<unknown>) => Promise<null | T>)
+
+

Type declaration

+
+
+ +
create: ((create: Create) => Promise<T>)
+
+

Type declaration

+
+
+ +
fetch: ((fetch: Fetch) => Promise<T>)
+
+

Type declaration

+
+
+ +
protocol: P
+
+ +
verify: ((entry: AsEntry<unknown>) => Promise<boolean>)
+
+

Type declaration

+
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.EntryData.html b/interfaces/_internal_.EntryData.html new file mode 100644 index 00000000..c09510b9 --- /dev/null +++ b/interfaces/_internal_.EntryData.html @@ -0,0 +1,96 @@ +EntryData | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface EntryData

+
+

Hierarchy

+
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
next: CID<unknown, number, number, Version>[]
+
+ +
payload: any
+
+ +
refs: CID<unknown, number, number, Version>[]
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.EntryInstance.html b/interfaces/_internal_.EntryInstance.html new file mode 100644 index 00000000..1780e064 --- /dev/null +++ b/interfaces/_internal_.EntryInstance.html @@ -0,0 +1,125 @@ +EntryInstance | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface EntryInstance<Value>

+
+

Type Parameters

+
    +
  • +

    Value

+
+

Hierarchy

+
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
block: BlockView<Value, number, number, 1>
+
+ +
cid: CID<unknown, number, number, Version>
+
+ +
identity: IdentityInstance<any>
+
+ +
next: CID<unknown, number, number, Version>[]
+
+ +
payload: any
+
+ +
refs: CID<unknown, number, number, Version>[]
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Events-1.html b/interfaces/_internal_.Events-1.html new file mode 100644 index 00000000..28d49f75 --- /dev/null +++ b/interfaces/_internal_.Events-1.html @@ -0,0 +1,68 @@ +Events | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Events

+
+

Hierarchy

+
    +
  • Events
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
update: CustomEvent<undefined>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Events.html b/interfaces/_internal_.Events.html new file mode 100644 index 00000000..676b85fb --- /dev/null +++ b/interfaces/_internal_.Events.html @@ -0,0 +1,75 @@ +Events | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Events

+
+

Hierarchy

+
    +
  • Events
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Fetch-1.html b/interfaces/_internal_.Fetch-1.html new file mode 100644 index 00000000..dad62823 --- /dev/null +++ b/interfaces/_internal_.Fetch-1.html @@ -0,0 +1,89 @@ +Fetch | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Fetch

+
+

Hierarchy

+
    +
  • Fetch
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
blocks: IpfsBlocks
+
+ +
cid: CID<unknown, number, number, Version>
+
+ +
identity: IdentityComponent<any, string>
+
+ +
timeout?: number
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Fetch-2.html b/interfaces/_internal_.Fetch-2.html new file mode 100644 index 00000000..b41c6490 --- /dev/null +++ b/interfaces/_internal_.Fetch-2.html @@ -0,0 +1,75 @@ +Fetch | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Fetch

+
+

Hierarchy

+
    +
  • Fetch
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
auth: CID<unknown, number, number, Version>
+
+ +
blocks: IpfsBlocks
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Fetch.html b/interfaces/_internal_.Fetch.html new file mode 100644 index 00000000..8e6f1aa2 --- /dev/null +++ b/interfaces/_internal_.Fetch.html @@ -0,0 +1,75 @@ +Fetch | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Fetch

+
+

Hierarchy

+
    +
  • Fetch
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
address: Address
+
+ +
blocks: IpfsBlocks
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Get.html b/interfaces/_internal_.Get.html new file mode 100644 index 00000000..fa6a2f9d --- /dev/null +++ b/interfaces/_internal_.Get.html @@ -0,0 +1,82 @@ +Get | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Get

+
+

Hierarchy

+
    +
  • Get
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
identities: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
keychain: KeyChain
+
+ +
name: string
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.GraphChangeData.html b/interfaces/_internal_.GraphChangeData.html new file mode 100644 index 00000000..f70fe9a2 --- /dev/null +++ b/interfaces/_internal_.GraphChangeData.html @@ -0,0 +1,68 @@ +GraphChangeData | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface GraphChangeData

+
+

Hierarchy

+
    +
  • GraphChangeData
+
+
+
+ +
+
+

Properties

+
cid +
+
+

Properties

+
+ +
cid: CID<unknown, number, number, Version>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.GraphEvents.html b/interfaces/_internal_.GraphEvents.html new file mode 100644 index 00000000..b7eca853 --- /dev/null +++ b/interfaces/_internal_.GraphEvents.html @@ -0,0 +1,82 @@ +GraphEvents | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface GraphEvents

+
+

Hierarchy

+
    +
  • GraphEvents
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.IdentityComponent.html b/interfaces/_internal_.IdentityComponent.html new file mode 100644 index 00000000..2e0d2519 --- /dev/null +++ b/interfaces/_internal_.IdentityComponent.html @@ -0,0 +1,244 @@ +IdentityComponent | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface IdentityComponent<T, P>

+
+

Type Parameters

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
asIdentity: ((asIdentity: AsIdentity<unknown>) => null | T)
+
+

Type declaration

+
    +
  • +
      +
    • (asIdentity: AsIdentity<unknown>): null | T
    • +
    • +
      +

      Parameters

      +
      +

      Returns null | T

+
+ +
export: ((exp: Get) => Promise<Uint8Array>)
+
+

Type declaration

+
+
+ +
fetch: ((fetch: Fetch) => Promise<T>)
+
+

Type declaration

+
+
+ +
gen: ((gen: string) => Promise<T>)
+
+

Type declaration

+
    +
  • +
      +
    • (gen: string): Promise<T>
    • +
    • +
      +

      Parameters

      +
        +
      • +
        gen: string
      +

      Returns Promise<T>

+
+ +
get: ((get: Get) => Promise<T>)
+
+

Type declaration

+
+
+ +
import: ((imp: Import) => Promise<T>)
+
+

Type declaration

+
+
+ +
protocol: P
+
+ +
sign: ((identity: AsIdentity<unknown>, data: Uint8Array) => Promise<Uint8Array>)
+
+

Type declaration

+
+
+ +
verify: ((identity: AsIdentity<unknown>, data: Uint8Array, sig: Uint8Array) => Promise<boolean>)
+
+

Type declaration

+
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.IdentityInstance.html b/interfaces/_internal_.IdentityInstance.html new file mode 100644 index 00000000..2665e157 --- /dev/null +++ b/interfaces/_internal_.IdentityInstance.html @@ -0,0 +1,140 @@ +IdentityInstance | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface IdentityInstance<Value>

+
+

Type Parameters

+
    +
  • +

    Value

+
+

Hierarchy

+
    +
  • IdentityInstance
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
auth: CID<unknown, number, number, Version>
+
+ +
block: BlockView<Value, number, number, 1>
+
+ +
+
+ +
name?: string
+
+ +
sign: ((data: Uint8Array) => Promise<Uint8Array>)
+
+

Type declaration

+
+
+ +
verify: ((data: Uint8Array, sig: Uint8Array) => Promise<boolean>)
+
+

Type declaration

+
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.IdentityValue.html b/interfaces/_internal_.IdentityValue.html new file mode 100644 index 00000000..c27c858c --- /dev/null +++ b/interfaces/_internal_.IdentityValue.html @@ -0,0 +1,82 @@ +IdentityValue | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface IdentityValue

+
+

Hierarchy

+
    +
  • IdentityValue
+
+
+
+ +
+
+

Properties

+
id +pub +sig +
+
+

Properties

+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Import.html b/interfaces/_internal_.Import.html new file mode 100644 index 00000000..46abf9f1 --- /dev/null +++ b/interfaces/_internal_.Import.html @@ -0,0 +1,89 @@ +Import | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Import

+
+

Hierarchy

+
    +
  • Import
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
identities?: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
keychain?: KeyChain
+
+ +
+
+ +
name: string
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.ManifestData.html b/interfaces/_internal_.ManifestData.html new file mode 100644 index 00000000..fd942d7b --- /dev/null +++ b/interfaces/_internal_.ManifestData.html @@ -0,0 +1,110 @@ +ManifestData | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface ManifestData

+
+

Hierarchy

+
    +
  • ManifestData
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
access: Protocol<string, Record<string, unknown>>
+
+ +
entry: Protocol<string, Record<string, unknown>>
+
+ +
identity: Protocol<string, Record<string, unknown>>
+
+ +
meta?: any
+
+ +
name: string
+
+ +
store: Protocol<string, Record<string, unknown>>
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.MonitorEvents.html b/interfaces/_internal_.MonitorEvents.html new file mode 100644 index 00000000..c2a941ad --- /dev/null +++ b/interfaces/_internal_.MonitorEvents.html @@ -0,0 +1,82 @@ +MonitorEvents | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface MonitorEvents

+
+

Hierarchy

+
    +
  • MonitorEvents
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
+
+ +
update: CustomEvent<undefined>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.NodeObj.html b/interfaces/_internal_.NodeObj.html new file mode 100644 index 00000000..e5ac60a3 --- /dev/null +++ b/interfaces/_internal_.NodeObj.html @@ -0,0 +1,93 @@ +NodeObj | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface NodeObj

+
+

Hierarchy

+
    +
  • NodeObj
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
denied: Boolean
+
+ +
in: Set<string>
+
+ +
missing: Boolean
+
+ +
out: Set<string>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.NodeValue.html b/interfaces/_internal_.NodeValue.html new file mode 100644 index 00000000..ae4638a7 --- /dev/null +++ b/interfaces/_internal_.NodeValue.html @@ -0,0 +1,89 @@ +NodeValue | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface NodeValue

+
+

Hierarchy

+
    +
  • NodeValue
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
denied: Boolean
+
+ +
in: string[]
+
+ +
missing: Boolean
+
+ +
out: string[]
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Open.html b/interfaces/_internal_.Open.html new file mode 100644 index 00000000..99d4b528 --- /dev/null +++ b/interfaces/_internal_.Open.html @@ -0,0 +1,68 @@ +Open | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Open

+
+

Hierarchy

+
    +
  • Open
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
manifest: Manifest
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.OpenedEmit.html b/interfaces/_internal_.OpenedEmit.html new file mode 100644 index 00000000..b40194a9 --- /dev/null +++ b/interfaces/_internal_.OpenedEmit.html @@ -0,0 +1,71 @@ +OpenedEmit | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface OpenedEmit

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
address: Address
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.PeerStatusChangeData.html b/interfaces/_internal_.PeerStatusChangeData.html new file mode 100644 index 00000000..17681820 --- /dev/null +++ b/interfaces/_internal_.PeerStatusChangeData.html @@ -0,0 +1,68 @@ +PeerStatusChangeData | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface PeerStatusChangeData

+
+

Hierarchy

+
    +
  • PeerStatusChangeData
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
peerId: PeerId
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Props.html b/interfaces/_internal_.Props.html new file mode 100644 index 00000000..63e13639 --- /dev/null +++ b/interfaces/_internal_.Props.html @@ -0,0 +1,96 @@ +Props | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Props

+
+

Hierarchy

+
    +
  • Props
+
+
+
+ +
+
+

Properties

+
+ +
blocks: IpfsBlocks
+
+ +
blockstore: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
datastore: Datastore<{}, {}, {}, {}, {}, {}, {}, {}, {}, {}>
+
+ +
manifest: Manifest
+
+ +
replica: Replica
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Protocol.html b/interfaces/_internal_.Protocol.html new file mode 100644 index 00000000..5c4d6ae5 --- /dev/null +++ b/interfaces/_internal_.Protocol.html @@ -0,0 +1,82 @@ +Protocol | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Protocol<T, C>

+
+

Type Parameters

+
    +
  • +

    T extends string = string

  • +
  • +

    C extends Record<string, unknown> = Record<string, unknown>

+
+

Hierarchy

+
    +
  • Protocol
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
config?: C
+
+ +
protocol: T
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Put.html b/interfaces/_internal_.Put.html new file mode 100644 index 00000000..11bc7e41 --- /dev/null +++ b/interfaces/_internal_.Put.html @@ -0,0 +1,82 @@ +Put | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Put

+
+

Hierarchy

+
    +
  • Put
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
key: string
+
+ +
op: "PUT"
+
+ +
value: any
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.ReplicaEvents.html b/interfaces/_internal_.ReplicaEvents.html new file mode 100644 index 00000000..50ec5bc4 --- /dev/null +++ b/interfaces/_internal_.ReplicaEvents.html @@ -0,0 +1,75 @@ +ReplicaEvents | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface ReplicaEvents

+
+

Hierarchy

+
    +
  • ReplicaEvents
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
update: CustomEvent<undefined>
+
+ +
write: CustomEvent<undefined>
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Replicator.html b/interfaces/_internal_.Replicator.html new file mode 100644 index 00000000..98cc6b38 --- /dev/null +++ b/interfaces/_internal_.Replicator.html @@ -0,0 +1,99 @@ +Replicator | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Replicator

+
+

Implements Libp2p's Startable interface for easy reuse with async code.

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Methods

+
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.ReplicatorModule.html b/interfaces/_internal_.ReplicatorModule.html new file mode 100644 index 00000000..17dc9edb --- /dev/null +++ b/interfaces/_internal_.ReplicatorModule.html @@ -0,0 +1,98 @@ +ReplicatorModule | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface ReplicatorModule<T, P>

+
+

Type Parameters

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
create: ((config: Config) => T)
+
+

Type declaration

+
    +
  • +
      +
    • (config: Config): T
    • +
    • +
      +

      Parameters

      +
      +

      Returns T

+
+ +
protocol: P
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.Selector.html b/interfaces/_internal_.Selector.html new file mode 100644 index 00000000..6a3883bc --- /dev/null +++ b/interfaces/_internal_.Selector.html @@ -0,0 +1,145 @@ +Selector | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface Selector

+
+

Hierarchy

+
    +
  • Selector
+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      state: any
    +

    Returns ((...args: any[]) => any)

    +
      +
    • +
        +
      • (...args: any[]): any
      • +
      • +
        +

        Parameters

        +
          +
        • +
          Rest ...args: any[]
        +

        Returns any

+
+
\ No newline at end of file diff --git a/interfaces/_internal_.SignedEntry.html b/interfaces/_internal_.SignedEntry.html new file mode 100644 index 00000000..6975aa4f --- /dev/null +++ b/interfaces/_internal_.SignedEntry.html @@ -0,0 +1,82 @@ +SignedEntry | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface SignedEntry

+
+

Hierarchy

+
    +
  • SignedEntry
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
auth: CID<unknown, number, number, Version>
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.StoreComponent.html b/interfaces/_internal_.StoreComponent.html new file mode 100644 index 00000000..5fba9fc5 --- /dev/null +++ b/interfaces/_internal_.StoreComponent.html @@ -0,0 +1,98 @@ +StoreComponent | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface StoreComponent<T, P>

+
+

Type Parameters

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
create: ((props: Props) => T)
+
+

Type declaration

+
    +
  • +
      +
    • (props: Props): T
    • +
    • +
      +

      Parameters

      +
      +

      Returns T

+
+ +
protocol: P
+
+
\ No newline at end of file diff --git a/interfaces/_internal_.StoreInstance.html b/interfaces/_internal_.StoreInstance.html new file mode 100644 index 00000000..4a19133a --- /dev/null +++ b/interfaces/_internal_.StoreInstance.html @@ -0,0 +1,103 @@ +StoreInstance | welo - v2.3.0
+
+ +
+
+
+
+ +

Interface StoreInstance

+
+

Hierarchy

+
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
creators: Record<string, Creator>
+
+ +
+
+ +
latest: (() => Promise<any>)
+
+

Type declaration

+
+
+ +
selectors: Record<string, Selector>
+
+
\ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 00000000..5bd45d69 --- /dev/null +++ b/modules.html @@ -0,0 +1,75 @@ +welo - v2.3.0
+
+ +
+
+
+
+

welo - v2.3.0

+
+

peer-to-peer, collaborative states using merkle-crdts

+
+
+
+

Index

+
+

Modules

+
+
+

Classes

+
+
+

Interfaces

+
+
+

Functions

+
+
+
\ No newline at end of file diff --git a/modules/_internal_.html b/modules/_internal_.html new file mode 100644 index 00000000..5186edab --- /dev/null +++ b/modules/_internal_.html @@ -0,0 +1,209 @@ +<internal> | welo - v2.3.0
+
+ +
+
+ +
+
\ No newline at end of file diff --git a/types/_internal_.AccessProtocol.html b/types/_internal_.AccessProtocol.html new file mode 100644 index 00000000..d9a47219 --- /dev/null +++ b/types/_internal_.AccessProtocol.html @@ -0,0 +1,121 @@ +AccessProtocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.AsEntry.html b/types/_internal_.AsEntry.html new file mode 100644 index 00000000..c946cf07 --- /dev/null +++ b/types/_internal_.AsEntry.html @@ -0,0 +1,126 @@ +AsEntry | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.AsIdentity.html b/types/_internal_.AsIdentity.html new file mode 100644 index 00000000..01008eff --- /dev/null +++ b/types/_internal_.AsIdentity.html @@ -0,0 +1,126 @@ +AsIdentity | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.Code.html b/types/_internal_.Code.html new file mode 100644 index 00000000..41578cbe --- /dev/null +++ b/types/_internal_.Code.html @@ -0,0 +1,121 @@ +Code | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.EntryProtocol.html b/types/_internal_.EntryProtocol.html new file mode 100644 index 00000000..14c4a6b4 --- /dev/null +++ b/types/_internal_.EntryProtocol.html @@ -0,0 +1,121 @@ +EntryProtocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.GossipHelia.html b/types/_internal_.GossipHelia.html new file mode 100644 index 00000000..0786caaa --- /dev/null +++ b/types/_internal_.GossipHelia.html @@ -0,0 +1,126 @@ +GossipHelia | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.GossipLibp2p.html b/types/_internal_.GossipLibp2p.html new file mode 100644 index 00000000..e59dec9e --- /dev/null +++ b/types/_internal_.GossipLibp2p.html @@ -0,0 +1,126 @@ +GossipLibp2p | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.GossipServiceMap.html b/types/_internal_.GossipServiceMap.html new file mode 100644 index 00000000..13629adc --- /dev/null +++ b/types/_internal_.GossipServiceMap.html @@ -0,0 +1,121 @@ +GossipServiceMap | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.GraphRoot.html b/types/_internal_.GraphRoot.html new file mode 100644 index 00000000..2ca99214 --- /dev/null +++ b/types/_internal_.GraphRoot.html @@ -0,0 +1,121 @@ +GraphRoot | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.GraphState.html b/types/_internal_.GraphState.html new file mode 100644 index 00000000..1915310a --- /dev/null +++ b/types/_internal_.GraphState.html @@ -0,0 +1,121 @@ +GraphState | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.IdentityProtocol.html b/types/_internal_.IdentityProtocol.html new file mode 100644 index 00000000..0fdbee04 --- /dev/null +++ b/types/_internal_.IdentityProtocol.html @@ -0,0 +1,121 @@ +IdentityProtocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.StateKeys.html b/types/_internal_.StateKeys.html new file mode 100644 index 00000000..27ecc607 --- /dev/null +++ b/types/_internal_.StateKeys.html @@ -0,0 +1,121 @@ +StateKeys | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/types/_internal_.StoreProtocol.html b/types/_internal_.StoreProtocol.html new file mode 100644 index 00000000..de97536e --- /dev/null +++ b/types/_internal_.StoreProtocol.html @@ -0,0 +1,121 @@ +StoreProtocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/variables/_internal_.protocol-1.html b/variables/_internal_.protocol-1.html new file mode 100644 index 00000000..1d5df934 --- /dev/null +++ b/variables/_internal_.protocol-1.html @@ -0,0 +1,121 @@ +protocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/variables/_internal_.protocol-2.html b/variables/_internal_.protocol-2.html new file mode 100644 index 00000000..4f30f9a3 --- /dev/null +++ b/variables/_internal_.protocol-2.html @@ -0,0 +1,121 @@ +protocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/variables/_internal_.protocol-3.html b/variables/_internal_.protocol-3.html new file mode 100644 index 00000000..91f15fe4 --- /dev/null +++ b/variables/_internal_.protocol-3.html @@ -0,0 +1,121 @@ +protocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file diff --git a/variables/_internal_.protocol-4.html b/variables/_internal_.protocol-4.html new file mode 100644 index 00000000..00cbe717 --- /dev/null +++ b/variables/_internal_.protocol-4.html @@ -0,0 +1,121 @@ +protocol | welo - v2.3.0
+
+ +
+ +
\ No newline at end of file