sbv2-solana/website/static/api/py/search.js

46 lines
540 KiB
JavaScript

window.pdocSearch = (function(){
/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[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.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u<s.length;u++){var a=s[u];r[a]=this.pipeline.run(t.tokenizer(e[a]))}var l={};for(var c in o){var d=r[c]||r.any;if(d){var f=this.fieldSearch(d,c,o),h=o[c].boost;for(var p in f)f[p]=f[p]*h;for(var p in f)p in l?l[p]+=f[p]:l[p]=f[p]}}var v,g=[];for(var p in l)v={ref:p,score:l[p]},this.documentStore.hasDoc(p)&&(v.doc=this.documentStore.getDoc(p)),g.push(v);return g.sort(function(e,t){return t.score-e.score}),g},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=n[t].boost,s=null,u={};return 0!==r?(e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var r={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(s&&"AND"==i){var l={};for(var c in s)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(u,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in r?r[c]+=v:r[c]=v}},this),s=this.mergeScores(s,r,i)},this),s=this.coordNorm(s,u,e.length)):void 0},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,S=/(at|bl|iz)$/,x=new RegExp("([^aeiouylsz])\\1$"),w=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=S,a=x,l=w,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0}},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return!1;t=t[e[n]]}return!0},t.InvertedIndex.prototype.getNode=function(e){if(!e)return null;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return null;t=t[e[n]]}return t},t.InvertedIndex.prototype.getDocs=function(e){var t=this.getNode(e);return null==t?{}:t.docs},t.InvertedIndex.prototype.getTermFrequency=function(e,t){var n=this.getNode(e);return null==n?0:t in n.docs?n.docs[t].tf:0},t.InvertedIndex.prototype.getDocFreq=function(e){var t=this.getNode(e);return null==t?0:t.df},t.InvertedIndex.prototype.removeToken=function(e,t){if(e){var n=this.getNode(e);null!=n&&t in n.docs&&(delete n.docs[t],n.df-=1)}},t.InvertedIndex.prototype.expandToken=function(e,t,n){if(null==e||""==e)return[];var t=t||[];if(void 0==n&&(n=this.getNode(e),null==n))return t;n.df>0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e<arguments.length;e++)t=arguments[e],~this.indexOf(t)||this.elements.splice(this.locationFor(t),0,t);this.length=this.elements.length},lunr.SortedSet.prototype.toArray=function(){return this.elements.slice()},lunr.SortedSet.prototype.map=function(e,t){return this.elements.map(e,t)},lunr.SortedSet.prototype.forEach=function(e,t){return this.elements.forEach(e,t)},lunr.SortedSet.prototype.indexOf=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]<u[i]?n++:s[n]>u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o<r.length;o++)i.add(r[o]);return i},lunr.SortedSet.prototype.toJSON=function(){return this.toArray()},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
/** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"switchboardpy": {"fullname": "switchboardpy", "modulename": "switchboardpy", "type": "module", "doc": "<p>The Switchboard Python v2 Wrapper.</p>\n"}, "switchboardpy.AccountParams": {"fullname": "switchboardpy.AccountParams", "modulename": "switchboardpy", "qualname": "AccountParams", "type": "class", "doc": "<p>program referencing the Switchboard program and IDL.</p>\n"}, "switchboardpy.AccountParams.__init__": {"fullname": "switchboardpy.AccountParams.__init__", "modulename": "switchboardpy", "qualname": "AccountParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n program: anchorpy.program.core.Program,\n public_key: solana.publickey.PublicKey = None,\n keypair: solana.keypair.Keypair = None\n)", "funcdef": "def"}, "switchboardpy.AccountParams.program": {"fullname": "switchboardpy.AccountParams.program", "modulename": "switchboardpy", "qualname": "AccountParams.program", "type": "variable", "doc": "<p>Public key of the account being referenced. This will always be populated\nwithin the account wrapper.</p>\n", "annotation": ": anchorpy.program.core.Program"}, "switchboardpy.AccountParams.public_key": {"fullname": "switchboardpy.AccountParams.public_key", "modulename": "switchboardpy", "qualname": "AccountParams.public_key", "type": "variable", "doc": "<p>Keypair of the account being referenced. This may not always be populated.</p>\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.AccountParams.keypair": {"fullname": "switchboardpy.AccountParams.keypair", "modulename": "switchboardpy", "qualname": "AccountParams.keypair", "type": "variable", "doc": "<p></p>\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.AggregatorAccount": {"fullname": "switchboardpy.AggregatorAccount", "modulename": "switchboardpy", "qualname": "AggregatorAccount", "type": "class", "doc": "<p>AggregatorAccount is the wrapper for an Aggregator, the structure for that keeps aggregated feed data / metadata.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This aggregator's public key\n keypair (Keypair | None): this aggregator's keypair</p>\n"}, "switchboardpy.AggregatorAccount.__init__": {"fullname": "switchboardpy.AggregatorAccount.__init__", "modulename": "switchboardpy", "qualname": "AggregatorAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.AggregatorAccount.keypair": {"fullname": "switchboardpy.AggregatorAccount.keypair", "modulename": "switchboardpy", "qualname": "AggregatorAccount.keypair", "type": "variable", "doc": "<p>Get name of an aggregator.</p>\n\n<p>Args:\n aggregator (Any): Anchor-loaded aggregator</p>\n\n<p>Returns:\n name string of the aggregator</p>\n"}, "switchboardpy.AggregatorAccount.get_name": {"fullname": "switchboardpy.AggregatorAccount.get_name", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_name", "type": "function", "doc": "<p></p>\n", "signature": "(aggregator: Any) -> str", "funcdef": "def"}, "switchboardpy.AggregatorAccount.load_data": {"fullname": "switchboardpy.AggregatorAccount.load_data", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.load_history": {"fullname": "switchboardpy.AggregatorAccount.load_history", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_history", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator: Any = None) -> Any", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.get_latest_value": {"fullname": "switchboardpy.AggregatorAccount.get_latest_value", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_latest_value", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"fullname": "switchboardpy.AggregatorAccount.get_latest_feed_timestamp", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_latest_feed_timestamp", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.should_report_value": {"fullname": "switchboardpy.AggregatorAccount.should_report_value", "modulename": "switchboardpy", "qualname": "AggregatorAccount.should_report_value", "type": "function", "doc": "<p></p>\n", "signature": "(value: decimal.Decimal, aggregator: Optional[Any] = None) -> bool", "funcdef": "def"}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"fullname": "switchboardpy.AggregatorAccount.get_confirmed_round_results", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_confirmed_round_results", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.produce_job_hash": {"fullname": "switchboardpy.AggregatorAccount.produce_job_hash", "modulename": "switchboardpy", "qualname": "AggregatorAccount.produce_job_hash", "type": "function", "doc": "<p></p>\n", "signature": "(jobs: list[job_schemas_pb2.OracleJob])", "funcdef": "def"}, "switchboardpy.AggregatorAccount.load_jobs": {"fullname": "switchboardpy.AggregatorAccount.load_jobs", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_jobs", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.load_hashes": {"fullname": "switchboardpy.AggregatorAccount.load_hashes", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_hashes", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.size": {"fullname": "switchboardpy.AggregatorAccount.size", "modulename": "switchboardpy", "qualname": "AggregatorAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.AggregatorAccount.create": {"fullname": "switchboardpy.AggregatorAccount.create", "modulename": "switchboardpy", "qualname": "AggregatorAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n aggregator_init_params: switchboardpy.aggregator.AggregatorInitParams\n)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_history_buffer": {"fullname": "switchboardpy.AggregatorAccount.set_history_buffer", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_history_buffer", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetHistoryBufferParams\n)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.open_round": {"fullname": "switchboardpy.AggregatorAccount.open_round", "modulename": "switchboardpy", "qualname": "AggregatorAccount.open_round", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.aggregator.AggregatorOpenRoundParams)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_min_jobs": {"fullname": "switchboardpy.AggregatorAccount.set_min_jobs", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_min_jobs", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.aggregator.AggregatorSetMinJobsParams)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.add_job": {"fullname": "switchboardpy.AggregatorAccount.add_job", "modulename": "switchboardpy", "qualname": "AggregatorAccount.add_job", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n job: switchboardpy.job.JobAccount,\n weight: int = 0,\n authority: Optional[solana.keypair.Keypair] = None\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_batch_size": {"fullname": "switchboardpy.AggregatorAccount.set_batch_size", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_batch_size", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetBatchSizeParams\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"fullname": "switchboardpy.AggregatorAccount.set_variance_threshold", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_variance_threshold", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetVarianceThresholdParams\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_min_oracles": {"fullname": "switchboardpy.AggregatorAccount.set_min_oracles", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_min_oracles", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetMinOraclesParams\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_update_interval": {"fullname": "switchboardpy.AggregatorAccount.set_update_interval", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_update_interval", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetUpdateIntervalParams\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.lock": {"fullname": "switchboardpy.AggregatorAccount.lock", "modulename": "switchboardpy", "qualname": "AggregatorAccount.lock", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n authority: Optional[solana.keypair.Keypair] = None\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_authority": {"fullname": "switchboardpy.AggregatorAccount.set_authority", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_authority", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n new_authority: solana.keypair.Keypair,\n current_authority: Optional[solana.keypair.Keypair] = None\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.remove_job": {"fullname": "switchboardpy.AggregatorAccount.remove_job", "modulename": "switchboardpy", "qualname": "AggregatorAccount.remove_job", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n aggregator: Any,\n oracle_account: switchboardpy.oracle.OracleAccount,\n params: switchboardpy.aggregator.AggregatorSaveResultParams\n) -> <function NewType.<locals>.new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.get_oracle_index": {"fullname": "switchboardpy.AggregatorAccount.get_oracle_index", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_oracle_index", "type": "function", "doc": "<p></p>\n", "signature": "(self, oracle_pubkey: solana.publickey.PublicKey)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.save_result_txn": {"fullname": "switchboardpy.AggregatorAccount.save_result_txn", "modulename": "switchboardpy", "qualname": "AggregatorAccount.save_result_txn", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n aggregator: Any,\n oracle_account: switchboardpy.oracle.OracleAccount,\n params: switchboardpy.aggregator.AggregatorSaveResultParams\n)", "funcdef": "async def"}, "switchboardpy.AggregatorHistoryRow": {"fullname": "switchboardpy.AggregatorHistoryRow", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow", "type": "class", "doc": "<p>AggregatorHistoryRow is a wrapper for the row structure of elements in the aggregator history buffer.</p>\n\n<p>Attributes:\n timestamp (int): timestamp of the aggregator result\n value (Decimal): Aggregator value at the timestamp</p>\n"}, "switchboardpy.AggregatorHistoryRow.__init__": {"fullname": "switchboardpy.AggregatorHistoryRow.__init__", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, timestamp: int, value: decimal.Decimal)", "funcdef": "def"}, "switchboardpy.AggregatorHistoryRow.value": {"fullname": "switchboardpy.AggregatorHistoryRow.value", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow.value", "type": "variable", "doc": "<p>Generate an AggregatorHistoryRow from a retrieved buffer representation</p>\n\n<p>Args:\n buf (list): Anchor-loaded buffer representation of AggregatorHistoryRow</p>\n\n<p>Returns:\n AggregatorHistoryRow</p>\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"fullname": "switchboardpy.AggregatorHistoryRow.from_buffer", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow.from_buffer", "type": "function", "doc": "<p></p>\n", "signature": "(buf: bytes)", "funcdef": "def"}, "switchboardpy.AggregatorInitParams": {"fullname": "switchboardpy.AggregatorInitParams", "modulename": "switchboardpy", "qualname": "AggregatorInitParams", "type": "class", "doc": "<p>Number of oracles to request on aggregator update.</p>\n"}, "switchboardpy.AggregatorInitParams.__init__": {"fullname": "switchboardpy.AggregatorInitParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n batch_size: int,\n min_required_oracle_results: int,\n min_required_job_results: int,\n min_update_delay_seconds: int,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n name: bytes = None,\n metadata: bytes = None,\n start_after: int = None,\n variance_threshold: decimal.Decimal = None,\n force_report_period: int = None,\n expiration: int = None,\n keypair: solana.keypair.Keypair = None,\n author_wallet: solana.publickey.PublicKey = None,\n authority: solana.publickey.PublicKey = None,\n disable_crank: bool = None\n)", "funcdef": "def"}, "switchboardpy.AggregatorInitParams.batch_size": {"fullname": "switchboardpy.AggregatorInitParams.batch_size", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.batch_size", "type": "variable", "doc": "<p>Minimum number of oracle responses required before a round is validated.</p>\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"fullname": "switchboardpy.AggregatorInitParams.min_required_oracle_results", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.min_required_oracle_results", "type": "variable", "doc": "<p>Minimum number of seconds required between aggregator rounds.</p>\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"fullname": "switchboardpy.AggregatorInitParams.min_required_job_results", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.min_required_job_results", "type": "variable", "doc": "<p>Minimum number of seconds required between aggregator rounds.</p>\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"fullname": "switchboardpy.AggregatorInitParams.min_update_delay_seconds", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.min_update_delay_seconds", "type": "variable", "doc": "<p>The queue to which this aggregator will be linked</p>\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.queue_account": {"fullname": "switchboardpy.AggregatorInitParams.queue_account", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.queue_account", "type": "variable", "doc": "<p>Name of the aggregator to store on-chain.</p>\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.AggregatorInitParams.name": {"fullname": "switchboardpy.AggregatorInitParams.name", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.name", "type": "variable", "doc": "<p>Metadata of the aggregator to store on-chain.</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.metadata": {"fullname": "switchboardpy.AggregatorInitParams.metadata", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.metadata", "type": "variable", "doc": "<p>unix_timestamp for which no feed update will occur before.</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.start_after": {"fullname": "switchboardpy.AggregatorInitParams.start_after", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.start_after", "type": "variable", "doc": "<p>Change percentage required between a previous round and the current round.\nIf variance percentage is not met, reject new oracle responses.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.variance_threshold": {"fullname": "switchboardpy.AggregatorInitParams.variance_threshold", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.variance_threshold", "type": "variable", "doc": "<p>Number of seconds for which, even if the variance threshold is not passed,\naccept new responses from oracles.</p>\n", "annotation": ": decimal.Decimal", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.force_report_period": {"fullname": "switchboardpy.AggregatorInitParams.force_report_period", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.force_report_period", "type": "variable", "doc": "<p>unix_timestamp after which funds may be withdrawn from the aggregator.\nnull/undefined/0 means the feed has no expiration.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.expiration": {"fullname": "switchboardpy.AggregatorInitParams.expiration", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.expiration", "type": "variable", "doc": "<p>An optional wallet for receiving kickbacks from job usage in feeds.\nDefaults to token vault.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.keypair": {"fullname": "switchboardpy.AggregatorInitParams.keypair", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.keypair", "type": "variable", "doc": "<p>An optional wallet for receiving kickbacks from job usage in feeds.\nDefaults to token vault.</p>\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.author_wallet": {"fullname": "switchboardpy.AggregatorInitParams.author_wallet", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.author_wallet", "type": "variable", "doc": "<p>If included, this keypair will be the aggregator authority rather than\nthe aggregator keypair.</p>\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.authority": {"fullname": "switchboardpy.AggregatorInitParams.authority", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.authority", "type": "variable", "doc": "<p>Disable automatic updates</p>\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.disable_crank": {"fullname": "switchboardpy.AggregatorInitParams.disable_crank", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.disable_crank", "type": "variable", "doc": "<p></p>\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.AggregatorOpenRoundParams": {"fullname": "switchboardpy.AggregatorOpenRoundParams", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams", "type": "class", "doc": "<p>The oracle queue from which oracles are assigned this update.</p>\n"}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"fullname": "switchboardpy.AggregatorOpenRoundParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n oracle_queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n payout_wallet: solana.publickey.PublicKey,\n jitter: int = None\n)", "funcdef": "def"}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"fullname": "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.oracle_queue_account", "type": "variable", "doc": "<p>The token wallet which will receive rewards for calling update on this feed.</p>\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"fullname": "switchboardpy.AggregatorOpenRoundParams.payout_wallet", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.payout_wallet", "type": "variable", "doc": "<p>Data feeds on a crank are ordered by their next available update time with some \nlevel of jitter to mitigate oracles being assigned to the same update request upon \neach iteration of the queue, which makes them susceptible to a malicous oracle.</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"fullname": "switchboardpy.AggregatorOpenRoundParams.jitter", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.jitter", "type": "variable", "doc": "<p></p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorSaveResultParams": {"fullname": "switchboardpy.AggregatorSaveResultParams", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams", "type": "class", "doc": "<p>Index in the list of oracles in the aggregator assigned to this round update.</p>\n"}, "switchboardpy.AggregatorSaveResultParams.__init__": {"fullname": "switchboardpy.AggregatorSaveResultParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n oracle_idx: int,\n error: bool,\n value: decimal.Decimal,\n min_response: decimal.Decimal,\n max_response: decimal.Decimal,\n jobs: list[job_schemas_pb2.OracleJob],\n queue_authority: solana.publickey.PublicKey,\n token_mint: solana.publickey.PublicKey,\n oracles: list[typing.Any]\n)", "funcdef": "def"}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"fullname": "switchboardpy.AggregatorSaveResultParams.oracle_idx", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.oracle_idx", "type": "variable", "doc": "<p>Reports that an error occured and the oracle could not send a value.</p>\n", "annotation": ": int"}, "switchboardpy.AggregatorSaveResultParams.error": {"fullname": "switchboardpy.AggregatorSaveResultParams.error", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.error", "type": "variable", "doc": "<p>Value the oracle is responding with for this update.</p>\n", "annotation": ": bool"}, "switchboardpy.AggregatorSaveResultParams.value": {"fullname": "switchboardpy.AggregatorSaveResultParams.value", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.value", "type": "variable", "doc": "<p>The minimum value this oracle has seen this round for the jobs listed in the\naggregator.</p>\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorSaveResultParams.min_response": {"fullname": "switchboardpy.AggregatorSaveResultParams.min_response", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.min_response", "type": "variable", "doc": "<p>The maximum value this oracle has seen this round for the jobs listed in the\naggregator.</p>\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorSaveResultParams.max_response": {"fullname": "switchboardpy.AggregatorSaveResultParams.max_response", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.max_response", "type": "variable", "doc": "<p>List of OracleJobs that were performed to produce this result</p>\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorSaveResultParams.jobs": {"fullname": "switchboardpy.AggregatorSaveResultParams.jobs", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.jobs", "type": "variable", "doc": "<p>Authority of the queue the aggregator is attached to</p>\n", "annotation": ": list[job_schemas_pb2.OracleJob]"}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"fullname": "switchboardpy.AggregatorSaveResultParams.queue_authority", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.queue_authority", "type": "variable", "doc": "<p>Program token mint</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"fullname": "switchboardpy.AggregatorSaveResultParams.token_mint", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.token_mint", "type": "variable", "doc": "<p>List of parsed oracles</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.AggregatorSetHistoryBufferParams": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams", "type": "class", "doc": "<p>Number of elements for the history buffer to fit</p>\n"}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, size: int, authority: solana.keypair.Keypair = None)", "funcdef": "def"}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams.size", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams.size", "type": "variable", "doc": "<p>Authority keypair for the aggregator</p>\n", "annotation": ": int"}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams.authority", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams.authority", "type": "variable", "doc": "<p></p>\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.CrankAccount": {"fullname": "switchboardpy.CrankAccount", "modulename": "switchboardpy", "qualname": "CrankAccount", "type": "class", "doc": "<p>A Switchboard account representing a crank of aggregators ordered by next update time.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This crank's public key\n keypair (Keypair | None): this crank's keypair</p>\n"}, "switchboardpy.CrankAccount.__init__": {"fullname": "switchboardpy.CrankAccount.__init__", "modulename": "switchboardpy", "qualname": "CrankAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.CrankAccount.keypair": {"fullname": "switchboardpy.CrankAccount.keypair", "modulename": "switchboardpy", "qualname": "CrankAccount.keypair", "type": "variable", "doc": "<p>Get the size of an CrankAccount on chain</p>\n\n<p>Args:</p>\n\n<p>Returns:\n int: size of the CrankAccount type on chain</p>\n"}, "switchboardpy.CrankAccount.size": {"fullname": "switchboardpy.CrankAccount.size", "modulename": "switchboardpy", "qualname": "CrankAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.CrankAccount.load_data": {"fullname": "switchboardpy.CrankAccount.load_data", "modulename": "switchboardpy", "qualname": "CrankAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.CrankAccount.create": {"fullname": "switchboardpy.CrankAccount.create", "modulename": "switchboardpy", "qualname": "CrankAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.crank.CrankInitParams\n)", "funcdef": "async def"}, "switchboardpy.CrankAccount.push": {"fullname": "switchboardpy.CrankAccount.push", "modulename": "switchboardpy", "qualname": "CrankAccount.push", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.crank.CrankPushParams)", "funcdef": "async def"}, "switchboardpy.CrankAccount.pop_txn": {"fullname": "switchboardpy.CrankAccount.pop_txn", "modulename": "switchboardpy", "qualname": "CrankAccount.pop_txn", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.crank.CrankPopParams)", "funcdef": "async def"}, "switchboardpy.CrankAccount.pop": {"fullname": "switchboardpy.CrankAccount.pop", "modulename": "switchboardpy", "qualname": "CrankAccount.pop", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.crank.CrankPopParams)", "funcdef": "async def"}, "switchboardpy.CrankAccount.peak_next_with_time": {"fullname": "switchboardpy.CrankAccount.peak_next_with_time", "modulename": "switchboardpy", "qualname": "CrankAccount.peak_next_with_time", "type": "function", "doc": "<p></p>\n", "signature": "(self, n: int)", "funcdef": "async def"}, "switchboardpy.CrankAccount.peak_next_ready": {"fullname": "switchboardpy.CrankAccount.peak_next_ready", "modulename": "switchboardpy", "qualname": "CrankAccount.peak_next_ready", "type": "function", "doc": "<p></p>\n", "signature": "(self, n: Optional[int] = None)", "funcdef": "async def"}, "switchboardpy.CrankAccount.peak_next": {"fullname": "switchboardpy.CrankAccount.peak_next", "modulename": "switchboardpy", "qualname": "CrankAccount.peak_next", "type": "function", "doc": "<p></p>\n", "signature": "(self, n: int)", "funcdef": "async def"}, "switchboardpy.CrankPopParams": {"fullname": "switchboardpy.CrankPopParams", "modulename": "switchboardpy", "qualname": "CrankPopParams", "type": "class", "doc": "<p>Specifies the wallet to reward for turning the crank.</p>\n"}, "switchboardpy.CrankPopParams.__init__": {"fullname": "switchboardpy.CrankPopParams.__init__", "modulename": "switchboardpy", "qualname": "CrankPopParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n payout_wallet: solana.publickey.PublicKey,\n queue_pubkey: solana.publickey.PublicKey,\n queue_authority: solana.publickey.PublicKey,\n crank: Any,\n queue: Any,\n token_mint: solana.publickey.PublicKey,\n ready_pubkeys: list[solana.publickey.PublicKey] = None,\n nonce: int = None,\n fail_open_on_mismatch: bool = None\n)", "funcdef": "def"}, "switchboardpy.CrankPopParams.payout_wallet": {"fullname": "switchboardpy.CrankPopParams.payout_wallet", "modulename": "switchboardpy", "qualname": "CrankPopParams.payout_wallet", "type": "variable", "doc": "<p>The pubkey of the linked oracle queue.</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.queue_pubkey": {"fullname": "switchboardpy.CrankPopParams.queue_pubkey", "modulename": "switchboardpy", "qualname": "CrankPopParams.queue_pubkey", "type": "variable", "doc": "<p>The pubkey of the linked oracle queue authority.</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.queue_authority": {"fullname": "switchboardpy.CrankPopParams.queue_authority", "modulename": "switchboardpy", "qualname": "CrankPopParams.queue_authority", "type": "variable", "doc": "<p>CrankAccount data</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.crank": {"fullname": "switchboardpy.CrankPopParams.crank", "modulename": "switchboardpy", "qualname": "CrankPopParams.crank", "type": "variable", "doc": "<p>QueueAccount data</p>\n", "annotation": ": Any"}, "switchboardpy.CrankPopParams.queue": {"fullname": "switchboardpy.CrankPopParams.queue", "modulename": "switchboardpy", "qualname": "CrankPopParams.queue", "type": "variable", "doc": "<p>Token mint pubkey</p>\n", "annotation": ": Any"}, "switchboardpy.CrankPopParams.token_mint": {"fullname": "switchboardpy.CrankPopParams.token_mint", "modulename": "switchboardpy", "qualname": "CrankPopParams.token_mint", "type": "variable", "doc": "<p>Array of pubkeys to attempt to pop. If discluded, this will be loaded\nfrom the crank upon calling.</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.ready_pubkeys": {"fullname": "switchboardpy.CrankPopParams.ready_pubkeys", "modulename": "switchboardpy", "qualname": "CrankPopParams.ready_pubkeys", "type": "variable", "doc": "<p>Nonce to allow consecutive crank pops with the same blockhash.</p>\n", "annotation": ": list[solana.publickey.PublicKey]", "default_value": " = None"}, "switchboardpy.CrankPopParams.nonce": {"fullname": "switchboardpy.CrankPopParams.nonce", "modulename": "switchboardpy", "qualname": "CrankPopParams.nonce", "type": "variable", "doc": "<p></p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"fullname": "switchboardpy.CrankPopParams.fail_open_on_mismatch", "modulename": "switchboardpy", "qualname": "CrankPopParams.fail_open_on_mismatch", "type": "variable", "doc": "<p></p>\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.CrankInitParams": {"fullname": "switchboardpy.CrankInitParams", "modulename": "switchboardpy", "qualname": "CrankInitParams", "type": "class", "doc": "<p>OracleQueueAccount for which this crank is associated</p>\n"}, "switchboardpy.CrankInitParams.__init__": {"fullname": "switchboardpy.CrankInitParams.__init__", "modulename": "switchboardpy", "qualname": "CrankInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n name: bytes = None,\n metadata: bytes = None,\n max_rows: int = None\n)", "funcdef": "def"}, "switchboardpy.CrankInitParams.queue_account": {"fullname": "switchboardpy.CrankInitParams.queue_account", "modulename": "switchboardpy", "qualname": "CrankInitParams.queue_account", "type": "variable", "doc": "<p>Buffer specifying crank name</p>\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.CrankInitParams.name": {"fullname": "switchboardpy.CrankInitParams.name", "modulename": "switchboardpy", "qualname": "CrankInitParams.name", "type": "variable", "doc": "<p>Buffer specifying crank metadata</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.CrankInitParams.metadata": {"fullname": "switchboardpy.CrankInitParams.metadata", "modulename": "switchboardpy", "qualname": "CrankInitParams.metadata", "type": "variable", "doc": "<p>Optional max number of rows</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.CrankInitParams.max_rows": {"fullname": "switchboardpy.CrankInitParams.max_rows", "modulename": "switchboardpy", "qualname": "CrankInitParams.max_rows", "type": "variable", "doc": "<p></p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.CrankPushParams": {"fullname": "switchboardpy.CrankPushParams", "modulename": "switchboardpy", "qualname": "CrankPushParams", "type": "class", "doc": "<p>CrankPushParams(aggregator_account: switchboardpy.aggregator.AggregatorAccount)</p>\n"}, "switchboardpy.CrankPushParams.__init__": {"fullname": "switchboardpy.CrankPushParams.__init__", "modulename": "switchboardpy", "qualname": "CrankPushParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, aggregator_account: switchboardpy.aggregator.AggregatorAccount)", "funcdef": "def"}, "switchboardpy.CrankRow": {"fullname": "switchboardpy.CrankRow", "modulename": "switchboardpy", "qualname": "CrankRow", "type": "class", "doc": "<p>Aggregator account pubkey</p>\n"}, "switchboardpy.CrankRow.__init__": {"fullname": "switchboardpy.CrankRow.__init__", "modulename": "switchboardpy", "qualname": "CrankRow.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, pubkey: solana.publickey.PublicKey, next_timestamp: int)", "funcdef": "def"}, "switchboardpy.CrankRow.pubkey": {"fullname": "switchboardpy.CrankRow.pubkey", "modulename": "switchboardpy", "qualname": "CrankRow.pubkey", "type": "variable", "doc": "<p>Next aggregator update timestamp to order the crank by</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankRow.from_bytes": {"fullname": "switchboardpy.CrankRow.from_bytes", "modulename": "switchboardpy", "qualname": "CrankRow.from_bytes", "type": "function", "doc": "<p></p>\n", "signature": "(buf: bytes)", "funcdef": "def"}, "switchboardpy.JobAccount": {"fullname": "switchboardpy.JobAccount", "modulename": "switchboardpy", "qualname": "JobAccount", "type": "class", "doc": "<p>A Switchboard account representing a job for an oracle to perform, stored as\n a protocol buffer.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This aggregator's public key\n keypair (Keypair | None): this aggregator's keypair</p>\n"}, "switchboardpy.JobAccount.__init__": {"fullname": "switchboardpy.JobAccount.__init__", "modulename": "switchboardpy", "qualname": "JobAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.JobAccount.keypair": {"fullname": "switchboardpy.JobAccount.keypair", "modulename": "switchboardpy", "qualname": "JobAccount.keypair", "type": "variable", "doc": "<p>Load and parse JobAccount state based on the program IDL. </p>\n\n<p>Returns:\n name (JobAccount): data parsed in accordance with the\n Switchboard IDL.</p>\n\n<p>Args:</p>\n\n<p>Raises:\n AccountDoesNotExistError: If the account doesn't exist.\n AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.</p>\n"}, "switchboardpy.JobAccount.load_data": {"fullname": "switchboardpy.JobAccount.load_data", "modulename": "switchboardpy", "qualname": "JobAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.JobAccount.load_job": {"fullname": "switchboardpy.JobAccount.load_job", "modulename": "switchboardpy", "qualname": "JobAccount.load_job", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.JobAccount.decode": {"fullname": "switchboardpy.JobAccount.decode", "modulename": "switchboardpy", "qualname": "JobAccount.decode", "type": "function", "doc": "<p></p>\n", "signature": "(program: anchorpy.program.core.Program, buf: bytes)", "funcdef": "def"}, "switchboardpy.JobAccount.create": {"fullname": "switchboardpy.JobAccount.create", "modulename": "switchboardpy", "qualname": "JobAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.job.JobInitParams\n)", "funcdef": "async def"}, "switchboardpy.JobInitParams": {"fullname": "switchboardpy.JobInitParams", "modulename": "switchboardpy", "qualname": "JobInitParams", "type": "class", "doc": "<p>A serialized protocol buffer holding the schema of the job.</p>\n"}, "switchboardpy.JobInitParams.__init__": {"fullname": "switchboardpy.JobInitParams.__init__", "modulename": "switchboardpy", "qualname": "JobInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n data: bytes,\n name: bytes = None,\n expiration: int = None,\n variables: list[str] = None,\n keypair: solana.keypair.Keypair = None,\n authority: solana.publickey.PublicKey = None\n)", "funcdef": "def"}, "switchboardpy.JobInitParams.data": {"fullname": "switchboardpy.JobInitParams.data", "modulename": "switchboardpy", "qualname": "JobInitParams.data", "type": "variable", "doc": "<p>An optional name to apply to the job account.</p>\n", "annotation": ": bytes"}, "switchboardpy.JobInitParams.name": {"fullname": "switchboardpy.JobInitParams.name", "modulename": "switchboardpy", "qualname": "JobInitParams.name", "type": "variable", "doc": "<p>unix_timestamp of when funds can be withdrawn from this account.</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.JobInitParams.expiration": {"fullname": "switchboardpy.JobInitParams.expiration", "modulename": "switchboardpy", "qualname": "JobInitParams.expiration", "type": "variable", "doc": "<p>A required variables oracles must fill to complete the job.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.JobInitParams.variables": {"fullname": "switchboardpy.JobInitParams.variables", "modulename": "switchboardpy", "qualname": "JobInitParams.variables", "type": "variable", "doc": "<p>A pre-generated keypair to use.</p>\n", "annotation": ": list[str]", "default_value": " = None"}, "switchboardpy.JobInitParams.keypair": {"fullname": "switchboardpy.JobInitParams.keypair", "modulename": "switchboardpy", "qualname": "JobInitParams.keypair", "type": "variable", "doc": "<p>An optional wallet for receiving kickbacks from job usage in feeds.</p>\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.JobInitParams.authority": {"fullname": "switchboardpy.JobInitParams.authority", "modulename": "switchboardpy", "qualname": "JobInitParams.authority", "type": "variable", "doc": "<p></p>\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.LeaseAccount": {"fullname": "switchboardpy.LeaseAccount", "modulename": "switchboardpy", "qualname": "LeaseAccount", "type": "class", "doc": "<p>A Switchboard account representing a lease for managing funds for oracle payouts\nfor fulfilling feed updates.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This lease's public key\n keypair (Keypair | None): this lease's keypair</p>\n"}, "switchboardpy.LeaseAccount.__init__": {"fullname": "switchboardpy.LeaseAccount.__init__", "modulename": "switchboardpy", "qualname": "LeaseAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.LeaseAccount.keypair": {"fullname": "switchboardpy.LeaseAccount.keypair", "modulename": "switchboardpy", "qualname": "LeaseAccount.keypair", "type": "variable", "doc": "<p>Get the size of an LeaseAccount on chain</p>\n\n<p>Args:</p>\n\n<p>Returns:\n int: size of the LeaseAccount type on chain</p>\n"}, "switchboardpy.LeaseAccount.size": {"fullname": "switchboardpy.LeaseAccount.size", "modulename": "switchboardpy", "qualname": "LeaseAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.LeaseAccount.load_data": {"fullname": "switchboardpy.LeaseAccount.load_data", "modulename": "switchboardpy", "qualname": "LeaseAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.from_seed": {"fullname": "switchboardpy.LeaseAccount.from_seed", "modulename": "switchboardpy", "qualname": "LeaseAccount.from_seed", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n aggregator_account: switchboardpy.aggregator.AggregatorAccount\n)", "funcdef": "def"}, "switchboardpy.LeaseAccount.create": {"fullname": "switchboardpy.LeaseAccount.create", "modulename": "switchboardpy", "qualname": "LeaseAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.lease.LeaseInitParams\n)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.get_balance": {"fullname": "switchboardpy.LeaseAccount.get_balance", "modulename": "switchboardpy", "qualname": "LeaseAccount.get_balance", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.extend": {"fullname": "switchboardpy.LeaseAccount.extend", "modulename": "switchboardpy", "qualname": "LeaseAccount.extend", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.lease.LeaseExtendParams)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.withdraw": {"fullname": "switchboardpy.LeaseAccount.withdraw", "modulename": "switchboardpy", "qualname": "LeaseAccount.withdraw", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.lease.LeaseWithdrawParams)", "funcdef": "async def"}, "switchboardpy.LeaseExtendParams": {"fullname": "switchboardpy.LeaseExtendParams", "modulename": "switchboardpy", "qualname": "LeaseExtendParams", "type": "class", "doc": "<p>Token amount to load into the lease escrow</p>\n"}, "switchboardpy.LeaseExtendParams.__init__": {"fullname": "switchboardpy.LeaseExtendParams.__init__", "modulename": "switchboardpy", "qualname": "LeaseExtendParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n load_amount: int,\n funder: solana.publickey.PublicKey,\n funder_authority: solana.keypair.Keypair\n)", "funcdef": "def"}, "switchboardpy.LeaseExtendParams.load_amount": {"fullname": "switchboardpy.LeaseExtendParams.load_amount", "modulename": "switchboardpy", "qualname": "LeaseExtendParams.load_amount", "type": "variable", "doc": "<p>The funding wallet of the lease</p>\n", "annotation": ": int"}, "switchboardpy.LeaseExtendParams.funder": {"fullname": "switchboardpy.LeaseExtendParams.funder", "modulename": "switchboardpy", "qualname": "LeaseExtendParams.funder", "type": "variable", "doc": "<p>The authority of the funding wallet</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.LeaseInitParams": {"fullname": "switchboardpy.LeaseInitParams", "modulename": "switchboardpy", "qualname": "LeaseInitParams", "type": "class", "doc": "<p>Token amount to load into the lease escrow</p>\n"}, "switchboardpy.LeaseInitParams.__init__": {"fullname": "switchboardpy.LeaseInitParams.__init__", "modulename": "switchboardpy", "qualname": "LeaseInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n load_amount: int,\n funder: solana.publickey.PublicKey,\n funder_authority: solana.keypair.Keypair,\n oracle_queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n aggregator_account: switchboardpy.aggregator.AggregatorAccount,\n withdraw_authority: solana.publickey.PublicKey = None\n)", "funcdef": "def"}, "switchboardpy.LeaseInitParams.load_amount": {"fullname": "switchboardpy.LeaseInitParams.load_amount", "modulename": "switchboardpy", "qualname": "LeaseInitParams.load_amount", "type": "variable", "doc": "<p>The funding wallet of the lease</p>\n", "annotation": ": int"}, "switchboardpy.LeaseInitParams.funder": {"fullname": "switchboardpy.LeaseInitParams.funder", "modulename": "switchboardpy", "qualname": "LeaseInitParams.funder", "type": "variable", "doc": "<p>The authority of the funding wallet</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.LeaseInitParams.funder_authority": {"fullname": "switchboardpy.LeaseInitParams.funder_authority", "modulename": "switchboardpy", "qualname": "LeaseInitParams.funder_authority", "type": "variable", "doc": "<p>The target to which this lease is applied</p>\n", "annotation": ": solana.keypair.Keypair"}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"fullname": "switchboardpy.LeaseInitParams.oracle_queue_account", "modulename": "switchboardpy", "qualname": "LeaseInitParams.oracle_queue_account", "type": "variable", "doc": "<p>The feed which the lease grants permission</p>\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.LeaseInitParams.aggregator_account": {"fullname": "switchboardpy.LeaseInitParams.aggregator_account", "modulename": "switchboardpy", "qualname": "LeaseInitParams.aggregator_account", "type": "variable", "doc": "<p>This authority will be permitted to withdraw funds from this lease</p>\n", "annotation": ": switchboardpy.aggregator.AggregatorAccount"}, "switchboardpy.LeaseInitParams.withdraw_authority": {"fullname": "switchboardpy.LeaseInitParams.withdraw_authority", "modulename": "switchboardpy", "qualname": "LeaseInitParams.withdraw_authority", "type": "variable", "doc": "<p></p>\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.LeaseWithdrawParams": {"fullname": "switchboardpy.LeaseWithdrawParams", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams", "type": "class", "doc": "<p>Token amount to withdraw from the lease escrow</p>\n"}, "switchboardpy.LeaseWithdrawParams.__init__": {"fullname": "switchboardpy.LeaseWithdrawParams.__init__", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n amount: int,\n withdraw_wallet: solana.publickey.PublicKey,\n withdraw_authority: solana.keypair.Keypair\n)", "funcdef": "def"}, "switchboardpy.LeaseWithdrawParams.amount": {"fullname": "switchboardpy.LeaseWithdrawParams.amount", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams.amount", "type": "variable", "doc": "<p>The wallet of to withdraw to</p>\n", "annotation": ": int"}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"fullname": "switchboardpy.LeaseWithdrawParams.withdraw_wallet", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams.withdraw_wallet", "type": "variable", "doc": "<p>The withdraw authority of the lease</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleAccount": {"fullname": "switchboardpy.OracleAccount", "modulename": "switchboardpy", "qualname": "OracleAccount", "type": "class", "doc": "<p>A Switchboard account representing an oracle account and its associated queue\nand escrow account.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This aggregator's public key\n keypair (Keypair | None): this aggregator's keypair</p>\n"}, "switchboardpy.OracleAccount.__init__": {"fullname": "switchboardpy.OracleAccount.__init__", "modulename": "switchboardpy", "qualname": "OracleAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.OracleAccount.keypair": {"fullname": "switchboardpy.OracleAccount.keypair", "modulename": "switchboardpy", "qualname": "OracleAccount.keypair", "type": "variable", "doc": "<p>Get the size of an OracleAccount on chain</p>\n\n<p>Args:</p>\n\n<p>Returns:\n int: size of the OracleAccount type on chain</p>\n"}, "switchboardpy.OracleAccount.size": {"fullname": "switchboardpy.OracleAccount.size", "modulename": "switchboardpy", "qualname": "OracleAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.OracleAccount.load_data": {"fullname": "switchboardpy.OracleAccount.load_data", "modulename": "switchboardpy", "qualname": "OracleAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.OracleAccount.from_seed": {"fullname": "switchboardpy.OracleAccount.from_seed", "modulename": "switchboardpy", "qualname": "OracleAccount.from_seed", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n wallet: solana.publickey.PublicKey\n)", "funcdef": "def"}, "switchboardpy.OracleAccount.create": {"fullname": "switchboardpy.OracleAccount.create", "modulename": "switchboardpy", "qualname": "OracleAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.oracle.OracleInitParams\n)", "funcdef": "async def"}, "switchboardpy.OracleAccount.heartbeat": {"fullname": "switchboardpy.OracleAccount.heartbeat", "modulename": "switchboardpy", "qualname": "OracleAccount.heartbeat", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.OracleAccount.withdraw": {"fullname": "switchboardpy.OracleAccount.withdraw", "modulename": "switchboardpy", "qualname": "OracleAccount.withdraw", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.oracle.OracleWithdrawParams)", "funcdef": "async def"}, "switchboardpy.OracleInitParams": {"fullname": "switchboardpy.OracleInitParams", "modulename": "switchboardpy", "qualname": "OracleInitParams", "type": "class", "doc": "<p>Specifies the oracle queue to associate with this OracleAccount.</p>\n"}, "switchboardpy.OracleInitParams.__init__": {"fullname": "switchboardpy.OracleInitParams.__init__", "modulename": "switchboardpy", "qualname": "OracleInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n name: bytes = None,\n metadata: bytes = None\n)", "funcdef": "def"}, "switchboardpy.OracleInitParams.queue_account": {"fullname": "switchboardpy.OracleInitParams.queue_account", "modulename": "switchboardpy", "qualname": "OracleInitParams.queue_account", "type": "variable", "doc": "<p>Buffer specifying orace name</p>\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.OracleInitParams.name": {"fullname": "switchboardpy.OracleInitParams.name", "modulename": "switchboardpy", "qualname": "OracleInitParams.name", "type": "variable", "doc": "<p>Buffer specifying oralce metadata</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleInitParams.metadata": {"fullname": "switchboardpy.OracleInitParams.metadata", "modulename": "switchboardpy", "qualname": "OracleInitParams.metadata", "type": "variable", "doc": "<p></p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleWithdrawParams": {"fullname": "switchboardpy.OracleWithdrawParams", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams", "type": "class", "doc": "<p>Amount to withdraw</p>\n"}, "switchboardpy.OracleWithdrawParams.__init__": {"fullname": "switchboardpy.OracleWithdrawParams.__init__", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n amount: decimal.Decimal,\n withdraw_account: solana.publickey.PublicKey,\n oracle_authority: solana.keypair.Keypair\n)", "funcdef": "def"}, "switchboardpy.OracleWithdrawParams.amount": {"fullname": "switchboardpy.OracleWithdrawParams.amount", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams.amount", "type": "variable", "doc": "<p>Token Account to withdraw to</p>\n", "annotation": ": decimal.Decimal"}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"fullname": "switchboardpy.OracleWithdrawParams.withdraw_account", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams.withdraw_account", "type": "variable", "doc": "<p>Oracle authority keypair</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleQueueAccount": {"fullname": "switchboardpy.OracleQueueAccount", "modulename": "switchboardpy", "qualname": "OracleQueueAccount", "type": "class", "doc": "<p>A Switchboard account representing a queue for distributing oracles to\npermitted data feeds.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This OracleQueueAccount's public key\n keypair (Keypair | None): this OracleQueueAccount's keypair</p>\n"}, "switchboardpy.OracleQueueAccount.__init__": {"fullname": "switchboardpy.OracleQueueAccount.__init__", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.OracleQueueAccount.keypair": {"fullname": "switchboardpy.OracleQueueAccount.keypair", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.keypair", "type": "variable", "doc": "<p>Get the size of an OracleQueueAccount on chain</p>\n\n<p>Args:</p>\n\n<p>Returns:\n int: size of the OracleQueueAccount type on chain</p>\n"}, "switchboardpy.OracleQueueAccount.size": {"fullname": "switchboardpy.OracleQueueAccount.size", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.OracleQueueAccount.load_data": {"fullname": "switchboardpy.OracleQueueAccount.load_data", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.OracleQueueAccount.load_mint": {"fullname": "switchboardpy.OracleQueueAccount.load_mint", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.load_mint", "type": "function", "doc": "<p></p>\n", "signature": "(self) -> spl.token.async_client.AsyncToken", "funcdef": "async def"}, "switchboardpy.OracleQueueAccount.create": {"fullname": "switchboardpy.OracleQueueAccount.create", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.oraclequeue.OracleQueueInitParams\n)", "funcdef": "async def"}, "switchboardpy.OracleQueueInitParams": {"fullname": "switchboardpy.OracleQueueInitParams", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams", "type": "class", "doc": "<p>Mint for the oracle queue</p>\n"}, "switchboardpy.OracleQueueInitParams.__init__": {"fullname": "switchboardpy.OracleQueueInitParams.__init__", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n mint: solana.publickey.PublicKey,\n reward: int,\n min_stake: int,\n authority: solana.publickey.PublicKey,\n oracle_timeout: int = None,\n variance_tolerance_multiplier: decimal.Decimal = None,\n consecutive_feed_failure_limit: int = None,\n consecutive_oracle_failure_limit: int = None,\n minimum_delay_seconds: int = None,\n queue_size: int = None,\n unpermissioned_feeds: bool = None,\n slashing_enabled: bool = None,\n feed_probation_period: int = None,\n name: bytes = None,\n metadata: bytes = None,\n unpermissioned_vrf: bool = None\n)", "funcdef": "def"}, "switchboardpy.OracleQueueInitParams.mint": {"fullname": "switchboardpy.OracleQueueInitParams.mint", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.mint", "type": "variable", "doc": "<p>Rewards to provide oracles and round openers on this queue.</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleQueueInitParams.reward": {"fullname": "switchboardpy.OracleQueueInitParams.reward", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.reward", "type": "variable", "doc": "<p>The minimum amount of stake oracles must present to remain on the queue.</p>\n", "annotation": ": int"}, "switchboardpy.OracleQueueInitParams.min_stake": {"fullname": "switchboardpy.OracleQueueInitParams.min_stake", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.min_stake", "type": "variable", "doc": "<p>The account to delegate authority to for creating permissions targeted\nat the queue.</p>\n", "annotation": ": int"}, "switchboardpy.OracleQueueInitParams.authority": {"fullname": "switchboardpy.OracleQueueInitParams.authority", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.authority", "type": "variable", "doc": "<p>Time period we should remove an oracle after if no response.</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"fullname": "switchboardpy.OracleQueueInitParams.oracle_timeout", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.oracle_timeout", "type": "variable", "doc": "<p>The tolerated variance amount oracle results can have from the\naccepted round result before being slashed.\nslashBound = varianceToleranceMultiplier * stdDeviation\nDefault: 2</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"fullname": "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.variance_tolerance_multiplier", "type": "variable", "doc": "<p>Consecutive failure limit for a feed before feed permission is revoked.</p>\n", "annotation": ": decimal.Decimal", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"fullname": "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.consecutive_feed_failure_limit", "type": "variable", "doc": "<p>Consecutive failure limit for an oracle before oracle permission is revoked.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"fullname": "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.consecutive_oracle_failure_limit", "type": "variable", "doc": "<p>the minimum update delay time for Aggregators</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"fullname": "switchboardpy.OracleQueueInitParams.minimum_delay_seconds", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.minimum_delay_seconds", "type": "variable", "doc": "<p>Optionally set the size of the queue.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.queue_size": {"fullname": "switchboardpy.OracleQueueInitParams.queue_size", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.queue_size", "type": "variable", "doc": "<p>Enabling this setting means data feeds do not need explicit permission\nto join the queue.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"fullname": "switchboardpy.OracleQueueInitParams.unpermissioned_feeds", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.unpermissioned_feeds", "type": "variable", "doc": "<p>Whether slashing is enabled on this queue</p>\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"fullname": "switchboardpy.OracleQueueInitParams.slashing_enabled", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.slashing_enabled", "type": "variable", "doc": "<p>After a feed lease is funded or re-funded, it must consecutively succeed\nN amount of times or its authorization to use the queue is auto-revoked.</p>\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"fullname": "switchboardpy.OracleQueueInitParams.feed_probation_period", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.feed_probation_period", "type": "variable", "doc": "<p>A name to assign to this OracleQueue.</p>\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.name": {"fullname": "switchboardpy.OracleQueueInitParams.name", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.name", "type": "variable", "doc": "<p>Buffer for queue metadata.</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.metadata": {"fullname": "switchboardpy.OracleQueueInitParams.metadata", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.metadata", "type": "variable", "doc": "<p>Enabling this setting means data feeds do not need explicit permission\nto request VRF proofs and verifications from this queue.</p>\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"fullname": "switchboardpy.OracleQueueInitParams.unpermissioned_vrf", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.unpermissioned_vrf", "type": "variable", "doc": "<p></p>\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.OracleJob": {"fullname": "switchboardpy.OracleJob", "modulename": "switchboardpy", "qualname": "OracleJob", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.DESCRIPTOR": {"fullname": "switchboardpy.OracleJob.DESCRIPTOR", "modulename": "switchboardpy", "qualname": "OracleJob.DESCRIPTOR", "type": "variable", "doc": "<p></p>\n", "default_value": " = <google.protobuf.pyext._message.MessageDescriptor object>"}, "switchboardpy.OracleJob.HttpTask": {"fullname": "switchboardpy.OracleJob.HttpTask", "modulename": "switchboardpy", "qualname": "OracleJob.HttpTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.JsonParseTask": {"fullname": "switchboardpy.OracleJob.JsonParseTask", "modulename": "switchboardpy", "qualname": "OracleJob.JsonParseTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MedianTask": {"fullname": "switchboardpy.OracleJob.MedianTask", "modulename": "switchboardpy", "qualname": "OracleJob.MedianTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MeanTask": {"fullname": "switchboardpy.OracleJob.MeanTask", "modulename": "switchboardpy", "qualname": "OracleJob.MeanTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MaxTask": {"fullname": "switchboardpy.OracleJob.MaxTask", "modulename": "switchboardpy", "qualname": "OracleJob.MaxTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.ValueTask": {"fullname": "switchboardpy.OracleJob.ValueTask", "modulename": "switchboardpy", "qualname": "OracleJob.ValueTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.WebsocketTask": {"fullname": "switchboardpy.OracleJob.WebsocketTask", "modulename": "switchboardpy", "qualname": "OracleJob.WebsocketTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.ConditionalTask": {"fullname": "switchboardpy.OracleJob.ConditionalTask", "modulename": "switchboardpy", "qualname": "OracleJob.ConditionalTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.DivideTask": {"fullname": "switchboardpy.OracleJob.DivideTask", "modulename": "switchboardpy", "qualname": "OracleJob.DivideTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MultiplyTask": {"fullname": "switchboardpy.OracleJob.MultiplyTask", "modulename": "switchboardpy", "qualname": "OracleJob.MultiplyTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.AddTask": {"fullname": "switchboardpy.OracleJob.AddTask", "modulename": "switchboardpy", "qualname": "OracleJob.AddTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SubtractTask": {"fullname": "switchboardpy.OracleJob.SubtractTask", "modulename": "switchboardpy", "qualname": "OracleJob.SubtractTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.LpTokenPriceTask": {"fullname": "switchboardpy.OracleJob.LpTokenPriceTask", "modulename": "switchboardpy", "qualname": "OracleJob.LpTokenPriceTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.LpExchangeRateTask": {"fullname": "switchboardpy.OracleJob.LpExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.LpExchangeRateTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.RegexExtractTask": {"fullname": "switchboardpy.OracleJob.RegexExtractTask", "modulename": "switchboardpy", "qualname": "OracleJob.RegexExtractTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.XStepPriceTask": {"fullname": "switchboardpy.OracleJob.XStepPriceTask", "modulename": "switchboardpy", "qualname": "OracleJob.XStepPriceTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.TwapTask": {"fullname": "switchboardpy.OracleJob.TwapTask", "modulename": "switchboardpy", "qualname": "OracleJob.TwapTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SerumSwapTask": {"fullname": "switchboardpy.OracleJob.SerumSwapTask", "modulename": "switchboardpy", "qualname": "OracleJob.SerumSwapTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.PowTask": {"fullname": "switchboardpy.OracleJob.PowTask", "modulename": "switchboardpy", "qualname": "OracleJob.PowTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.LendingRateTask": {"fullname": "switchboardpy.OracleJob.LendingRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.LendingRateTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"fullname": "switchboardpy.OracleJob.MangoPerpMarketTask", "modulename": "switchboardpy", "qualname": "OracleJob.MangoPerpMarketTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.JupiterSwapTask": {"fullname": "switchboardpy.OracleJob.JupiterSwapTask", "modulename": "switchboardpy", "qualname": "OracleJob.JupiterSwapTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.PerpMarketTask": {"fullname": "switchboardpy.OracleJob.PerpMarketTask", "modulename": "switchboardpy", "qualname": "OracleJob.PerpMarketTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.OracleTask": {"fullname": "switchboardpy.OracleJob.OracleTask", "modulename": "switchboardpy", "qualname": "OracleJob.OracleTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.AnchorFetchTask": {"fullname": "switchboardpy.OracleJob.AnchorFetchTask", "modulename": "switchboardpy", "qualname": "OracleJob.AnchorFetchTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.DefiKingdomsTask": {"fullname": "switchboardpy.OracleJob.DefiKingdomsTask", "modulename": "switchboardpy", "qualname": "OracleJob.DefiKingdomsTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.TpsTask": {"fullname": "switchboardpy.OracleJob.TpsTask", "modulename": "switchboardpy", "qualname": "OracleJob.TpsTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SplStakePoolTask": {"fullname": "switchboardpy.OracleJob.SplStakePoolTask", "modulename": "switchboardpy", "qualname": "OracleJob.SplStakePoolTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SplTokenParseTask": {"fullname": "switchboardpy.OracleJob.SplTokenParseTask", "modulename": "switchboardpy", "qualname": "OracleJob.SplTokenParseTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"fullname": "switchboardpy.OracleJob.UniswapExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.UniswapExchangeRateTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"fullname": "switchboardpy.OracleJob.SushiswapExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.SushiswapExchangeRateTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"fullname": "switchboardpy.OracleJob.PancakeswapExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.PancakeswapExchangeRateTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.CacheTask": {"fullname": "switchboardpy.OracleJob.CacheTask", "modulename": "switchboardpy", "qualname": "OracleJob.CacheTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SysclockOffsetTask": {"fullname": "switchboardpy.OracleJob.SysclockOffsetTask", "modulename": "switchboardpy", "qualname": "OracleJob.SysclockOffsetTask", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.Task": {"fullname": "switchboardpy.OracleJob.Task", "modulename": "switchboardpy", "qualname": "OracleJob.Task", "type": "class", "doc": "<p>A ProtocolMessage</p>\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.tasks": {"fullname": "switchboardpy.OracleJob.tasks", "modulename": "switchboardpy", "qualname": "OracleJob.tasks", "type": "variable", "doc": "<p>Field OracleJob.tasks</p>\n"}, "switchboardpy.PermissionAccount": {"fullname": "switchboardpy.PermissionAccount", "modulename": "switchboardpy", "qualname": "PermissionAccount", "type": "class", "doc": "<p>A Switchboard account representing a permission or privilege granted by one\naccount signer to another account.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This permission's public key\n keypair (Keypair | None): this permission's keypair</p>\n"}, "switchboardpy.PermissionAccount.__init__": {"fullname": "switchboardpy.PermissionAccount.__init__", "modulename": "switchboardpy", "qualname": "PermissionAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.PermissionAccount.keypair": {"fullname": "switchboardpy.PermissionAccount.keypair", "modulename": "switchboardpy", "qualname": "PermissionAccount.keypair", "type": "variable", "doc": "<p>Check if a specific permission is enabled on this permission account</p>\n\n<p>Args:\n permission (SwitchboardPermissionValue)</p>\n\n<p>Returns:\n bool: whether or not the permission is enabled</p>\n"}, "switchboardpy.PermissionAccount.is_permission_enabled": {"fullname": "switchboardpy.PermissionAccount.is_permission_enabled", "modulename": "switchboardpy", "qualname": "PermissionAccount.is_permission_enabled", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n permission: switchboardpy.permission.SwitchboardPermissionValue\n)", "funcdef": "async def"}, "switchboardpy.PermissionAccount.load_data": {"fullname": "switchboardpy.PermissionAccount.load_data", "modulename": "switchboardpy", "qualname": "PermissionAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.PermissionAccount.size": {"fullname": "switchboardpy.PermissionAccount.size", "modulename": "switchboardpy", "qualname": "PermissionAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.PermissionAccount.create": {"fullname": "switchboardpy.PermissionAccount.create", "modulename": "switchboardpy", "qualname": "PermissionAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.permission.PermissionInitParams\n)", "funcdef": "async def"}, "switchboardpy.PermissionAccount.from_seed": {"fullname": "switchboardpy.PermissionAccount.from_seed", "modulename": "switchboardpy", "qualname": "PermissionAccount.from_seed", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n authority: solana.publickey.PublicKey,\n granter: solana.publickey.PublicKey,\n grantee: solana.publickey.PublicKey\n)", "funcdef": "def"}, "switchboardpy.PermissionAccount.set": {"fullname": "switchboardpy.PermissionAccount.set", "modulename": "switchboardpy", "qualname": "PermissionAccount.set", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.permission.PermissionSetParams)", "funcdef": "async def"}, "switchboardpy.PermissionInitParams": {"fullname": "switchboardpy.PermissionInitParams", "modulename": "switchboardpy", "qualname": "PermissionInitParams", "type": "class", "doc": "<p>Pubkey of the account granting the permission</p>\n"}, "switchboardpy.PermissionInitParams.__init__": {"fullname": "switchboardpy.PermissionInitParams.__init__", "modulename": "switchboardpy", "qualname": "PermissionInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n granter: solana.publickey.PublicKey,\n grantee: solana.publickey.PublicKey,\n authority: solana.publickey.PublicKey\n)", "funcdef": "def"}, "switchboardpy.PermissionInitParams.granter": {"fullname": "switchboardpy.PermissionInitParams.granter", "modulename": "switchboardpy", "qualname": "PermissionInitParams.granter", "type": "variable", "doc": "<p>The receiving amount of a permission</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.PermissionInitParams.grantee": {"fullname": "switchboardpy.PermissionInitParams.grantee", "modulename": "switchboardpy", "qualname": "PermissionInitParams.grantee", "type": "variable", "doc": "<p>The authority that is allowed to set permissions for this account</p>\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.PermissionSetParams": {"fullname": "switchboardpy.PermissionSetParams", "modulename": "switchboardpy", "qualname": "PermissionSetParams", "type": "class", "doc": "<p>The permission to set</p>\n"}, "switchboardpy.PermissionSetParams.__init__": {"fullname": "switchboardpy.PermissionSetParams.__init__", "modulename": "switchboardpy", "qualname": "PermissionSetParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n permission: switchboardpy.permission.SwitchboardPermission,\n authority: solana.keypair.Keypair,\n enable: bool\n)", "funcdef": "def"}, "switchboardpy.PermissionSetParams.permission": {"fullname": "switchboardpy.PermissionSetParams.permission", "modulename": "switchboardpy", "qualname": "PermissionSetParams.permission", "type": "variable", "doc": "<p>The authority controlling this permission</p>\n", "annotation": ": switchboardpy.permission.SwitchboardPermission"}, "switchboardpy.PermissionSetParams.authority": {"fullname": "switchboardpy.PermissionSetParams.authority", "modulename": "switchboardpy", "qualname": "PermissionSetParams.authority", "type": "variable", "doc": "<p>Specifies whether to enable or disable the permission</p>\n", "annotation": ": solana.keypair.Keypair"}, "switchboardpy.ProgramStateAccount": {"fullname": "switchboardpy.ProgramStateAccount", "modulename": "switchboardpy", "qualname": "ProgramStateAccount", "type": "class", "doc": "<p>Account type representing Switchboard global program state.</p>\n\n<p>Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This program's public key\n keypair (Keypair | None): this program's keypair</p>\n"}, "switchboardpy.ProgramStateAccount.__init__": {"fullname": "switchboardpy.ProgramStateAccount.__init__", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.ProgramStateAccount.keypair": {"fullname": "switchboardpy.ProgramStateAccount.keypair", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.keypair", "type": "variable", "doc": "<p>Constructs ProgramStateAccount from the static seed from which it was generated.</p>\n\n<p>Args:\n program (anchorpy.Program): Anchor-loaded aggregator</p>\n\n<p>Returns:\n ProgramStateAccount and PDA bump tuple.</p>\n"}, "switchboardpy.ProgramStateAccount.from_seed": {"fullname": "switchboardpy.ProgramStateAccount.from_seed", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.from_seed", "type": "function", "doc": "<p></p>\n", "signature": "(program: anchorpy.program.core.Program)", "funcdef": "def"}, "switchboardpy.ProgramStateAccount.load_data": {"fullname": "switchboardpy.ProgramStateAccount.load_data", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.load_data", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.ProgramStateAccount.get_token_mint": {"fullname": "switchboardpy.ProgramStateAccount.get_token_mint", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.get_token_mint", "type": "function", "doc": "<p></p>\n", "signature": "(self) -> spl.token.async_client.AsyncToken", "funcdef": "async def"}, "switchboardpy.ProgramStateAccount.size": {"fullname": "switchboardpy.ProgramStateAccount.size", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.size", "type": "function", "doc": "<p></p>\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.ProgramStateAccount.create": {"fullname": "switchboardpy.ProgramStateAccount.create", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.create", "type": "function", "doc": "<p></p>\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.program.ProgramInitParams\n)", "funcdef": "async def"}, "switchboardpy.ProgramStateAccount.vault_transfer": {"fullname": "switchboardpy.ProgramStateAccount.vault_transfer", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.vault_transfer", "type": "function", "doc": "<p></p>\n", "signature": "(\n self,\n to: solana.publickey.PublicKey,\n authority: solana.keypair.Keypair,\n params: switchboardpy.program.VaultTransferParams\n)", "funcdef": "async def"}, "switchboardpy.ProgramInitParams": {"fullname": "switchboardpy.ProgramInitParams", "modulename": "switchboardpy", "qualname": "ProgramInitParams", "type": "class", "doc": "<p>Optional token mint</p>\n"}, "switchboardpy.ProgramInitParams.__init__": {"fullname": "switchboardpy.ProgramInitParams.__init__", "modulename": "switchboardpy", "qualname": "ProgramInitParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, mint: solana.publickey.PublicKey = None)", "funcdef": "def"}, "switchboardpy.ProgramInitParams.mint": {"fullname": "switchboardpy.ProgramInitParams.mint", "modulename": "switchboardpy", "qualname": "ProgramInitParams.mint", "type": "variable", "doc": "<p></p>\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.VaultTransferParams": {"fullname": "switchboardpy.VaultTransferParams", "modulename": "switchboardpy", "qualname": "VaultTransferParams", "type": "class", "doc": "<p>Amount being transferred</p>\n"}, "switchboardpy.VaultTransferParams.__init__": {"fullname": "switchboardpy.VaultTransferParams.__init__", "modulename": "switchboardpy", "qualname": "VaultTransferParams.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, amount: decimal.Decimal)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal": {"fullname": "switchboardpy.SwitchboardDecimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal", "type": "class", "doc": "<p>SwitchboardDecimal(mantissa: int, scale: int)</p>\n"}, "switchboardpy.SwitchboardDecimal.__init__": {"fullname": "switchboardpy.SwitchboardDecimal.__init__", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.__init__", "type": "function", "doc": "<p></p>\n", "signature": "(self, mantissa: int, scale: int)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.scale": {"fullname": "switchboardpy.SwitchboardDecimal.scale", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.scale", "type": "variable", "doc": "<p>Convert BN.js style num and return SwitchboardDecimal</p>\n\n<p>Args:\n obj (Any): Object with integer fields scale and mantissa (hex val)</p>\n\n<p>Returns:\n sbd (SwitchboardDecimal): SwitchboardDecimal</p>\n", "annotation": ": int"}, "switchboardpy.SwitchboardDecimal.fromObj": {"fullname": "switchboardpy.SwitchboardDecimal.fromObj", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.fromObj", "type": "function", "doc": "<p></p>\n", "signature": "(obj: Any)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.to_decimal": {"fullname": "switchboardpy.SwitchboardDecimal.to_decimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.to_decimal", "type": "function", "doc": "<p></p>\n", "signature": "(self, sbd: object)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.from_decimal": {"fullname": "switchboardpy.SwitchboardDecimal.from_decimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.from_decimal", "type": "function", "doc": "<p></p>\n", "signature": "(dec: decimal.Decimal)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"fullname": "switchboardpy.SwitchboardDecimal.sbd_to_decimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.sbd_to_decimal", "type": "function", "doc": "<p></p>\n", "signature": "(sbd: object) -> decimal.Decimal", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"fullname": "switchboardpy.SwitchboardDecimal.as_proper_sbd", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.as_proper_sbd", "type": "function", "doc": "<p></p>\n", "signature": "(self, program: anchorpy.program.core.Program)", "funcdef": "def"}, "switchboardpy.readRawVarint32": {"fullname": "switchboardpy.readRawVarint32", "modulename": "switchboardpy", "qualname": "readRawVarint32", "type": "variable", "doc": "<p></p>\n"}, "switchboardpy.readDelimitedFrom": {"fullname": "switchboardpy.readDelimitedFrom", "modulename": "switchboardpy", "qualname": "readDelimitedFrom", "type": "variable", "doc": "<p></p>\n"}}, "docInfo": {"switchboardpy": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.AccountParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.AccountParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 3}, "switchboardpy.AccountParams.program": {"qualname": 2, "fullname": 3, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "switchboardpy.AccountParams.public_key": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 15}, "switchboardpy.AccountParams.keypair": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "switchboardpy.AggregatorAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 25}, "switchboardpy.AggregatorAccount.get_name": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_history": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_latest_value": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.should_report_value": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.produce_job_hash": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_jobs": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_hashes": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_history_buffer": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.open_round": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_min_jobs": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.add_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_batch_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_min_oracles": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_update_interval": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.lock": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_authority": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.remove_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_oracle_index": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.save_result_txn": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "switchboardpy.AggregatorHistoryRow": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 37}, "switchboardpy.AggregatorHistoryRow.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorHistoryRow.value": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "switchboardpy.AggregatorInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 3}, "switchboardpy.AggregatorInitParams.batch_size": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.queue_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.AggregatorInitParams.start_after": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.AggregatorInitParams.variance_threshold": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 2, "signature": 0, "bases": 0, "doc": 21}, "switchboardpy.AggregatorInitParams.force_report_period": {"qualname": 4, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 21}, "switchboardpy.AggregatorInitParams.expiration": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 18}, "switchboardpy.AggregatorInitParams.keypair": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 18}, "switchboardpy.AggregatorInitParams.author_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 17}, "switchboardpy.AggregatorInitParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.AggregatorInitParams.disable_crank": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.AggregatorOpenRoundParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 3}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"qualname": 4, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 45}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.AggregatorSaveResultParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "switchboardpy.AggregatorSaveResultParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.AggregatorSaveResultParams.error": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.AggregatorSaveResultParams.value": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "switchboardpy.AggregatorSaveResultParams.min_response": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "switchboardpy.AggregatorSaveResultParams.max_response": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.AggregatorSaveResultParams.jobs": {"qualname": 2, "fullname": 3, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.AggregatorSetHistoryBufferParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 3}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "switchboardpy.CrankAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.CrankAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.push": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.pop_txn": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.pop": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.peak_next_with_time": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.peak_next_ready": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.peak_next": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.CrankPopParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.CrankPopParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 3}, "switchboardpy.CrankPopParams.payout_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.CrankPopParams.queue_pubkey": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.CrankPopParams.queue_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "switchboardpy.CrankPopParams.crank": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "switchboardpy.CrankPopParams.queue": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.CrankPopParams.token_mint": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "switchboardpy.CrankPopParams.ready_pubkeys": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.CrankPopParams.nonce": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.CrankInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "switchboardpy.CrankInitParams.queue_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.CrankInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.CrankInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.CrankInitParams.max_rows": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankPushParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.CrankPushParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.CrankRow": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.CrankRow.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 3}, "switchboardpy.CrankRow.pubkey": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.CrankRow.from_bytes": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "switchboardpy.JobAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "switchboardpy.JobAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "switchboardpy.JobAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.load_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.decode": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.JobInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.JobInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "switchboardpy.JobInitParams.data": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.JobInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.JobInitParams.expiration": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.JobInitParams.variables": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.JobInitParams.keypair": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.JobInitParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "switchboardpy.LeaseAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.LeaseAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.get_balance": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.extend": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.withdraw": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.LeaseExtendParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseExtendParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.LeaseExtendParams.load_amount": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseExtendParams.funder": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 3}, "switchboardpy.LeaseInitParams.load_amount": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseInitParams.funder": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseInitParams.funder_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"qualname": 4, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.LeaseInitParams.aggregator_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.LeaseInitParams.withdraw_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.LeaseWithdrawParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseWithdrawParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.LeaseWithdrawParams.amount": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.OracleAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 48}, "switchboardpy.OracleAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.OracleAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.heartbeat": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.withdraw": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.OracleInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.OracleInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "switchboardpy.OracleInitParams.queue_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.OracleInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.OracleInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.OracleWithdrawParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.OracleWithdrawParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "switchboardpy.OracleWithdrawParams.amount": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.OracleQueueAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "switchboardpy.OracleQueueAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.OracleQueueAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.load_mint": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.OracleQueueInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueInitParams.mint": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.OracleQueueInitParams.reward": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.OracleQueueInitParams.min_stake": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.OracleQueueInitParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"qualname": 4, "fullname": 5, "annotation": 3, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"qualname": 4, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.OracleQueueInitParams.queue_size": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 18}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 30}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"qualname": 4, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.OracleQueueInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.OracleQueueInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 23}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.OracleJob": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.DESCRIPTOR": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 3, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.OracleJob.HttpTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.JsonParseTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MedianTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MeanTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MaxTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.ValueTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.WebsocketTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.ConditionalTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.DivideTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MultiplyTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.AddTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SubtractTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.LpTokenPriceTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.LpExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.RegexExtractTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.XStepPriceTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.TwapTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SerumSwapTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.PowTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.LendingRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.JupiterSwapTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.PerpMarketTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.OracleTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.AnchorFetchTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.DefiKingdomsTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.TpsTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SplStakePoolTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SplTokenParseTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.CacheTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SysclockOffsetTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.Task": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.tasks": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.PermissionAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "switchboardpy.PermissionAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 30}, "switchboardpy.PermissionAccount.is_permission_enabled": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.set": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.PermissionInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.PermissionInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.PermissionInitParams.granter": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.PermissionInitParams.grantee": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.PermissionSetParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.PermissionSetParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.PermissionSetParams.permission": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.PermissionSetParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.ProgramStateAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "switchboardpy.ProgramStateAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "switchboardpy.ProgramStateAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.get_token_mint": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.vault_transfer": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.ProgramInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.ProgramInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.ProgramInitParams.mint": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.VaultTransferParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.VaultTransferParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.SwitchboardDecimal.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.scale": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "switchboardpy.SwitchboardDecimal.fromObj": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.to_decimal": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.from_decimal": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.readRawVarint32": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.readDelimitedFrom": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}}, "length": 272, "save": true}, "index": {"qualname": {"root": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 28}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 4}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 17}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}}, "df": 10}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AddTask": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 10}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}, "s": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 2, "s": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.push": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}}, "df": 2}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PowTask": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 1}, "e": {"docs": {"switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.nonce": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 15}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorAccount.lock": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 10}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}}, "df": 8}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LendingRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.decode": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DivideTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount.heartbeat": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.HttpTask": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ValueTask": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 3}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.VaultTransferParams": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}}, "df": 2}}, "o": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TwapTask": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TpsTask": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}}, "df": 11}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 8}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SubtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"switchboardpy.readRawVarint32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.readDelimitedFrom": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ConditionalTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 11}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.CacheTask": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}}, "df": 5, "s": {"docs": {"switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JsonParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount.get_balance": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}}, "df": 5}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 18}}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 38}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.OracleTask": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 7, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 4}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MedianTask": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MeanTask": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MaxTask": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MultiplyTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}}, "df": 10}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.extend": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 2}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.WebsocketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "fullname": {"root": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.OracleJob.tasks": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}, "switchboardpy.VaultTransferParams": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}, "switchboardpy.readRawVarint32": {"tf": 1}, "switchboardpy.readDelimitedFrom": {"tf": 1}}, "df": 272}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}}, "df": 11}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 8}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SubtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 28}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 4}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 17}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}}, "df": 10}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AddTask": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 10}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}, "s": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 2, "s": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.push": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}}, "df": 2}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PowTask": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 1}, "e": {"docs": {"switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.nonce": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 15}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorAccount.lock": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 10}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}}, "df": 8}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LendingRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.decode": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DivideTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount.heartbeat": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.HttpTask": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ValueTask": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 3}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.VaultTransferParams": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}}, "df": 2}}, "o": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TwapTask": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TpsTask": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"switchboardpy.readRawVarint32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.readDelimitedFrom": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ConditionalTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 11}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.CacheTask": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}}, "df": 5, "s": {"docs": {"switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JsonParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount.get_balance": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}}, "df": 5}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 18}}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 38}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.OracleTask": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 7, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 4}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MedianTask": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MeanTask": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MaxTask": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MultiplyTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}}, "df": 10}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.extend": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 2}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.WebsocketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "annotation": {"root": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 89, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.pubkey": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.granter": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.mint": {"tf": 1.4142135623730951}}, "df": 23}}}}}}}}, "b": {"2": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 28}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 7}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.authority": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 25}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 10}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 6}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1}}}}}}}}}}, "default_value": {"root": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1.7320508075688772}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 42, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 41}}}}}}, "signature": {"root": {"0": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1, "x": {"1": {"0": {"3": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"2": {"9": {"4": {"0": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.add_job": {"tf": 2}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 2}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 2}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 2}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 2}, "switchboardpy.AggregatorAccount.lock": {"tf": 2}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 2}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 2}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.push": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.pop": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.peak_next": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankPushParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.from_bytes": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.load_job": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.decode": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.extend": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.withdraw": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.set": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1.4142135623730951}}, "df": 104, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 83}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 2}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}}, "df": 21}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 44}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionSetParams.__init__": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.decode": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.create": {"tf": 2}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1.7320508075688772}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramStateAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 2}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 2}, "switchboardpy.CrankPopParams.__init__": {"tf": 3.1622776601683795}, "switchboardpy.CrankRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 2}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 2}, "switchboardpy.PermissionAccount.from_seed": {"tf": 2.449489742783178}, "switchboardpy.PermissionInitParams.__init__": {"tf": 2.449489742783178}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 18}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 33}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 2}}}}}, "b": {"2": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.4142135623730951}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 15}}}}}}, "y": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 7}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}}, "df": 11, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.CrankPushParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 21, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.open_round": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 17}}}}}}}}, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 15}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}}, "df": 8}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.set_authority": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankAccount.push": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.lock": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 2}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "n": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 3.1622776601683795}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.__init__": {"tf": 2.23606797749979}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 3.4641016151377544}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}}, "df": 22}, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankRow.__init__": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 5}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}}, "df": 6}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 11, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 2}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleAccount.withdraw": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "n": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 2.449489742783178}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1.4142135623730951}}, "df": 14}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}}, "df": 6}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}}, "df": 3}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount.extend": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}}, "df": 1}}, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 2.6457513110645907}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 2.8284271247461903}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1.4142135623730951}}, "df": 17}}, "d": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}}, "df": 5}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 3, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 10}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionSetParams.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}}, "df": 2}, "e": {"docs": {"switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AddTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PowTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.Task": {"tf": 1.4142135623730951}}, "df": 36}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleJob": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AddTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PowTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.Task": {"tf": 1.4142135623730951}}, "df": 36}}}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 36}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.AddTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.PowTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.Task": {"tf": 1.7320508075688772}}, "df": 36}}}}}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 36}}}}}}}}}}, "doc": {"root": {"2": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}, "docs": {"switchboardpy": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.program": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.public_key": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.keypair": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount": {"tf": 3.3166247903554}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.keypair": {"tf": 2.8284271247461903}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.lock": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorHistoryRow": {"tf": 2.6457513110645907}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 2.6457513110645907}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.name": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount": {"tf": 3.1622776601683795}, "switchboardpy.CrankAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.CrankAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.push": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.pop": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.peak_next": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.crank": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.nonce": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.name": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.metadata": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1.7320508075688772}, "switchboardpy.CrankPushParams": {"tf": 1.7320508075688772}, "switchboardpy.CrankPushParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankRow": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankRow.pubkey": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.from_bytes": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount": {"tf": 3.1622776601683795}, "switchboardpy.JobAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.keypair": {"tf": 3.4641016151377544}, "switchboardpy.JobAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.load_job": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.decode": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.data": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.name": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.expiration": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.variables": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.keypair": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.authority": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount": {"tf": 3.1622776601683795}, "switchboardpy.LeaseAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.LeaseAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.extend": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1.7320508075688772}, "switchboardpy.LeaseWithdrawParams": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 3.1622776601683795}, "switchboardpy.OracleAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.OracleAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.withdraw": {"tf": 1.7320508075688772}, "switchboardpy.OracleInitParams": {"tf": 1.7320508075688772}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.name": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.metadata": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 3.1622776601683795}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.OracleQueueAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AddTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PowTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.Task": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.tasks": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 3.1622776601683795}, "switchboardpy.PermissionAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.keypair": {"tf": 2.6457513110645907}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.set": {"tf": 1.7320508075688772}, "switchboardpy.PermissionInitParams": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionInitParams.granter": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionSetParams.permission": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 3.1622776601683795}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 3}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.7320508075688772}, "switchboardpy.ProgramInitParams": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.ProgramInitParams.mint": {"tf": 1.7320508075688772}, "switchboardpy.VaultTransferParams": {"tf": 1.4142135623730951}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 3}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1.7320508075688772}, "switchboardpy.readRawVarint32": {"tf": 1.7320508075688772}, "switchboardpy.readDelimitedFrom": {"tf": 1.7320508075688772}}, "df": 272, "t": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1.4142135623730951}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 2}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 2.23606797749979}, "switchboardpy.JobInitParams": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 74, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}, "m": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 33}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 4}, "n": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 4, "s": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 5}}}}}}}}, "o": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 40, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}}, "df": 10}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 5}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.VaultTransferParams": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 8, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 10, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}}, "df": 2, "d": {"docs": {"switchboardpy.JobAccount": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 3}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 2}, "d": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 5}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 3}}, "c": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}}, "df": 4}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount": {"tf": 2.449489742783178}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 36}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.mint": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 9, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 8}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}}, "df": 5, "s": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.JobAccount": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.keypair": {"tf": 2}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 12, "s": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}, "v": {"2": {"docs": {"switchboardpy": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 7}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}}, "df": 6, "n": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}}, "df": 10}}}}, "s": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}, "e": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "f": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AccountParams": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 10}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 7}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 5}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.CrankInitParams.metadata": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 56, "n": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 16, "d": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1.4142135623730951}}, "df": 9}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1.4142135623730951}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 19, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.keypair": {"tf": 2}, "switchboardpy.AggregatorHistoryRow": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 22, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}, "s": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 9}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 10}}, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 12}}, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AggregatorInitParams.authority": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"switchboardpy.JobAccount": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleInitParams": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.JobInitParams.data": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.VaultTransferParams": {"tf": 1}}, "df": 9}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1.7320508075688772}}, "df": 2}}, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 15}, "n": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 8, "t": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal": {"tf": 1.4142135623730951}}, "df": 6, "o": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 7}, "t": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 9, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount": {"tf": 1.7320508075688772}}, "df": 13}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 40}, "r": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 10}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}}, "df": 2}}}}}}}}}, "e": {"docs": {"switchboardpy.OracleInitParams.queue_account": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleInitParams.name": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 14, "e": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams.mint": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.VaultTransferParams": {"tf": 1}}, "df": 5}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 10}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 2}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}, "x": {"docs": {"switchboardpy.CrankInitParams.metadata": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 6}}}}, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "o": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 3, "t": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 7}, "n": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 8}, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}}, "df": 7}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "/": {"0": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 2}, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 3}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 25}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 8, "s": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1.4142135623730951}}, "df": 14}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 8}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueAccount": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}}, "df": 5}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.PermissionInitParams": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}}, "df": 3}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 11, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}}, "df": 2}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 10, "s": {"docs": {"switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 19, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankPopParams.crank": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}}, "df": 6}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {"switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 9, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 1}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true};
// mirrored in build-search-index.js (part 1)
// Also split on html tags. this is a cheap heuristic, but good enough.
elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/);
let searchIndex;
if (docs._isPrebuiltIndex) {
console.info("using precompiled search index");
searchIndex = elasticlunr.Index.load(docs);
} else {
console.time("building search index");
// mirrored in build-search-index.js (part 2)
searchIndex = elasticlunr(function () {
this.pipeline.remove(elasticlunr.stemmer);
this.pipeline.remove(elasticlunr.stopWordFilter);
this.addField("qualname");
this.addField("fullname");
this.addField("annotation");
this.addField("default_value");
this.addField("signature");
this.addField("bases");
this.addField("doc");
this.setRef("fullname");
});
for (let doc of docs) {
searchIndex.addDoc(doc);
}
console.timeEnd("building search index");
}
return (term) => searchIndex.search(term, {
fields: {
qualname: {boost: 4},
fullname: {boost: 2},
annotation: {boost: 2},
default_value: {boost: 2},
signature: {boost: 2},
bases: {boost: 2},
doc: {boost: 1},
},
expand: true
});
})();