diff --git a/CHANGELOG.md b/CHANGELOG.md index 01223875a1f..743e308c474 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## X.X.X (coming soon) +## 7.1.0 (November 22, 2017) Other: - Reduced build-size by using [rxjs-lettable-operators](https://github.com/ReactiveX/rxjs/blob/master/doc/lettable-operators.md). Read [this](https://github.com/pubkey/rxdb/blob/master/docs-src/install.md#rxjs) if you have problems. diff --git a/dist/es/data-migrator.js b/dist/es/data-migrator.js index b978ebe0e46..8cbfa45935c 100644 --- a/dist/es/data-migrator.js +++ b/dist/es/data-migrator.js @@ -10,13 +10,14 @@ import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import PouchDB from './pouch-db'; import clone from 'clone'; -import * as util from './util'; import RxSchema from './rx-schema'; import Crypter from './crypter'; import RxError from './rx-error'; import overwritable from './overwritable'; import hooks from './hooks'; +import { Observable } from 'rxjs/Observable'; + var DataMigrator = function () { function DataMigrator(newestCollection, migrationStrategies) { _classCallCheck(this, DataMigrator); @@ -76,7 +77,7 @@ var DataMigrator = function () { percent: 0 // percentage }; - var migrationState$ = new util.Rx.Observable(function () { + var migrationState$ = new Observable(function () { var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(observer) { var oldCols, countAll, totalCount, currentCol, _loop; @@ -444,7 +445,7 @@ var OldCollection = function () { if (this._migrate) throw new Error('migration already running'); this._migrate = true; - var stateStream$ = new util.Rx.Observable(function () { + var stateStream$ = new Observable(function () { var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5(observer) { var batch, error; return _regeneratorRuntime.wrap(function _callee5$(_context6) { diff --git a/dist/es/plugins/attachments.js b/dist/es/plugins/attachments.js index 5fa82a42f19..dab36b09c8b 100644 --- a/dist/es/plugins/attachments.js +++ b/dist/es/plugins/attachments.js @@ -36,6 +36,8 @@ import IdleQueue from 'custom-idle-queue'; import RxChangeEvent from './../rx-change-event'; import * as util from './../util'; +import { map } from 'rxjs/operators/map'; + /** * to not have update-conflicts, * we use atomic inserts (per document) on putAttachment() @@ -460,18 +462,18 @@ export var prototypes = { get: function allAttachments$() { var _this3 = this; - return this._dataSync$.map(function (data) { + return this._dataSync$.pipe(map(function (data) { if (!data._attachments) return {}; return data._attachments; - }).map(function (attachmentsData) { + }), map(function (attachmentsData) { return Object.entries(attachmentsData); - }).map(function (entries) { + }), map(function (entries) { return entries.map(function (entry) { var id = entry[0]; var attachmentData = entry[1]; return RxAttachment.fromPouchDocument(id, attachmentData, _this3); }); - }); + })); } }); } diff --git a/dist/es/plugins/in-memory.js b/dist/es/plugins/in-memory.js index cf6bb482103..b3943a5393c 100644 --- a/dist/es/plugins/in-memory.js +++ b/dist/es/plugins/in-memory.js @@ -9,6 +9,8 @@ import _inherits from 'babel-runtime/helpers/inherits'; * So you can do faster queries and also query over encrypted fields */ +import { Subject } from 'rxjs/Subject'; + import RxCollection from '../rx-collection'; import Core from '../core'; import * as util from '../util'; @@ -70,7 +72,7 @@ export var InMemoryRxCollection = function (_RxCollection$RxColle) { this.pouch = new PouchDB('rxdb-in-memory-' + util.randomCouchString(10), util.adapterObject('memory'), {}); - this._observable$ = new util.Rx.Subject(); + this._observable$ = new Subject(); this._changeEventBuffer = ChangeEventBuffer.create(this); // INDEXES diff --git a/dist/es/plugins/leader-election.js b/dist/es/plugins/leader-election.js index f8af5b8488f..258bfafb3b0 100644 --- a/dist/es/plugins/leader-election.js +++ b/dist/es/plugins/leader-election.js @@ -12,6 +12,10 @@ import RxBroadcastChannel from '../rx-broadcast-channel'; export var documentID = '_local/leader'; +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { filter } from 'rxjs/operators/filter'; +import { first } from 'rxjs/operators/first'; + /** * This time defines how 'fast' the communication between the instances is. * If this time is too low, it's possible that more than one instance becomes leader @@ -34,7 +38,7 @@ var LeaderElector = function () { this.token = this.database.token; this.isLeader = false; - this.becomeLeader$ = new util.Rx.BehaviorSubject({ + this.becomeLeader$ = new BehaviorSubject({ isLeader: false }); @@ -308,37 +312,37 @@ var LeaderElector = function () { while (1) { switch (_context4.prev = _context4.next) { case 0: - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe(filter(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), filter(function (msg) { return msg.t >= applyTime; - }).filter(function (msg) { + }), filter(function (msg) { return msg.type === 'apply'; - }).filter(function (msg) { + }), filter(function (msg) { if (msg.data < applyTime || msg.data === applyTime && msg.it > _this.token) return true;else return false; - }).filter(function () { + }), filter(function () { return errors.length < 1; - }).subscribe(function (msg) { + })).subscribe(function (msg) { return errors.push('other is applying:' + msg.it); })); - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe(filter(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), filter(function (msg) { return msg.t >= applyTime; - }).filter(function (msg) { + }), filter(function (msg) { return msg.type === 'tell'; - }).filter(function () { + }), filter(function () { return errors.length < 1; - }).subscribe(function (msg) { + })).subscribe(function (msg) { return errors.push('other is leader' + msg.it); })); - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe(filter(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), filter(function (msg) { return msg.type === 'apply'; - }).filter(function (msg) { + }), filter(function (msg) { if (msg.data > applyTime || msg.data === applyTime && msg.it > _this.token) return true;else return false; - }).subscribe(function () { + })).subscribe(function () { return _this.bc.write('apply', applyTime); })); @@ -550,13 +554,13 @@ var LeaderElector = function () { break; case 11: - this.signalLeadership = this.bc.$.filter(function () { + this.signalLeadership = this.bc.$.pipe(filter(function () { return !!_this2.isLeader; - }) + }), // BUGFIX: avoids loop-hole when for whatever reason 2 are leader - .filter(function (msg) { + filter(function (msg) { return msg.type !== 'tell'; - }).subscribe(function () { + })).subscribe(function () { return _this2.leaderSignal(); }); this.subs.push(this.signalLeadership); @@ -758,9 +762,9 @@ var LeaderElector = function () { case 9: // apply when leader dies - this.subs.push(this.bc.$.filter(function (msg) { + this.subs.push(this.bc.$.pipe(filter(function (msg) { return msg.type === 'death'; - }).subscribe(function () { + })).subscribe(function () { return _this3.applyOnce(); })); return _context11.abrupt('break', 13); @@ -822,9 +826,9 @@ var LeaderElector = function () { }))(); case 14: - return _context11.abrupt('return', this.becomeLeader$.asObservable().filter(function (i) { + return _context11.abrupt('return', this.becomeLeader$.asObservable().pipe(filter(function (i) { return i.isLeader === true; - }).first().toPromise()); + }), first()).toPromise()); case 15: case 'end': diff --git a/dist/es/plugins/local-documents.js b/dist/es/plugins/local-documents.js index 51ba81206ac..39730ba8ee3 100644 --- a/dist/es/plugins/local-documents.js +++ b/dist/es/plugins/local-documents.js @@ -21,6 +21,8 @@ import RxChangeEvent from '../rx-change-event'; import DocCache from '../doc-cache'; import RxError from '../rx-error'; +import { filter } from 'rxjs/operators/filter'; + var DOC_CACHE_BY_PARENT = new WeakMap(); var _getDocCache = function _getDocCache(parent) { if (!DOC_CACHE_BY_PARENT.has(parent)) { @@ -31,9 +33,9 @@ var _getDocCache = function _getDocCache(parent) { var CHANGE_SUB_BY_PARENT = new WeakMap(); var _getChangeSub = function _getChangeSub(parent) { if (!CHANGE_SUB_BY_PARENT.has(parent)) { - var sub = parent.$.filter(function (cE) { + var sub = parent.$.pipe(filter(function (cE) { return cE.data.isLocal; - }).subscribe(function (cE) { + })).subscribe(function (cE) { var docCache = _getDocCache(parent); var doc = docCache.get(cE.data.doc); if (doc) doc._handleChangeEvent(cE); diff --git a/dist/es/plugins/replication.js b/dist/es/plugins/replication.js index 5af1232d8e9..8c954272833 100644 --- a/dist/es/plugins/replication.js +++ b/dist/es/plugins/replication.js @@ -8,6 +8,12 @@ import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import clone from 'clone'; import PouchReplicationPlugin from 'pouchdb-replication'; +import { Subject } from 'rxjs/Subject'; +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { fromEvent } from 'rxjs/observable/fromEvent'; +import { filter } from 'rxjs/operators/filter'; +import { map } from 'rxjs/operators/map'; +import { delay } from 'rxjs/operators/delay'; import * as util from '../util'; import Core from '../core'; @@ -27,11 +33,11 @@ export var RxReplicationState = function () { this.collection = collection; this._pouchEventEmitterObject = null; this._subjects = { - change: new util.Rx.Subject(), - docs: new util.Rx.Subject(), - active: new util.Rx.BehaviorSubject(false), - complete: new util.Rx.BehaviorSubject(false), - error: new util.Rx.Subject() + change: new Subject(), + docs: new Subject(), + active: new BehaviorSubject(false), + complete: new BehaviorSubject(false), + error: new Subject() }; // create getters @@ -51,12 +57,12 @@ export var RxReplicationState = function () { this._pouchEventEmitterObject = evEmitter; // change - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'change').subscribe(function (ev) { + this._subs.push(fromEvent(evEmitter, 'change').subscribe(function (ev) { return _this2._subjects.change.next(ev); })); // docs - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'change').subscribe(function (ev) { + this._subs.push(fromEvent(evEmitter, 'change').subscribe(function (ev) { if (_this2._subjects.docs.observers.length === 0 || ev.direction !== 'pull') return; ev.change.docs.filter(function (doc) { @@ -71,20 +77,20 @@ export var RxReplicationState = function () { })); // error - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'error').subscribe(function (ev) { + this._subs.push(fromEvent(evEmitter, 'error').subscribe(function (ev) { return _this2._subjects.error.next(ev); })); // active - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'active').subscribe(function () { + this._subs.push(fromEvent(evEmitter, 'active').subscribe(function () { return _this2._subjects.active.next(true); })); - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'paused').subscribe(function () { + this._subs.push(fromEvent(evEmitter, 'paused').subscribe(function () { return _this2._subjects.active.next(false); })); // complete - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'complete').subscribe(function (info) { + this._subs.push(fromEvent(evEmitter, 'complete').subscribe(function (info) { return _this2._subjects.complete.next(info); })); }; @@ -137,38 +143,38 @@ export function watchForChanges() { * this is to ensure that changes from 'synced' dbs will be published */ var sendChanges = {}; - var pouch$ = util.Rx.Observable.fromEvent(this.pouch.changes({ + var pouch$ = fromEvent(this.pouch.changes({ since: 'now', live: true, include_docs: true - }), 'change').filter(function (c) { + }), 'change').pipe(filter(function (c) { return c.id.charAt(0) !== '_'; - }).map(function (c) { + }), map(function (c) { return c.doc; - }).filter(function (doc) { + }), filter(function (doc) { return !_this3._changeEventBuffer.buffer.map(function (cE) { return cE.data.v._rev; }).includes(doc._rev); - }).filter(function (doc) { + }), filter(function (doc) { return sendChanges[doc._rev] = 'YES'; - }).delay(10).map(function (doc) { + }), delay(10), map(function (doc) { var ret = null; if (sendChanges[doc._rev] === 'YES') ret = doc; delete sendChanges[doc._rev]; return ret; - }).filter(function (doc) { + }), filter(function (doc) { return doc !== null; - }).subscribe(function (doc) { + })).subscribe(function (doc) { _this3.$emit(RxChangeEvent.fromPouchChange(doc, _this3)); }); this._subs.push(pouch$); - var ob2 = this.$.map(function (cE) { + var ob2 = this.$.pipe(map(function (cE) { return cE.data.v; - }).map(function (doc) { + }), map(function (doc) { if (doc && sendChanges[doc._rev]) sendChanges[doc._rev] = 'NO'; - }).subscribe(); + })).subscribe(); this._subs.push(ob2); this.synced = true; diff --git a/dist/es/rx-broadcast-channel.js b/dist/es/rx-broadcast-channel.js index 40448af1921..48c761458a1 100644 --- a/dist/es/rx-broadcast-channel.js +++ b/dist/es/rx-broadcast-channel.js @@ -1,6 +1,8 @@ import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _createClass from 'babel-runtime/helpers/createClass'; -import * as util from './util'; +import { fromEvent } from 'rxjs/observable/fromEvent'; +import { map } from 'rxjs/operators/map'; +import { filter } from 'rxjs/operators/filter'; /** * this is a wrapper for BroadcastChannel to integrate it with RxJS @@ -59,13 +61,13 @@ var RxBroadcastChannel = function () { var _this = this; if (!this._$) { - this._$ = util.Rx.Observable.fromEvent(this.bc, 'message').map(function (msg) { + this._$ = fromEvent(this.bc, 'message').pipe(map(function (msg) { return msg.data; - }).map(function (strMsg) { + }), map(function (strMsg) { return JSON.parse(strMsg); - }).filter(function (msg) { + }), filter(function (msg) { return msg.it !== _this.token; - }); + })); } return this._$; } diff --git a/dist/es/rx-collection.js b/dist/es/rx-collection.js index c0b56d48940..74a4904c457 100644 --- a/dist/es/rx-collection.js +++ b/dist/es/rx-collection.js @@ -20,6 +20,8 @@ import { runPluginHooks } from './hooks'; import RxSchema from './rx-schema'; import RxDatabase from './rx-database'; +import { filter } from 'rxjs/operators/filter'; + var HOOKS_WHEN = ['pre', 'post']; var HOOKS_KEYS = ['insert', 'save', 'remove', 'create']; @@ -88,9 +90,9 @@ export var RxCollection = function () { case 5: - this._observable$ = this.database.$.filter(function (event) { + this._observable$ = this.database.$.pipe(filter(function (event) { return event.data.col === _this2.name; - }); + })); this._changeEventBuffer = ChangeEventBuffer.create(this); // INDEXES @@ -111,9 +113,9 @@ export var RxCollection = function () { case 9: - this._subs.push(this._observable$.filter(function (cE) { + this._subs.push(this._observable$.pipe(filter(function (cE) { return !cE.data.isLocal; - }).subscribe(function (cE) { + })).subscribe(function (cE) { // when data changes, send it to RxDocument in docCache var doc = _this2._docCache.get(cE.data.doc); if (doc) doc._handleChangeEvent(cE); diff --git a/dist/es/rx-database.js b/dist/es/rx-database.js index d54b19de55c..3aa7a7d7381 100644 --- a/dist/es/rx-database.js +++ b/dist/es/rx-database.js @@ -15,6 +15,9 @@ import Socket from './socket'; import overwritable from './overwritable'; import { runPluginHooks } from './hooks'; +import { Subject } from 'rxjs/Subject'; +import { filter } from 'rxjs/operators/filter'; + /** * stores the combinations * of used database-names with their adapters @@ -41,10 +44,10 @@ export var RxDatabase = function () { this.collections = {}; // rx - this.subject = new util.Rx.Subject(); - this.observable$ = this.subject.asObservable().filter(function (cEvent) { + this.subject = new Subject(); + this.observable$ = this.subject.asObservable().pipe(filter(function (cEvent) { return RxChangeEvent.isInstanceOf(cEvent); - }); + })); } /** diff --git a/dist/es/rx-document.js b/dist/es/rx-document.js index 357676998f3..e649f25d492 100644 --- a/dist/es/rx-document.js +++ b/dist/es/rx-document.js @@ -11,6 +11,10 @@ import RxChangeEvent from './rx-change-event'; import RxError from './rx-error'; import { runPluginHooks } from './hooks'; +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { distinctUntilChanged } from 'rxjs/operators/distinctUntilChanged'; +import { map } from 'rxjs/operators/map'; + export var RxDocument = function () { function RxDocument(collection, jsonData) { _classCallCheck(this, RxDocument); @@ -21,7 +25,7 @@ export var RxDocument = function () { this._isTemporary = false; // assume that this is always equal to the doc-data in the database - this._dataSync$ = new util.Rx.BehaviorSubject(clone(jsonData)); + this._dataSync$ = new BehaviorSubject(clone(jsonData)); // current doc-data, changes when setting values etc this._data = clone(jsonData); @@ -33,8 +37,8 @@ export var RxDocument = function () { this._atomicUpdatesResolveFunctions = new WeakMap(); // false when _data !== _dataSync - this._synced$ = new util.Rx.BehaviorSubject(true); - this._deleted$ = new util.Rx.BehaviorSubject(false); + this._synced$ = new BehaviorSubject(true); + this._deleted$ = new BehaviorSubject(false); } RxDocument.prototype.prepare = function prepare() { @@ -126,9 +130,9 @@ export var RxDocument = function () { var schemaObj = this.collection.schema.getSchemaByObjectPath(path); if (!schemaObj) throw new Error('cannot observe a non-existed field (' + path + ')'); - return this._dataSync$.map(function (data) { + return this._dataSync$.pipe(map(function (data) { return objectPath.get(data, path); - }).distinctUntilChanged().asObservable(); + }), distinctUntilChanged()).asObservable(); }; /** @@ -684,7 +688,7 @@ export var RxDocument = function () { }, { key: 'synced$', get: function get() { - return this._synced$.asObservable().distinctUntilChanged(); + return this._synced$.pipe(distinctUntilChanged()).asObservable(); } }, { key: 'synced', diff --git a/dist/es/rx-query.js b/dist/es/rx-query.js index f2d1a6edf42..2dcd47f89ea 100644 --- a/dist/es/rx-query.js +++ b/dist/es/rx-query.js @@ -10,6 +10,13 @@ import QueryChangeDetector from './query-change-detector'; import RxError from './rx-error'; import { runPluginHooks } from './hooks'; +import { merge } from 'rxjs/observable/merge'; +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { mergeMap } from 'rxjs/operators/mergeMap'; +import { filter } from 'rxjs/operators/filter'; +import { map } from 'rxjs/operators/map'; +import { first } from 'rxjs/operators/first'; + var _queryCount = 0; var newQueryID = function newQueryID() { return ++_queryCount; @@ -29,7 +36,7 @@ export var RxQuery = function () { this._queryChangeDetector = QueryChangeDetector.create(this); this._resultsData = null; - this._results$ = new util.Rx.BehaviorSubject(null); + this._results$ = new BehaviorSubject(null); this._latestChangeEvent = -1; this._runningPromise = Promise.resolve(true); @@ -368,7 +375,7 @@ export var RxQuery = function () { RxQuery.prototype.exec = function exec() { - return this.$.first().toPromise(); + return this.$.pipe(first()).toPromise(); }; /** @@ -442,17 +449,17 @@ export var RxQuery = function () { var _this3 = this; if (!this._$) { - var res$ = this._results$.mergeMap(function (results) { + var res$ = this._results$.pipe(mergeMap(function (results) { return _this3._ensureEqual().then(function (hasChanged) { if (hasChanged) return 'WAITFORNEXTEMIT';else return results; }); - }).filter(function (results) { + }), filter(function (results) { return results !== 'WAITFORNEXTEMIT'; - }).asObservable(); + })).asObservable(); - var changeEvents$ = this.collection.$.filter(function (cEvent) { + var changeEvents$ = this.collection.$.pipe(filter(function (cEvent) { return ['INSERT', 'UPDATE', 'REMOVE'].includes(cEvent.data.op); - }).mergeMap(_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() { + }), mergeMap(_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() { return _regeneratorRuntime.wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { @@ -465,15 +472,14 @@ export var RxQuery = function () { } } }, _callee2, _this3); - }))).filter(function () { + }))), filter(function () { return false; - }); - - this._$ = util.Rx.Observable.merge(res$, changeEvents$).filter(function (x) { + })); + this._$ = merge(res$, changeEvents$).pipe(filter(function (x) { return x !== null; - }).map(function (results) { + }), map(function (results) { if (_this3.op !== 'findOne') return results;else if (results.length === 0) return null;else return results[0]; - }); + })); } return this._$; } diff --git a/dist/es/socket.js b/dist/es/socket.js index 30d166d11ca..0c389565bbd 100644 --- a/dist/es/socket.js +++ b/dist/es/socket.js @@ -9,6 +9,9 @@ import RxBroadcastChannel from './rx-broadcast-channel'; var EVENT_TTL = 5000; // after this age, events will be deleted var PULL_TIME = RxBroadcastChannel.canIUse() ? EVENT_TTL / 2 : 200; +import { Subject } from 'rxjs/Subject'; +import { filter } from 'rxjs/operators/filter'; + var Socket = function () { function Socket(database) { _classCallCheck(this, Socket); @@ -24,7 +27,7 @@ var Socket = function () { this.receivedEvents = {}; this.bc = RxBroadcastChannel.create(this.database, 'socket'); - this.messages$ = new util.Rx.Subject(); + this.messages$ = new Subject(); } /** @@ -48,9 +51,9 @@ var Socket = function () { // pull on BroadcastChannel-message if (this.bc) { - this.subs.push(this.bc.$.filter(function (msg) { + this.subs.push(this.bc.$.pipe(filter(function (msg) { return msg.type === 'pull'; - }).subscribe(function () { + })).subscribe(function () { return _this.pull(); })); } diff --git a/dist/es/util.js b/dist/es/util.js index 9deed270988..869f241ba75 100644 --- a/dist/es/util.js +++ b/dist/es/util.js @@ -7,36 +7,6 @@ import _asyncToGenerator from 'babel-runtime/helpers/asyncToGenerator'; import randomToken from 'random-token'; import RxError from './rx-error'; -// rxjs cherry-pick -import { Observable } from 'rxjs/Observable'; -import { Subject } from 'rxjs/Subject'; -import { BehaviorSubject } from 'rxjs/BehaviorSubject'; -import 'rxjs/add/observable/merge'; -import 'rxjs/add/observable/interval'; -import 'rxjs/add/observable/from'; -import 'rxjs/add/observable/fromEvent'; -import 'rxjs/add/observable/defer'; - -import 'rxjs/add/operator/publishReplay'; -import 'rxjs/add/operator/publish'; -import 'rxjs/add/operator/timeout'; -import 'rxjs/add/operator/delay'; -import 'rxjs/add/operator/do'; -import 'rxjs/add/operator/map'; -import 'rxjs/add/operator/mergeMap'; -import 'rxjs/add/operator/filter'; -import 'rxjs/add/operator/first'; -import 'rxjs/add/operator/startWith'; -import 'rxjs/add/operator/toPromise'; -import 'rxjs/add/operator/distinctUntilChanged'; -import 'rxjs/add/operator/distinct'; - -export var Rx = { - Observable: Observable, - Subject: Subject, - BehaviorSubject: BehaviorSubject -}; - /** * check if the given module is a leveldown-adapter * throws if not diff --git a/dist/lib/data-migrator.js b/dist/lib/data-migrator.js index f627290f814..34b1ed4b2b2 100644 --- a/dist/lib/data-migrator.js +++ b/dist/lib/data-migrator.js @@ -30,10 +30,6 @@ var _clone = require('clone'); var _clone2 = _interopRequireDefault(_clone); -var _util = require('./util'); - -var util = _interopRequireWildcard(_util); - var _rxSchema = require('./rx-schema'); var _rxSchema2 = _interopRequireDefault(_rxSchema); @@ -54,7 +50,7 @@ var _hooks = require('./hooks'); var _hooks2 = _interopRequireDefault(_hooks); -function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } +var _Observable = require('rxjs/Observable'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -125,7 +121,7 @@ var DataMigrator = function () { percent: 0 // percentage }; - var migrationState$ = new util.Rx.Observable(function () { + var migrationState$ = new _Observable.Observable(function () { var _ref = (0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee(observer) { var oldCols, countAll, totalCount, currentCol, _loop; @@ -503,7 +499,7 @@ var OldCollection = function () { if (this._migrate) throw new Error('migration already running'); this._migrate = true; - var stateStream$ = new util.Rx.Observable(function () { + var stateStream$ = new _Observable.Observable(function () { var _ref5 = (0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee5(observer) { var batch, error; return _regenerator2['default'].wrap(function _callee5$(_context6) { diff --git a/dist/lib/plugins/attachments.js b/dist/lib/plugins/attachments.js index 37db26eec00..688a583b98b 100644 --- a/dist/lib/plugins/attachments.js +++ b/dist/lib/plugins/attachments.js @@ -229,6 +229,8 @@ var _util = require('./../util'); var util = _interopRequireWildcard(_util); +var _map = require('rxjs/operators/map'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -501,18 +503,18 @@ var prototypes = exports.prototypes = { get: function allAttachments$() { var _this3 = this; - return this._dataSync$.map(function (data) { + return this._dataSync$.pipe((0, _map.map)(function (data) { if (!data._attachments) return {}; return data._attachments; - }).map(function (attachmentsData) { + }), (0, _map.map)(function (attachmentsData) { return Object.entries(attachmentsData); - }).map(function (entries) { + }), (0, _map.map)(function (entries) { return entries.map(function (entry) { var id = entry[0]; var attachmentData = entry[1]; return RxAttachment.fromPouchDocument(id, attachmentData, _this3); }); - }); + })); } }); } diff --git a/dist/lib/plugins/in-memory.js b/dist/lib/plugins/in-memory.js index a3269ba102a..014e47b052f 100644 --- a/dist/lib/plugins/in-memory.js +++ b/dist/lib/plugins/in-memory.js @@ -87,6 +87,8 @@ var spawnInMemory = exports.spawnInMemory = function () { }; }(); +var _Subject = require('rxjs/Subject'); + var _rxCollection = require('../rx-collection'); var _rxCollection2 = _interopRequireDefault(_rxCollection); @@ -127,12 +129,13 @@ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var collectionCacheMap = new WeakMap(); /** - * This plugin adds RxCollection.inMemory() - * Which replicates the collection into an in-memory-collection - * So you can do faster queries and also query over encrypted fields - */ +/** + * This plugin adds RxCollection.inMemory() + * Which replicates the collection into an in-memory-collection + * So you can do faster queries and also query over encrypted fields + */ +var collectionCacheMap = new WeakMap(); var collectionPromiseCacheMap = new WeakMap(); var BULK_DOC_OPTIONS = { new_edits: false @@ -184,7 +187,7 @@ var InMemoryRxCollection = exports.InMemoryRxCollection = function (_RxCollectio this.pouch = new _pouchDb2['default']('rxdb-in-memory-' + util.randomCouchString(10), util.adapterObject('memory'), {}); - this._observable$ = new util.Rx.Subject(); + this._observable$ = new _Subject.Subject(); this._changeEventBuffer = _changeEventBuffer2['default'].create(this); // INDEXES diff --git a/dist/lib/plugins/leader-election.js b/dist/lib/plugins/leader-election.js index c9436488ce5..405470e90dc 100644 --- a/dist/lib/plugins/leader-election.js +++ b/dist/lib/plugins/leader-election.js @@ -35,11 +35,19 @@ var _rxBroadcastChannel = require('../rx-broadcast-channel'); var _rxBroadcastChannel2 = _interopRequireDefault(_rxBroadcastChannel); +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _filter = require('rxjs/operators/filter'); + +var _first = require('rxjs/operators/first'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var documentID = exports.documentID = '_local/leader'; +var documentID = exports.documentID = '_local/leader'; /** + * this plugin adds the leader-election-capabilities to rxdb + */ /** * This time defines how 'fast' the communication between the instances is. @@ -47,10 +55,6 @@ var documentID = exports.documentID = '_local/leader'; * If this time is too height, the leader-election takes longer than necessary * @type {Number} in milliseconds */ -/** - * this plugin adds the leader-election-capabilities to rxdb - */ - var SIGNAL_TIME = exports.SIGNAL_TIME = 500; var LeaderElector = function () { @@ -67,7 +71,7 @@ var LeaderElector = function () { this.token = this.database.token; this.isLeader = false; - this.becomeLeader$ = new util.Rx.BehaviorSubject({ + this.becomeLeader$ = new _BehaviorSubject.BehaviorSubject({ isLeader: false }); @@ -349,37 +353,37 @@ var LeaderElector = function () { while (1) { switch (_context4.prev = _context4.next) { case 0: - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe((0, _filter.filter)(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.t >= applyTime; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.type === 'apply'; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { if (msg.data < applyTime || msg.data === applyTime && msg.it > _this.token) return true;else return false; - }).filter(function () { + }), (0, _filter.filter)(function () { return errors.length < 1; - }).subscribe(function (msg) { + })).subscribe(function (msg) { return errors.push('other is applying:' + msg.it); })); - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe((0, _filter.filter)(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.t >= applyTime; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.type === 'tell'; - }).filter(function () { + }), (0, _filter.filter)(function () { return errors.length < 1; - }).subscribe(function (msg) { + })).subscribe(function (msg) { return errors.push('other is leader' + msg.it); })); - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe((0, _filter.filter)(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.type === 'apply'; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { if (msg.data > applyTime || msg.data === applyTime && msg.it > _this.token) return true;else return false; - }).subscribe(function () { + })).subscribe(function () { return _this.bc.write('apply', applyTime); })); @@ -593,13 +597,13 @@ var LeaderElector = function () { break; case 11: - this.signalLeadership = this.bc.$.filter(function () { + this.signalLeadership = this.bc.$.pipe((0, _filter.filter)(function () { return !!_this2.isLeader; - }) + }), // BUGFIX: avoids loop-hole when for whatever reason 2 are leader - .filter(function (msg) { + (0, _filter.filter)(function (msg) { return msg.type !== 'tell'; - }).subscribe(function () { + })).subscribe(function () { return _this2.leaderSignal(); }); this.subs.push(this.signalLeadership); @@ -803,9 +807,9 @@ var LeaderElector = function () { case 9: // apply when leader dies - this.subs.push(this.bc.$.filter(function (msg) { + this.subs.push(this.bc.$.pipe((0, _filter.filter)(function (msg) { return msg.type === 'death'; - }).subscribe(function () { + })).subscribe(function () { return _this3.applyOnce(); })); return _context11.abrupt('break', 13); @@ -867,9 +871,9 @@ var LeaderElector = function () { }))(); case 14: - return _context11.abrupt('return', this.becomeLeader$.asObservable().filter(function (i) { + return _context11.abrupt('return', this.becomeLeader$.asObservable().pipe((0, _filter.filter)(function (i) { return i.isLeader === true; - }).first().toPromise()); + }), (0, _first.first)()).toPromise()); case 15: case 'end': diff --git a/dist/lib/plugins/local-documents.js b/dist/lib/plugins/local-documents.js index 3670f5b41ea..6a7ee244e36 100644 --- a/dist/lib/plugins/local-documents.js +++ b/dist/lib/plugins/local-documents.js @@ -65,14 +65,17 @@ var _rxError = require('../rx-error'); var _rxError2 = _interopRequireDefault(_rxError); +var _filter = require('rxjs/operators/filter'); + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var DOC_CACHE_BY_PARENT = new WeakMap(); /** - * This plugin adds the local-documents-support - * Local documents behave equal then with pouchdb - * @link https://pouchdb.com/guides/local-documents.html - */ +/** + * This plugin adds the local-documents-support + * Local documents behave equal then with pouchdb + * @link https://pouchdb.com/guides/local-documents.html + */ +var DOC_CACHE_BY_PARENT = new WeakMap(); var _getDocCache = function _getDocCache(parent) { if (!DOC_CACHE_BY_PARENT.has(parent)) { DOC_CACHE_BY_PARENT.set(parent, _docCache2['default'].create()); @@ -82,9 +85,9 @@ var _getDocCache = function _getDocCache(parent) { var CHANGE_SUB_BY_PARENT = new WeakMap(); var _getChangeSub = function _getChangeSub(parent) { if (!CHANGE_SUB_BY_PARENT.has(parent)) { - var sub = parent.$.filter(function (cE) { + var sub = parent.$.pipe((0, _filter.filter)(function (cE) { return cE.data.isLocal; - }).subscribe(function (cE) { + })).subscribe(function (cE) { var docCache = _getDocCache(parent); var doc = docCache.get(cE.data.doc); if (doc) doc._handleChangeEvent(cE); diff --git a/dist/lib/plugins/replication.js b/dist/lib/plugins/replication.js index 5974cc6e90d..2689c5c6a23 100644 --- a/dist/lib/plugins/replication.js +++ b/dist/lib/plugins/replication.js @@ -33,6 +33,18 @@ var _pouchdbReplication = require('pouchdb-replication'); var _pouchdbReplication2 = _interopRequireDefault(_pouchdbReplication); +var _Subject = require('rxjs/Subject'); + +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _fromEvent = require('rxjs/observable/fromEvent'); + +var _filter = require('rxjs/operators/filter'); + +var _map = require('rxjs/operators/map'); + +var _delay = require('rxjs/operators/delay'); + var _util = require('../util'); var util = _interopRequireWildcard(_util); @@ -71,11 +83,11 @@ var RxReplicationState = exports.RxReplicationState = function () { this.collection = collection; this._pouchEventEmitterObject = null; this._subjects = { - change: new util.Rx.Subject(), - docs: new util.Rx.Subject(), - active: new util.Rx.BehaviorSubject(false), - complete: new util.Rx.BehaviorSubject(false), - error: new util.Rx.Subject() + change: new _Subject.Subject(), + docs: new _Subject.Subject(), + active: new _BehaviorSubject.BehaviorSubject(false), + complete: new _BehaviorSubject.BehaviorSubject(false), + error: new _Subject.Subject() }; // create getters @@ -97,12 +109,12 @@ var RxReplicationState = exports.RxReplicationState = function () { this._pouchEventEmitterObject = evEmitter; // change - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'change').subscribe(function (ev) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'change').subscribe(function (ev) { return _this2._subjects.change.next(ev); })); // docs - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'change').subscribe(function (ev) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'change').subscribe(function (ev) { if (_this2._subjects.docs.observers.length === 0 || ev.direction !== 'pull') return; ev.change.docs.filter(function (doc) { @@ -117,20 +129,20 @@ var RxReplicationState = exports.RxReplicationState = function () { })); // error - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'error').subscribe(function (ev) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'error').subscribe(function (ev) { return _this2._subjects.error.next(ev); })); // active - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'active').subscribe(function () { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'active').subscribe(function () { return _this2._subjects.active.next(true); })); - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'paused').subscribe(function () { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'paused').subscribe(function () { return _this2._subjects.active.next(false); })); // complete - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'complete').subscribe(function (info) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'complete').subscribe(function (info) { return _this2._subjects.complete.next(info); })); } @@ -184,38 +196,38 @@ function watchForChanges() { * this is to ensure that changes from 'synced' dbs will be published */ var sendChanges = {}; - var pouch$ = util.Rx.Observable.fromEvent(this.pouch.changes({ + var pouch$ = (0, _fromEvent.fromEvent)(this.pouch.changes({ since: 'now', live: true, include_docs: true - }), 'change').filter(function (c) { + }), 'change').pipe((0, _filter.filter)(function (c) { return c.id.charAt(0) !== '_'; - }).map(function (c) { + }), (0, _map.map)(function (c) { return c.doc; - }).filter(function (doc) { + }), (0, _filter.filter)(function (doc) { return !_this3._changeEventBuffer.buffer.map(function (cE) { return cE.data.v._rev; }).includes(doc._rev); - }).filter(function (doc) { + }), (0, _filter.filter)(function (doc) { return sendChanges[doc._rev] = 'YES'; - }).delay(10).map(function (doc) { + }), (0, _delay.delay)(10), (0, _map.map)(function (doc) { var ret = null; if (sendChanges[doc._rev] === 'YES') ret = doc; delete sendChanges[doc._rev]; return ret; - }).filter(function (doc) { + }), (0, _filter.filter)(function (doc) { return doc !== null; - }).subscribe(function (doc) { + })).subscribe(function (doc) { _this3.$emit(_rxChangeEvent2['default'].fromPouchChange(doc, _this3)); }); this._subs.push(pouch$); - var ob2 = this.$.map(function (cE) { + var ob2 = this.$.pipe((0, _map.map)(function (cE) { return cE.data.v; - }).map(function (doc) { + }), (0, _map.map)(function (doc) { if (doc && sendChanges[doc._rev]) sendChanges[doc._rev] = 'NO'; - }).subscribe(); + })).subscribe(); this._subs.push(ob2); this.synced = true; diff --git a/dist/lib/rx-broadcast-channel.js b/dist/lib/rx-broadcast-channel.js index 992bb04b381..cac0d282e96 100644 --- a/dist/lib/rx-broadcast-channel.js +++ b/dist/lib/rx-broadcast-channel.js @@ -19,11 +19,11 @@ var _createClass3 = _interopRequireDefault(_createClass2); exports.canIUse = canIUse; exports.create = create; -var _util = require('./util'); +var _fromEvent = require('rxjs/observable/fromEvent'); -var util = _interopRequireWildcard(_util); +var _map = require('rxjs/operators/map'); -function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } +var _filter = require('rxjs/operators/filter'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -87,13 +87,13 @@ var RxBroadcastChannel = function () { var _this = this; if (!this._$) { - this._$ = util.Rx.Observable.fromEvent(this.bc, 'message').map(function (msg) { + this._$ = (0, _fromEvent.fromEvent)(this.bc, 'message').pipe((0, _map.map)(function (msg) { return msg.data; - }).map(function (strMsg) { + }), (0, _map.map)(function (strMsg) { return JSON.parse(strMsg); - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.it !== _this.token; - }); + })); } return this._$; } diff --git a/dist/lib/rx-collection.js b/dist/lib/rx-collection.js index d015b4633fd..fc0a57b4315 100644 --- a/dist/lib/rx-collection.js +++ b/dist/lib/rx-collection.js @@ -200,6 +200,8 @@ var _rxDatabase = require('./rx-database'); var _rxDatabase2 = _interopRequireDefault(_rxDatabase); +var _filter = require('rxjs/operators/filter'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -273,9 +275,9 @@ var RxCollection = exports.RxCollection = function () { case 5: - this._observable$ = this.database.$.filter(function (event) { + this._observable$ = this.database.$.pipe((0, _filter.filter)(function (event) { return event.data.col === _this2.name; - }); + })); this._changeEventBuffer = _changeEventBuffer2['default'].create(this); // INDEXES @@ -296,9 +298,9 @@ var RxCollection = exports.RxCollection = function () { case 9: - this._subs.push(this._observable$.filter(function (cE) { + this._subs.push(this._observable$.pipe((0, _filter.filter)(function (cE) { return !cE.data.isLocal; - }).subscribe(function (cE) { + })).subscribe(function (cE) { // when data changes, send it to RxDocument in docCache var doc = _this2._docCache.get(cE.data.doc); if (doc) doc._handleChangeEvent(cE); diff --git a/dist/lib/rx-database.js b/dist/lib/rx-database.js index e748146a351..86b8b2c386d 100644 --- a/dist/lib/rx-database.js +++ b/dist/lib/rx-database.js @@ -224,6 +224,10 @@ var _overwritable2 = _interopRequireDefault(_overwritable); var _hooks = require('./hooks'); +var _Subject = require('rxjs/Subject'); + +var _filter = require('rxjs/operators/filter'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -254,10 +258,10 @@ var RxDatabase = exports.RxDatabase = function () { this.collections = {}; // rx - this.subject = new util.Rx.Subject(); - this.observable$ = this.subject.asObservable().filter(function (cEvent) { + this.subject = new _Subject.Subject(); + this.observable$ = this.subject.asObservable().pipe((0, _filter.filter)(function (cEvent) { return _rxChangeEvent2['default'].isInstanceOf(cEvent); - }); + })); } (0, _createClass3['default'])(RxDatabase, [{ diff --git a/dist/lib/rx-document.js b/dist/lib/rx-document.js index 1ee4ee6fbf6..c7f804d9aeb 100644 --- a/dist/lib/rx-document.js +++ b/dist/lib/rx-document.js @@ -60,6 +60,12 @@ var _rxError2 = _interopRequireDefault(_rxError); var _hooks = require('./hooks'); +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _distinctUntilChanged = require('rxjs/operators/distinctUntilChanged'); + +var _map = require('rxjs/operators/map'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -74,7 +80,7 @@ var RxDocument = exports.RxDocument = function () { this._isTemporary = false; // assume that this is always equal to the doc-data in the database - this._dataSync$ = new util.Rx.BehaviorSubject((0, _clone2['default'])(jsonData)); + this._dataSync$ = new _BehaviorSubject.BehaviorSubject((0, _clone2['default'])(jsonData)); // current doc-data, changes when setting values etc this._data = (0, _clone2['default'])(jsonData); @@ -86,8 +92,8 @@ var RxDocument = exports.RxDocument = function () { this._atomicUpdatesResolveFunctions = new WeakMap(); // false when _data !== _dataSync - this._synced$ = new util.Rx.BehaviorSubject(true); - this._deleted$ = new util.Rx.BehaviorSubject(false); + this._synced$ = new _BehaviorSubject.BehaviorSubject(true); + this._deleted$ = new _BehaviorSubject.BehaviorSubject(false); } (0, _createClass3['default'])(RxDocument, [{ @@ -187,9 +193,9 @@ var RxDocument = exports.RxDocument = function () { var schemaObj = this.collection.schema.getSchemaByObjectPath(path); if (!schemaObj) throw new Error('cannot observe a non-existed field (' + path + ')'); - return this._dataSync$.map(function (data) { + return this._dataSync$.pipe((0, _map.map)(function (data) { return _objectPath2['default'].get(data, path); - }).distinctUntilChanged().asObservable(); + }), (0, _distinctUntilChanged.distinctUntilChanged)()).asObservable(); } /** @@ -763,7 +769,7 @@ var RxDocument = exports.RxDocument = function () { }, { key: 'synced$', get: function get() { - return this._synced$.asObservable().distinctUntilChanged(); + return this._synced$.pipe((0, _distinctUntilChanged.distinctUntilChanged)()).asObservable(); } }, { key: 'synced', diff --git a/dist/lib/rx-query.js b/dist/lib/rx-query.js index f6fd30ee58e..8453853d5c0 100644 --- a/dist/lib/rx-query.js +++ b/dist/lib/rx-query.js @@ -54,6 +54,18 @@ var _rxError2 = _interopRequireDefault(_rxError); var _hooks = require('./hooks'); +var _merge = require('rxjs/observable/merge'); + +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _mergeMap = require('rxjs/operators/mergeMap'); + +var _filter = require('rxjs/operators/filter'); + +var _map = require('rxjs/operators/map'); + +var _first = require('rxjs/operators/first'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -77,7 +89,7 @@ var RxQuery = exports.RxQuery = function () { this._queryChangeDetector = _queryChangeDetector2['default'].create(this); this._resultsData = null; - this._results$ = new util.Rx.BehaviorSubject(null); + this._results$ = new _BehaviorSubject.BehaviorSubject(null); this._latestChangeEvent = -1; this._runningPromise = Promise.resolve(true); @@ -429,7 +441,7 @@ var RxQuery = exports.RxQuery = function () { }, { key: 'exec', value: function exec() { - return this.$.first().toPromise(); + return this.$.pipe((0, _first.first)()).toPromise(); } /** @@ -507,17 +519,17 @@ var RxQuery = exports.RxQuery = function () { var _this3 = this; if (!this._$) { - var res$ = this._results$.mergeMap(function (results) { + var res$ = this._results$.pipe((0, _mergeMap.mergeMap)(function (results) { return _this3._ensureEqual().then(function (hasChanged) { if (hasChanged) return 'WAITFORNEXTEMIT';else return results; }); - }).filter(function (results) { + }), (0, _filter.filter)(function (results) { return results !== 'WAITFORNEXTEMIT'; - }).asObservable(); + })).asObservable(); - var changeEvents$ = this.collection.$.filter(function (cEvent) { + var changeEvents$ = this.collection.$.pipe((0, _filter.filter)(function (cEvent) { return ['INSERT', 'UPDATE', 'REMOVE'].includes(cEvent.data.op); - }).mergeMap((0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee2() { + }), (0, _mergeMap.mergeMap)((0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee2() { return _regenerator2['default'].wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { @@ -530,15 +542,14 @@ var RxQuery = exports.RxQuery = function () { } } }, _callee2, _this3); - }))).filter(function () { + }))), (0, _filter.filter)(function () { return false; - }); - - this._$ = util.Rx.Observable.merge(res$, changeEvents$).filter(function (x) { + })); + this._$ = (0, _merge.merge)(res$, changeEvents$).pipe((0, _filter.filter)(function (x) { return x !== null; - }).map(function (results) { + }), (0, _map.map)(function (results) { if (_this3.op !== 'findOne') return results;else if (results.length === 0) return null;else return results[0]; - }); + })); } return this._$; } diff --git a/dist/lib/socket.js b/dist/lib/socket.js index 5dfd8605e2b..f40a045e8fc 100644 --- a/dist/lib/socket.js +++ b/dist/lib/socket.js @@ -35,6 +35,10 @@ var _rxBroadcastChannel = require('./rx-broadcast-channel'); var _rxBroadcastChannel2 = _interopRequireDefault(_rxBroadcastChannel); +var _Subject = require('rxjs/Subject'); + +var _filter = require('rxjs/operators/filter'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -57,7 +61,7 @@ var Socket = function () { this.receivedEvents = {}; this.bc = _rxBroadcastChannel2['default'].create(this.database, 'socket'); - this.messages$ = new util.Rx.Subject(); + this.messages$ = new _Subject.Subject(); } /** @@ -83,9 +87,9 @@ var Socket = function () { // pull on BroadcastChannel-message if (this.bc) { - this.subs.push(this.bc.$.filter(function (msg) { + this.subs.push(this.bc.$.pipe((0, _filter.filter)(function (msg) { return msg.type === 'pull'; - }).subscribe(function () { + })).subscribe(function () { return _this.pull(); })); } diff --git a/dist/lib/util.js b/dist/lib/util.js index 43dd1f272b6..3e3cd30fb96 100644 --- a/dist/lib/util.js +++ b/dist/lib/util.js @@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); -exports.requestIdlePromise = exports.promiseWait = exports.Rx = undefined; +exports.requestIdlePromise = exports.promiseWait = undefined; var _typeof2 = require('babel-runtime/helpers/typeof'); @@ -116,67 +116,16 @@ var _rxError = require('./rx-error'); var _rxError2 = _interopRequireDefault(_rxError); -var _Observable = require('rxjs/Observable'); - -var _Subject = require('rxjs/Subject'); - -var _BehaviorSubject = require('rxjs/BehaviorSubject'); - -require('rxjs/add/observable/merge'); - -require('rxjs/add/observable/interval'); - -require('rxjs/add/observable/from'); - -require('rxjs/add/observable/fromEvent'); - -require('rxjs/add/observable/defer'); - -require('rxjs/add/operator/publishReplay'); - -require('rxjs/add/operator/publish'); - -require('rxjs/add/operator/timeout'); - -require('rxjs/add/operator/delay'); - -require('rxjs/add/operator/do'); - -require('rxjs/add/operator/map'); - -require('rxjs/add/operator/mergeMap'); - -require('rxjs/add/operator/filter'); - -require('rxjs/add/operator/first'); - -require('rxjs/add/operator/startWith'); - -require('rxjs/add/operator/toPromise'); - -require('rxjs/add/operator/distinctUntilChanged'); - -require('rxjs/add/operator/distinct'); - var _sparkMd = require('spark-md5'); var _sparkMd2 = _interopRequireDefault(_sparkMd); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var Rx = exports.Rx = { - Observable: _Observable.Observable, - Subject: _Subject.Subject, - BehaviorSubject: _BehaviorSubject.BehaviorSubject -}; - /** * check if the given module is a leveldown-adapter * throws if not */ - - -// rxjs cherry-pick /** * this contains a mapping to basic dependencies * which should be easy to change diff --git a/dist/rxdb.browserify.js b/dist/rxdb.browserify.js index 9b94c10cdc1..50cce4b9b0d 100644 --- a/dist/rxdb.browserify.js +++ b/dist/rxdb.browserify.js @@ -20,7 +20,7 @@ _index2['default'].plugin(require('pouchdb-adapter-http')); window['RxDB'] = _index2['default']; -},{"./index.js":8,"babel-polyfill":40,"pouchdb-adapter-http":573,"pouchdb-adapter-idb":574}],2:[function(require,module,exports){ +},{"./index.js":8,"babel-polyfill":45,"pouchdb-adapter-http":571,"pouchdb-adapter-idb":572}],2:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -160,7 +160,7 @@ exports["default"] = { create: create }; -},{"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51}],3:[function(require,module,exports){ +},{"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56}],3:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -345,7 +345,7 @@ exports['default'] = { Crypter: Crypter }; -},{"./rx-error":33,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"clone":63,"object-path":570}],5:[function(require,module,exports){ +},{"./rx-error":33,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"clone":68,"object-path":568}],5:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -378,10 +378,6 @@ var _clone = require('clone'); var _clone2 = _interopRequireDefault(_clone); -var _util = require('./util'); - -var util = _interopRequireWildcard(_util); - var _rxSchema = require('./rx-schema'); var _rxSchema2 = _interopRequireDefault(_rxSchema); @@ -402,7 +398,7 @@ var _hooks = require('./hooks'); var _hooks2 = _interopRequireDefault(_hooks); -function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } +var _Observable = require('rxjs/Observable'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -473,7 +469,7 @@ var DataMigrator = function () { percent: 0 // percentage }; - var migrationState$ = new util.Rx.Observable(function () { + var migrationState$ = new _Observable.Observable(function () { var _ref = (0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee(observer) { var oldCols, countAll, totalCount, currentCol, _loop; @@ -851,7 +847,7 @@ var OldCollection = function () { if (this._migrate) throw new Error('migration already running'); this._migrate = true; - var stateStream$ = new util.Rx.Observable(function () { + var stateStream$ = new _Observable.Observable(function () { var _ref5 = (0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee5(observer) { var batch, error; return _regenerator2['default'].wrap(function _callee5$(_context6) { @@ -973,7 +969,7 @@ exports['default'] = { create: create }; -},{"./crypter":4,"./hooks":7,"./overwritable":11,"./pouch-db":25,"./rx-error":33,"./rx-schema":35,"./util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/regenerator":57,"clone":63}],6:[function(require,module,exports){ +},{"./crypter":4,"./hooks":7,"./overwritable":11,"./pouch-db":25,"./rx-error":33,"./rx-schema":35,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/regenerator":62,"clone":68,"rxjs/Observable":617}],6:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -1030,7 +1026,7 @@ exports["default"] = { create: create }; -},{"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51}],7:[function(require,module,exports){ +},{"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56}],7:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -1136,7 +1132,7 @@ exports["default"] = { HOOKS: HOOKS }; -},{"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/regenerator":57}],8:[function(require,module,exports){ +},{"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/regenerator":62}],8:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -1832,7 +1828,7 @@ MQuery.canMerge = function (conds) { MQuery.utils = utils; exports['default'] = MQuery; -},{"./mquery_utils":10,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/typeof":56,"clone":63}],10:[function(require,module,exports){ +},{"./mquery_utils":10,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/typeof":61,"clone":68}],10:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -1912,7 +1908,7 @@ function isObject(arg) { return '[object Object]' === arg.toString(); }; -},{"clone":63}],11:[function(require,module,exports){ +},{"clone":68}],11:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -2072,7 +2068,7 @@ exports['default'] = { overwritable: _overwritable2['default'] }; -},{"./crypter":4,"./hooks":7,"./overwritable":11,"./pouch-db":25,"./rx-collection":30,"./rx-database":31,"./rx-document":32,"./rx-query":34,"./rx-schema":35,"babel-runtime/helpers/typeof":56}],13:[function(require,module,exports){ +},{"./crypter":4,"./hooks":7,"./overwritable":11,"./pouch-db":25,"./rx-collection":30,"./rx-database":31,"./rx-document":32,"./rx-query":34,"./rx-schema":35,"babel-runtime/helpers/typeof":61}],13:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -2193,7 +2189,7 @@ exports['default'] = { overwritable: overwritable }; -},{"../pouch-db":25,"../util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/regenerator":57}],14:[function(require,module,exports){ +},{"../pouch-db":25,"../util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/regenerator":62}],14:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -2426,6 +2422,8 @@ var _util = require('./../util'); var util = _interopRequireWildcard(_util); +var _map = require('rxjs/operators/map'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -2698,18 +2696,18 @@ var prototypes = exports.prototypes = { get: function allAttachments$() { var _this3 = this; - return this._dataSync$.map(function (data) { + return this._dataSync$.pipe((0, _map.map)(function (data) { if (!data._attachments) return {}; return data._attachments; - }).map(function (attachmentsData) { + }), (0, _map.map)(function (attachmentsData) { return Object.entries(attachmentsData); - }).map(function (entries) { + }), (0, _map.map)(function (entries) { return entries.map(function (entry) { var id = entry[0]; var attachmentData = entry[1]; return RxAttachment.fromPouchDocument(id, attachmentData, _this3); }); - }); + })); } }); } @@ -2729,7 +2727,7 @@ exports['default'] = { }; }).call(this,require("buffer").Buffer) -},{"./../rx-change-event":29,"./../util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/regenerator":57,"buffer":61,"custom-idle-queue":492}],15:[function(require,module,exports){ +},{"./../rx-change-event":29,"./../util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/regenerator":62,"buffer":66,"custom-idle-queue":497,"rxjs/operators/map":636}],15:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -2800,7 +2798,7 @@ exports['default'] = { overwritable: overwritable }; -},{"crypto-js/aes":482,"crypto-js/enc-utf8":486}],16:[function(require,module,exports){ +},{"crypto-js/aes":487,"crypto-js/enc-utf8":491}],16:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -2890,6 +2888,8 @@ var spawnInMemory = exports.spawnInMemory = function () { }; }(); +var _Subject = require('rxjs/Subject'); + var _rxCollection = require('../rx-collection'); var _rxCollection2 = _interopRequireDefault(_rxCollection); @@ -2930,12 +2930,13 @@ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var collectionCacheMap = new WeakMap(); /** - * This plugin adds RxCollection.inMemory() - * Which replicates the collection into an in-memory-collection - * So you can do faster queries and also query over encrypted fields - */ +/** + * This plugin adds RxCollection.inMemory() + * Which replicates the collection into an in-memory-collection + * So you can do faster queries and also query over encrypted fields + */ +var collectionCacheMap = new WeakMap(); var collectionPromiseCacheMap = new WeakMap(); var BULK_DOC_OPTIONS = { new_edits: false @@ -2987,7 +2988,7 @@ var InMemoryRxCollection = exports.InMemoryRxCollection = function (_RxCollectio this.pouch = new _pouchDb2['default']('rxdb-in-memory-' + util.randomCouchString(10), util.adapterObject('memory'), {}); - this._observable$ = new util.Rx.Subject(); + this._observable$ = new _Subject.Subject(); this._changeEventBuffer = _changeEventBuffer2['default'].create(this); // INDEXES @@ -3216,7 +3217,7 @@ exports['default'] = { spawnInMemory: spawnInMemory }; -},{"../change-event-buffer":2,"../core":3,"../crypter":4,"../pouch-db":25,"../rx-collection":30,"../rx-schema":35,"../util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/inherits":53,"babel-runtime/helpers/possibleConstructorReturn":54,"babel-runtime/helpers/typeof":56,"babel-runtime/regenerator":57,"clone":63,"pouchdb-adapter-memory":576}],17:[function(require,module,exports){ +},{"../change-event-buffer":2,"../core":3,"../crypter":4,"../pouch-db":25,"../rx-collection":30,"../rx-schema":35,"../util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/inherits":58,"babel-runtime/helpers/possibleConstructorReturn":59,"babel-runtime/helpers/typeof":61,"babel-runtime/regenerator":62,"clone":68,"pouchdb-adapter-memory":574,"rxjs/Subject":621}],17:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -3473,7 +3474,7 @@ exports['default'] = { overwritable: overwritable }; -},{"../rx-error":33,"../rx-query":34,"../util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/regenerator":57}],18:[function(require,module,exports){ +},{"../rx-error":33,"../rx-query":34,"../util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/regenerator":62}],18:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -3740,7 +3741,7 @@ exports['default'] = { overwritable: overwritable }; -},{"../util":37,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/typeof":56,"clone":63}],19:[function(require,module,exports){ +},{"../util":37,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/typeof":61,"clone":68}],19:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -3778,11 +3779,19 @@ var _rxBroadcastChannel = require('../rx-broadcast-channel'); var _rxBroadcastChannel2 = _interopRequireDefault(_rxBroadcastChannel); +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _filter = require('rxjs/operators/filter'); + +var _first = require('rxjs/operators/first'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var documentID = exports.documentID = '_local/leader'; +var documentID = exports.documentID = '_local/leader'; /** + * this plugin adds the leader-election-capabilities to rxdb + */ /** * This time defines how 'fast' the communication between the instances is. @@ -3790,10 +3799,6 @@ var documentID = exports.documentID = '_local/leader'; * If this time is too height, the leader-election takes longer than necessary * @type {Number} in milliseconds */ -/** - * this plugin adds the leader-election-capabilities to rxdb - */ - var SIGNAL_TIME = exports.SIGNAL_TIME = 500; var LeaderElector = function () { @@ -3810,7 +3815,7 @@ var LeaderElector = function () { this.token = this.database.token; this.isLeader = false; - this.becomeLeader$ = new util.Rx.BehaviorSubject({ + this.becomeLeader$ = new _BehaviorSubject.BehaviorSubject({ isLeader: false }); @@ -4092,37 +4097,37 @@ var LeaderElector = function () { while (1) { switch (_context4.prev = _context4.next) { case 0: - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe((0, _filter.filter)(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.t >= applyTime; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.type === 'apply'; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { if (msg.data < applyTime || msg.data === applyTime && msg.it > _this.token) return true;else return false; - }).filter(function () { + }), (0, _filter.filter)(function () { return errors.length < 1; - }).subscribe(function (msg) { + })).subscribe(function (msg) { return errors.push('other is applying:' + msg.it); })); - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe((0, _filter.filter)(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.t >= applyTime; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.type === 'tell'; - }).filter(function () { + }), (0, _filter.filter)(function () { return errors.length < 1; - }).subscribe(function (msg) { + })).subscribe(function (msg) { return errors.push('other is leader' + msg.it); })); - subs.push(_this.bc.$.filter(function () { + subs.push(_this.bc.$.pipe((0, _filter.filter)(function () { return !!_this.isApplying; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.type === 'apply'; - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { if (msg.data > applyTime || msg.data === applyTime && msg.it > _this.token) return true;else return false; - }).subscribe(function () { + })).subscribe(function () { return _this.bc.write('apply', applyTime); })); @@ -4336,13 +4341,13 @@ var LeaderElector = function () { break; case 11: - this.signalLeadership = this.bc.$.filter(function () { + this.signalLeadership = this.bc.$.pipe((0, _filter.filter)(function () { return !!_this2.isLeader; - }) + }), // BUGFIX: avoids loop-hole when for whatever reason 2 are leader - .filter(function (msg) { + (0, _filter.filter)(function (msg) { return msg.type !== 'tell'; - }).subscribe(function () { + })).subscribe(function () { return _this2.leaderSignal(); }); this.subs.push(this.signalLeadership); @@ -4546,9 +4551,9 @@ var LeaderElector = function () { case 9: // apply when leader dies - this.subs.push(this.bc.$.filter(function (msg) { + this.subs.push(this.bc.$.pipe((0, _filter.filter)(function (msg) { return msg.type === 'death'; - }).subscribe(function () { + })).subscribe(function () { return _this3.applyOnce(); })); return _context11.abrupt('break', 13); @@ -4610,9 +4615,9 @@ var LeaderElector = function () { }))(); case 14: - return _context11.abrupt('return', this.becomeLeader$.asObservable().filter(function (i) { + return _context11.abrupt('return', this.becomeLeader$.asObservable().pipe((0, _filter.filter)(function (i) { return i.isLeader === true; - }).first().toPromise()); + }), (0, _first.first)()).toPromise()); case 15: case 'end': @@ -4684,7 +4689,7 @@ exports['default'] = { overwritable: overwritable }; -},{"../rx-broadcast-channel":28,"../util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/regenerator":57,"unload":779}],20:[function(require,module,exports){ +},{"../rx-broadcast-channel":28,"../util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/regenerator":62,"rxjs/BehaviorSubject":614,"rxjs/operators/filter":634,"rxjs/operators/first":635,"unload":720}],20:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -4752,14 +4757,17 @@ var _rxError = require('../rx-error'); var _rxError2 = _interopRequireDefault(_rxError); +var _filter = require('rxjs/operators/filter'); + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var DOC_CACHE_BY_PARENT = new WeakMap(); /** - * This plugin adds the local-documents-support - * Local documents behave equal then with pouchdb - * @link https://pouchdb.com/guides/local-documents.html - */ +/** + * This plugin adds the local-documents-support + * Local documents behave equal then with pouchdb + * @link https://pouchdb.com/guides/local-documents.html + */ +var DOC_CACHE_BY_PARENT = new WeakMap(); var _getDocCache = function _getDocCache(parent) { if (!DOC_CACHE_BY_PARENT.has(parent)) { DOC_CACHE_BY_PARENT.set(parent, _docCache2['default'].create()); @@ -4769,9 +4777,9 @@ var _getDocCache = function _getDocCache(parent) { var CHANGE_SUB_BY_PARENT = new WeakMap(); var _getChangeSub = function _getChangeSub(parent) { if (!CHANGE_SUB_BY_PARENT.has(parent)) { - var sub = parent.$.filter(function (cE) { + var sub = parent.$.pipe((0, _filter.filter)(function (cE) { return cE.data.isLocal; - }).subscribe(function (cE) { + })).subscribe(function (cE) { var docCache = _getDocCache(parent); var doc = docCache.get(cE.data.doc); if (doc) doc._handleChangeEvent(cE); @@ -5243,7 +5251,7 @@ exports['default'] = { overwritable: overwritable }; -},{"../doc-cache":6,"../rx-change-event":29,"../rx-collection":30,"../rx-database":31,"../rx-document":32,"../rx-error":33,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/inherits":53,"babel-runtime/helpers/possibleConstructorReturn":54,"babel-runtime/regenerator":57,"clone":63,"deep-equal":496,"object-path":570}],21:[function(require,module,exports){ +},{"../doc-cache":6,"../rx-change-event":29,"../rx-collection":30,"../rx-database":31,"../rx-document":32,"../rx-error":33,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/inherits":58,"babel-runtime/helpers/possibleConstructorReturn":59,"babel-runtime/regenerator":62,"clone":68,"deep-equal":501,"object-path":568,"rxjs/operators/filter":634}],21:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -5279,6 +5287,18 @@ var _pouchdbReplication = require('pouchdb-replication'); var _pouchdbReplication2 = _interopRequireDefault(_pouchdbReplication); +var _Subject = require('rxjs/Subject'); + +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _fromEvent = require('rxjs/observable/fromEvent'); + +var _filter = require('rxjs/operators/filter'); + +var _map = require('rxjs/operators/map'); + +var _delay = require('rxjs/operators/delay'); + var _util = require('../util'); var util = _interopRequireWildcard(_util); @@ -5317,11 +5337,11 @@ var RxReplicationState = exports.RxReplicationState = function () { this.collection = collection; this._pouchEventEmitterObject = null; this._subjects = { - change: new util.Rx.Subject(), - docs: new util.Rx.Subject(), - active: new util.Rx.BehaviorSubject(false), - complete: new util.Rx.BehaviorSubject(false), - error: new util.Rx.Subject() + change: new _Subject.Subject(), + docs: new _Subject.Subject(), + active: new _BehaviorSubject.BehaviorSubject(false), + complete: new _BehaviorSubject.BehaviorSubject(false), + error: new _Subject.Subject() }; // create getters @@ -5343,12 +5363,12 @@ var RxReplicationState = exports.RxReplicationState = function () { this._pouchEventEmitterObject = evEmitter; // change - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'change').subscribe(function (ev) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'change').subscribe(function (ev) { return _this2._subjects.change.next(ev); })); // docs - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'change').subscribe(function (ev) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'change').subscribe(function (ev) { if (_this2._subjects.docs.observers.length === 0 || ev.direction !== 'pull') return; ev.change.docs.filter(function (doc) { @@ -5363,20 +5383,20 @@ var RxReplicationState = exports.RxReplicationState = function () { })); // error - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'error').subscribe(function (ev) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'error').subscribe(function (ev) { return _this2._subjects.error.next(ev); })); // active - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'active').subscribe(function () { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'active').subscribe(function () { return _this2._subjects.active.next(true); })); - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'paused').subscribe(function () { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'paused').subscribe(function () { return _this2._subjects.active.next(false); })); // complete - this._subs.push(util.Rx.Observable.fromEvent(evEmitter, 'complete').subscribe(function (info) { + this._subs.push((0, _fromEvent.fromEvent)(evEmitter, 'complete').subscribe(function (info) { return _this2._subjects.complete.next(info); })); } @@ -5430,38 +5450,38 @@ function watchForChanges() { * this is to ensure that changes from 'synced' dbs will be published */ var sendChanges = {}; - var pouch$ = util.Rx.Observable.fromEvent(this.pouch.changes({ + var pouch$ = (0, _fromEvent.fromEvent)(this.pouch.changes({ since: 'now', live: true, include_docs: true - }), 'change').filter(function (c) { + }), 'change').pipe((0, _filter.filter)(function (c) { return c.id.charAt(0) !== '_'; - }).map(function (c) { + }), (0, _map.map)(function (c) { return c.doc; - }).filter(function (doc) { + }), (0, _filter.filter)(function (doc) { return !_this3._changeEventBuffer.buffer.map(function (cE) { return cE.data.v._rev; }).includes(doc._rev); - }).filter(function (doc) { + }), (0, _filter.filter)(function (doc) { return sendChanges[doc._rev] = 'YES'; - }).delay(10).map(function (doc) { + }), (0, _delay.delay)(10), (0, _map.map)(function (doc) { var ret = null; if (sendChanges[doc._rev] === 'YES') ret = doc; delete sendChanges[doc._rev]; return ret; - }).filter(function (doc) { + }), (0, _filter.filter)(function (doc) { return doc !== null; - }).subscribe(function (doc) { + })).subscribe(function (doc) { _this3.$emit(_rxChangeEvent2['default'].fromPouchChange(doc, _this3)); }); this._subs.push(pouch$); - var ob2 = this.$.map(function (cE) { + var ob2 = this.$.pipe((0, _map.map)(function (cE) { return cE.data.v; - }).map(function (doc) { + }), (0, _map.map)(function (doc) { if (doc && sendChanges[doc._rev]) sendChanges[doc._rev] = 'NO'; - }).subscribe(); + })).subscribe(); this._subs.push(ob2); this.synced = true; @@ -5554,7 +5574,7 @@ exports['default'] = { sync: sync }; -},{"../core":3,"../rx-change-event":29,"../rx-collection":30,"../util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/regenerator":57,"clone":63,"pouchdb-replication":594}],22:[function(require,module,exports){ +},{"../core":3,"../rx-change-event":29,"../rx-collection":30,"../util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/regenerator":62,"clone":68,"pouchdb-replication":594,"rxjs/BehaviorSubject":614,"rxjs/Subject":621,"rxjs/observable/fromEvent":629,"rxjs/operators/delay":632,"rxjs/operators/filter":634,"rxjs/operators/map":636}],22:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -5755,7 +5775,7 @@ exports['default'] = { hooks: hooks }; -},{"../rx-document":32,"../rx-error":33,"../rx-schema":35,"babel-runtime/helpers/typeof":56,"object-path":570}],23:[function(require,module,exports){ +},{"../rx-document":32,"../rx-error":33,"../rx-schema":35,"babel-runtime/helpers/typeof":61,"object-path":568}],23:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -5881,7 +5901,7 @@ exports['default'] = { prototypes: prototypes }; -},{"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/regenerator":57,"deep-equal":496,"modifyjs":565}],24:[function(require,module,exports){ +},{"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/regenerator":62,"deep-equal":501,"modifyjs":563}],24:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -5990,7 +6010,7 @@ exports['default'] = { hooks: hooks }; -},{"../rx-error":33,"../util":37,"is-my-json-valid":528}],25:[function(require,module,exports){ +},{"../rx-error":33,"../util":37,"is-my-json-valid":539}],25:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -6130,7 +6150,7 @@ exports["default"] = { create: create }; -},{"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51}],27:[function(require,module,exports){ +},{"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56}],27:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -6510,7 +6530,7 @@ exports['default'] = { enable: enable }; -},{"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"object-path":570,"pouchdb-selector-core":595}],28:[function(require,module,exports){ +},{"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"object-path":568,"pouchdb-selector-core":595}],28:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -6532,11 +6552,11 @@ var _createClass3 = _interopRequireDefault(_createClass2); exports.canIUse = canIUse; exports.create = create; -var _util = require('./util'); +var _fromEvent = require('rxjs/observable/fromEvent'); -var util = _interopRequireWildcard(_util); +var _map = require('rxjs/operators/map'); -function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } +var _filter = require('rxjs/operators/filter'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -6600,13 +6620,13 @@ var RxBroadcastChannel = function () { var _this = this; if (!this._$) { - this._$ = util.Rx.Observable.fromEvent(this.bc, 'message').map(function (msg) { + this._$ = (0, _fromEvent.fromEvent)(this.bc, 'message').pipe((0, _map.map)(function (msg) { return msg.data; - }).map(function (strMsg) { + }), (0, _map.map)(function (strMsg) { return JSON.parse(strMsg); - }).filter(function (msg) { + }), (0, _filter.filter)(function (msg) { return msg.it !== _this.token; - }); + })); } return this._$; } @@ -6642,7 +6662,7 @@ exports['default'] = { canIUse: canIUse }; -},{"./util":37,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/typeof":56}],29:[function(require,module,exports){ +},{"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/typeof":61,"rxjs/observable/fromEvent":629,"rxjs/operators/filter":634,"rxjs/operators/map":636}],29:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -6768,7 +6788,7 @@ exports['default'] = { isInstanceOf: isInstanceOf }; -},{"./util":37,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51}],30:[function(require,module,exports){ +},{"./util":37,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56}],30:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -6971,6 +6991,8 @@ var _rxDatabase = require('./rx-database'); var _rxDatabase2 = _interopRequireDefault(_rxDatabase); +var _filter = require('rxjs/operators/filter'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -7044,9 +7066,9 @@ var RxCollection = exports.RxCollection = function () { case 5: - this._observable$ = this.database.$.filter(function (event) { + this._observable$ = this.database.$.pipe((0, _filter.filter)(function (event) { return event.data.col === _this2.name; - }); + })); this._changeEventBuffer = _changeEventBuffer2['default'].create(this); // INDEXES @@ -7067,9 +7089,9 @@ var RxCollection = exports.RxCollection = function () { case 9: - this._subs.push(this._observable$.filter(function (cE) { + this._subs.push(this._observable$.pipe((0, _filter.filter)(function (cE) { return !cE.data.isLocal; - }).subscribe(function (cE) { + })).subscribe(function (cE) { // when data changes, send it to RxDocument in docCache var doc = _this2._docCache.get(cE.data.doc); if (doc) doc._handleChangeEvent(cE); @@ -8034,7 +8056,7 @@ exports['default'] = { RxCollection: RxCollection }; -},{"./change-event-buffer":2,"./crypter":4,"./data-migrator":5,"./doc-cache":6,"./hooks":7,"./overwritable":11,"./query-cache":26,"./rx-change-event":29,"./rx-database":31,"./rx-document":32,"./rx-error":33,"./rx-query":34,"./rx-schema":35,"./util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/toConsumableArray":55,"babel-runtime/helpers/typeof":56,"babel-runtime/regenerator":57,"clone":63}],31:[function(require,module,exports){ +},{"./change-event-buffer":2,"./crypter":4,"./data-migrator":5,"./doc-cache":6,"./hooks":7,"./overwritable":11,"./query-cache":26,"./rx-change-event":29,"./rx-database":31,"./rx-document":32,"./rx-error":33,"./rx-query":34,"./rx-schema":35,"./util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/toConsumableArray":60,"babel-runtime/helpers/typeof":61,"babel-runtime/regenerator":62,"clone":68,"rxjs/operators/filter":634}],31:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -8261,6 +8283,10 @@ var _overwritable2 = _interopRequireDefault(_overwritable); var _hooks = require('./hooks'); +var _Subject = require('rxjs/Subject'); + +var _filter = require('rxjs/operators/filter'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -8291,10 +8317,10 @@ var RxDatabase = exports.RxDatabase = function () { this.collections = {}; // rx - this.subject = new util.Rx.Subject(); - this.observable$ = this.subject.asObservable().filter(function (cEvent) { + this.subject = new _Subject.Subject(); + this.observable$ = this.subject.asObservable().pipe((0, _filter.filter)(function (cEvent) { return _rxChangeEvent2['default'].isInstanceOf(cEvent); - }); + })); } (0, _createClass3['default'])(RxDatabase, [{ @@ -9044,7 +9070,7 @@ exports['default'] = { RxSchema: _rxSchema2['default'] }; -},{"./hooks":7,"./overwritable":11,"./pouch-db":25,"./rx-change-event":29,"./rx-collection":30,"./rx-error":33,"./rx-schema":35,"./socket":36,"./util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/toConsumableArray":55,"babel-runtime/regenerator":57,"custom-idle-queue":492,"random-token":602}],32:[function(require,module,exports){ +},{"./hooks":7,"./overwritable":11,"./pouch-db":25,"./rx-change-event":29,"./rx-collection":30,"./rx-error":33,"./rx-schema":35,"./socket":36,"./util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/toConsumableArray":60,"babel-runtime/regenerator":62,"custom-idle-queue":497,"random-token":602,"rxjs/Subject":621,"rxjs/operators/filter":634}],32:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -9107,6 +9133,12 @@ var _rxError2 = _interopRequireDefault(_rxError); var _hooks = require('./hooks'); +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _distinctUntilChanged = require('rxjs/operators/distinctUntilChanged'); + +var _map = require('rxjs/operators/map'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -9121,7 +9153,7 @@ var RxDocument = exports.RxDocument = function () { this._isTemporary = false; // assume that this is always equal to the doc-data in the database - this._dataSync$ = new util.Rx.BehaviorSubject((0, _clone2['default'])(jsonData)); + this._dataSync$ = new _BehaviorSubject.BehaviorSubject((0, _clone2['default'])(jsonData)); // current doc-data, changes when setting values etc this._data = (0, _clone2['default'])(jsonData); @@ -9133,8 +9165,8 @@ var RxDocument = exports.RxDocument = function () { this._atomicUpdatesResolveFunctions = new WeakMap(); // false when _data !== _dataSync - this._synced$ = new util.Rx.BehaviorSubject(true); - this._deleted$ = new util.Rx.BehaviorSubject(false); + this._synced$ = new _BehaviorSubject.BehaviorSubject(true); + this._deleted$ = new _BehaviorSubject.BehaviorSubject(false); } (0, _createClass3['default'])(RxDocument, [{ @@ -9234,9 +9266,9 @@ var RxDocument = exports.RxDocument = function () { var schemaObj = this.collection.schema.getSchemaByObjectPath(path); if (!schemaObj) throw new Error('cannot observe a non-existed field (' + path + ')'); - return this._dataSync$.map(function (data) { + return this._dataSync$.pipe((0, _map.map)(function (data) { return _objectPath2['default'].get(data, path); - }).distinctUntilChanged().asObservable(); + }), (0, _distinctUntilChanged.distinctUntilChanged)()).asObservable(); } /** @@ -9810,7 +9842,7 @@ var RxDocument = exports.RxDocument = function () { }, { key: 'synced$', get: function get() { - return this._synced$.asObservable().distinctUntilChanged(); + return this._synced$.pipe((0, _distinctUntilChanged.distinctUntilChanged)()).asObservable(); } }, { key: 'synced', @@ -9876,7 +9908,7 @@ exports['default'] = { isInstanceOf: isInstanceOf }; -},{"./hooks":7,"./rx-change-event":29,"./rx-error":33,"./util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/toConsumableArray":55,"babel-runtime/helpers/typeof":56,"babel-runtime/regenerator":57,"clone":63,"deep-equal":496,"object-path":570}],33:[function(require,module,exports){ +},{"./hooks":7,"./rx-change-event":29,"./rx-error":33,"./util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/toConsumableArray":60,"babel-runtime/helpers/typeof":61,"babel-runtime/regenerator":62,"clone":68,"deep-equal":501,"object-path":568,"rxjs/BehaviorSubject":614,"rxjs/operators/distinctUntilChanged":633,"rxjs/operators/map":636}],33:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -9987,7 +10019,7 @@ exports['default'] = { pluginMissing: pluginMissing }; -},{"./util":37,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/inherits":53,"babel-runtime/helpers/possibleConstructorReturn":54}],34:[function(require,module,exports){ +},{"./util":37,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/inherits":58,"babel-runtime/helpers/possibleConstructorReturn":59}],34:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -10044,6 +10076,18 @@ var _rxError2 = _interopRequireDefault(_rxError); var _hooks = require('./hooks'); +var _merge = require('rxjs/observable/merge'); + +var _BehaviorSubject = require('rxjs/BehaviorSubject'); + +var _mergeMap = require('rxjs/operators/mergeMap'); + +var _filter = require('rxjs/operators/filter'); + +var _map = require('rxjs/operators/map'); + +var _first = require('rxjs/operators/first'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -10067,7 +10111,7 @@ var RxQuery = exports.RxQuery = function () { this._queryChangeDetector = _queryChangeDetector2['default'].create(this); this._resultsData = null; - this._results$ = new util.Rx.BehaviorSubject(null); + this._results$ = new _BehaviorSubject.BehaviorSubject(null); this._latestChangeEvent = -1; this._runningPromise = Promise.resolve(true); @@ -10419,7 +10463,7 @@ var RxQuery = exports.RxQuery = function () { }, { key: 'exec', value: function exec() { - return this.$.first().toPromise(); + return this.$.pipe((0, _first.first)()).toPromise(); } /** @@ -10497,17 +10541,17 @@ var RxQuery = exports.RxQuery = function () { var _this3 = this; if (!this._$) { - var res$ = this._results$.mergeMap(function (results) { + var res$ = this._results$.pipe((0, _mergeMap.mergeMap)(function (results) { return _this3._ensureEqual().then(function (hasChanged) { if (hasChanged) return 'WAITFORNEXTEMIT';else return results; }); - }).filter(function (results) { + }), (0, _filter.filter)(function (results) { return results !== 'WAITFORNEXTEMIT'; - }).asObservable(); + })).asObservable(); - var changeEvents$ = this.collection.$.filter(function (cEvent) { + var changeEvents$ = this.collection.$.pipe((0, _filter.filter)(function (cEvent) { return ['INSERT', 'UPDATE', 'REMOVE'].includes(cEvent.data.op); - }).mergeMap((0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee2() { + }), (0, _mergeMap.mergeMap)((0, _asyncToGenerator3['default'])( /*#__PURE__*/_regenerator2['default'].mark(function _callee2() { return _regenerator2['default'].wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { @@ -10520,15 +10564,14 @@ var RxQuery = exports.RxQuery = function () { } } }, _callee2, _this3); - }))).filter(function () { + }))), (0, _filter.filter)(function () { return false; - }); - - this._$ = util.Rx.Observable.merge(res$, changeEvents$).filter(function (x) { + })); + this._$ = (0, _merge.merge)(res$, changeEvents$).pipe((0, _filter.filter)(function (x) { return x !== null; - }).map(function (results) { + }), (0, _map.map)(function (results) { if (_this3.op !== 'findOne') return results;else if (results.length === 0) return null;else return results[0]; - }); + })); } return this._$; } @@ -10584,7 +10627,7 @@ exports['default'] = { isInstanceOf: isInstanceOf }; -},{"./hooks":7,"./mquery/mquery":9,"./query-change-detector":27,"./rx-error":33,"./util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/defineProperty":52,"babel-runtime/helpers/typeof":56,"babel-runtime/regenerator":57,"deep-equal":496}],35:[function(require,module,exports){ +},{"./hooks":7,"./mquery/mquery":9,"./query-change-detector":27,"./rx-error":33,"./util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/defineProperty":57,"babel-runtime/helpers/typeof":61,"babel-runtime/regenerator":62,"deep-equal":501,"rxjs/BehaviorSubject":614,"rxjs/observable/merge":630,"rxjs/operators/filter":634,"rxjs/operators/first":635,"rxjs/operators/map":636,"rxjs/operators/mergeMap":639}],35:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -10990,7 +11033,7 @@ exports['default'] = { isInstanceOf: isInstanceOf }; -},{"./hooks":7,"./rx-error":33,"./util":37,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/helpers/typeof":56,"clone":63,"object-path":570}],36:[function(require,module,exports){ +},{"./hooks":7,"./rx-error":33,"./util":37,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/helpers/typeof":61,"clone":68,"object-path":568}],36:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -11028,6 +11071,10 @@ var _rxBroadcastChannel = require('./rx-broadcast-channel'); var _rxBroadcastChannel2 = _interopRequireDefault(_rxBroadcastChannel); +var _Subject = require('rxjs/Subject'); + +var _filter = require('rxjs/operators/filter'); + function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } @@ -11050,7 +11097,7 @@ var Socket = function () { this.receivedEvents = {}; this.bc = _rxBroadcastChannel2['default'].create(this.database, 'socket'); - this.messages$ = new util.Rx.Subject(); + this.messages$ = new _Subject.Subject(); } /** @@ -11076,9 +11123,9 @@ var Socket = function () { // pull on BroadcastChannel-message if (this.bc) { - this.subs.push(this.bc.$.filter(function (msg) { + this.subs.push(this.bc.$.pipe((0, _filter.filter)(function (msg) { return msg.type === 'pull'; - }).subscribe(function () { + })).subscribe(function () { return _this.pull(); })); } @@ -11500,13 +11547,13 @@ exports['default'] = { PULL_TIME: PULL_TIME }; -},{"./rx-broadcast-channel":28,"./rx-change-event":29,"./util":37,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/classCallCheck":50,"babel-runtime/helpers/createClass":51,"babel-runtime/regenerator":57}],37:[function(require,module,exports){ +},{"./rx-broadcast-channel":28,"./rx-change-event":29,"./util":37,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/classCallCheck":55,"babel-runtime/helpers/createClass":56,"babel-runtime/regenerator":62,"rxjs/Subject":621,"rxjs/operators/filter":634}],37:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); -exports.requestIdlePromise = exports.promiseWait = exports.Rx = undefined; +exports.requestIdlePromise = exports.promiseWait = undefined; var _typeof2 = require('babel-runtime/helpers/typeof'); @@ -11619,67 +11666,16 @@ var _rxError = require('./rx-error'); var _rxError2 = _interopRequireDefault(_rxError); -var _Observable = require('rxjs/Observable'); - -var _Subject = require('rxjs/Subject'); - -var _BehaviorSubject = require('rxjs/BehaviorSubject'); - -require('rxjs/add/observable/merge'); - -require('rxjs/add/observable/interval'); - -require('rxjs/add/observable/from'); - -require('rxjs/add/observable/fromEvent'); - -require('rxjs/add/observable/defer'); - -require('rxjs/add/operator/publishReplay'); - -require('rxjs/add/operator/publish'); - -require('rxjs/add/operator/timeout'); - -require('rxjs/add/operator/delay'); - -require('rxjs/add/operator/do'); - -require('rxjs/add/operator/map'); - -require('rxjs/add/operator/mergeMap'); - -require('rxjs/add/operator/filter'); - -require('rxjs/add/operator/first'); - -require('rxjs/add/operator/startWith'); - -require('rxjs/add/operator/toPromise'); - -require('rxjs/add/operator/distinctUntilChanged'); - -require('rxjs/add/operator/distinct'); - var _sparkMd = require('spark-md5'); var _sparkMd2 = _interopRequireDefault(_sparkMd); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } -var Rx = exports.Rx = { - Observable: _Observable.Observable, - Subject: _Subject.Subject, - BehaviorSubject: _BehaviorSubject.BehaviorSubject -}; - /** * check if the given module is a leveldown-adapter * throws if not */ - - -// rxjs cherry-pick /** * this contains a mapping to basic dependencies * which should be easy to change @@ -11931,7 +11927,441 @@ function adapterObject(adapter) { return adapterObj; }; -},{"./rx-error":33,"babel-runtime/helpers/asyncToGenerator":49,"babel-runtime/helpers/typeof":56,"babel-runtime/regenerator":57,"random-token":602,"rxjs/BehaviorSubject":614,"rxjs/Observable":617,"rxjs/Subject":622,"rxjs/add/observable/defer":626,"rxjs/add/observable/from":627,"rxjs/add/observable/fromEvent":628,"rxjs/add/observable/interval":629,"rxjs/add/observable/merge":630,"rxjs/add/operator/delay":631,"rxjs/add/operator/distinct":632,"rxjs/add/operator/distinctUntilChanged":633,"rxjs/add/operator/do":634,"rxjs/add/operator/filter":635,"rxjs/add/operator/first":636,"rxjs/add/operator/map":637,"rxjs/add/operator/mergeMap":638,"rxjs/add/operator/publish":639,"rxjs/add/operator/publishReplay":640,"rxjs/add/operator/startWith":641,"rxjs/add/operator/timeout":642,"rxjs/add/operator/toPromise":643,"spark-md5":725}],38:[function(require,module,exports){ +},{"./rx-error":33,"babel-runtime/helpers/asyncToGenerator":54,"babel-runtime/helpers/typeof":61,"babel-runtime/regenerator":62,"random-token":602,"spark-md5":666}],38:[function(require,module,exports){ +(function (process){ +/* Copyright (c) 2013 Rod Vagg, MIT License */ + +function AbstractChainedBatch (db) { + this._db = db + this._operations = [] + this._written = false +} + +AbstractChainedBatch.prototype._checkWritten = function () { + if (this._written) + throw new Error('write() already called on this batch') +} + +AbstractChainedBatch.prototype.put = function (key, value) { + this._checkWritten() + + var err = this._db._checkKey(key, 'key', this._db._isBuffer) + if (err) + throw err + + if (!this._db._isBuffer(key)) key = String(key) + if (!this._db._isBuffer(value)) value = String(value) + + if (typeof this._put == 'function' ) + this._put(key, value) + else + this._operations.push({ type: 'put', key: key, value: value }) + + return this +} + +AbstractChainedBatch.prototype.del = function (key) { + this._checkWritten() + + var err = this._db._checkKey(key, 'key', this._db._isBuffer) + if (err) throw err + + if (!this._db._isBuffer(key)) key = String(key) + + if (typeof this._del == 'function' ) + this._del(key) + else + this._operations.push({ type: 'del', key: key }) + + return this +} + +AbstractChainedBatch.prototype.clear = function () { + this._checkWritten() + + this._operations = [] + + if (typeof this._clear == 'function' ) + this._clear() + + return this +} + +AbstractChainedBatch.prototype.write = function (options, callback) { + this._checkWritten() + + if (typeof options == 'function') + callback = options + if (typeof callback != 'function') + throw new Error('write() requires a callback argument') + if (typeof options != 'object') + options = {} + + this._written = true + + if (typeof this._write == 'function' ) + return this._write(callback) + + if (typeof this._db._batch == 'function') + return this._db._batch(this._operations, options, callback) + + process.nextTick(callback) +} + +module.exports = AbstractChainedBatch +}).call(this,require('_process')) +},{"_process":599}],39:[function(require,module,exports){ +(function (process){ +/* Copyright (c) 2013 Rod Vagg, MIT License */ + +function AbstractIterator (db) { + this.db = db + this._ended = false + this._nexting = false +} + +AbstractIterator.prototype.next = function (callback) { + var self = this + + if (typeof callback != 'function') + throw new Error('next() requires a callback argument') + + if (self._ended) + return callback(new Error('cannot call next() after end()')) + if (self._nexting) + return callback(new Error('cannot call next() before previous next() has completed')) + + self._nexting = true + if (typeof self._next == 'function') { + return self._next(function () { + self._nexting = false + callback.apply(null, arguments) + }) + } + + process.nextTick(function () { + self._nexting = false + callback() + }) +} + +AbstractIterator.prototype.end = function (callback) { + if (typeof callback != 'function') + throw new Error('end() requires a callback argument') + + if (this._ended) + return callback(new Error('end() already called on iterator')) + + this._ended = true + + if (typeof this._end == 'function') + return this._end(callback) + + process.nextTick(callback) +} + +module.exports = AbstractIterator + +}).call(this,require('_process')) +},{"_process":599}],40:[function(require,module,exports){ +(function (Buffer,process){ +/* Copyright (c) 2013 Rod Vagg, MIT License */ + +var xtend = require('xtend') + , AbstractIterator = require('./abstract-iterator') + , AbstractChainedBatch = require('./abstract-chained-batch') + +function AbstractLevelDOWN (location) { + if (!arguments.length || location === undefined) + throw new Error('constructor requires at least a location argument') + + if (typeof location != 'string') + throw new Error('constructor requires a location string argument') + + this.location = location + this.status = 'new' +} + +AbstractLevelDOWN.prototype.open = function (options, callback) { + var self = this + , oldStatus = this.status + + if (typeof options == 'function') + callback = options + + if (typeof callback != 'function') + throw new Error('open() requires a callback argument') + + if (typeof options != 'object') + options = {} + + options.createIfMissing = options.createIfMissing != false + options.errorIfExists = !!options.errorIfExists + + if (typeof this._open == 'function') { + this.status = 'opening' + this._open(options, function (err) { + if (err) { + self.status = oldStatus + return callback(err) + } + self.status = 'open' + callback() + }) + } else { + this.status = 'open' + process.nextTick(callback) + } +} + +AbstractLevelDOWN.prototype.close = function (callback) { + var self = this + , oldStatus = this.status + + if (typeof callback != 'function') + throw new Error('close() requires a callback argument') + + if (typeof this._close == 'function') { + this.status = 'closing' + this._close(function (err) { + if (err) { + self.status = oldStatus + return callback(err) + } + self.status = 'closed' + callback() + }) + } else { + this.status = 'closed' + process.nextTick(callback) + } +} + +AbstractLevelDOWN.prototype.get = function (key, options, callback) { + var err + + if (typeof options == 'function') + callback = options + + if (typeof callback != 'function') + throw new Error('get() requires a callback argument') + + if (err = this._checkKey(key, 'key', this._isBuffer)) + return callback(err) + + if (!this._isBuffer(key)) + key = String(key) + + if (typeof options != 'object') + options = {} + + options.asBuffer = options.asBuffer != false + + if (typeof this._get == 'function') + return this._get(key, options, callback) + + process.nextTick(function () { callback(new Error('NotFound')) }) +} + +AbstractLevelDOWN.prototype.put = function (key, value, options, callback) { + var err + + if (typeof options == 'function') + callback = options + + if (typeof callback != 'function') + throw new Error('put() requires a callback argument') + + if (err = this._checkKey(key, 'key', this._isBuffer)) + return callback(err) + + if (!this._isBuffer(key)) + key = String(key) + + // coerce value to string in node, don't touch it in browser + // (indexeddb can store any JS type) + if (value != null && !this._isBuffer(value) && !process.browser) + value = String(value) + + if (typeof options != 'object') + options = {} + + if (typeof this._put == 'function') + return this._put(key, value, options, callback) + + process.nextTick(callback) +} + +AbstractLevelDOWN.prototype.del = function (key, options, callback) { + var err + + if (typeof options == 'function') + callback = options + + if (typeof callback != 'function') + throw new Error('del() requires a callback argument') + + if (err = this._checkKey(key, 'key', this._isBuffer)) + return callback(err) + + if (!this._isBuffer(key)) + key = String(key) + + if (typeof options != 'object') + options = {} + + if (typeof this._del == 'function') + return this._del(key, options, callback) + + process.nextTick(callback) +} + +AbstractLevelDOWN.prototype.batch = function (array, options, callback) { + if (!arguments.length) + return this._chainedBatch() + + if (typeof options == 'function') + callback = options + + if (typeof array == 'function') + callback = array + + if (typeof callback != 'function') + throw new Error('batch(array) requires a callback argument') + + if (!Array.isArray(array)) + return callback(new Error('batch(array) requires an array argument')) + + if (!options || typeof options != 'object') + options = {} + + var i = 0 + , l = array.length + , e + , err + + for (; i < l; i++) { + e = array[i] + if (typeof e != 'object') + continue + + if (err = this._checkKey(e.type, 'type', this._isBuffer)) + return callback(err) + + if (err = this._checkKey(e.key, 'key', this._isBuffer)) + return callback(err) + } + + if (typeof this._batch == 'function') + return this._batch(array, options, callback) + + process.nextTick(callback) +} + +//TODO: remove from here, not a necessary primitive +AbstractLevelDOWN.prototype.approximateSize = function (start, end, callback) { + if ( start == null + || end == null + || typeof start == 'function' + || typeof end == 'function') { + throw new Error('approximateSize() requires valid `start`, `end` and `callback` arguments') + } + + if (typeof callback != 'function') + throw new Error('approximateSize() requires a callback argument') + + if (!this._isBuffer(start)) + start = String(start) + + if (!this._isBuffer(end)) + end = String(end) + + if (typeof this._approximateSize == 'function') + return this._approximateSize(start, end, callback) + + process.nextTick(function () { + callback(null, 0) + }) +} + +AbstractLevelDOWN.prototype._setupIteratorOptions = function (options) { + var self = this + + options = xtend(options) + + ;[ 'start', 'end', 'gt', 'gte', 'lt', 'lte' ].forEach(function (o) { + if (options[o] && self._isBuffer(options[o]) && options[o].length === 0) + delete options[o] + }) + + options.reverse = !!options.reverse + options.keys = options.keys != false + options.values = options.values != false + options.limit = 'limit' in options ? options.limit : -1 + options.keyAsBuffer = options.keyAsBuffer != false + options.valueAsBuffer = options.valueAsBuffer != false + + return options +} + +AbstractLevelDOWN.prototype.iterator = function (options) { + if (typeof options != 'object') + options = {} + + options = this._setupIteratorOptions(options) + + if (typeof this._iterator == 'function') + return this._iterator(options) + + return new AbstractIterator(this) +} + +AbstractLevelDOWN.prototype._chainedBatch = function () { + return new AbstractChainedBatch(this) +} + +AbstractLevelDOWN.prototype._isBuffer = function (obj) { + return Buffer.isBuffer(obj) +} + +AbstractLevelDOWN.prototype._checkKey = function (obj, type) { + + if (obj === null || obj === undefined) + return new Error(type + ' cannot be `null` or `undefined`') + + if (this._isBuffer(obj)) { + if (obj.length === 0) + return new Error(type + ' cannot be an empty Buffer') + } else if (String(obj) === '') + return new Error(type + ' cannot be an empty String') +} + +module.exports = AbstractLevelDOWN + +}).call(this,{"isBuffer":require("../is-buffer/index.js")},require('_process')) +},{"../is-buffer/index.js":532,"./abstract-chained-batch":38,"./abstract-iterator":39,"_process":599,"xtend":734}],41:[function(require,module,exports){ +exports.AbstractLevelDOWN = require('./abstract-leveldown') +exports.AbstractIterator = require('./abstract-iterator') +exports.AbstractChainedBatch = require('./abstract-chained-batch') +exports.isLevelDOWN = require('./is-leveldown') + +},{"./abstract-chained-batch":38,"./abstract-iterator":39,"./abstract-leveldown":40,"./is-leveldown":42}],42:[function(require,module,exports){ +var AbstractLevelDOWN = require('./abstract-leveldown') + +function isLevelDOWN (db) { + if (!db || typeof db !== 'object') + return false + return Object.keys(AbstractLevelDOWN.prototype).filter(function (name) { + // TODO remove approximateSize check when method is gone + return name[0] != '_' && name != 'approximateSize' + }).every(function (name) { + return typeof db[name] == 'function' + }) +} + +module.exports = isLevelDOWN + +},{"./abstract-leveldown":40}],43:[function(require,module,exports){ 'use strict'; module.exports = argsArray; @@ -11951,7 +12381,7 @@ function argsArray(fun) { } }; } -},{}],39:[function(require,module,exports){ +},{}],44:[function(require,module,exports){ /** * @file Invokes function, returning an object of the results. * @version 1.1.1 @@ -12036,7 +12466,7 @@ module.exports = function attempt(fn) { } }; -},{}],40:[function(require,module,exports){ +},{}],45:[function(require,module,exports){ (function (global){ "use strict"; @@ -12067,7 +12497,7 @@ define(String.prototype, "padRight", "".padEnd); [][key] && define(Array, key, Function.call.bind([][key])); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":64,"core-js/shim":480,"regenerator-runtime/runtime":41}],41:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":69,"core-js/shim":485,"regenerator-runtime/runtime":46}],46:[function(require,module,exports){ (function (global){ /** * Copyright (c) 2014, Facebook, Inc. @@ -12807,21 +13237,21 @@ define(String.prototype, "padRight", "".padEnd); ); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],42:[function(require,module,exports){ +},{}],47:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/array/from"), __esModule: true }; -},{"core-js/library/fn/array/from":65}],43:[function(require,module,exports){ +},{"core-js/library/fn/array/from":70}],48:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/object/create"), __esModule: true }; -},{"core-js/library/fn/object/create":66}],44:[function(require,module,exports){ +},{"core-js/library/fn/object/create":71}],49:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/object/define-property"), __esModule: true }; -},{"core-js/library/fn/object/define-property":67}],45:[function(require,module,exports){ +},{"core-js/library/fn/object/define-property":72}],50:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/object/set-prototype-of"), __esModule: true }; -},{"core-js/library/fn/object/set-prototype-of":68}],46:[function(require,module,exports){ +},{"core-js/library/fn/object/set-prototype-of":73}],51:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/promise"), __esModule: true }; -},{"core-js/library/fn/promise":69}],47:[function(require,module,exports){ +},{"core-js/library/fn/promise":74}],52:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/symbol"), __esModule: true }; -},{"core-js/library/fn/symbol":70}],48:[function(require,module,exports){ +},{"core-js/library/fn/symbol":75}],53:[function(require,module,exports){ module.exports = { "default": require("core-js/library/fn/symbol/iterator"), __esModule: true }; -},{"core-js/library/fn/symbol/iterator":71}],49:[function(require,module,exports){ +},{"core-js/library/fn/symbol/iterator":76}],54:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12860,7 +13290,7 @@ exports.default = function (fn) { }); }; }; -},{"../core-js/promise":46}],50:[function(require,module,exports){ +},{"../core-js/promise":51}],55:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12870,7 +13300,7 @@ exports.default = function (instance, Constructor) { throw new TypeError("Cannot call a class as a function"); } }; -},{}],51:[function(require,module,exports){ +},{}],56:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12898,7 +13328,7 @@ exports.default = function () { return Constructor; }; }(); -},{"../core-js/object/define-property":44}],52:[function(require,module,exports){ +},{"../core-js/object/define-property":49}],57:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12923,7 +13353,7 @@ exports.default = function (obj, key, value) { return obj; }; -},{"../core-js/object/define-property":44}],53:[function(require,module,exports){ +},{"../core-js/object/define-property":49}],58:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12957,7 +13387,7 @@ exports.default = function (subClass, superClass) { }); if (superClass) _setPrototypeOf2.default ? (0, _setPrototypeOf2.default)(subClass, superClass) : subClass.__proto__ = superClass; }; -},{"../core-js/object/create":43,"../core-js/object/set-prototype-of":45,"../helpers/typeof":56}],54:[function(require,module,exports){ +},{"../core-js/object/create":48,"../core-js/object/set-prototype-of":50,"../helpers/typeof":61}],59:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12975,7 +13405,7 @@ exports.default = function (self, call) { return call && ((typeof call === "undefined" ? "undefined" : (0, _typeof3.default)(call)) === "object" || typeof call === "function") ? call : self; }; -},{"../helpers/typeof":56}],55:[function(require,module,exports){ +},{"../helpers/typeof":61}],60:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -12997,7 +13427,7 @@ exports.default = function (arr) { return (0, _from2.default)(arr); } }; -},{"../core-js/array/from":42}],56:[function(require,module,exports){ +},{"../core-js/array/from":47}],61:[function(require,module,exports){ "use strict"; exports.__esModule = true; @@ -13019,10 +13449,10 @@ exports.default = typeof _symbol2.default === "function" && _typeof(_iterator2.d } : function (obj) { return obj && typeof _symbol2.default === "function" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? "symbol" : typeof obj === "undefined" ? "undefined" : _typeof(obj); }; -},{"../core-js/symbol":47,"../core-js/symbol/iterator":48}],57:[function(require,module,exports){ +},{"../core-js/symbol":52,"../core-js/symbol/iterator":53}],62:[function(require,module,exports){ module.exports = require("regenerator-runtime"); -},{"regenerator-runtime":609}],58:[function(require,module,exports){ +},{"regenerator-runtime":609}],63:[function(require,module,exports){ 'use strict' exports.byteLength = byteLength @@ -13138,9 +13568,9 @@ function fromByteArray (uint8) { return parts.join('') } -},{}],59:[function(require,module,exports){ +},{}],64:[function(require,module,exports){ -},{}],60:[function(require,module,exports){ +},{}],65:[function(require,module,exports){ (function (Buffer){ var isArrayBuffer = require('is-array-buffer-x') @@ -13209,7 +13639,7 @@ function bufferFrom (value, encodingOrOffset, length) { module.exports = bufferFrom }).call(this,require("buffer").Buffer) -},{"buffer":61,"is-array-buffer-x":520}],61:[function(require,module,exports){ +},{"buffer":66,"is-array-buffer-x":531}],66:[function(require,module,exports){ /*! * The buffer module from node.js, for the browser. * @@ -14925,7 +15355,7 @@ function numberIsNaN (obj) { return obj !== obj // eslint-disable-line no-self-compare } -},{"base64-js":58,"ieee754":517}],62:[function(require,module,exports){ +},{"base64-js":63,"ieee754":522}],67:[function(require,module,exports){ /** * @file Constructors cached from literals. * @version 1.0.0 @@ -14953,7 +15383,7 @@ module.exports = { String: ''.constructor }; -},{}],63:[function(require,module,exports){ +},{}],68:[function(require,module,exports){ (function (Buffer){ var clone = (function() { 'use strict'; @@ -15208,34 +15638,34 @@ if (typeof module === 'object' && module.exports) { } }).call(this,require("buffer").Buffer) -},{"buffer":61}],64:[function(require,module,exports){ +},{"buffer":66}],69:[function(require,module,exports){ require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":179,"../../modules/core.regexp.escape":283}],65:[function(require,module,exports){ +},{"../../modules/_core":184,"../../modules/core.regexp.escape":288}],70:[function(require,module,exports){ require('../../modules/es6.string.iterator'); require('../../modules/es6.array.from'); module.exports = require('../../modules/_core').Array.from; -},{"../../modules/_core":79,"../../modules/es6.array.from":145,"../../modules/es6.string.iterator":152}],66:[function(require,module,exports){ +},{"../../modules/_core":84,"../../modules/es6.array.from":150,"../../modules/es6.string.iterator":157}],71:[function(require,module,exports){ require('../../modules/es6.object.create'); var $Object = require('../../modules/_core').Object; module.exports = function create(P, D) { return $Object.create(P, D); }; -},{"../../modules/_core":79,"../../modules/es6.object.create":147}],67:[function(require,module,exports){ +},{"../../modules/_core":84,"../../modules/es6.object.create":152}],72:[function(require,module,exports){ require('../../modules/es6.object.define-property'); var $Object = require('../../modules/_core').Object; module.exports = function defineProperty(it, key, desc) { return $Object.defineProperty(it, key, desc); }; -},{"../../modules/_core":79,"../../modules/es6.object.define-property":148}],68:[function(require,module,exports){ +},{"../../modules/_core":84,"../../modules/es6.object.define-property":153}],73:[function(require,module,exports){ require('../../modules/es6.object.set-prototype-of'); module.exports = require('../../modules/_core').Object.setPrototypeOf; -},{"../../modules/_core":79,"../../modules/es6.object.set-prototype-of":149}],69:[function(require,module,exports){ +},{"../../modules/_core":84,"../../modules/es6.object.set-prototype-of":154}],74:[function(require,module,exports){ require('../modules/es6.object.to-string'); require('../modules/es6.string.iterator'); require('../modules/web.dom.iterable'); @@ -15244,42 +15674,42 @@ require('../modules/es7.promise.finally'); require('../modules/es7.promise.try'); module.exports = require('../modules/_core').Promise; -},{"../modules/_core":79,"../modules/es6.object.to-string":150,"../modules/es6.promise":151,"../modules/es6.string.iterator":152,"../modules/es7.promise.finally":154,"../modules/es7.promise.try":155,"../modules/web.dom.iterable":158}],70:[function(require,module,exports){ +},{"../modules/_core":84,"../modules/es6.object.to-string":155,"../modules/es6.promise":156,"../modules/es6.string.iterator":157,"../modules/es7.promise.finally":159,"../modules/es7.promise.try":160,"../modules/web.dom.iterable":163}],75:[function(require,module,exports){ require('../../modules/es6.symbol'); require('../../modules/es6.object.to-string'); require('../../modules/es7.symbol.async-iterator'); require('../../modules/es7.symbol.observable'); module.exports = require('../../modules/_core').Symbol; -},{"../../modules/_core":79,"../../modules/es6.object.to-string":150,"../../modules/es6.symbol":153,"../../modules/es7.symbol.async-iterator":156,"../../modules/es7.symbol.observable":157}],71:[function(require,module,exports){ +},{"../../modules/_core":84,"../../modules/es6.object.to-string":155,"../../modules/es6.symbol":158,"../../modules/es7.symbol.async-iterator":161,"../../modules/es7.symbol.observable":162}],76:[function(require,module,exports){ require('../../modules/es6.string.iterator'); require('../../modules/web.dom.iterable'); module.exports = require('../../modules/_wks-ext').f('iterator'); -},{"../../modules/_wks-ext":142,"../../modules/es6.string.iterator":152,"../../modules/web.dom.iterable":158}],72:[function(require,module,exports){ +},{"../../modules/_wks-ext":147,"../../modules/es6.string.iterator":157,"../../modules/web.dom.iterable":163}],77:[function(require,module,exports){ module.exports = function (it) { if (typeof it != 'function') throw TypeError(it + ' is not a function!'); return it; }; -},{}],73:[function(require,module,exports){ +},{}],78:[function(require,module,exports){ module.exports = function () { /* empty */ }; -},{}],74:[function(require,module,exports){ +},{}],79:[function(require,module,exports){ module.exports = function (it, Constructor, name, forbiddenField) { if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) { throw TypeError(name + ': incorrect invocation!'); } return it; }; -},{}],75:[function(require,module,exports){ +},{}],80:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function (it) { if (!isObject(it)) throw TypeError(it + ' is not an object!'); return it; }; -},{"./_is-object":99}],76:[function(require,module,exports){ +},{"./_is-object":104}],81:[function(require,module,exports){ // false -> Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject'); @@ -15304,7 +15734,7 @@ module.exports = function (IS_INCLUDES) { }; }; -},{"./_to-absolute-index":134,"./_to-iobject":136,"./_to-length":137}],77:[function(require,module,exports){ +},{"./_to-absolute-index":139,"./_to-iobject":141,"./_to-length":142}],82:[function(require,module,exports){ // getting tag from 19.1.3.6 Object.prototype.toString() var cof = require('./_cof'); var TAG = require('./_wks')('toStringTag'); @@ -15329,18 +15759,18 @@ module.exports = function (it) { : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":78,"./_wks":143}],78:[function(require,module,exports){ +},{"./_cof":83,"./_wks":148}],83:[function(require,module,exports){ var toString = {}.toString; module.exports = function (it) { return toString.call(it).slice(8, -1); }; -},{}],79:[function(require,module,exports){ +},{}],84:[function(require,module,exports){ var core = module.exports = { version: '2.5.1' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef -},{}],80:[function(require,module,exports){ +},{}],85:[function(require,module,exports){ 'use strict'; var $defineProperty = require('./_object-dp'); var createDesc = require('./_property-desc'); @@ -15350,7 +15780,7 @@ module.exports = function (object, index, value) { else object[index] = value; }; -},{"./_object-dp":111,"./_property-desc":123}],81:[function(require,module,exports){ +},{"./_object-dp":116,"./_property-desc":128}],86:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function (fn, that, length) { @@ -15372,20 +15802,20 @@ module.exports = function (fn, that, length) { }; }; -},{"./_a-function":72}],82:[function(require,module,exports){ +},{"./_a-function":77}],87:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function (it) { if (it == undefined) throw TypeError("Can't call method on " + it); return it; }; -},{}],83:[function(require,module,exports){ +},{}],88:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function () { return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; }); -},{"./_fails":88}],84:[function(require,module,exports){ +},{"./_fails":93}],89:[function(require,module,exports){ var isObject = require('./_is-object'); var document = require('./_global').document; // typeof document.createElement is 'object' in old IE @@ -15394,13 +15824,13 @@ module.exports = function (it) { return is ? document.createElement(it) : {}; }; -},{"./_global":90,"./_is-object":99}],85:[function(require,module,exports){ +},{"./_global":95,"./_is-object":104}],90:[function(require,module,exports){ // IE 8- don't enum bug keys module.exports = ( 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],86:[function(require,module,exports){ +},{}],91:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys'); var gOPS = require('./_object-gops'); @@ -15417,7 +15847,7 @@ module.exports = function (it) { } return result; }; -},{"./_object-gops":116,"./_object-keys":119,"./_object-pie":120}],87:[function(require,module,exports){ +},{"./_object-gops":121,"./_object-keys":124,"./_object-pie":125}],92:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var ctx = require('./_ctx'); @@ -15480,7 +15910,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":79,"./_ctx":81,"./_global":90,"./_hide":92}],88:[function(require,module,exports){ +},{"./_core":84,"./_ctx":86,"./_global":95,"./_hide":97}],93:[function(require,module,exports){ module.exports = function (exec) { try { return !!exec(); @@ -15489,7 +15919,7 @@ module.exports = function (exec) { } }; -},{}],89:[function(require,module,exports){ +},{}],94:[function(require,module,exports){ var ctx = require('./_ctx'); var call = require('./_iter-call'); var isArrayIter = require('./_is-array-iter'); @@ -15516,7 +15946,7 @@ var exports = module.exports = function (iterable, entries, fn, that, ITERATOR) exports.BREAK = BREAK; exports.RETURN = RETURN; -},{"./_an-object":75,"./_ctx":81,"./_is-array-iter":97,"./_iter-call":100,"./_to-length":137,"./core.get-iterator-method":144}],90:[function(require,module,exports){ +},{"./_an-object":80,"./_ctx":86,"./_is-array-iter":102,"./_iter-call":105,"./_to-length":142,"./core.get-iterator-method":149}],95:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self @@ -15524,13 +15954,13 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef -},{}],91:[function(require,module,exports){ +},{}],96:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; -},{}],92:[function(require,module,exports){ +},{}],97:[function(require,module,exports){ var dP = require('./_object-dp'); var createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function (object, key, value) { @@ -15540,16 +15970,16 @@ module.exports = require('./_descriptors') ? function (object, key, value) { return object; }; -},{"./_descriptors":83,"./_object-dp":111,"./_property-desc":123}],93:[function(require,module,exports){ +},{"./_descriptors":88,"./_object-dp":116,"./_property-desc":128}],98:[function(require,module,exports){ var document = require('./_global').document; module.exports = document && document.documentElement; -},{"./_global":90}],94:[function(require,module,exports){ +},{"./_global":95}],99:[function(require,module,exports){ module.exports = !require('./_descriptors') && !require('./_fails')(function () { return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7; }); -},{"./_descriptors":83,"./_dom-create":84,"./_fails":88}],95:[function(require,module,exports){ +},{"./_descriptors":88,"./_dom-create":89,"./_fails":93}],100:[function(require,module,exports){ // fast apply, http://jsperf.lnkit.com/fast-apply/5 module.exports = function (fn, args, that) { var un = that === undefined; @@ -15567,7 +15997,7 @@ module.exports = function (fn, args, that) { } return fn.apply(that, args); }; -},{}],96:[function(require,module,exports){ +},{}],101:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); // eslint-disable-next-line no-prototype-builtins @@ -15575,7 +16005,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":78}],97:[function(require,module,exports){ +},{"./_cof":83}],102:[function(require,module,exports){ // check on default Array iterator var Iterators = require('./_iterators'); var ITERATOR = require('./_wks')('iterator'); @@ -15585,19 +16015,19 @@ module.exports = function (it) { return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":105,"./_wks":143}],98:[function(require,module,exports){ +},{"./_iterators":110,"./_wks":148}],103:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg) { return cof(arg) == 'Array'; }; -},{"./_cof":78}],99:[function(require,module,exports){ +},{"./_cof":83}],104:[function(require,module,exports){ module.exports = function (it) { return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],100:[function(require,module,exports){ +},{}],105:[function(require,module,exports){ // call something on iterator step with safe closing on error var anObject = require('./_an-object'); module.exports = function (iterator, fn, value, entries) { @@ -15611,7 +16041,7 @@ module.exports = function (iterator, fn, value, entries) { } }; -},{"./_an-object":75}],101:[function(require,module,exports){ +},{"./_an-object":80}],106:[function(require,module,exports){ 'use strict'; var create = require('./_object-create'); var descriptor = require('./_property-desc'); @@ -15626,7 +16056,7 @@ module.exports = function (Constructor, NAME, next) { setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":92,"./_object-create":110,"./_property-desc":123,"./_set-to-string-tag":128,"./_wks":143}],102:[function(require,module,exports){ +},{"./_hide":97,"./_object-create":115,"./_property-desc":128,"./_set-to-string-tag":133,"./_wks":148}],107:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); var $export = require('./_export'); @@ -15698,7 +16128,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE return methods; }; -},{"./_export":87,"./_has":91,"./_hide":92,"./_iter-create":101,"./_iterators":105,"./_library":106,"./_object-gpo":117,"./_redefine":125,"./_set-to-string-tag":128,"./_wks":143}],103:[function(require,module,exports){ +},{"./_export":92,"./_has":96,"./_hide":97,"./_iter-create":106,"./_iterators":110,"./_library":111,"./_object-gpo":122,"./_redefine":130,"./_set-to-string-tag":133,"./_wks":148}],108:[function(require,module,exports){ var ITERATOR = require('./_wks')('iterator'); var SAFE_CLOSING = false; @@ -15722,18 +16152,18 @@ module.exports = function (exec, skipClosing) { return safe; }; -},{"./_wks":143}],104:[function(require,module,exports){ +},{"./_wks":148}],109:[function(require,module,exports){ module.exports = function (done, value) { return { value: value, done: !!done }; }; -},{}],105:[function(require,module,exports){ +},{}],110:[function(require,module,exports){ module.exports = {}; -},{}],106:[function(require,module,exports){ +},{}],111:[function(require,module,exports){ module.exports = true; -},{}],107:[function(require,module,exports){ +},{}],112:[function(require,module,exports){ var META = require('./_uid')('meta'); var isObject = require('./_is-object'); var has = require('./_has'); @@ -15788,7 +16218,7 @@ var meta = module.exports = { onFreeze: onFreeze }; -},{"./_fails":88,"./_has":91,"./_is-object":99,"./_object-dp":111,"./_uid":140}],108:[function(require,module,exports){ +},{"./_fails":93,"./_has":96,"./_is-object":104,"./_object-dp":116,"./_uid":145}],113:[function(require,module,exports){ var global = require('./_global'); var macrotask = require('./_task').set; var Observer = global.MutationObserver || global.WebKitMutationObserver; @@ -15858,7 +16288,7 @@ module.exports = function () { }; }; -},{"./_cof":78,"./_global":90,"./_task":133}],109:[function(require,module,exports){ +},{"./_cof":83,"./_global":95,"./_task":138}],114:[function(require,module,exports){ 'use strict'; // 25.4.1.5 NewPromiseCapability(C) var aFunction = require('./_a-function'); @@ -15878,7 +16308,7 @@ module.exports.f = function (C) { return new PromiseCapability(C); }; -},{"./_a-function":72}],110:[function(require,module,exports){ +},{"./_a-function":77}],115:[function(require,module,exports){ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) var anObject = require('./_an-object'); var dPs = require('./_object-dps'); @@ -15921,7 +16351,7 @@ module.exports = Object.create || function create(O, Properties) { return Properties === undefined ? result : dPs(result, Properties); }; -},{"./_an-object":75,"./_dom-create":84,"./_enum-bug-keys":85,"./_html":93,"./_object-dps":112,"./_shared-key":129}],111:[function(require,module,exports){ +},{"./_an-object":80,"./_dom-create":89,"./_enum-bug-keys":90,"./_html":98,"./_object-dps":117,"./_shared-key":134}],116:[function(require,module,exports){ var anObject = require('./_an-object'); var IE8_DOM_DEFINE = require('./_ie8-dom-define'); var toPrimitive = require('./_to-primitive'); @@ -15939,7 +16369,7 @@ exports.f = require('./_descriptors') ? Object.defineProperty : function defineP return O; }; -},{"./_an-object":75,"./_descriptors":83,"./_ie8-dom-define":94,"./_to-primitive":139}],112:[function(require,module,exports){ +},{"./_an-object":80,"./_descriptors":88,"./_ie8-dom-define":99,"./_to-primitive":144}],117:[function(require,module,exports){ var dP = require('./_object-dp'); var anObject = require('./_an-object'); var getKeys = require('./_object-keys'); @@ -15954,7 +16384,7 @@ module.exports = require('./_descriptors') ? Object.defineProperties : function return O; }; -},{"./_an-object":75,"./_descriptors":83,"./_object-dp":111,"./_object-keys":119}],113:[function(require,module,exports){ +},{"./_an-object":80,"./_descriptors":88,"./_object-dp":116,"./_object-keys":124}],118:[function(require,module,exports){ var pIE = require('./_object-pie'); var createDesc = require('./_property-desc'); var toIObject = require('./_to-iobject'); @@ -15972,7 +16402,7 @@ exports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); }; -},{"./_descriptors":83,"./_has":91,"./_ie8-dom-define":94,"./_object-pie":120,"./_property-desc":123,"./_to-iobject":136,"./_to-primitive":139}],114:[function(require,module,exports){ +},{"./_descriptors":88,"./_has":96,"./_ie8-dom-define":99,"./_object-pie":125,"./_property-desc":128,"./_to-iobject":141,"./_to-primitive":144}],119:[function(require,module,exports){ // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window var toIObject = require('./_to-iobject'); var gOPN = require('./_object-gopn').f; @@ -15993,7 +16423,7 @@ module.exports.f = function getOwnPropertyNames(it) { return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it)); }; -},{"./_object-gopn":115,"./_to-iobject":136}],115:[function(require,module,exports){ +},{"./_object-gopn":120,"./_to-iobject":141}],120:[function(require,module,exports){ // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) var $keys = require('./_object-keys-internal'); var hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype'); @@ -16002,10 +16432,10 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return $keys(O, hiddenKeys); }; -},{"./_enum-bug-keys":85,"./_object-keys-internal":118}],116:[function(require,module,exports){ +},{"./_enum-bug-keys":90,"./_object-keys-internal":123}],121:[function(require,module,exports){ exports.f = Object.getOwnPropertySymbols; -},{}],117:[function(require,module,exports){ +},{}],122:[function(require,module,exports){ // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) var has = require('./_has'); var toObject = require('./_to-object'); @@ -16020,7 +16450,7 @@ module.exports = Object.getPrototypeOf || function (O) { } return O instanceof Object ? ObjectProto : null; }; -},{"./_has":91,"./_shared-key":129,"./_to-object":138}],118:[function(require,module,exports){ +},{"./_has":96,"./_shared-key":134,"./_to-object":143}],123:[function(require,module,exports){ var has = require('./_has'); var toIObject = require('./_to-iobject'); var arrayIndexOf = require('./_array-includes')(false); @@ -16039,7 +16469,7 @@ module.exports = function (object, names) { return result; }; -},{"./_array-includes":76,"./_has":91,"./_shared-key":129,"./_to-iobject":136}],119:[function(require,module,exports){ +},{"./_array-includes":81,"./_has":96,"./_shared-key":134,"./_to-iobject":141}],124:[function(require,module,exports){ // 19.1.2.14 / 15.2.3.14 Object.keys(O) var $keys = require('./_object-keys-internal'); var enumBugKeys = require('./_enum-bug-keys'); @@ -16048,10 +16478,10 @@ module.exports = Object.keys || function keys(O) { return $keys(O, enumBugKeys); }; -},{"./_enum-bug-keys":85,"./_object-keys-internal":118}],120:[function(require,module,exports){ +},{"./_enum-bug-keys":90,"./_object-keys-internal":123}],125:[function(require,module,exports){ exports.f = {}.propertyIsEnumerable; -},{}],121:[function(require,module,exports){ +},{}],126:[function(require,module,exports){ module.exports = function (exec) { try { return { e: false, v: exec() }; @@ -16060,7 +16490,7 @@ module.exports = function (exec) { } }; -},{}],122:[function(require,module,exports){ +},{}],127:[function(require,module,exports){ var anObject = require('./_an-object'); var isObject = require('./_is-object'); var newPromiseCapability = require('./_new-promise-capability'); @@ -16074,7 +16504,7 @@ module.exports = function (C, x) { return promiseCapability.promise; }; -},{"./_an-object":75,"./_is-object":99,"./_new-promise-capability":109}],123:[function(require,module,exports){ +},{"./_an-object":80,"./_is-object":104,"./_new-promise-capability":114}],128:[function(require,module,exports){ module.exports = function (bitmap, value) { return { enumerable: !(bitmap & 1), @@ -16084,7 +16514,7 @@ module.exports = function (bitmap, value) { }; }; -},{}],124:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ var hide = require('./_hide'); module.exports = function (target, src, safe) { for (var key in src) { @@ -16093,10 +16523,10 @@ module.exports = function (target, src, safe) { } return target; }; -},{"./_hide":92}],125:[function(require,module,exports){ +},{"./_hide":97}],130:[function(require,module,exports){ module.exports = require('./_hide'); -},{"./_hide":92}],126:[function(require,module,exports){ +},{"./_hide":97}],131:[function(require,module,exports){ // Works with __proto__ only. Old v8 can't work with null proto objects. /* eslint-disable no-proto */ var isObject = require('./_is-object'); @@ -16123,7 +16553,7 @@ module.exports = { check: check }; -},{"./_an-object":75,"./_ctx":81,"./_is-object":99,"./_object-gopd":113}],127:[function(require,module,exports){ +},{"./_an-object":80,"./_ctx":86,"./_is-object":104,"./_object-gopd":118}],132:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var core = require('./_core'); @@ -16139,7 +16569,7 @@ module.exports = function (KEY) { }); }; -},{"./_core":79,"./_descriptors":83,"./_global":90,"./_object-dp":111,"./_wks":143}],128:[function(require,module,exports){ +},{"./_core":84,"./_descriptors":88,"./_global":95,"./_object-dp":116,"./_wks":148}],133:[function(require,module,exports){ var def = require('./_object-dp').f; var has = require('./_has'); var TAG = require('./_wks')('toStringTag'); @@ -16148,14 +16578,14 @@ module.exports = function (it, tag, stat) { if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); }; -},{"./_has":91,"./_object-dp":111,"./_wks":143}],129:[function(require,module,exports){ +},{"./_has":96,"./_object-dp":116,"./_wks":148}],134:[function(require,module,exports){ var shared = require('./_shared')('keys'); var uid = require('./_uid'); module.exports = function (key) { return shared[key] || (shared[key] = uid(key)); }; -},{"./_shared":130,"./_uid":140}],130:[function(require,module,exports){ +},{"./_shared":135,"./_uid":145}],135:[function(require,module,exports){ var global = require('./_global'); var SHARED = '__core-js_shared__'; var store = global[SHARED] || (global[SHARED] = {}); @@ -16163,7 +16593,7 @@ module.exports = function (key) { return store[key] || (store[key] = {}); }; -},{"./_global":90}],131:[function(require,module,exports){ +},{"./_global":95}],136:[function(require,module,exports){ // 7.3.20 SpeciesConstructor(O, defaultConstructor) var anObject = require('./_an-object'); var aFunction = require('./_a-function'); @@ -16174,7 +16604,7 @@ module.exports = function (O, D) { return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S); }; -},{"./_a-function":72,"./_an-object":75,"./_wks":143}],132:[function(require,module,exports){ +},{"./_a-function":77,"./_an-object":80,"./_wks":148}],137:[function(require,module,exports){ var toInteger = require('./_to-integer'); var defined = require('./_defined'); // true -> String#at @@ -16193,7 +16623,7 @@ module.exports = function (TO_STRING) { }; }; -},{"./_defined":82,"./_to-integer":135}],133:[function(require,module,exports){ +},{"./_defined":87,"./_to-integer":140}],138:[function(require,module,exports){ var ctx = require('./_ctx'); var invoke = require('./_invoke'); var html = require('./_html'); @@ -16279,7 +16709,7 @@ module.exports = { clear: clearTask }; -},{"./_cof":78,"./_ctx":81,"./_dom-create":84,"./_global":90,"./_html":93,"./_invoke":95}],134:[function(require,module,exports){ +},{"./_cof":83,"./_ctx":86,"./_dom-create":89,"./_global":95,"./_html":98,"./_invoke":100}],139:[function(require,module,exports){ var toInteger = require('./_to-integer'); var max = Math.max; var min = Math.min; @@ -16288,7 +16718,7 @@ module.exports = function (index, length) { return index < 0 ? max(index + length, 0) : min(index, length); }; -},{"./_to-integer":135}],135:[function(require,module,exports){ +},{"./_to-integer":140}],140:[function(require,module,exports){ // 7.1.4 ToInteger var ceil = Math.ceil; var floor = Math.floor; @@ -16296,7 +16726,7 @@ module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; -},{}],136:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ // to indexed object, toObject with fallback for non-array-like ES3 strings var IObject = require('./_iobject'); var defined = require('./_defined'); @@ -16304,7 +16734,7 @@ module.exports = function (it) { return IObject(defined(it)); }; -},{"./_defined":82,"./_iobject":96}],137:[function(require,module,exports){ +},{"./_defined":87,"./_iobject":101}],142:[function(require,module,exports){ // 7.1.15 ToLength var toInteger = require('./_to-integer'); var min = Math.min; @@ -16312,14 +16742,14 @@ module.exports = function (it) { return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 }; -},{"./_to-integer":135}],138:[function(require,module,exports){ +},{"./_to-integer":140}],143:[function(require,module,exports){ // 7.1.13 ToObject(argument) var defined = require('./_defined'); module.exports = function (it) { return Object(defined(it)); }; -},{"./_defined":82}],139:[function(require,module,exports){ +},{"./_defined":87}],144:[function(require,module,exports){ // 7.1.1 ToPrimitive(input [, PreferredType]) var isObject = require('./_is-object'); // instead of the ES6 spec version, we didn't implement @@toPrimitive case @@ -16333,14 +16763,14 @@ module.exports = function (it, S) { throw TypeError("Can't convert object to primitive value"); }; -},{"./_is-object":99}],140:[function(require,module,exports){ +},{"./_is-object":104}],145:[function(require,module,exports){ var id = 0; var px = Math.random(); module.exports = function (key) { return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); }; -},{}],141:[function(require,module,exports){ +},{}],146:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var LIBRARY = require('./_library'); @@ -16351,10 +16781,10 @@ module.exports = function (name) { if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) }); }; -},{"./_core":79,"./_global":90,"./_library":106,"./_object-dp":111,"./_wks-ext":142}],142:[function(require,module,exports){ +},{"./_core":84,"./_global":95,"./_library":111,"./_object-dp":116,"./_wks-ext":147}],147:[function(require,module,exports){ exports.f = require('./_wks'); -},{"./_wks":143}],143:[function(require,module,exports){ +},{"./_wks":148}],148:[function(require,module,exports){ var store = require('./_shared')('wks'); var uid = require('./_uid'); var Symbol = require('./_global').Symbol; @@ -16367,7 +16797,7 @@ var $exports = module.exports = function (name) { $exports.store = store; -},{"./_global":90,"./_shared":130,"./_uid":140}],144:[function(require,module,exports){ +},{"./_global":95,"./_shared":135,"./_uid":145}],149:[function(require,module,exports){ var classof = require('./_classof'); var ITERATOR = require('./_wks')('iterator'); var Iterators = require('./_iterators'); @@ -16377,7 +16807,7 @@ module.exports = require('./_core').getIteratorMethod = function (it) { || Iterators[classof(it)]; }; -},{"./_classof":77,"./_core":79,"./_iterators":105,"./_wks":143}],145:[function(require,module,exports){ +},{"./_classof":82,"./_core":84,"./_iterators":110,"./_wks":148}],150:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); var $export = require('./_export'); @@ -16416,7 +16846,7 @@ $export($export.S + $export.F * !require('./_iter-detect')(function (iter) { Arr } }); -},{"./_create-property":80,"./_ctx":81,"./_export":87,"./_is-array-iter":97,"./_iter-call":100,"./_iter-detect":103,"./_to-length":137,"./_to-object":138,"./core.get-iterator-method":144}],146:[function(require,module,exports){ +},{"./_create-property":85,"./_ctx":86,"./_export":92,"./_is-array-iter":102,"./_iter-call":105,"./_iter-detect":108,"./_to-length":142,"./_to-object":143,"./core.get-iterator-method":149}],151:[function(require,module,exports){ 'use strict'; var addToUnscopables = require('./_add-to-unscopables'); var step = require('./_iter-step'); @@ -16452,24 +16882,24 @@ addToUnscopables('keys'); addToUnscopables('values'); addToUnscopables('entries'); -},{"./_add-to-unscopables":73,"./_iter-define":102,"./_iter-step":104,"./_iterators":105,"./_to-iobject":136}],147:[function(require,module,exports){ +},{"./_add-to-unscopables":78,"./_iter-define":107,"./_iter-step":109,"./_iterators":110,"./_to-iobject":141}],152:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) $export($export.S, 'Object', { create: require('./_object-create') }); -},{"./_export":87,"./_object-create":110}],148:[function(require,module,exports){ +},{"./_export":92,"./_object-create":115}],153:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f }); -},{"./_descriptors":83,"./_export":87,"./_object-dp":111}],149:[function(require,module,exports){ +},{"./_descriptors":88,"./_export":92,"./_object-dp":116}],154:[function(require,module,exports){ // 19.1.3.19 Object.setPrototypeOf(O, proto) var $export = require('./_export'); $export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set }); -},{"./_export":87,"./_set-proto":126}],150:[function(require,module,exports){ -arguments[4][59][0].apply(exports,arguments) -},{"dup":59}],151:[function(require,module,exports){ +},{"./_export":92,"./_set-proto":131}],155:[function(require,module,exports){ +arguments[4][64][0].apply(exports,arguments) +},{"dup":64}],156:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); var global = require('./_global'); @@ -16751,7 +17181,7 @@ $export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(functi } }); -},{"./_a-function":72,"./_an-instance":74,"./_classof":77,"./_core":79,"./_ctx":81,"./_export":87,"./_for-of":89,"./_global":90,"./_is-object":99,"./_iter-detect":103,"./_library":106,"./_microtask":108,"./_new-promise-capability":109,"./_perform":121,"./_promise-resolve":122,"./_redefine-all":124,"./_set-species":127,"./_set-to-string-tag":128,"./_species-constructor":131,"./_task":133,"./_wks":143}],152:[function(require,module,exports){ +},{"./_a-function":77,"./_an-instance":79,"./_classof":82,"./_core":84,"./_ctx":86,"./_export":92,"./_for-of":94,"./_global":95,"./_is-object":104,"./_iter-detect":108,"./_library":111,"./_microtask":113,"./_new-promise-capability":114,"./_perform":126,"./_promise-resolve":127,"./_redefine-all":129,"./_set-species":132,"./_set-to-string-tag":133,"./_species-constructor":136,"./_task":138,"./_wks":148}],157:[function(require,module,exports){ 'use strict'; var $at = require('./_string-at')(true); @@ -16770,7 +17200,7 @@ require('./_iter-define')(String, 'String', function (iterated) { return { value: point, done: false }; }); -},{"./_iter-define":102,"./_string-at":132}],153:[function(require,module,exports){ +},{"./_iter-define":107,"./_string-at":137}],158:[function(require,module,exports){ 'use strict'; // ECMAScript 6 symbols shim var global = require('./_global'); @@ -17006,7 +17436,7 @@ setToStringTag(Math, 'Math', true); // 24.3.3 JSON[@@toStringTag] setToStringTag(global.JSON, 'JSON', true); -},{"./_an-object":75,"./_descriptors":83,"./_enum-keys":86,"./_export":87,"./_fails":88,"./_global":90,"./_has":91,"./_hide":92,"./_is-array":98,"./_library":106,"./_meta":107,"./_object-create":110,"./_object-dp":111,"./_object-gopd":113,"./_object-gopn":115,"./_object-gopn-ext":114,"./_object-gops":116,"./_object-keys":119,"./_object-pie":120,"./_property-desc":123,"./_redefine":125,"./_set-to-string-tag":128,"./_shared":130,"./_to-iobject":136,"./_to-primitive":139,"./_uid":140,"./_wks":143,"./_wks-define":141,"./_wks-ext":142}],154:[function(require,module,exports){ +},{"./_an-object":80,"./_descriptors":88,"./_enum-keys":91,"./_export":92,"./_fails":93,"./_global":95,"./_has":96,"./_hide":97,"./_is-array":103,"./_library":111,"./_meta":112,"./_object-create":115,"./_object-dp":116,"./_object-gopd":118,"./_object-gopn":120,"./_object-gopn-ext":119,"./_object-gops":121,"./_object-keys":124,"./_object-pie":125,"./_property-desc":128,"./_redefine":130,"./_set-to-string-tag":133,"./_shared":135,"./_to-iobject":141,"./_to-primitive":144,"./_uid":145,"./_wks":148,"./_wks-define":146,"./_wks-ext":147}],159:[function(require,module,exports){ // https://github.com/tc39/proposal-promise-finally 'use strict'; var $export = require('./_export'); @@ -17028,7 +17458,7 @@ $export($export.P + $export.R, 'Promise', { 'finally': function (onFinally) { ); } }); -},{"./_core":79,"./_export":87,"./_global":90,"./_promise-resolve":122,"./_species-constructor":131}],155:[function(require,module,exports){ +},{"./_core":84,"./_export":92,"./_global":95,"./_promise-resolve":127,"./_species-constructor":136}],160:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-promise-try var $export = require('./_export'); @@ -17042,13 +17472,13 @@ $export($export.S, 'Promise', { 'try': function (callbackfn) { return promiseCapability.promise; } }); -},{"./_export":87,"./_new-promise-capability":109,"./_perform":121}],156:[function(require,module,exports){ +},{"./_export":92,"./_new-promise-capability":114,"./_perform":126}],161:[function(require,module,exports){ require('./_wks-define')('asyncIterator'); -},{"./_wks-define":141}],157:[function(require,module,exports){ +},{"./_wks-define":146}],162:[function(require,module,exports){ require('./_wks-define')('observable'); -},{"./_wks-define":141}],158:[function(require,module,exports){ +},{"./_wks-define":146}],163:[function(require,module,exports){ require('./es6.array.iterator'); var global = require('./_global'); var hide = require('./_hide'); @@ -17069,16 +17499,16 @@ for (var i = 0; i < DOMIterables.length; i++) { Iterators[NAME] = Iterators.Array; } -},{"./_global":90,"./_hide":92,"./_iterators":105,"./_wks":143,"./es6.array.iterator":146}],159:[function(require,module,exports){ -arguments[4][72][0].apply(exports,arguments) -},{"dup":72}],160:[function(require,module,exports){ +},{"./_global":95,"./_hide":97,"./_iterators":110,"./_wks":148,"./es6.array.iterator":151}],164:[function(require,module,exports){ +arguments[4][77][0].apply(exports,arguments) +},{"dup":77}],165:[function(require,module,exports){ var cof = require('./_cof'); module.exports = function (it, msg) { if (typeof it != 'number' && cof(it) != 'Number') throw TypeError(msg); return +it; }; -},{"./_cof":174}],161:[function(require,module,exports){ +},{"./_cof":179}],166:[function(require,module,exports){ // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = require('./_wks')('unscopables'); var ArrayProto = Array.prototype; @@ -17087,11 +17517,11 @@ module.exports = function (key) { ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":198,"./_wks":281}],162:[function(require,module,exports){ -arguments[4][74][0].apply(exports,arguments) -},{"dup":74}],163:[function(require,module,exports){ -arguments[4][75][0].apply(exports,arguments) -},{"./_is-object":207,"dup":75}],164:[function(require,module,exports){ +},{"./_hide":203,"./_wks":286}],167:[function(require,module,exports){ +arguments[4][79][0].apply(exports,arguments) +},{"dup":79}],168:[function(require,module,exports){ +arguments[4][80][0].apply(exports,arguments) +},{"./_is-object":212,"dup":80}],169:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; var toObject = require('./_to-object'); @@ -17119,7 +17549,7 @@ module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* } return O; }; -},{"./_to-absolute-index":267,"./_to-length":271,"./_to-object":272}],165:[function(require,module,exports){ +},{"./_to-absolute-index":272,"./_to-length":276,"./_to-object":277}],170:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; var toObject = require('./_to-object'); @@ -17136,7 +17566,7 @@ module.exports = function fill(value /* , start = 0, end = @length */) { return O; }; -},{"./_to-absolute-index":267,"./_to-length":271,"./_to-object":272}],166:[function(require,module,exports){ +},{"./_to-absolute-index":272,"./_to-length":276,"./_to-object":277}],171:[function(require,module,exports){ var forOf = require('./_for-of'); module.exports = function (iter, ITERATOR) { @@ -17145,9 +17575,9 @@ module.exports = function (iter, ITERATOR) { return result; }; -},{"./_for-of":195}],167:[function(require,module,exports){ -arguments[4][76][0].apply(exports,arguments) -},{"./_to-absolute-index":267,"./_to-iobject":270,"./_to-length":271,"dup":76}],168:[function(require,module,exports){ +},{"./_for-of":200}],172:[function(require,module,exports){ +arguments[4][81][0].apply(exports,arguments) +},{"./_to-absolute-index":272,"./_to-iobject":275,"./_to-length":276,"dup":81}],173:[function(require,module,exports){ // 0 -> Array#forEach // 1 -> Array#map // 2 -> Array#filter @@ -17193,7 +17623,7 @@ module.exports = function (TYPE, $create) { }; }; -},{"./_array-species-create":171,"./_ctx":181,"./_iobject":203,"./_to-length":271,"./_to-object":272}],169:[function(require,module,exports){ +},{"./_array-species-create":176,"./_ctx":186,"./_iobject":208,"./_to-length":276,"./_to-object":277}],174:[function(require,module,exports){ var aFunction = require('./_a-function'); var toObject = require('./_to-object'); var IObject = require('./_iobject'); @@ -17223,7 +17653,7 @@ module.exports = function (that, callbackfn, aLen, memo, isRight) { return memo; }; -},{"./_a-function":159,"./_iobject":203,"./_to-length":271,"./_to-object":272}],170:[function(require,module,exports){ +},{"./_a-function":164,"./_iobject":208,"./_to-length":276,"./_to-object":277}],175:[function(require,module,exports){ var isObject = require('./_is-object'); var isArray = require('./_is-array'); var SPECIES = require('./_wks')('species'); @@ -17241,7 +17671,7 @@ module.exports = function (original) { } return C === undefined ? Array : C; }; -},{"./_is-array":205,"./_is-object":207,"./_wks":281}],171:[function(require,module,exports){ +},{"./_is-array":210,"./_is-object":212,"./_wks":286}],176:[function(require,module,exports){ // 9.4.2.3 ArraySpeciesCreate(originalArray, length) var speciesConstructor = require('./_array-species-constructor'); @@ -17249,7 +17679,7 @@ module.exports = function (original, length) { return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":170}],172:[function(require,module,exports){ +},{"./_array-species-constructor":175}],177:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function'); var isObject = require('./_is-object'); @@ -17276,11 +17706,11 @@ module.exports = Function.bind || function bind(that /* , ...args */) { return bound; }; -},{"./_a-function":159,"./_invoke":202,"./_is-object":207}],173:[function(require,module,exports){ -arguments[4][77][0].apply(exports,arguments) -},{"./_cof":174,"./_wks":281,"dup":77}],174:[function(require,module,exports){ -arguments[4][78][0].apply(exports,arguments) -},{"dup":78}],175:[function(require,module,exports){ +},{"./_a-function":164,"./_invoke":207,"./_is-object":212}],178:[function(require,module,exports){ +arguments[4][82][0].apply(exports,arguments) +},{"./_cof":179,"./_wks":286,"dup":82}],179:[function(require,module,exports){ +arguments[4][83][0].apply(exports,arguments) +},{"dup":83}],180:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f; var create = require('./_object-create'); @@ -17426,7 +17856,7 @@ module.exports = { } }; -},{"./_an-instance":162,"./_ctx":181,"./_descriptors":185,"./_for-of":195,"./_iter-define":211,"./_iter-step":213,"./_meta":221,"./_object-create":226,"./_object-dp":227,"./_redefine-all":246,"./_set-species":253,"./_validate-collection":278}],176:[function(require,module,exports){ +},{"./_an-instance":167,"./_ctx":186,"./_descriptors":190,"./_for-of":200,"./_iter-define":216,"./_iter-step":218,"./_meta":226,"./_object-create":231,"./_object-dp":232,"./_redefine-all":251,"./_set-species":258,"./_validate-collection":283}],181:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var classof = require('./_classof'); var from = require('./_array-from-iterable'); @@ -17437,7 +17867,7 @@ module.exports = function (NAME) { }; }; -},{"./_array-from-iterable":166,"./_classof":173}],177:[function(require,module,exports){ +},{"./_array-from-iterable":171,"./_classof":178}],182:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all'); var getWeak = require('./_meta').getWeak; @@ -17524,7 +17954,7 @@ module.exports = { ufstore: uncaughtFrozenStore }; -},{"./_an-instance":162,"./_an-object":163,"./_array-methods":168,"./_for-of":195,"./_has":197,"./_is-object":207,"./_meta":221,"./_redefine-all":246,"./_validate-collection":278}],178:[function(require,module,exports){ +},{"./_an-instance":167,"./_an-object":168,"./_array-methods":173,"./_for-of":200,"./_has":202,"./_is-object":212,"./_meta":226,"./_redefine-all":251,"./_validate-collection":283}],183:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var $export = require('./_export'); @@ -17611,13 +18041,13 @@ module.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) { return C; }; -},{"./_an-instance":162,"./_export":189,"./_fails":191,"./_for-of":195,"./_global":196,"./_inherit-if-required":201,"./_is-object":207,"./_iter-detect":212,"./_meta":221,"./_redefine":247,"./_redefine-all":246,"./_set-to-string-tag":254}],179:[function(require,module,exports){ -arguments[4][79][0].apply(exports,arguments) -},{"dup":79}],180:[function(require,module,exports){ -arguments[4][80][0].apply(exports,arguments) -},{"./_object-dp":227,"./_property-desc":245,"dup":80}],181:[function(require,module,exports){ -arguments[4][81][0].apply(exports,arguments) -},{"./_a-function":159,"dup":81}],182:[function(require,module,exports){ +},{"./_an-instance":167,"./_export":194,"./_fails":196,"./_for-of":200,"./_global":201,"./_inherit-if-required":206,"./_is-object":212,"./_iter-detect":217,"./_meta":226,"./_redefine":252,"./_redefine-all":251,"./_set-to-string-tag":259}],184:[function(require,module,exports){ +arguments[4][84][0].apply(exports,arguments) +},{"dup":84}],185:[function(require,module,exports){ +arguments[4][85][0].apply(exports,arguments) +},{"./_object-dp":232,"./_property-desc":250,"dup":85}],186:[function(require,module,exports){ +arguments[4][86][0].apply(exports,arguments) +},{"./_a-function":164,"dup":86}],187:[function(require,module,exports){ 'use strict'; // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() var fails = require('./_fails'); @@ -17645,7 +18075,7 @@ module.exports = (fails(function () { ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z'; } : $toISOString; -},{"./_fails":191}],183:[function(require,module,exports){ +},{"./_fails":196}],188:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); var toPrimitive = require('./_to-primitive'); @@ -17656,17 +18086,17 @@ module.exports = function (hint) { return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":163,"./_to-primitive":273}],184:[function(require,module,exports){ -arguments[4][82][0].apply(exports,arguments) -},{"dup":82}],185:[function(require,module,exports){ -arguments[4][83][0].apply(exports,arguments) -},{"./_fails":191,"dup":83}],186:[function(require,module,exports){ -arguments[4][84][0].apply(exports,arguments) -},{"./_global":196,"./_is-object":207,"dup":84}],187:[function(require,module,exports){ -arguments[4][85][0].apply(exports,arguments) -},{"dup":85}],188:[function(require,module,exports){ -arguments[4][86][0].apply(exports,arguments) -},{"./_object-gops":233,"./_object-keys":236,"./_object-pie":237,"dup":86}],189:[function(require,module,exports){ +},{"./_an-object":168,"./_to-primitive":278}],189:[function(require,module,exports){ +arguments[4][87][0].apply(exports,arguments) +},{"dup":87}],190:[function(require,module,exports){ +arguments[4][88][0].apply(exports,arguments) +},{"./_fails":196,"dup":88}],191:[function(require,module,exports){ +arguments[4][89][0].apply(exports,arguments) +},{"./_global":201,"./_is-object":212,"dup":89}],192:[function(require,module,exports){ +arguments[4][90][0].apply(exports,arguments) +},{"dup":90}],193:[function(require,module,exports){ +arguments[4][91][0].apply(exports,arguments) +},{"./_object-gops":238,"./_object-keys":241,"./_object-pie":242,"dup":91}],194:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var hide = require('./_hide'); @@ -17711,7 +18141,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":179,"./_ctx":181,"./_global":196,"./_hide":198,"./_redefine":247}],190:[function(require,module,exports){ +},{"./_core":184,"./_ctx":186,"./_global":201,"./_hide":203,"./_redefine":252}],195:[function(require,module,exports){ var MATCH = require('./_wks')('match'); module.exports = function (KEY) { var re = /./; @@ -17725,9 +18155,9 @@ module.exports = function (KEY) { } return true; }; -},{"./_wks":281}],191:[function(require,module,exports){ -arguments[4][88][0].apply(exports,arguments) -},{"dup":88}],192:[function(require,module,exports){ +},{"./_wks":286}],196:[function(require,module,exports){ +arguments[4][93][0].apply(exports,arguments) +},{"dup":93}],197:[function(require,module,exports){ 'use strict'; var hide = require('./_hide'); var redefine = require('./_redefine'); @@ -17757,7 +18187,7 @@ module.exports = function (KEY, length, exec) { } }; -},{"./_defined":184,"./_fails":191,"./_hide":198,"./_redefine":247,"./_wks":281}],193:[function(require,module,exports){ +},{"./_defined":189,"./_fails":196,"./_hide":203,"./_redefine":252,"./_wks":286}],198:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags var anObject = require('./_an-object'); @@ -17772,7 +18202,7 @@ module.exports = function () { return result; }; -},{"./_an-object":163}],194:[function(require,module,exports){ +},{"./_an-object":168}],199:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray var isArray = require('./_is-array'); @@ -17813,19 +18243,19 @@ function flattenIntoArray(target, original, source, sourceLen, start, depth, map module.exports = flattenIntoArray; -},{"./_ctx":181,"./_is-array":205,"./_is-object":207,"./_to-length":271,"./_wks":281}],195:[function(require,module,exports){ -arguments[4][89][0].apply(exports,arguments) -},{"./_an-object":163,"./_ctx":181,"./_is-array-iter":204,"./_iter-call":209,"./_to-length":271,"./core.get-iterator-method":282,"dup":89}],196:[function(require,module,exports){ -arguments[4][90][0].apply(exports,arguments) -},{"dup":90}],197:[function(require,module,exports){ -arguments[4][91][0].apply(exports,arguments) -},{"dup":91}],198:[function(require,module,exports){ -arguments[4][92][0].apply(exports,arguments) -},{"./_descriptors":185,"./_object-dp":227,"./_property-desc":245,"dup":92}],199:[function(require,module,exports){ -arguments[4][93][0].apply(exports,arguments) -},{"./_global":196,"dup":93}],200:[function(require,module,exports){ +},{"./_ctx":186,"./_is-array":210,"./_is-object":212,"./_to-length":276,"./_wks":286}],200:[function(require,module,exports){ arguments[4][94][0].apply(exports,arguments) -},{"./_descriptors":185,"./_dom-create":186,"./_fails":191,"dup":94}],201:[function(require,module,exports){ +},{"./_an-object":168,"./_ctx":186,"./_is-array-iter":209,"./_iter-call":214,"./_to-length":276,"./core.get-iterator-method":287,"dup":94}],201:[function(require,module,exports){ +arguments[4][95][0].apply(exports,arguments) +},{"dup":95}],202:[function(require,module,exports){ +arguments[4][96][0].apply(exports,arguments) +},{"dup":96}],203:[function(require,module,exports){ +arguments[4][97][0].apply(exports,arguments) +},{"./_descriptors":190,"./_object-dp":232,"./_property-desc":250,"dup":97}],204:[function(require,module,exports){ +arguments[4][98][0].apply(exports,arguments) +},{"./_global":201,"dup":98}],205:[function(require,module,exports){ +arguments[4][99][0].apply(exports,arguments) +},{"./_descriptors":190,"./_dom-create":191,"./_fails":196,"dup":99}],206:[function(require,module,exports){ var isObject = require('./_is-object'); var setPrototypeOf = require('./_set-proto').set; module.exports = function (that, target, C) { @@ -17836,15 +18266,15 @@ module.exports = function (that, target, C) { } return that; }; -},{"./_is-object":207,"./_set-proto":252}],202:[function(require,module,exports){ -arguments[4][95][0].apply(exports,arguments) -},{"dup":95}],203:[function(require,module,exports){ -arguments[4][96][0].apply(exports,arguments) -},{"./_cof":174,"dup":96}],204:[function(require,module,exports){ -arguments[4][97][0].apply(exports,arguments) -},{"./_iterators":214,"./_wks":281,"dup":97}],205:[function(require,module,exports){ -arguments[4][98][0].apply(exports,arguments) -},{"./_cof":174,"dup":98}],206:[function(require,module,exports){ +},{"./_is-object":212,"./_set-proto":257}],207:[function(require,module,exports){ +arguments[4][100][0].apply(exports,arguments) +},{"dup":100}],208:[function(require,module,exports){ +arguments[4][101][0].apply(exports,arguments) +},{"./_cof":179,"dup":101}],209:[function(require,module,exports){ +arguments[4][102][0].apply(exports,arguments) +},{"./_iterators":219,"./_wks":286,"dup":102}],210:[function(require,module,exports){ +arguments[4][103][0].apply(exports,arguments) +},{"./_cof":179,"dup":103}],211:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var isObject = require('./_is-object'); var floor = Math.floor; @@ -17852,9 +18282,9 @@ module.exports = function isInteger(it) { return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":207}],207:[function(require,module,exports){ -arguments[4][99][0].apply(exports,arguments) -},{"dup":99}],208:[function(require,module,exports){ +},{"./_is-object":212}],212:[function(require,module,exports){ +arguments[4][104][0].apply(exports,arguments) +},{"dup":104}],213:[function(require,module,exports){ // 7.2.8 IsRegExp(argument) var isObject = require('./_is-object'); var cof = require('./_cof'); @@ -17864,22 +18294,22 @@ module.exports = function (it) { return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":174,"./_is-object":207,"./_wks":281}],209:[function(require,module,exports){ -arguments[4][100][0].apply(exports,arguments) -},{"./_an-object":163,"dup":100}],210:[function(require,module,exports){ -arguments[4][101][0].apply(exports,arguments) -},{"./_hide":198,"./_object-create":226,"./_property-desc":245,"./_set-to-string-tag":254,"./_wks":281,"dup":101}],211:[function(require,module,exports){ -arguments[4][102][0].apply(exports,arguments) -},{"./_export":189,"./_has":197,"./_hide":198,"./_iter-create":210,"./_iterators":214,"./_library":215,"./_object-gpo":234,"./_redefine":247,"./_set-to-string-tag":254,"./_wks":281,"dup":102}],212:[function(require,module,exports){ -arguments[4][103][0].apply(exports,arguments) -},{"./_wks":281,"dup":103}],213:[function(require,module,exports){ -arguments[4][104][0].apply(exports,arguments) -},{"dup":104}],214:[function(require,module,exports){ +},{"./_cof":179,"./_is-object":212,"./_wks":286}],214:[function(require,module,exports){ arguments[4][105][0].apply(exports,arguments) -},{"dup":105}],215:[function(require,module,exports){ +},{"./_an-object":168,"dup":105}],215:[function(require,module,exports){ +arguments[4][106][0].apply(exports,arguments) +},{"./_hide":203,"./_object-create":231,"./_property-desc":250,"./_set-to-string-tag":259,"./_wks":286,"dup":106}],216:[function(require,module,exports){ +arguments[4][107][0].apply(exports,arguments) +},{"./_export":194,"./_has":202,"./_hide":203,"./_iter-create":215,"./_iterators":219,"./_library":220,"./_object-gpo":239,"./_redefine":252,"./_set-to-string-tag":259,"./_wks":286,"dup":107}],217:[function(require,module,exports){ +arguments[4][108][0].apply(exports,arguments) +},{"./_wks":286,"dup":108}],218:[function(require,module,exports){ +arguments[4][109][0].apply(exports,arguments) +},{"dup":109}],219:[function(require,module,exports){ +arguments[4][110][0].apply(exports,arguments) +},{"dup":110}],220:[function(require,module,exports){ module.exports = false; -},{}],216:[function(require,module,exports){ +},{}],221:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $expm1 = Math.expm1; module.exports = (!$expm1 @@ -17891,7 +18321,7 @@ module.exports = (!$expm1 return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],217:[function(require,module,exports){ +},{}],222:[function(require,module,exports){ // 20.2.2.16 Math.fround(x) var sign = require('./_math-sign'); var pow = Math.pow; @@ -17916,13 +18346,13 @@ module.exports = Math.fround || function fround(x) { return $sign * result; }; -},{"./_math-sign":220}],218:[function(require,module,exports){ +},{"./_math-sign":225}],223:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) module.exports = Math.log1p || function log1p(x) { return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],219:[function(require,module,exports){ +},{}],224:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ module.exports = Math.scale || function scale(x, inLow, inHigh, outLow, outHigh) { if ( @@ -17942,16 +18372,16 @@ module.exports = Math.scale || function scale(x, inLow, inHigh, outLow, outHigh) return (x - inLow) * (outHigh - outLow) / (inHigh - inLow) + outLow; }; -},{}],220:[function(require,module,exports){ +},{}],225:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) module.exports = Math.sign || function sign(x) { // eslint-disable-next-line no-self-compare return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],221:[function(require,module,exports){ -arguments[4][107][0].apply(exports,arguments) -},{"./_fails":191,"./_has":197,"./_is-object":207,"./_object-dp":227,"./_uid":277,"dup":107}],222:[function(require,module,exports){ +},{}],226:[function(require,module,exports){ +arguments[4][112][0].apply(exports,arguments) +},{"./_fails":196,"./_has":202,"./_is-object":212,"./_object-dp":232,"./_uid":282,"dup":112}],227:[function(require,module,exports){ var Map = require('./es6.map'); var $export = require('./_export'); var shared = require('./_shared')('metadata'); @@ -18004,11 +18434,11 @@ module.exports = { exp: exp }; -},{"./_export":189,"./_shared":256,"./es6.map":313,"./es6.weak-map":419}],223:[function(require,module,exports){ -arguments[4][108][0].apply(exports,arguments) -},{"./_cof":174,"./_global":196,"./_task":266,"dup":108}],224:[function(require,module,exports){ -arguments[4][109][0].apply(exports,arguments) -},{"./_a-function":159,"dup":109}],225:[function(require,module,exports){ +},{"./_export":194,"./_shared":261,"./es6.map":318,"./es6.weak-map":424}],228:[function(require,module,exports){ +arguments[4][113][0].apply(exports,arguments) +},{"./_cof":179,"./_global":201,"./_task":271,"dup":113}],229:[function(require,module,exports){ +arguments[4][114][0].apply(exports,arguments) +},{"./_a-function":164,"dup":114}],230:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var getKeys = require('./_object-keys'); @@ -18044,13 +18474,13 @@ module.exports = !$assign || require('./_fails')(function () { } return T; } : $assign; -},{"./_fails":191,"./_iobject":203,"./_object-gops":233,"./_object-keys":236,"./_object-pie":237,"./_to-object":272}],226:[function(require,module,exports){ -arguments[4][110][0].apply(exports,arguments) -},{"./_an-object":163,"./_dom-create":186,"./_enum-bug-keys":187,"./_html":199,"./_object-dps":228,"./_shared-key":255,"dup":110}],227:[function(require,module,exports){ -arguments[4][111][0].apply(exports,arguments) -},{"./_an-object":163,"./_descriptors":185,"./_ie8-dom-define":200,"./_to-primitive":273,"dup":111}],228:[function(require,module,exports){ -arguments[4][112][0].apply(exports,arguments) -},{"./_an-object":163,"./_descriptors":185,"./_object-dp":227,"./_object-keys":236,"dup":112}],229:[function(require,module,exports){ +},{"./_fails":196,"./_iobject":208,"./_object-gops":238,"./_object-keys":241,"./_object-pie":242,"./_to-object":277}],231:[function(require,module,exports){ +arguments[4][115][0].apply(exports,arguments) +},{"./_an-object":168,"./_dom-create":191,"./_enum-bug-keys":192,"./_html":204,"./_object-dps":233,"./_shared-key":260,"dup":115}],232:[function(require,module,exports){ +arguments[4][116][0].apply(exports,arguments) +},{"./_an-object":168,"./_descriptors":190,"./_ie8-dom-define":205,"./_to-primitive":278,"dup":116}],233:[function(require,module,exports){ +arguments[4][117][0].apply(exports,arguments) +},{"./_an-object":168,"./_descriptors":190,"./_object-dp":232,"./_object-keys":241,"dup":117}],234:[function(require,module,exports){ 'use strict'; // Forced replacement prototype accessors methods module.exports = require('./_library') || !require('./_fails')(function () { @@ -18061,23 +18491,23 @@ module.exports = require('./_library') || !require('./_fails')(function () { delete require('./_global')[K]; }); -},{"./_fails":191,"./_global":196,"./_library":215}],230:[function(require,module,exports){ -arguments[4][113][0].apply(exports,arguments) -},{"./_descriptors":185,"./_has":197,"./_ie8-dom-define":200,"./_object-pie":237,"./_property-desc":245,"./_to-iobject":270,"./_to-primitive":273,"dup":113}],231:[function(require,module,exports){ -arguments[4][114][0].apply(exports,arguments) -},{"./_object-gopn":232,"./_to-iobject":270,"dup":114}],232:[function(require,module,exports){ -arguments[4][115][0].apply(exports,arguments) -},{"./_enum-bug-keys":187,"./_object-keys-internal":235,"dup":115}],233:[function(require,module,exports){ -arguments[4][116][0].apply(exports,arguments) -},{"dup":116}],234:[function(require,module,exports){ -arguments[4][117][0].apply(exports,arguments) -},{"./_has":197,"./_shared-key":255,"./_to-object":272,"dup":117}],235:[function(require,module,exports){ +},{"./_fails":196,"./_global":201,"./_library":220}],235:[function(require,module,exports){ arguments[4][118][0].apply(exports,arguments) -},{"./_array-includes":167,"./_has":197,"./_shared-key":255,"./_to-iobject":270,"dup":118}],236:[function(require,module,exports){ +},{"./_descriptors":190,"./_has":202,"./_ie8-dom-define":205,"./_object-pie":242,"./_property-desc":250,"./_to-iobject":275,"./_to-primitive":278,"dup":118}],236:[function(require,module,exports){ arguments[4][119][0].apply(exports,arguments) -},{"./_enum-bug-keys":187,"./_object-keys-internal":235,"dup":119}],237:[function(require,module,exports){ +},{"./_object-gopn":237,"./_to-iobject":275,"dup":119}],237:[function(require,module,exports){ arguments[4][120][0].apply(exports,arguments) -},{"dup":120}],238:[function(require,module,exports){ +},{"./_enum-bug-keys":192,"./_object-keys-internal":240,"dup":120}],238:[function(require,module,exports){ +arguments[4][121][0].apply(exports,arguments) +},{"dup":121}],239:[function(require,module,exports){ +arguments[4][122][0].apply(exports,arguments) +},{"./_has":202,"./_shared-key":260,"./_to-object":277,"dup":122}],240:[function(require,module,exports){ +arguments[4][123][0].apply(exports,arguments) +},{"./_array-includes":172,"./_has":202,"./_shared-key":260,"./_to-iobject":275,"dup":123}],241:[function(require,module,exports){ +arguments[4][124][0].apply(exports,arguments) +},{"./_enum-bug-keys":192,"./_object-keys-internal":240,"dup":124}],242:[function(require,module,exports){ +arguments[4][125][0].apply(exports,arguments) +},{"dup":125}],243:[function(require,module,exports){ // most Object methods by ES6 should accept primitives var $export = require('./_export'); var core = require('./_core'); @@ -18089,7 +18519,7 @@ module.exports = function (KEY, exec) { $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp); }; -},{"./_core":179,"./_export":189,"./_fails":191}],239:[function(require,module,exports){ +},{"./_core":184,"./_export":194,"./_fails":196}],244:[function(require,module,exports){ var getKeys = require('./_object-keys'); var toIObject = require('./_to-iobject'); var isEnum = require('./_object-pie').f; @@ -18107,7 +18537,7 @@ module.exports = function (isEntries) { }; }; -},{"./_object-keys":236,"./_object-pie":237,"./_to-iobject":270}],240:[function(require,module,exports){ +},{"./_object-keys":241,"./_object-pie":242,"./_to-iobject":275}],245:[function(require,module,exports){ // all object keys, includes non-enumerable and symbols var gOPN = require('./_object-gopn'); var gOPS = require('./_object-gops'); @@ -18119,7 +18549,7 @@ module.exports = Reflect && Reflect.ownKeys || function ownKeys(it) { return getSymbols ? keys.concat(getSymbols(it)) : keys; }; -},{"./_an-object":163,"./_global":196,"./_object-gopn":232,"./_object-gops":233}],241:[function(require,module,exports){ +},{"./_an-object":168,"./_global":201,"./_object-gopn":237,"./_object-gops":238}],246:[function(require,module,exports){ var $parseFloat = require('./_global').parseFloat; var $trim = require('./_string-trim').trim; @@ -18129,7 +18559,7 @@ module.exports = 1 / $parseFloat(require('./_string-ws') + '-0') !== -Infinity ? return result === 0 && string.charAt(0) == '-' ? -0 : result; } : $parseFloat; -},{"./_global":196,"./_string-trim":264,"./_string-ws":265}],242:[function(require,module,exports){ +},{"./_global":201,"./_string-trim":269,"./_string-ws":270}],247:[function(require,module,exports){ var $parseInt = require('./_global').parseInt; var $trim = require('./_string-trim').trim; var ws = require('./_string-ws'); @@ -18140,20 +18570,20 @@ module.exports = $parseInt(ws + '08') !== 8 || $parseInt(ws + '0x16') !== 22 ? f return $parseInt(string, (radix >>> 0) || (hex.test(string) ? 16 : 10)); } : $parseInt; -},{"./_global":196,"./_string-trim":264,"./_string-ws":265}],243:[function(require,module,exports){ -arguments[4][121][0].apply(exports,arguments) -},{"dup":121}],244:[function(require,module,exports){ -arguments[4][122][0].apply(exports,arguments) -},{"./_an-object":163,"./_is-object":207,"./_new-promise-capability":224,"dup":122}],245:[function(require,module,exports){ -arguments[4][123][0].apply(exports,arguments) -},{"dup":123}],246:[function(require,module,exports){ +},{"./_global":201,"./_string-trim":269,"./_string-ws":270}],248:[function(require,module,exports){ +arguments[4][126][0].apply(exports,arguments) +},{"dup":126}],249:[function(require,module,exports){ +arguments[4][127][0].apply(exports,arguments) +},{"./_an-object":168,"./_is-object":212,"./_new-promise-capability":229,"dup":127}],250:[function(require,module,exports){ +arguments[4][128][0].apply(exports,arguments) +},{"dup":128}],251:[function(require,module,exports){ var redefine = require('./_redefine'); module.exports = function (target, src, safe) { for (var key in src) redefine(target, key, src[key], safe); return target; }; -},{"./_redefine":247}],247:[function(require,module,exports){ +},{"./_redefine":252}],252:[function(require,module,exports){ var global = require('./_global'); var hide = require('./_hide'); var has = require('./_has'); @@ -18186,7 +18616,7 @@ require('./_core').inspectSource = function (it) { return typeof this == 'function' && this[SRC] || $toString.call(this); }); -},{"./_core":179,"./_global":196,"./_has":197,"./_hide":198,"./_uid":277}],248:[function(require,module,exports){ +},{"./_core":184,"./_global":201,"./_has":202,"./_hide":203,"./_uid":282}],253:[function(require,module,exports){ module.exports = function (regExp, replace) { var replacer = replace === Object(replace) ? function (part) { return replace[part]; @@ -18196,14 +18626,14 @@ module.exports = function (regExp, replace) { }; }; -},{}],249:[function(require,module,exports){ +},{}],254:[function(require,module,exports){ // 7.2.9 SameValue(x, y) module.exports = Object.is || function is(x, y) { // eslint-disable-next-line no-self-compare return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; }; -},{}],250:[function(require,module,exports){ +},{}],255:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/ var $export = require('./_export'); @@ -18233,7 +18663,7 @@ module.exports = function (COLLECTION) { } }); }; -},{"./_a-function":159,"./_ctx":181,"./_export":189,"./_for-of":195}],251:[function(require,module,exports){ +},{"./_a-function":164,"./_ctx":186,"./_export":194,"./_for-of":200}],256:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-setmap-offrom/ var $export = require('./_export'); @@ -18247,9 +18677,9 @@ module.exports = function (COLLECTION) { } }); }; -},{"./_export":189}],252:[function(require,module,exports){ -arguments[4][126][0].apply(exports,arguments) -},{"./_an-object":163,"./_ctx":181,"./_is-object":207,"./_object-gopd":230,"dup":126}],253:[function(require,module,exports){ +},{"./_export":194}],257:[function(require,module,exports){ +arguments[4][131][0].apply(exports,arguments) +},{"./_an-object":168,"./_ctx":186,"./_is-object":212,"./_object-gopd":235,"dup":131}],258:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var dP = require('./_object-dp'); @@ -18264,15 +18694,15 @@ module.exports = function (KEY) { }); }; -},{"./_descriptors":185,"./_global":196,"./_object-dp":227,"./_wks":281}],254:[function(require,module,exports){ -arguments[4][128][0].apply(exports,arguments) -},{"./_has":197,"./_object-dp":227,"./_wks":281,"dup":128}],255:[function(require,module,exports){ -arguments[4][129][0].apply(exports,arguments) -},{"./_shared":256,"./_uid":277,"dup":129}],256:[function(require,module,exports){ -arguments[4][130][0].apply(exports,arguments) -},{"./_global":196,"dup":130}],257:[function(require,module,exports){ -arguments[4][131][0].apply(exports,arguments) -},{"./_a-function":159,"./_an-object":163,"./_wks":281,"dup":131}],258:[function(require,module,exports){ +},{"./_descriptors":190,"./_global":201,"./_object-dp":232,"./_wks":286}],259:[function(require,module,exports){ +arguments[4][133][0].apply(exports,arguments) +},{"./_has":202,"./_object-dp":232,"./_wks":286,"dup":133}],260:[function(require,module,exports){ +arguments[4][134][0].apply(exports,arguments) +},{"./_shared":261,"./_uid":282,"dup":134}],261:[function(require,module,exports){ +arguments[4][135][0].apply(exports,arguments) +},{"./_global":201,"dup":135}],262:[function(require,module,exports){ +arguments[4][136][0].apply(exports,arguments) +},{"./_a-function":164,"./_an-object":168,"./_wks":286,"dup":136}],263:[function(require,module,exports){ 'use strict'; var fails = require('./_fails'); @@ -18283,9 +18713,9 @@ module.exports = function (method, arg) { }); }; -},{"./_fails":191}],259:[function(require,module,exports){ -arguments[4][132][0].apply(exports,arguments) -},{"./_defined":184,"./_to-integer":269,"dup":132}],260:[function(require,module,exports){ +},{"./_fails":196}],264:[function(require,module,exports){ +arguments[4][137][0].apply(exports,arguments) +},{"./_defined":189,"./_to-integer":274,"dup":137}],265:[function(require,module,exports){ // helper for String#{startsWith, endsWith, includes} var isRegExp = require('./_is-regexp'); var defined = require('./_defined'); @@ -18295,7 +18725,7 @@ module.exports = function (that, searchString, NAME) { return String(defined(that)); }; -},{"./_defined":184,"./_is-regexp":208}],261:[function(require,module,exports){ +},{"./_defined":189,"./_is-regexp":213}],266:[function(require,module,exports){ var $export = require('./_export'); var fails = require('./_fails'); var defined = require('./_defined'); @@ -18316,7 +18746,7 @@ module.exports = function (NAME, exec) { }), 'String', O); }; -},{"./_defined":184,"./_export":189,"./_fails":191}],262:[function(require,module,exports){ +},{"./_defined":189,"./_export":194,"./_fails":196}],267:[function(require,module,exports){ // https://github.com/tc39/proposal-string-pad-start-end var toLength = require('./_to-length'); var repeat = require('./_string-repeat'); @@ -18334,7 +18764,7 @@ module.exports = function (that, maxLength, fillString, left) { return left ? stringFiller + S : S + stringFiller; }; -},{"./_defined":184,"./_string-repeat":263,"./_to-length":271}],263:[function(require,module,exports){ +},{"./_defined":189,"./_string-repeat":268,"./_to-length":276}],268:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); var defined = require('./_defined'); @@ -18348,7 +18778,7 @@ module.exports = function repeat(count) { return res; }; -},{"./_defined":184,"./_to-integer":269}],264:[function(require,module,exports){ +},{"./_defined":189,"./_to-integer":274}],269:[function(require,module,exports){ var $export = require('./_export'); var defined = require('./_defined'); var fails = require('./_fails'); @@ -18380,15 +18810,15 @@ var trim = exporter.trim = function (string, TYPE) { module.exports = exporter; -},{"./_defined":184,"./_export":189,"./_fails":191,"./_string-ws":265}],265:[function(require,module,exports){ +},{"./_defined":189,"./_export":194,"./_fails":196,"./_string-ws":270}],270:[function(require,module,exports){ module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' + '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; -},{}],266:[function(require,module,exports){ -arguments[4][133][0].apply(exports,arguments) -},{"./_cof":174,"./_ctx":181,"./_dom-create":186,"./_global":196,"./_html":199,"./_invoke":202,"dup":133}],267:[function(require,module,exports){ -arguments[4][134][0].apply(exports,arguments) -},{"./_to-integer":269,"dup":134}],268:[function(require,module,exports){ +},{}],271:[function(require,module,exports){ +arguments[4][138][0].apply(exports,arguments) +},{"./_cof":179,"./_ctx":186,"./_dom-create":191,"./_global":201,"./_html":204,"./_invoke":207,"dup":138}],272:[function(require,module,exports){ +arguments[4][139][0].apply(exports,arguments) +},{"./_to-integer":274,"dup":139}],273:[function(require,module,exports){ // https://tc39.github.io/ecma262/#sec-toindex var toInteger = require('./_to-integer'); var toLength = require('./_to-length'); @@ -18400,17 +18830,17 @@ module.exports = function (it) { return length; }; -},{"./_to-integer":269,"./_to-length":271}],269:[function(require,module,exports){ -arguments[4][135][0].apply(exports,arguments) -},{"dup":135}],270:[function(require,module,exports){ -arguments[4][136][0].apply(exports,arguments) -},{"./_defined":184,"./_iobject":203,"dup":136}],271:[function(require,module,exports){ -arguments[4][137][0].apply(exports,arguments) -},{"./_to-integer":269,"dup":137}],272:[function(require,module,exports){ -arguments[4][138][0].apply(exports,arguments) -},{"./_defined":184,"dup":138}],273:[function(require,module,exports){ -arguments[4][139][0].apply(exports,arguments) -},{"./_is-object":207,"dup":139}],274:[function(require,module,exports){ +},{"./_to-integer":274,"./_to-length":276}],274:[function(require,module,exports){ +arguments[4][140][0].apply(exports,arguments) +},{"dup":140}],275:[function(require,module,exports){ +arguments[4][141][0].apply(exports,arguments) +},{"./_defined":189,"./_iobject":208,"dup":141}],276:[function(require,module,exports){ +arguments[4][142][0].apply(exports,arguments) +},{"./_to-integer":274,"dup":142}],277:[function(require,module,exports){ +arguments[4][143][0].apply(exports,arguments) +},{"./_defined":189,"dup":143}],278:[function(require,module,exports){ +arguments[4][144][0].apply(exports,arguments) +},{"./_is-object":212,"dup":144}],279:[function(require,module,exports){ 'use strict'; if (require('./_descriptors')) { var LIBRARY = require('./_library'); @@ -18892,7 +19322,7 @@ if (require('./_descriptors')) { }; } else module.exports = function () { /* empty */ }; -},{"./_an-instance":162,"./_array-copy-within":164,"./_array-fill":165,"./_array-includes":167,"./_array-methods":168,"./_classof":173,"./_ctx":181,"./_descriptors":185,"./_export":189,"./_fails":191,"./_global":196,"./_has":197,"./_hide":198,"./_is-array-iter":204,"./_is-object":207,"./_iter-detect":212,"./_iterators":214,"./_library":215,"./_object-create":226,"./_object-dp":227,"./_object-gopd":230,"./_object-gopn":232,"./_object-gpo":234,"./_property-desc":245,"./_redefine-all":246,"./_set-species":253,"./_species-constructor":257,"./_to-absolute-index":267,"./_to-index":268,"./_to-integer":269,"./_to-length":271,"./_to-object":272,"./_to-primitive":273,"./_typed":276,"./_typed-buffer":275,"./_uid":277,"./_wks":281,"./core.get-iterator-method":282,"./es6.array.iterator":294}],275:[function(require,module,exports){ +},{"./_an-instance":167,"./_array-copy-within":169,"./_array-fill":170,"./_array-includes":172,"./_array-methods":173,"./_classof":178,"./_ctx":186,"./_descriptors":190,"./_export":194,"./_fails":196,"./_global":201,"./_has":202,"./_hide":203,"./_is-array-iter":209,"./_is-object":212,"./_iter-detect":217,"./_iterators":219,"./_library":220,"./_object-create":231,"./_object-dp":232,"./_object-gopd":235,"./_object-gopn":237,"./_object-gpo":239,"./_property-desc":250,"./_redefine-all":251,"./_set-species":258,"./_species-constructor":262,"./_to-absolute-index":272,"./_to-index":273,"./_to-integer":274,"./_to-length":276,"./_to-object":277,"./_to-primitive":278,"./_typed":281,"./_typed-buffer":280,"./_uid":282,"./_wks":286,"./core.get-iterator-method":287,"./es6.array.iterator":299}],280:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var DESCRIPTORS = require('./_descriptors'); @@ -19170,7 +19600,7 @@ hide($DataView[PROTOTYPE], $typed.VIEW, true); exports[ARRAY_BUFFER] = $ArrayBuffer; exports[DATA_VIEW] = $DataView; -},{"./_an-instance":162,"./_array-fill":165,"./_descriptors":185,"./_fails":191,"./_global":196,"./_hide":198,"./_library":215,"./_object-dp":227,"./_object-gopn":232,"./_redefine-all":246,"./_set-to-string-tag":254,"./_to-index":268,"./_to-integer":269,"./_to-length":271,"./_typed":276}],276:[function(require,module,exports){ +},{"./_an-instance":167,"./_array-fill":170,"./_descriptors":190,"./_fails":196,"./_global":201,"./_hide":203,"./_library":220,"./_object-dp":232,"./_object-gopn":237,"./_redefine-all":251,"./_set-to-string-tag":259,"./_to-index":273,"./_to-integer":274,"./_to-length":276,"./_typed":281}],281:[function(require,module,exports){ var global = require('./_global'); var hide = require('./_hide'); var uid = require('./_uid'); @@ -19200,31 +19630,31 @@ module.exports = { VIEW: VIEW }; -},{"./_global":196,"./_hide":198,"./_uid":277}],277:[function(require,module,exports){ -arguments[4][140][0].apply(exports,arguments) -},{"dup":140}],278:[function(require,module,exports){ +},{"./_global":201,"./_hide":203,"./_uid":282}],282:[function(require,module,exports){ +arguments[4][145][0].apply(exports,arguments) +},{"dup":145}],283:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function (it, TYPE) { if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!'); return it; }; -},{"./_is-object":207}],279:[function(require,module,exports){ -arguments[4][141][0].apply(exports,arguments) -},{"./_core":179,"./_global":196,"./_library":215,"./_object-dp":227,"./_wks-ext":280,"dup":141}],280:[function(require,module,exports){ -arguments[4][142][0].apply(exports,arguments) -},{"./_wks":281,"dup":142}],281:[function(require,module,exports){ -arguments[4][143][0].apply(exports,arguments) -},{"./_global":196,"./_shared":256,"./_uid":277,"dup":143}],282:[function(require,module,exports){ -arguments[4][144][0].apply(exports,arguments) -},{"./_classof":173,"./_core":179,"./_iterators":214,"./_wks":281,"dup":144}],283:[function(require,module,exports){ +},{"./_is-object":212}],284:[function(require,module,exports){ +arguments[4][146][0].apply(exports,arguments) +},{"./_core":184,"./_global":201,"./_library":220,"./_object-dp":232,"./_wks-ext":285,"dup":146}],285:[function(require,module,exports){ +arguments[4][147][0].apply(exports,arguments) +},{"./_wks":286,"dup":147}],286:[function(require,module,exports){ +arguments[4][148][0].apply(exports,arguments) +},{"./_global":201,"./_shared":261,"./_uid":282,"dup":148}],287:[function(require,module,exports){ +arguments[4][149][0].apply(exports,arguments) +},{"./_classof":178,"./_core":184,"./_iterators":219,"./_wks":286,"dup":149}],288:[function(require,module,exports){ // https://github.com/benjamingr/RexExp.escape var $export = require('./_export'); var $re = require('./_replacer')(/[\\^$*+?.()|[\]{}]/g, '\\$&'); $export($export.S, 'RegExp', { escape: function escape(it) { return $re(it); } }); -},{"./_export":189,"./_replacer":248}],284:[function(require,module,exports){ +},{"./_export":194,"./_replacer":253}],289:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) var $export = require('./_export'); @@ -19232,7 +19662,7 @@ $export($export.P, 'Array', { copyWithin: require('./_array-copy-within') }); require('./_add-to-unscopables')('copyWithin'); -},{"./_add-to-unscopables":161,"./_array-copy-within":164,"./_export":189}],285:[function(require,module,exports){ +},{"./_add-to-unscopables":166,"./_array-copy-within":169,"./_export":194}],290:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $every = require('./_array-methods')(4); @@ -19244,7 +19674,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].every, true), 'A } }); -},{"./_array-methods":168,"./_export":189,"./_strict-method":258}],286:[function(require,module,exports){ +},{"./_array-methods":173,"./_export":194,"./_strict-method":263}],291:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) var $export = require('./_export'); @@ -19252,7 +19682,7 @@ $export($export.P, 'Array', { fill: require('./_array-fill') }); require('./_add-to-unscopables')('fill'); -},{"./_add-to-unscopables":161,"./_array-fill":165,"./_export":189}],287:[function(require,module,exports){ +},{"./_add-to-unscopables":166,"./_array-fill":170,"./_export":194}],292:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $filter = require('./_array-methods')(2); @@ -19264,7 +19694,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].filter, true), ' } }); -},{"./_array-methods":168,"./_export":189,"./_strict-method":258}],288:[function(require,module,exports){ +},{"./_array-methods":173,"./_export":194,"./_strict-method":263}],293:[function(require,module,exports){ 'use strict'; // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) var $export = require('./_export'); @@ -19280,7 +19710,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":161,"./_array-methods":168,"./_export":189}],289:[function(require,module,exports){ +},{"./_add-to-unscopables":166,"./_array-methods":173,"./_export":194}],294:[function(require,module,exports){ 'use strict'; // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) var $export = require('./_export'); @@ -19296,7 +19726,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":161,"./_array-methods":168,"./_export":189}],290:[function(require,module,exports){ +},{"./_add-to-unscopables":166,"./_array-methods":173,"./_export":194}],295:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $forEach = require('./_array-methods')(0); @@ -19309,9 +19739,9 @@ $export($export.P + $export.F * !STRICT, 'Array', { } }); -},{"./_array-methods":168,"./_export":189,"./_strict-method":258}],291:[function(require,module,exports){ -arguments[4][145][0].apply(exports,arguments) -},{"./_create-property":180,"./_ctx":181,"./_export":189,"./_is-array-iter":204,"./_iter-call":209,"./_iter-detect":212,"./_to-length":271,"./_to-object":272,"./core.get-iterator-method":282,"dup":145}],292:[function(require,module,exports){ +},{"./_array-methods":173,"./_export":194,"./_strict-method":263}],296:[function(require,module,exports){ +arguments[4][150][0].apply(exports,arguments) +},{"./_create-property":185,"./_ctx":186,"./_export":194,"./_is-array-iter":209,"./_iter-call":214,"./_iter-detect":217,"./_to-length":276,"./_to-object":277,"./core.get-iterator-method":287,"dup":150}],297:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $indexOf = require('./_array-includes')(false); @@ -19328,15 +19758,15 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_array-includes":167,"./_export":189,"./_strict-method":258}],293:[function(require,module,exports){ +},{"./_array-includes":172,"./_export":194,"./_strict-method":263}],298:[function(require,module,exports){ // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) var $export = require('./_export'); $export($export.S, 'Array', { isArray: require('./_is-array') }); -},{"./_export":189,"./_is-array":205}],294:[function(require,module,exports){ -arguments[4][146][0].apply(exports,arguments) -},{"./_add-to-unscopables":161,"./_iter-define":211,"./_iter-step":213,"./_iterators":214,"./_to-iobject":270,"dup":146}],295:[function(require,module,exports){ +},{"./_export":194,"./_is-array":210}],299:[function(require,module,exports){ +arguments[4][151][0].apply(exports,arguments) +},{"./_add-to-unscopables":166,"./_iter-define":216,"./_iter-step":218,"./_iterators":219,"./_to-iobject":275,"dup":151}],300:[function(require,module,exports){ 'use strict'; // 22.1.3.13 Array.prototype.join(separator) var $export = require('./_export'); @@ -19350,7 +19780,7 @@ $export($export.P + $export.F * (require('./_iobject') != Object || !require('./ } }); -},{"./_export":189,"./_iobject":203,"./_strict-method":258,"./_to-iobject":270}],296:[function(require,module,exports){ +},{"./_export":194,"./_iobject":208,"./_strict-method":263,"./_to-iobject":275}],301:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toIObject = require('./_to-iobject'); @@ -19374,7 +19804,7 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_export":189,"./_strict-method":258,"./_to-integer":269,"./_to-iobject":270,"./_to-length":271}],297:[function(require,module,exports){ +},{"./_export":194,"./_strict-method":263,"./_to-integer":274,"./_to-iobject":275,"./_to-length":276}],302:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $map = require('./_array-methods')(1); @@ -19386,7 +19816,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].map, true), 'Arr } }); -},{"./_array-methods":168,"./_export":189,"./_strict-method":258}],298:[function(require,module,exports){ +},{"./_array-methods":173,"./_export":194,"./_strict-method":263}],303:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var createProperty = require('./_create-property'); @@ -19407,7 +19837,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_create-property":180,"./_export":189,"./_fails":191}],299:[function(require,module,exports){ +},{"./_create-property":185,"./_export":194,"./_fails":196}],304:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $reduce = require('./_array-reduce'); @@ -19419,7 +19849,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduceRight, tru } }); -},{"./_array-reduce":169,"./_export":189,"./_strict-method":258}],300:[function(require,module,exports){ +},{"./_array-reduce":174,"./_export":194,"./_strict-method":263}],305:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $reduce = require('./_array-reduce'); @@ -19431,7 +19861,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduce, true), ' } }); -},{"./_array-reduce":169,"./_export":189,"./_strict-method":258}],301:[function(require,module,exports){ +},{"./_array-reduce":174,"./_export":194,"./_strict-method":263}],306:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var html = require('./_html'); @@ -19461,7 +19891,7 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_cof":174,"./_export":189,"./_fails":191,"./_html":199,"./_to-absolute-index":267,"./_to-length":271}],302:[function(require,module,exports){ +},{"./_cof":179,"./_export":194,"./_fails":196,"./_html":204,"./_to-absolute-index":272,"./_to-length":276}],307:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $some = require('./_array-methods')(3); @@ -19473,7 +19903,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].some, true), 'Ar } }); -},{"./_array-methods":168,"./_export":189,"./_strict-method":258}],303:[function(require,module,exports){ +},{"./_array-methods":173,"./_export":194,"./_strict-method":263}],308:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var aFunction = require('./_a-function'); @@ -19498,16 +19928,16 @@ $export($export.P + $export.F * (fails(function () { } }); -},{"./_a-function":159,"./_export":189,"./_fails":191,"./_strict-method":258,"./_to-object":272}],304:[function(require,module,exports){ +},{"./_a-function":164,"./_export":194,"./_fails":196,"./_strict-method":263,"./_to-object":277}],309:[function(require,module,exports){ require('./_set-species')('Array'); -},{"./_set-species":253}],305:[function(require,module,exports){ +},{"./_set-species":258}],310:[function(require,module,exports){ // 20.3.3.1 / 15.9.4.4 Date.now() var $export = require('./_export'); $export($export.S, 'Date', { now: function () { return new Date().getTime(); } }); -},{"./_export":189}],306:[function(require,module,exports){ +},{"./_export":194}],311:[function(require,module,exports){ // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() var $export = require('./_export'); var toISOString = require('./_date-to-iso-string'); @@ -19517,7 +19947,7 @@ $export($export.P + $export.F * (Date.prototype.toISOString !== toISOString), 'D toISOString: toISOString }); -},{"./_date-to-iso-string":182,"./_export":189}],307:[function(require,module,exports){ +},{"./_date-to-iso-string":187,"./_export":194}],312:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toObject = require('./_to-object'); @@ -19535,13 +19965,13 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_export":189,"./_fails":191,"./_to-object":272,"./_to-primitive":273}],308:[function(require,module,exports){ +},{"./_export":194,"./_fails":196,"./_to-object":277,"./_to-primitive":278}],313:[function(require,module,exports){ var TO_PRIMITIVE = require('./_wks')('toPrimitive'); var proto = Date.prototype; if (!(TO_PRIMITIVE in proto)) require('./_hide')(proto, TO_PRIMITIVE, require('./_date-to-primitive')); -},{"./_date-to-primitive":183,"./_hide":198,"./_wks":281}],309:[function(require,module,exports){ +},{"./_date-to-primitive":188,"./_hide":203,"./_wks":286}],314:[function(require,module,exports){ var DateProto = Date.prototype; var INVALID_DATE = 'Invalid Date'; var TO_STRING = 'toString'; @@ -19555,13 +19985,13 @@ if (new Date(NaN) + '' != INVALID_DATE) { }); } -},{"./_redefine":247}],310:[function(require,module,exports){ +},{"./_redefine":252}],315:[function(require,module,exports){ // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) var $export = require('./_export'); $export($export.P, 'Function', { bind: require('./_bind') }); -},{"./_bind":172,"./_export":189}],311:[function(require,module,exports){ +},{"./_bind":177,"./_export":194}],316:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); var getPrototypeOf = require('./_object-gpo'); @@ -19576,7 +20006,7 @@ if (!(HAS_INSTANCE in FunctionProto)) require('./_object-dp').f(FunctionProto, H return false; } }); -},{"./_is-object":207,"./_object-dp":227,"./_object-gpo":234,"./_wks":281}],312:[function(require,module,exports){ +},{"./_is-object":212,"./_object-dp":232,"./_object-gpo":239,"./_wks":286}],317:[function(require,module,exports){ var dP = require('./_object-dp').f; var FProto = Function.prototype; var nameRE = /^\s*function ([^ (]*)/; @@ -19594,7 +20024,7 @@ NAME in FProto || require('./_descriptors') && dP(FProto, NAME, { } }); -},{"./_descriptors":185,"./_object-dp":227}],313:[function(require,module,exports){ +},{"./_descriptors":190,"./_object-dp":232}],318:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); var validate = require('./_validate-collection'); @@ -19615,7 +20045,7 @@ module.exports = require('./_collection')(MAP, function (get) { } }, strong, true); -},{"./_collection":178,"./_collection-strong":175,"./_validate-collection":278}],314:[function(require,module,exports){ +},{"./_collection":183,"./_collection-strong":180,"./_validate-collection":283}],319:[function(require,module,exports){ // 20.2.2.3 Math.acosh(x) var $export = require('./_export'); var log1p = require('./_math-log1p'); @@ -19635,7 +20065,7 @@ $export($export.S + $export.F * !($acosh } }); -},{"./_export":189,"./_math-log1p":218}],315:[function(require,module,exports){ +},{"./_export":194,"./_math-log1p":223}],320:[function(require,module,exports){ // 20.2.2.5 Math.asinh(x) var $export = require('./_export'); var $asinh = Math.asinh; @@ -19647,7 +20077,7 @@ function asinh(x) { // Tor Browser bug: Math.asinh(0) -> -0 $export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh }); -},{"./_export":189}],316:[function(require,module,exports){ +},{"./_export":194}],321:[function(require,module,exports){ // 20.2.2.7 Math.atanh(x) var $export = require('./_export'); var $atanh = Math.atanh; @@ -19659,7 +20089,7 @@ $export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', { } }); -},{"./_export":189}],317:[function(require,module,exports){ +},{"./_export":194}],322:[function(require,module,exports){ // 20.2.2.9 Math.cbrt(x) var $export = require('./_export'); var sign = require('./_math-sign'); @@ -19670,7 +20100,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189,"./_math-sign":220}],318:[function(require,module,exports){ +},{"./_export":194,"./_math-sign":225}],323:[function(require,module,exports){ // 20.2.2.11 Math.clz32(x) var $export = require('./_export'); @@ -19680,7 +20110,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],319:[function(require,module,exports){ +},{"./_export":194}],324:[function(require,module,exports){ // 20.2.2.12 Math.cosh(x) var $export = require('./_export'); var exp = Math.exp; @@ -19691,20 +20121,20 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],320:[function(require,module,exports){ +},{"./_export":194}],325:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $export = require('./_export'); var $expm1 = require('./_math-expm1'); $export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 }); -},{"./_export":189,"./_math-expm1":216}],321:[function(require,module,exports){ +},{"./_export":194,"./_math-expm1":221}],326:[function(require,module,exports){ // 20.2.2.16 Math.fround(x) var $export = require('./_export'); $export($export.S, 'Math', { fround: require('./_math-fround') }); -},{"./_export":189,"./_math-fround":217}],322:[function(require,module,exports){ +},{"./_export":194,"./_math-fround":222}],327:[function(require,module,exports){ // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) var $export = require('./_export'); var abs = Math.abs; @@ -19731,7 +20161,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],323:[function(require,module,exports){ +},{"./_export":194}],328:[function(require,module,exports){ // 20.2.2.18 Math.imul(x, y) var $export = require('./_export'); var $imul = Math.imul; @@ -19750,7 +20180,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":189,"./_fails":191}],324:[function(require,module,exports){ +},{"./_export":194,"./_fails":196}],329:[function(require,module,exports){ // 20.2.2.21 Math.log10(x) var $export = require('./_export'); @@ -19760,13 +20190,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],325:[function(require,module,exports){ +},{"./_export":194}],330:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) var $export = require('./_export'); $export($export.S, 'Math', { log1p: require('./_math-log1p') }); -},{"./_export":189,"./_math-log1p":218}],326:[function(require,module,exports){ +},{"./_export":194,"./_math-log1p":223}],331:[function(require,module,exports){ // 20.2.2.22 Math.log2(x) var $export = require('./_export'); @@ -19776,13 +20206,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],327:[function(require,module,exports){ +},{"./_export":194}],332:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) var $export = require('./_export'); $export($export.S, 'Math', { sign: require('./_math-sign') }); -},{"./_export":189,"./_math-sign":220}],328:[function(require,module,exports){ +},{"./_export":194,"./_math-sign":225}],333:[function(require,module,exports){ // 20.2.2.30 Math.sinh(x) var $export = require('./_export'); var expm1 = require('./_math-expm1'); @@ -19799,7 +20229,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":189,"./_fails":191,"./_math-expm1":216}],329:[function(require,module,exports){ +},{"./_export":194,"./_fails":196,"./_math-expm1":221}],334:[function(require,module,exports){ // 20.2.2.33 Math.tanh(x) var $export = require('./_export'); var expm1 = require('./_math-expm1'); @@ -19813,7 +20243,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189,"./_math-expm1":216}],330:[function(require,module,exports){ +},{"./_export":194,"./_math-expm1":221}],335:[function(require,module,exports){ // 20.2.2.34 Math.trunc(x) var $export = require('./_export'); @@ -19823,7 +20253,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],331:[function(require,module,exports){ +},{"./_export":194}],336:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var has = require('./_has'); @@ -19894,13 +20324,13 @@ if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { require('./_redefine')(global, NUMBER, $Number); } -},{"./_cof":174,"./_descriptors":185,"./_fails":191,"./_global":196,"./_has":197,"./_inherit-if-required":201,"./_object-create":226,"./_object-dp":227,"./_object-gopd":230,"./_object-gopn":232,"./_redefine":247,"./_string-trim":264,"./_to-primitive":273}],332:[function(require,module,exports){ +},{"./_cof":179,"./_descriptors":190,"./_fails":196,"./_global":201,"./_has":202,"./_inherit-if-required":206,"./_object-create":231,"./_object-dp":232,"./_object-gopd":235,"./_object-gopn":237,"./_redefine":252,"./_string-trim":269,"./_to-primitive":278}],337:[function(require,module,exports){ // 20.1.2.1 Number.EPSILON var $export = require('./_export'); $export($export.S, 'Number', { EPSILON: Math.pow(2, -52) }); -},{"./_export":189}],333:[function(require,module,exports){ +},{"./_export":194}],338:[function(require,module,exports){ // 20.1.2.2 Number.isFinite(number) var $export = require('./_export'); var _isFinite = require('./_global').isFinite; @@ -19911,13 +20341,13 @@ $export($export.S, 'Number', { } }); -},{"./_export":189,"./_global":196}],334:[function(require,module,exports){ +},{"./_export":194,"./_global":201}],339:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var $export = require('./_export'); $export($export.S, 'Number', { isInteger: require('./_is-integer') }); -},{"./_export":189,"./_is-integer":206}],335:[function(require,module,exports){ +},{"./_export":194,"./_is-integer":211}],340:[function(require,module,exports){ // 20.1.2.4 Number.isNaN(number) var $export = require('./_export'); @@ -19928,7 +20358,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":189}],336:[function(require,module,exports){ +},{"./_export":194}],341:[function(require,module,exports){ // 20.1.2.5 Number.isSafeInteger(number) var $export = require('./_export'); var isInteger = require('./_is-integer'); @@ -19940,31 +20370,31 @@ $export($export.S, 'Number', { } }); -},{"./_export":189,"./_is-integer":206}],337:[function(require,module,exports){ +},{"./_export":194,"./_is-integer":211}],342:[function(require,module,exports){ // 20.1.2.6 Number.MAX_SAFE_INTEGER var $export = require('./_export'); $export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff }); -},{"./_export":189}],338:[function(require,module,exports){ +},{"./_export":194}],343:[function(require,module,exports){ // 20.1.2.10 Number.MIN_SAFE_INTEGER var $export = require('./_export'); $export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff }); -},{"./_export":189}],339:[function(require,module,exports){ +},{"./_export":194}],344:[function(require,module,exports){ var $export = require('./_export'); var $parseFloat = require('./_parse-float'); // 20.1.2.12 Number.parseFloat(string) $export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', { parseFloat: $parseFloat }); -},{"./_export":189,"./_parse-float":241}],340:[function(require,module,exports){ +},{"./_export":194,"./_parse-float":246}],345:[function(require,module,exports){ var $export = require('./_export'); var $parseInt = require('./_parse-int'); // 20.1.2.13 Number.parseInt(string, radix) $export($export.S + $export.F * (Number.parseInt != $parseInt), 'Number', { parseInt: $parseInt }); -},{"./_export":189,"./_parse-int":242}],341:[function(require,module,exports){ +},{"./_export":194,"./_parse-int":247}],346:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toInteger = require('./_to-integer'); @@ -20080,7 +20510,7 @@ $export($export.P + $export.F * (!!$toFixed && ( } }); -},{"./_a-number-value":160,"./_export":189,"./_fails":191,"./_string-repeat":263,"./_to-integer":269}],342:[function(require,module,exports){ +},{"./_a-number-value":165,"./_export":194,"./_fails":196,"./_string-repeat":268,"./_to-integer":274}],347:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $fails = require('./_fails'); @@ -20100,22 +20530,22 @@ $export($export.P + $export.F * ($fails(function () { } }); -},{"./_a-number-value":160,"./_export":189,"./_fails":191}],343:[function(require,module,exports){ +},{"./_a-number-value":165,"./_export":194,"./_fails":196}],348:[function(require,module,exports){ // 19.1.3.1 Object.assign(target, source) var $export = require('./_export'); $export($export.S + $export.F, 'Object', { assign: require('./_object-assign') }); -},{"./_export":189,"./_object-assign":225}],344:[function(require,module,exports){ -arguments[4][147][0].apply(exports,arguments) -},{"./_export":189,"./_object-create":226,"dup":147}],345:[function(require,module,exports){ +},{"./_export":194,"./_object-assign":230}],349:[function(require,module,exports){ +arguments[4][152][0].apply(exports,arguments) +},{"./_export":194,"./_object-create":231,"dup":152}],350:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperties: require('./_object-dps') }); -},{"./_descriptors":185,"./_export":189,"./_object-dps":228}],346:[function(require,module,exports){ -arguments[4][148][0].apply(exports,arguments) -},{"./_descriptors":185,"./_export":189,"./_object-dp":227,"dup":148}],347:[function(require,module,exports){ +},{"./_descriptors":190,"./_export":194,"./_object-dps":233}],351:[function(require,module,exports){ +arguments[4][153][0].apply(exports,arguments) +},{"./_descriptors":190,"./_export":194,"./_object-dp":232,"dup":153}],352:[function(require,module,exports){ // 19.1.2.5 Object.freeze(O) var isObject = require('./_is-object'); var meta = require('./_meta').onFreeze; @@ -20126,7 +20556,7 @@ require('./_object-sap')('freeze', function ($freeze) { }; }); -},{"./_is-object":207,"./_meta":221,"./_object-sap":238}],348:[function(require,module,exports){ +},{"./_is-object":212,"./_meta":226,"./_object-sap":243}],353:[function(require,module,exports){ // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P) var toIObject = require('./_to-iobject'); var $getOwnPropertyDescriptor = require('./_object-gopd').f; @@ -20137,13 +20567,13 @@ require('./_object-sap')('getOwnPropertyDescriptor', function () { }; }); -},{"./_object-gopd":230,"./_object-sap":238,"./_to-iobject":270}],349:[function(require,module,exports){ +},{"./_object-gopd":235,"./_object-sap":243,"./_to-iobject":275}],354:[function(require,module,exports){ // 19.1.2.7 Object.getOwnPropertyNames(O) require('./_object-sap')('getOwnPropertyNames', function () { return require('./_object-gopn-ext').f; }); -},{"./_object-gopn-ext":231,"./_object-sap":238}],350:[function(require,module,exports){ +},{"./_object-gopn-ext":236,"./_object-sap":243}],355:[function(require,module,exports){ // 19.1.2.9 Object.getPrototypeOf(O) var toObject = require('./_to-object'); var $getPrototypeOf = require('./_object-gpo'); @@ -20154,7 +20584,7 @@ require('./_object-sap')('getPrototypeOf', function () { }; }); -},{"./_object-gpo":234,"./_object-sap":238,"./_to-object":272}],351:[function(require,module,exports){ +},{"./_object-gpo":239,"./_object-sap":243,"./_to-object":277}],356:[function(require,module,exports){ // 19.1.2.11 Object.isExtensible(O) var isObject = require('./_is-object'); @@ -20164,7 +20594,7 @@ require('./_object-sap')('isExtensible', function ($isExtensible) { }; }); -},{"./_is-object":207,"./_object-sap":238}],352:[function(require,module,exports){ +},{"./_is-object":212,"./_object-sap":243}],357:[function(require,module,exports){ // 19.1.2.12 Object.isFrozen(O) var isObject = require('./_is-object'); @@ -20174,7 +20604,7 @@ require('./_object-sap')('isFrozen', function ($isFrozen) { }; }); -},{"./_is-object":207,"./_object-sap":238}],353:[function(require,module,exports){ +},{"./_is-object":212,"./_object-sap":243}],358:[function(require,module,exports){ // 19.1.2.13 Object.isSealed(O) var isObject = require('./_is-object'); @@ -20184,12 +20614,12 @@ require('./_object-sap')('isSealed', function ($isSealed) { }; }); -},{"./_is-object":207,"./_object-sap":238}],354:[function(require,module,exports){ +},{"./_is-object":212,"./_object-sap":243}],359:[function(require,module,exports){ // 19.1.3.10 Object.is(value1, value2) var $export = require('./_export'); $export($export.S, 'Object', { is: require('./_same-value') }); -},{"./_export":189,"./_same-value":249}],355:[function(require,module,exports){ +},{"./_export":194,"./_same-value":254}],360:[function(require,module,exports){ // 19.1.2.14 Object.keys(O) var toObject = require('./_to-object'); var $keys = require('./_object-keys'); @@ -20200,7 +20630,7 @@ require('./_object-sap')('keys', function () { }; }); -},{"./_object-keys":236,"./_object-sap":238,"./_to-object":272}],356:[function(require,module,exports){ +},{"./_object-keys":241,"./_object-sap":243,"./_to-object":277}],361:[function(require,module,exports){ // 19.1.2.15 Object.preventExtensions(O) var isObject = require('./_is-object'); var meta = require('./_meta').onFreeze; @@ -20211,7 +20641,7 @@ require('./_object-sap')('preventExtensions', function ($preventExtensions) { }; }); -},{"./_is-object":207,"./_meta":221,"./_object-sap":238}],357:[function(require,module,exports){ +},{"./_is-object":212,"./_meta":226,"./_object-sap":243}],362:[function(require,module,exports){ // 19.1.2.17 Object.seal(O) var isObject = require('./_is-object'); var meta = require('./_meta').onFreeze; @@ -20222,9 +20652,9 @@ require('./_object-sap')('seal', function ($seal) { }; }); -},{"./_is-object":207,"./_meta":221,"./_object-sap":238}],358:[function(require,module,exports){ -arguments[4][149][0].apply(exports,arguments) -},{"./_export":189,"./_set-proto":252,"dup":149}],359:[function(require,module,exports){ +},{"./_is-object":212,"./_meta":226,"./_object-sap":243}],363:[function(require,module,exports){ +arguments[4][154][0].apply(exports,arguments) +},{"./_export":194,"./_set-proto":257,"dup":154}],364:[function(require,module,exports){ 'use strict'; // 19.1.3.6 Object.prototype.toString() var classof = require('./_classof'); @@ -20236,21 +20666,21 @@ if (test + '' != '[object z]') { }, true); } -},{"./_classof":173,"./_redefine":247,"./_wks":281}],360:[function(require,module,exports){ +},{"./_classof":178,"./_redefine":252,"./_wks":286}],365:[function(require,module,exports){ var $export = require('./_export'); var $parseFloat = require('./_parse-float'); // 18.2.4 parseFloat(string) $export($export.G + $export.F * (parseFloat != $parseFloat), { parseFloat: $parseFloat }); -},{"./_export":189,"./_parse-float":241}],361:[function(require,module,exports){ +},{"./_export":194,"./_parse-float":246}],366:[function(require,module,exports){ var $export = require('./_export'); var $parseInt = require('./_parse-int'); // 18.2.5 parseInt(string, radix) $export($export.G + $export.F * (parseInt != $parseInt), { parseInt: $parseInt }); -},{"./_export":189,"./_parse-int":242}],362:[function(require,module,exports){ -arguments[4][151][0].apply(exports,arguments) -},{"./_a-function":159,"./_an-instance":162,"./_classof":173,"./_core":179,"./_ctx":181,"./_export":189,"./_for-of":195,"./_global":196,"./_is-object":207,"./_iter-detect":212,"./_library":215,"./_microtask":223,"./_new-promise-capability":224,"./_perform":243,"./_promise-resolve":244,"./_redefine-all":246,"./_set-species":253,"./_set-to-string-tag":254,"./_species-constructor":257,"./_task":266,"./_wks":281,"dup":151}],363:[function(require,module,exports){ +},{"./_export":194,"./_parse-int":247}],367:[function(require,module,exports){ +arguments[4][156][0].apply(exports,arguments) +},{"./_a-function":164,"./_an-instance":167,"./_classof":178,"./_core":184,"./_ctx":186,"./_export":194,"./_for-of":200,"./_global":201,"./_is-object":212,"./_iter-detect":217,"./_library":220,"./_microtask":228,"./_new-promise-capability":229,"./_perform":248,"./_promise-resolve":249,"./_redefine-all":251,"./_set-species":258,"./_set-to-string-tag":259,"./_species-constructor":262,"./_task":271,"./_wks":286,"dup":156}],368:[function(require,module,exports){ // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) var $export = require('./_export'); var aFunction = require('./_a-function'); @@ -20268,7 +20698,7 @@ $export($export.S + $export.F * !require('./_fails')(function () { } }); -},{"./_a-function":159,"./_an-object":163,"./_export":189,"./_fails":191,"./_global":196}],364:[function(require,module,exports){ +},{"./_a-function":164,"./_an-object":168,"./_export":194,"./_fails":196,"./_global":201}],369:[function(require,module,exports){ // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) var $export = require('./_export'); var create = require('./_object-create'); @@ -20317,7 +20747,7 @@ $export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', { } }); -},{"./_a-function":159,"./_an-object":163,"./_bind":172,"./_export":189,"./_fails":191,"./_global":196,"./_is-object":207,"./_object-create":226}],365:[function(require,module,exports){ +},{"./_a-function":164,"./_an-object":168,"./_bind":177,"./_export":194,"./_fails":196,"./_global":201,"./_is-object":212,"./_object-create":231}],370:[function(require,module,exports){ // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) var dP = require('./_object-dp'); var $export = require('./_export'); @@ -20342,7 +20772,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_an-object":163,"./_export":189,"./_fails":191,"./_object-dp":227,"./_to-primitive":273}],366:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_fails":196,"./_object-dp":232,"./_to-primitive":278}],371:[function(require,module,exports){ // 26.1.4 Reflect.deleteProperty(target, propertyKey) var $export = require('./_export'); var gOPD = require('./_object-gopd').f; @@ -20355,7 +20785,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":163,"./_export":189,"./_object-gopd":230}],367:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_object-gopd":235}],372:[function(require,module,exports){ 'use strict'; // 26.1.5 Reflect.enumerate(target) var $export = require('./_export'); @@ -20383,7 +20813,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":163,"./_export":189,"./_iter-create":210}],368:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_iter-create":215}],373:[function(require,module,exports){ // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) var gOPD = require('./_object-gopd'); var $export = require('./_export'); @@ -20395,7 +20825,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":163,"./_export":189,"./_object-gopd":230}],369:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_object-gopd":235}],374:[function(require,module,exports){ // 26.1.8 Reflect.getPrototypeOf(target) var $export = require('./_export'); var getProto = require('./_object-gpo'); @@ -20407,7 +20837,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":163,"./_export":189,"./_object-gpo":234}],370:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_object-gpo":239}],375:[function(require,module,exports){ // 26.1.6 Reflect.get(target, propertyKey [, receiver]) var gOPD = require('./_object-gopd'); var getPrototypeOf = require('./_object-gpo'); @@ -20430,7 +20860,7 @@ function get(target, propertyKey /* , receiver */) { $export($export.S, 'Reflect', { get: get }); -},{"./_an-object":163,"./_export":189,"./_has":197,"./_is-object":207,"./_object-gopd":230,"./_object-gpo":234}],371:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_has":202,"./_is-object":212,"./_object-gopd":235,"./_object-gpo":239}],376:[function(require,module,exports){ // 26.1.9 Reflect.has(target, propertyKey) var $export = require('./_export'); @@ -20440,7 +20870,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_export":189}],372:[function(require,module,exports){ +},{"./_export":194}],377:[function(require,module,exports){ // 26.1.10 Reflect.isExtensible(target) var $export = require('./_export'); var anObject = require('./_an-object'); @@ -20453,13 +20883,13 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":163,"./_export":189}],373:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194}],378:[function(require,module,exports){ // 26.1.11 Reflect.ownKeys(target) var $export = require('./_export'); $export($export.S, 'Reflect', { ownKeys: require('./_own-keys') }); -},{"./_export":189,"./_own-keys":240}],374:[function(require,module,exports){ +},{"./_export":194,"./_own-keys":245}],379:[function(require,module,exports){ // 26.1.12 Reflect.preventExtensions(target) var $export = require('./_export'); var anObject = require('./_an-object'); @@ -20477,7 +20907,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":163,"./_export":189}],375:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194}],380:[function(require,module,exports){ // 26.1.14 Reflect.setPrototypeOf(target, proto) var $export = require('./_export'); var setProto = require('./_set-proto'); @@ -20494,7 +20924,7 @@ if (setProto) $export($export.S, 'Reflect', { } }); -},{"./_export":189,"./_set-proto":252}],376:[function(require,module,exports){ +},{"./_export":194,"./_set-proto":257}],381:[function(require,module,exports){ // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) var dP = require('./_object-dp'); var gOPD = require('./_object-gopd'); @@ -20527,7 +20957,7 @@ function set(target, propertyKey, V /* , receiver */) { $export($export.S, 'Reflect', { set: set }); -},{"./_an-object":163,"./_export":189,"./_has":197,"./_is-object":207,"./_object-dp":227,"./_object-gopd":230,"./_object-gpo":234,"./_property-desc":245}],377:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_has":202,"./_is-object":212,"./_object-dp":232,"./_object-gopd":235,"./_object-gpo":239,"./_property-desc":250}],382:[function(require,module,exports){ var global = require('./_global'); var inheritIfRequired = require('./_inherit-if-required'); var dP = require('./_object-dp').f; @@ -20572,14 +21002,14 @@ if (require('./_descriptors') && (!CORRECT_NEW || require('./_fails')(function ( require('./_set-species')('RegExp'); -},{"./_descriptors":185,"./_fails":191,"./_flags":193,"./_global":196,"./_inherit-if-required":201,"./_is-regexp":208,"./_object-dp":227,"./_object-gopn":232,"./_redefine":247,"./_set-species":253,"./_wks":281}],378:[function(require,module,exports){ +},{"./_descriptors":190,"./_fails":196,"./_flags":198,"./_global":201,"./_inherit-if-required":206,"./_is-regexp":213,"./_object-dp":232,"./_object-gopn":237,"./_redefine":252,"./_set-species":258,"./_wks":286}],383:[function(require,module,exports){ // 21.2.5.3 get RegExp.prototype.flags() if (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', { configurable: true, get: require('./_flags') }); -},{"./_descriptors":185,"./_flags":193,"./_object-dp":227}],379:[function(require,module,exports){ +},{"./_descriptors":190,"./_flags":198,"./_object-dp":232}],384:[function(require,module,exports){ // @@match logic require('./_fix-re-wks')('match', 1, function (defined, MATCH, $match) { // 21.1.3.11 String.prototype.match(regexp) @@ -20591,7 +21021,7 @@ require('./_fix-re-wks')('match', 1, function (defined, MATCH, $match) { }, $match]; }); -},{"./_fix-re-wks":192}],380:[function(require,module,exports){ +},{"./_fix-re-wks":197}],385:[function(require,module,exports){ // @@replace logic require('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) { // 21.1.3.14 String.prototype.replace(searchValue, replaceValue) @@ -20605,7 +21035,7 @@ require('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) { }, $replace]; }); -},{"./_fix-re-wks":192}],381:[function(require,module,exports){ +},{"./_fix-re-wks":197}],386:[function(require,module,exports){ // @@search logic require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) { // 21.1.3.15 String.prototype.search(regexp) @@ -20617,7 +21047,7 @@ require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) { }, $search]; }); -},{"./_fix-re-wks":192}],382:[function(require,module,exports){ +},{"./_fix-re-wks":197}],387:[function(require,module,exports){ // @@split logic require('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split) { 'use strict'; @@ -20690,7 +21120,7 @@ require('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split) { }, $split]; }); -},{"./_fix-re-wks":192,"./_is-regexp":208}],383:[function(require,module,exports){ +},{"./_fix-re-wks":197,"./_is-regexp":213}],388:[function(require,module,exports){ 'use strict'; require('./es6.regexp.flags'); var anObject = require('./_an-object'); @@ -20717,7 +21147,7 @@ if (require('./_fails')(function () { return $toString.call({ source: 'a', flags }); } -},{"./_an-object":163,"./_descriptors":185,"./_fails":191,"./_flags":193,"./_redefine":247,"./es6.regexp.flags":378}],384:[function(require,module,exports){ +},{"./_an-object":168,"./_descriptors":190,"./_fails":196,"./_flags":198,"./_redefine":252,"./es6.regexp.flags":383}],389:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); var validate = require('./_validate-collection'); @@ -20733,7 +21163,7 @@ module.exports = require('./_collection')(SET, function (get) { } }, strong); -},{"./_collection":178,"./_collection-strong":175,"./_validate-collection":278}],385:[function(require,module,exports){ +},{"./_collection":183,"./_collection-strong":180,"./_validate-collection":283}],390:[function(require,module,exports){ 'use strict'; // B.2.3.2 String.prototype.anchor(name) require('./_string-html')('anchor', function (createHTML) { @@ -20742,7 +21172,7 @@ require('./_string-html')('anchor', function (createHTML) { }; }); -},{"./_string-html":261}],386:[function(require,module,exports){ +},{"./_string-html":266}],391:[function(require,module,exports){ 'use strict'; // B.2.3.3 String.prototype.big() require('./_string-html')('big', function (createHTML) { @@ -20751,7 +21181,7 @@ require('./_string-html')('big', function (createHTML) { }; }); -},{"./_string-html":261}],387:[function(require,module,exports){ +},{"./_string-html":266}],392:[function(require,module,exports){ 'use strict'; // B.2.3.4 String.prototype.blink() require('./_string-html')('blink', function (createHTML) { @@ -20760,7 +21190,7 @@ require('./_string-html')('blink', function (createHTML) { }; }); -},{"./_string-html":261}],388:[function(require,module,exports){ +},{"./_string-html":266}],393:[function(require,module,exports){ 'use strict'; // B.2.3.5 String.prototype.bold() require('./_string-html')('bold', function (createHTML) { @@ -20769,7 +21199,7 @@ require('./_string-html')('bold', function (createHTML) { }; }); -},{"./_string-html":261}],389:[function(require,module,exports){ +},{"./_string-html":266}],394:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $at = require('./_string-at')(false); @@ -20780,7 +21210,7 @@ $export($export.P, 'String', { } }); -},{"./_export":189,"./_string-at":259}],390:[function(require,module,exports){ +},{"./_export":194,"./_string-at":264}],395:[function(require,module,exports){ // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) 'use strict'; var $export = require('./_export'); @@ -20802,7 +21232,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'Strin } }); -},{"./_export":189,"./_fails-is-regexp":190,"./_string-context":260,"./_to-length":271}],391:[function(require,module,exports){ +},{"./_export":194,"./_fails-is-regexp":195,"./_string-context":265,"./_to-length":276}],396:[function(require,module,exports){ 'use strict'; // B.2.3.6 String.prototype.fixed() require('./_string-html')('fixed', function (createHTML) { @@ -20811,7 +21241,7 @@ require('./_string-html')('fixed', function (createHTML) { }; }); -},{"./_string-html":261}],392:[function(require,module,exports){ +},{"./_string-html":266}],397:[function(require,module,exports){ 'use strict'; // B.2.3.7 String.prototype.fontcolor(color) require('./_string-html')('fontcolor', function (createHTML) { @@ -20820,7 +21250,7 @@ require('./_string-html')('fontcolor', function (createHTML) { }; }); -},{"./_string-html":261}],393:[function(require,module,exports){ +},{"./_string-html":266}],398:[function(require,module,exports){ 'use strict'; // B.2.3.8 String.prototype.fontsize(size) require('./_string-html')('fontsize', function (createHTML) { @@ -20829,7 +21259,7 @@ require('./_string-html')('fontsize', function (createHTML) { }; }); -},{"./_string-html":261}],394:[function(require,module,exports){ +},{"./_string-html":266}],399:[function(require,module,exports){ var $export = require('./_export'); var toAbsoluteIndex = require('./_to-absolute-index'); var fromCharCode = String.fromCharCode; @@ -20854,7 +21284,7 @@ $export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1) } }); -},{"./_export":189,"./_to-absolute-index":267}],395:[function(require,module,exports){ +},{"./_export":194,"./_to-absolute-index":272}],400:[function(require,module,exports){ // 21.1.3.7 String.prototype.includes(searchString, position = 0) 'use strict'; var $export = require('./_export'); @@ -20868,7 +21298,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String } }); -},{"./_export":189,"./_fails-is-regexp":190,"./_string-context":260}],396:[function(require,module,exports){ +},{"./_export":194,"./_fails-is-regexp":195,"./_string-context":265}],401:[function(require,module,exports){ 'use strict'; // B.2.3.9 String.prototype.italics() require('./_string-html')('italics', function (createHTML) { @@ -20877,9 +21307,9 @@ require('./_string-html')('italics', function (createHTML) { }; }); -},{"./_string-html":261}],397:[function(require,module,exports){ -arguments[4][152][0].apply(exports,arguments) -},{"./_iter-define":211,"./_string-at":259,"dup":152}],398:[function(require,module,exports){ +},{"./_string-html":266}],402:[function(require,module,exports){ +arguments[4][157][0].apply(exports,arguments) +},{"./_iter-define":216,"./_string-at":264,"dup":157}],403:[function(require,module,exports){ 'use strict'; // B.2.3.10 String.prototype.link(url) require('./_string-html')('link', function (createHTML) { @@ -20888,7 +21318,7 @@ require('./_string-html')('link', function (createHTML) { }; }); -},{"./_string-html":261}],399:[function(require,module,exports){ +},{"./_string-html":266}],404:[function(require,module,exports){ var $export = require('./_export'); var toIObject = require('./_to-iobject'); var toLength = require('./_to-length'); @@ -20908,7 +21338,7 @@ $export($export.S, 'String', { } }); -},{"./_export":189,"./_to-iobject":270,"./_to-length":271}],400:[function(require,module,exports){ +},{"./_export":194,"./_to-iobject":275,"./_to-length":276}],405:[function(require,module,exports){ var $export = require('./_export'); $export($export.P, 'String', { @@ -20916,7 +21346,7 @@ $export($export.P, 'String', { repeat: require('./_string-repeat') }); -},{"./_export":189,"./_string-repeat":263}],401:[function(require,module,exports){ +},{"./_export":194,"./_string-repeat":268}],406:[function(require,module,exports){ 'use strict'; // B.2.3.11 String.prototype.small() require('./_string-html')('small', function (createHTML) { @@ -20925,7 +21355,7 @@ require('./_string-html')('small', function (createHTML) { }; }); -},{"./_string-html":261}],402:[function(require,module,exports){ +},{"./_string-html":266}],407:[function(require,module,exports){ // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) 'use strict'; var $export = require('./_export'); @@ -20945,7 +21375,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'Str } }); -},{"./_export":189,"./_fails-is-regexp":190,"./_string-context":260,"./_to-length":271}],403:[function(require,module,exports){ +},{"./_export":194,"./_fails-is-regexp":195,"./_string-context":265,"./_to-length":276}],408:[function(require,module,exports){ 'use strict'; // B.2.3.12 String.prototype.strike() require('./_string-html')('strike', function (createHTML) { @@ -20954,7 +21384,7 @@ require('./_string-html')('strike', function (createHTML) { }; }); -},{"./_string-html":261}],404:[function(require,module,exports){ +},{"./_string-html":266}],409:[function(require,module,exports){ 'use strict'; // B.2.3.13 String.prototype.sub() require('./_string-html')('sub', function (createHTML) { @@ -20963,7 +21393,7 @@ require('./_string-html')('sub', function (createHTML) { }; }); -},{"./_string-html":261}],405:[function(require,module,exports){ +},{"./_string-html":266}],410:[function(require,module,exports){ 'use strict'; // B.2.3.14 String.prototype.sup() require('./_string-html')('sup', function (createHTML) { @@ -20972,7 +21402,7 @@ require('./_string-html')('sup', function (createHTML) { }; }); -},{"./_string-html":261}],406:[function(require,module,exports){ +},{"./_string-html":266}],411:[function(require,module,exports){ 'use strict'; // 21.1.3.25 String.prototype.trim() require('./_string-trim')('trim', function ($trim) { @@ -20981,9 +21411,9 @@ require('./_string-trim')('trim', function ($trim) { }; }); -},{"./_string-trim":264}],407:[function(require,module,exports){ -arguments[4][153][0].apply(exports,arguments) -},{"./_an-object":163,"./_descriptors":185,"./_enum-keys":188,"./_export":189,"./_fails":191,"./_global":196,"./_has":197,"./_hide":198,"./_is-array":205,"./_library":215,"./_meta":221,"./_object-create":226,"./_object-dp":227,"./_object-gopd":230,"./_object-gopn":232,"./_object-gopn-ext":231,"./_object-gops":233,"./_object-keys":236,"./_object-pie":237,"./_property-desc":245,"./_redefine":247,"./_set-to-string-tag":254,"./_shared":256,"./_to-iobject":270,"./_to-primitive":273,"./_uid":277,"./_wks":281,"./_wks-define":279,"./_wks-ext":280,"dup":153}],408:[function(require,module,exports){ +},{"./_string-trim":269}],412:[function(require,module,exports){ +arguments[4][158][0].apply(exports,arguments) +},{"./_an-object":168,"./_descriptors":190,"./_enum-keys":193,"./_export":194,"./_fails":196,"./_global":201,"./_has":202,"./_hide":203,"./_is-array":210,"./_library":220,"./_meta":226,"./_object-create":231,"./_object-dp":232,"./_object-gopd":235,"./_object-gopn":237,"./_object-gopn-ext":236,"./_object-gops":238,"./_object-keys":241,"./_object-pie":242,"./_property-desc":250,"./_redefine":252,"./_set-to-string-tag":259,"./_shared":261,"./_to-iobject":275,"./_to-primitive":278,"./_uid":282,"./_wks":286,"./_wks-define":284,"./_wks-ext":285,"dup":158}],413:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $typed = require('./_typed'); @@ -21031,76 +21461,76 @@ $export($export.P + $export.U + $export.F * require('./_fails')(function () { require('./_set-species')(ARRAY_BUFFER); -},{"./_an-object":163,"./_export":189,"./_fails":191,"./_global":196,"./_is-object":207,"./_set-species":253,"./_species-constructor":257,"./_to-absolute-index":267,"./_to-length":271,"./_typed":276,"./_typed-buffer":275}],409:[function(require,module,exports){ +},{"./_an-object":168,"./_export":194,"./_fails":196,"./_global":201,"./_is-object":212,"./_set-species":258,"./_species-constructor":262,"./_to-absolute-index":272,"./_to-length":276,"./_typed":281,"./_typed-buffer":280}],414:[function(require,module,exports){ var $export = require('./_export'); $export($export.G + $export.W + $export.F * !require('./_typed').ABV, { DataView: require('./_typed-buffer').DataView }); -},{"./_export":189,"./_typed":276,"./_typed-buffer":275}],410:[function(require,module,exports){ +},{"./_export":194,"./_typed":281,"./_typed-buffer":280}],415:[function(require,module,exports){ require('./_typed-array')('Float32', 4, function (init) { return function Float32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],411:[function(require,module,exports){ +},{"./_typed-array":279}],416:[function(require,module,exports){ require('./_typed-array')('Float64', 8, function (init) { return function Float64Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],412:[function(require,module,exports){ +},{"./_typed-array":279}],417:[function(require,module,exports){ require('./_typed-array')('Int16', 2, function (init) { return function Int16Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],413:[function(require,module,exports){ +},{"./_typed-array":279}],418:[function(require,module,exports){ require('./_typed-array')('Int32', 4, function (init) { return function Int32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],414:[function(require,module,exports){ +},{"./_typed-array":279}],419:[function(require,module,exports){ require('./_typed-array')('Int8', 1, function (init) { return function Int8Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],415:[function(require,module,exports){ +},{"./_typed-array":279}],420:[function(require,module,exports){ require('./_typed-array')('Uint16', 2, function (init) { return function Uint16Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],416:[function(require,module,exports){ +},{"./_typed-array":279}],421:[function(require,module,exports){ require('./_typed-array')('Uint32', 4, function (init) { return function Uint32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],417:[function(require,module,exports){ +},{"./_typed-array":279}],422:[function(require,module,exports){ require('./_typed-array')('Uint8', 1, function (init) { return function Uint8Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":274}],418:[function(require,module,exports){ +},{"./_typed-array":279}],423:[function(require,module,exports){ require('./_typed-array')('Uint8', 1, function (init) { return function Uint8ClampedArray(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }, true); -},{"./_typed-array":274}],419:[function(require,module,exports){ +},{"./_typed-array":279}],424:[function(require,module,exports){ 'use strict'; var each = require('./_array-methods')(0); var redefine = require('./_redefine'); @@ -21161,7 +21591,7 @@ if (fails(function () { return new $WeakMap().set((Object.freeze || Object)(tmp) }); } -},{"./_array-methods":168,"./_collection":178,"./_collection-weak":177,"./_fails":191,"./_is-object":207,"./_meta":221,"./_object-assign":225,"./_redefine":247,"./_validate-collection":278}],420:[function(require,module,exports){ +},{"./_array-methods":173,"./_collection":183,"./_collection-weak":182,"./_fails":196,"./_is-object":212,"./_meta":226,"./_object-assign":230,"./_redefine":252,"./_validate-collection":283}],425:[function(require,module,exports){ 'use strict'; var weak = require('./_collection-weak'); var validate = require('./_validate-collection'); @@ -21177,7 +21607,7 @@ require('./_collection')(WEAK_SET, function (get) { } }, weak, false, true); -},{"./_collection":178,"./_collection-weak":177,"./_validate-collection":278}],421:[function(require,module,exports){ +},{"./_collection":183,"./_collection-weak":182,"./_validate-collection":283}],426:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatMap var $export = require('./_export'); @@ -21201,7 +21631,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatMap'); -},{"./_a-function":159,"./_add-to-unscopables":161,"./_array-species-create":171,"./_export":189,"./_flatten-into-array":194,"./_to-length":271,"./_to-object":272}],422:[function(require,module,exports){ +},{"./_a-function":164,"./_add-to-unscopables":166,"./_array-species-create":176,"./_export":194,"./_flatten-into-array":199,"./_to-length":276,"./_to-object":277}],427:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatten var $export = require('./_export'); @@ -21224,7 +21654,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatten'); -},{"./_add-to-unscopables":161,"./_array-species-create":171,"./_export":189,"./_flatten-into-array":194,"./_to-integer":269,"./_to-length":271,"./_to-object":272}],423:[function(require,module,exports){ +},{"./_add-to-unscopables":166,"./_array-species-create":176,"./_export":194,"./_flatten-into-array":199,"./_to-integer":274,"./_to-length":276,"./_to-object":277}],428:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/Array.prototype.includes var $export = require('./_export'); @@ -21238,7 +21668,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('includes'); -},{"./_add-to-unscopables":161,"./_array-includes":167,"./_export":189}],424:[function(require,module,exports){ +},{"./_add-to-unscopables":166,"./_array-includes":172,"./_export":194}],429:[function(require,module,exports){ // https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-09/sept-25.md#510-globalasap-for-enqueuing-a-microtask var $export = require('./_export'); var microtask = require('./_microtask')(); @@ -21252,7 +21682,7 @@ $export($export.G, { } }); -},{"./_cof":174,"./_export":189,"./_global":196,"./_microtask":223}],425:[function(require,module,exports){ +},{"./_cof":179,"./_export":194,"./_global":201,"./_microtask":228}],430:[function(require,module,exports){ // https://github.com/ljharb/proposal-is-error var $export = require('./_export'); var cof = require('./_cof'); @@ -21263,27 +21693,27 @@ $export($export.S, 'Error', { } }); -},{"./_cof":174,"./_export":189}],426:[function(require,module,exports){ +},{"./_cof":179,"./_export":194}],431:[function(require,module,exports){ // https://github.com/tc39/proposal-global var $export = require('./_export'); $export($export.G, { global: require('./_global') }); -},{"./_export":189,"./_global":196}],427:[function(require,module,exports){ +},{"./_export":194,"./_global":201}],432:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-map.from require('./_set-collection-from')('Map'); -},{"./_set-collection-from":250}],428:[function(require,module,exports){ +},{"./_set-collection-from":255}],433:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-map.of require('./_set-collection-of')('Map'); -},{"./_set-collection-of":251}],429:[function(require,module,exports){ +},{"./_set-collection-of":256}],434:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var $export = require('./_export'); $export($export.P + $export.R, 'Map', { toJSON: require('./_collection-to-json')('Map') }); -},{"./_collection-to-json":176,"./_export":189}],430:[function(require,module,exports){ +},{"./_collection-to-json":181,"./_export":194}],435:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); @@ -21293,13 +21723,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],431:[function(require,module,exports){ +},{"./_export":194}],436:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); $export($export.S, 'Math', { DEG_PER_RAD: Math.PI / 180 }); -},{"./_export":189}],432:[function(require,module,exports){ +},{"./_export":194}],437:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); var RAD_PER_DEG = 180 / Math.PI; @@ -21310,7 +21740,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],433:[function(require,module,exports){ +},{"./_export":194}],438:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); var scale = require('./_math-scale'); @@ -21322,7 +21752,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189,"./_math-fround":217,"./_math-scale":219}],434:[function(require,module,exports){ +},{"./_export":194,"./_math-fround":222,"./_math-scale":224}],439:[function(require,module,exports){ // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 var $export = require('./_export'); @@ -21335,7 +21765,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],435:[function(require,module,exports){ +},{"./_export":194}],440:[function(require,module,exports){ // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 var $export = require('./_export'); @@ -21353,7 +21783,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],436:[function(require,module,exports){ +},{"./_export":194}],441:[function(require,module,exports){ // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 var $export = require('./_export'); @@ -21366,13 +21796,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],437:[function(require,module,exports){ +},{"./_export":194}],442:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); $export($export.S, 'Math', { RAD_PER_DEG: 180 / Math.PI }); -},{"./_export":189}],438:[function(require,module,exports){ +},{"./_export":194}],443:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); var DEG_PER_RAD = Math.PI / 180; @@ -21383,13 +21813,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],439:[function(require,module,exports){ +},{"./_export":194}],444:[function(require,module,exports){ // https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); $export($export.S, 'Math', { scale: require('./_math-scale') }); -},{"./_export":189,"./_math-scale":219}],440:[function(require,module,exports){ +},{"./_export":194,"./_math-scale":224}],445:[function(require,module,exports){ // http://jfbastien.github.io/papers/Math.signbit.html var $export = require('./_export'); @@ -21398,7 +21828,7 @@ $export($export.S, 'Math', { signbit: function signbit(x) { return (x = +x) != x ? x : x == 0 ? 1 / x == Infinity : x > 0; } }); -},{"./_export":189}],441:[function(require,module,exports){ +},{"./_export":194}],446:[function(require,module,exports){ // https://gist.github.com/BrendanEich/4294d5c212a6d2254703 var $export = require('./_export'); @@ -21416,7 +21846,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":189}],442:[function(require,module,exports){ +},{"./_export":194}],447:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toObject = require('./_to-object'); @@ -21430,7 +21860,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_a-function":159,"./_descriptors":185,"./_export":189,"./_object-dp":227,"./_object-forced-pam":229,"./_to-object":272}],443:[function(require,module,exports){ +},{"./_a-function":164,"./_descriptors":190,"./_export":194,"./_object-dp":232,"./_object-forced-pam":234,"./_to-object":277}],448:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toObject = require('./_to-object'); @@ -21444,7 +21874,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_a-function":159,"./_descriptors":185,"./_export":189,"./_object-dp":227,"./_object-forced-pam":229,"./_to-object":272}],444:[function(require,module,exports){ +},{"./_a-function":164,"./_descriptors":190,"./_export":194,"./_object-dp":232,"./_object-forced-pam":234,"./_to-object":277}],449:[function(require,module,exports){ // https://github.com/tc39/proposal-object-values-entries var $export = require('./_export'); var $entries = require('./_object-to-array')(true); @@ -21455,7 +21885,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":189,"./_object-to-array":239}],445:[function(require,module,exports){ +},{"./_export":194,"./_object-to-array":244}],450:[function(require,module,exports){ // https://github.com/tc39/proposal-object-getownpropertydescriptors var $export = require('./_export'); var ownKeys = require('./_own-keys'); @@ -21479,7 +21909,7 @@ $export($export.S, 'Object', { } }); -},{"./_create-property":180,"./_export":189,"./_object-gopd":230,"./_own-keys":240,"./_to-iobject":270}],446:[function(require,module,exports){ +},{"./_create-property":185,"./_export":194,"./_object-gopd":235,"./_own-keys":245,"./_to-iobject":275}],451:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toObject = require('./_to-object'); @@ -21499,7 +21929,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_descriptors":185,"./_export":189,"./_object-forced-pam":229,"./_object-gopd":230,"./_object-gpo":234,"./_to-object":272,"./_to-primitive":273}],447:[function(require,module,exports){ +},{"./_descriptors":190,"./_export":194,"./_object-forced-pam":234,"./_object-gopd":235,"./_object-gpo":239,"./_to-object":277,"./_to-primitive":278}],452:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toObject = require('./_to-object'); @@ -21519,7 +21949,7 @@ require('./_descriptors') && $export($export.P + require('./_object-forced-pam') } }); -},{"./_descriptors":185,"./_export":189,"./_object-forced-pam":229,"./_object-gopd":230,"./_object-gpo":234,"./_to-object":272,"./_to-primitive":273}],448:[function(require,module,exports){ +},{"./_descriptors":190,"./_export":194,"./_object-forced-pam":234,"./_object-gopd":235,"./_object-gpo":239,"./_to-object":277,"./_to-primitive":278}],453:[function(require,module,exports){ // https://github.com/tc39/proposal-object-values-entries var $export = require('./_export'); var $values = require('./_object-to-array')(false); @@ -21530,7 +21960,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":189,"./_object-to-array":239}],449:[function(require,module,exports){ +},{"./_export":194,"./_object-to-array":244}],454:[function(require,module,exports){ 'use strict'; // https://github.com/zenparsing/es-observable var $export = require('./_export'); @@ -21731,11 +22161,11 @@ $export($export.G, { Observable: $Observable }); require('./_set-species')('Observable'); -},{"./_a-function":159,"./_an-instance":162,"./_an-object":163,"./_core":179,"./_export":189,"./_for-of":195,"./_global":196,"./_hide":198,"./_microtask":223,"./_redefine-all":246,"./_set-species":253,"./_wks":281}],450:[function(require,module,exports){ -arguments[4][154][0].apply(exports,arguments) -},{"./_core":179,"./_export":189,"./_global":196,"./_promise-resolve":244,"./_species-constructor":257,"dup":154}],451:[function(require,module,exports){ -arguments[4][155][0].apply(exports,arguments) -},{"./_export":189,"./_new-promise-capability":224,"./_perform":243,"dup":155}],452:[function(require,module,exports){ +},{"./_a-function":164,"./_an-instance":167,"./_an-object":168,"./_core":184,"./_export":194,"./_for-of":200,"./_global":201,"./_hide":203,"./_microtask":228,"./_redefine-all":251,"./_set-species":258,"./_wks":286}],455:[function(require,module,exports){ +arguments[4][159][0].apply(exports,arguments) +},{"./_core":184,"./_export":194,"./_global":201,"./_promise-resolve":249,"./_species-constructor":262,"dup":159}],456:[function(require,module,exports){ +arguments[4][160][0].apply(exports,arguments) +},{"./_export":194,"./_new-promise-capability":229,"./_perform":248,"dup":160}],457:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var toMetaKey = metadata.key; @@ -21745,7 +22175,7 @@ metadata.exp({ defineMetadata: function defineMetadata(metadataKey, metadataValu ordinaryDefineOwnMetadata(metadataKey, metadataValue, anObject(target), toMetaKey(targetKey)); } }); -},{"./_an-object":163,"./_metadata":222}],453:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227}],458:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var toMetaKey = metadata.key; @@ -21762,7 +22192,7 @@ metadata.exp({ deleteMetadata: function deleteMetadata(metadataKey, target /* , return !!targetMetadata.size || store['delete'](target); } }); -},{"./_an-object":163,"./_metadata":222}],454:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227}],459:[function(require,module,exports){ var Set = require('./es6.set'); var from = require('./_array-from-iterable'); var metadata = require('./_metadata'); @@ -21783,7 +22213,7 @@ metadata.exp({ getMetadataKeys: function getMetadataKeys(target /* , targetKey * return ordinaryMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); } }); -},{"./_an-object":163,"./_array-from-iterable":166,"./_metadata":222,"./_object-gpo":234,"./es6.set":384}],455:[function(require,module,exports){ +},{"./_an-object":168,"./_array-from-iterable":171,"./_metadata":227,"./_object-gpo":239,"./es6.set":389}],460:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var getPrototypeOf = require('./_object-gpo'); @@ -21802,7 +22232,7 @@ metadata.exp({ getMetadata: function getMetadata(metadataKey, target /* , target return ordinaryGetMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":163,"./_metadata":222,"./_object-gpo":234}],456:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227,"./_object-gpo":239}],461:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var ordinaryOwnMetadataKeys = metadata.keys; @@ -21812,7 +22242,7 @@ metadata.exp({ getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targe return ordinaryOwnMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); } }); -},{"./_an-object":163,"./_metadata":222}],457:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227}],462:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var ordinaryGetOwnMetadata = metadata.get; @@ -21823,7 +22253,7 @@ metadata.exp({ getOwnMetadata: function getOwnMetadata(metadataKey, target /* , , arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":163,"./_metadata":222}],458:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227}],463:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var getPrototypeOf = require('./_object-gpo'); @@ -21841,7 +22271,7 @@ metadata.exp({ hasMetadata: function hasMetadata(metadataKey, target /* , target return ordinaryHasMetadata(metadataKey, anObject(target), arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":163,"./_metadata":222,"./_object-gpo":234}],459:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227,"./_object-gpo":239}],464:[function(require,module,exports){ var metadata = require('./_metadata'); var anObject = require('./_an-object'); var ordinaryHasOwnMetadata = metadata.has; @@ -21852,7 +22282,7 @@ metadata.exp({ hasOwnMetadata: function hasOwnMetadata(metadataKey, target /* , , arguments.length < 3 ? undefined : toMetaKey(arguments[2])); } }); -},{"./_an-object":163,"./_metadata":222}],460:[function(require,module,exports){ +},{"./_an-object":168,"./_metadata":227}],465:[function(require,module,exports){ var $metadata = require('./_metadata'); var anObject = require('./_an-object'); var aFunction = require('./_a-function'); @@ -21869,21 +22299,21 @@ $metadata.exp({ metadata: function metadata(metadataKey, metadataValue) { }; } }); -},{"./_a-function":159,"./_an-object":163,"./_metadata":222}],461:[function(require,module,exports){ +},{"./_a-function":164,"./_an-object":168,"./_metadata":227}],466:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-set.from require('./_set-collection-from')('Set'); -},{"./_set-collection-from":250}],462:[function(require,module,exports){ +},{"./_set-collection-from":255}],467:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-set.of require('./_set-collection-of')('Set'); -},{"./_set-collection-of":251}],463:[function(require,module,exports){ +},{"./_set-collection-of":256}],468:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var $export = require('./_export'); $export($export.P + $export.R, 'Set', { toJSON: require('./_collection-to-json')('Set') }); -},{"./_collection-to-json":176,"./_export":189}],464:[function(require,module,exports){ +},{"./_collection-to-json":181,"./_export":194}],469:[function(require,module,exports){ 'use strict'; // https://github.com/mathiasbynens/String.prototype.at var $export = require('./_export'); @@ -21895,7 +22325,7 @@ $export($export.P, 'String', { } }); -},{"./_export":189,"./_string-at":259}],465:[function(require,module,exports){ +},{"./_export":194,"./_string-at":264}],470:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/String.prototype.matchAll/ var $export = require('./_export'); @@ -21927,7 +22357,7 @@ $export($export.P, 'String', { } }); -},{"./_defined":184,"./_export":189,"./_flags":193,"./_is-regexp":208,"./_iter-create":210,"./_to-length":271}],466:[function(require,module,exports){ +},{"./_defined":189,"./_export":194,"./_flags":198,"./_is-regexp":213,"./_iter-create":215,"./_to-length":276}],471:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end var $export = require('./_export'); @@ -21939,7 +22369,7 @@ $export($export.P, 'String', { } }); -},{"./_export":189,"./_string-pad":262}],467:[function(require,module,exports){ +},{"./_export":194,"./_string-pad":267}],472:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end var $export = require('./_export'); @@ -21951,7 +22381,7 @@ $export($export.P, 'String', { } }); -},{"./_export":189,"./_string-pad":262}],468:[function(require,module,exports){ +},{"./_export":194,"./_string-pad":267}],473:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim require('./_string-trim')('trimLeft', function ($trim) { @@ -21960,7 +22390,7 @@ require('./_string-trim')('trimLeft', function ($trim) { }; }, 'trimStart'); -},{"./_string-trim":264}],469:[function(require,module,exports){ +},{"./_string-trim":269}],474:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim require('./_string-trim')('trimRight', function ($trim) { @@ -21969,33 +22399,33 @@ require('./_string-trim')('trimRight', function ($trim) { }; }, 'trimEnd'); -},{"./_string-trim":264}],470:[function(require,module,exports){ -arguments[4][156][0].apply(exports,arguments) -},{"./_wks-define":279,"dup":156}],471:[function(require,module,exports){ -arguments[4][157][0].apply(exports,arguments) -},{"./_wks-define":279,"dup":157}],472:[function(require,module,exports){ +},{"./_string-trim":269}],475:[function(require,module,exports){ +arguments[4][161][0].apply(exports,arguments) +},{"./_wks-define":284,"dup":161}],476:[function(require,module,exports){ +arguments[4][162][0].apply(exports,arguments) +},{"./_wks-define":284,"dup":162}],477:[function(require,module,exports){ // https://github.com/tc39/proposal-global var $export = require('./_export'); $export($export.S, 'System', { global: require('./_global') }); -},{"./_export":189,"./_global":196}],473:[function(require,module,exports){ +},{"./_export":194,"./_global":201}],478:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.from require('./_set-collection-from')('WeakMap'); -},{"./_set-collection-from":250}],474:[function(require,module,exports){ +},{"./_set-collection-from":255}],479:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.of require('./_set-collection-of')('WeakMap'); -},{"./_set-collection-of":251}],475:[function(require,module,exports){ +},{"./_set-collection-of":256}],480:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.from require('./_set-collection-from')('WeakSet'); -},{"./_set-collection-from":250}],476:[function(require,module,exports){ +},{"./_set-collection-from":255}],481:[function(require,module,exports){ // https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.of require('./_set-collection-of')('WeakSet'); -},{"./_set-collection-of":251}],477:[function(require,module,exports){ +},{"./_set-collection-of":256}],482:[function(require,module,exports){ var $iterators = require('./es6.array.iterator'); var getKeys = require('./_object-keys'); var redefine = require('./_redefine'); @@ -22055,7 +22485,7 @@ for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++ } } -},{"./_global":196,"./_hide":198,"./_iterators":214,"./_object-keys":236,"./_redefine":247,"./_wks":281,"./es6.array.iterator":294}],478:[function(require,module,exports){ +},{"./_global":201,"./_hide":203,"./_iterators":219,"./_object-keys":241,"./_redefine":252,"./_wks":286,"./es6.array.iterator":299}],483:[function(require,module,exports){ var $export = require('./_export'); var $task = require('./_task'); $export($export.G + $export.B, { @@ -22063,7 +22493,7 @@ $export($export.G + $export.B, { clearImmediate: $task.clear }); -},{"./_export":189,"./_task":266}],479:[function(require,module,exports){ +},{"./_export":194,"./_task":271}],484:[function(require,module,exports){ // ie9- setTimeout & setInterval additional parameters fix var global = require('./_global'); var $export = require('./_export'); @@ -22085,7 +22515,7 @@ $export($export.G + $export.B + $export.F * MSIE, { setInterval: wrap(global.setInterval) }); -},{"./_export":189,"./_global":196}],480:[function(require,module,exports){ +},{"./_export":194,"./_global":201}],485:[function(require,module,exports){ require('./modules/es6.symbol'); require('./modules/es6.object.create'); require('./modules/es6.object.define-property'); @@ -22284,7 +22714,7 @@ require('./modules/web.immediate'); require('./modules/web.dom.iterable'); module.exports = require('./modules/_core'); -},{"./modules/_core":179,"./modules/es6.array.copy-within":284,"./modules/es6.array.every":285,"./modules/es6.array.fill":286,"./modules/es6.array.filter":287,"./modules/es6.array.find":289,"./modules/es6.array.find-index":288,"./modules/es6.array.for-each":290,"./modules/es6.array.from":291,"./modules/es6.array.index-of":292,"./modules/es6.array.is-array":293,"./modules/es6.array.iterator":294,"./modules/es6.array.join":295,"./modules/es6.array.last-index-of":296,"./modules/es6.array.map":297,"./modules/es6.array.of":298,"./modules/es6.array.reduce":300,"./modules/es6.array.reduce-right":299,"./modules/es6.array.slice":301,"./modules/es6.array.some":302,"./modules/es6.array.sort":303,"./modules/es6.array.species":304,"./modules/es6.date.now":305,"./modules/es6.date.to-iso-string":306,"./modules/es6.date.to-json":307,"./modules/es6.date.to-primitive":308,"./modules/es6.date.to-string":309,"./modules/es6.function.bind":310,"./modules/es6.function.has-instance":311,"./modules/es6.function.name":312,"./modules/es6.map":313,"./modules/es6.math.acosh":314,"./modules/es6.math.asinh":315,"./modules/es6.math.atanh":316,"./modules/es6.math.cbrt":317,"./modules/es6.math.clz32":318,"./modules/es6.math.cosh":319,"./modules/es6.math.expm1":320,"./modules/es6.math.fround":321,"./modules/es6.math.hypot":322,"./modules/es6.math.imul":323,"./modules/es6.math.log10":324,"./modules/es6.math.log1p":325,"./modules/es6.math.log2":326,"./modules/es6.math.sign":327,"./modules/es6.math.sinh":328,"./modules/es6.math.tanh":329,"./modules/es6.math.trunc":330,"./modules/es6.number.constructor":331,"./modules/es6.number.epsilon":332,"./modules/es6.number.is-finite":333,"./modules/es6.number.is-integer":334,"./modules/es6.number.is-nan":335,"./modules/es6.number.is-safe-integer":336,"./modules/es6.number.max-safe-integer":337,"./modules/es6.number.min-safe-integer":338,"./modules/es6.number.parse-float":339,"./modules/es6.number.parse-int":340,"./modules/es6.number.to-fixed":341,"./modules/es6.number.to-precision":342,"./modules/es6.object.assign":343,"./modules/es6.object.create":344,"./modules/es6.object.define-properties":345,"./modules/es6.object.define-property":346,"./modules/es6.object.freeze":347,"./modules/es6.object.get-own-property-descriptor":348,"./modules/es6.object.get-own-property-names":349,"./modules/es6.object.get-prototype-of":350,"./modules/es6.object.is":354,"./modules/es6.object.is-extensible":351,"./modules/es6.object.is-frozen":352,"./modules/es6.object.is-sealed":353,"./modules/es6.object.keys":355,"./modules/es6.object.prevent-extensions":356,"./modules/es6.object.seal":357,"./modules/es6.object.set-prototype-of":358,"./modules/es6.object.to-string":359,"./modules/es6.parse-float":360,"./modules/es6.parse-int":361,"./modules/es6.promise":362,"./modules/es6.reflect.apply":363,"./modules/es6.reflect.construct":364,"./modules/es6.reflect.define-property":365,"./modules/es6.reflect.delete-property":366,"./modules/es6.reflect.enumerate":367,"./modules/es6.reflect.get":370,"./modules/es6.reflect.get-own-property-descriptor":368,"./modules/es6.reflect.get-prototype-of":369,"./modules/es6.reflect.has":371,"./modules/es6.reflect.is-extensible":372,"./modules/es6.reflect.own-keys":373,"./modules/es6.reflect.prevent-extensions":374,"./modules/es6.reflect.set":376,"./modules/es6.reflect.set-prototype-of":375,"./modules/es6.regexp.constructor":377,"./modules/es6.regexp.flags":378,"./modules/es6.regexp.match":379,"./modules/es6.regexp.replace":380,"./modules/es6.regexp.search":381,"./modules/es6.regexp.split":382,"./modules/es6.regexp.to-string":383,"./modules/es6.set":384,"./modules/es6.string.anchor":385,"./modules/es6.string.big":386,"./modules/es6.string.blink":387,"./modules/es6.string.bold":388,"./modules/es6.string.code-point-at":389,"./modules/es6.string.ends-with":390,"./modules/es6.string.fixed":391,"./modules/es6.string.fontcolor":392,"./modules/es6.string.fontsize":393,"./modules/es6.string.from-code-point":394,"./modules/es6.string.includes":395,"./modules/es6.string.italics":396,"./modules/es6.string.iterator":397,"./modules/es6.string.link":398,"./modules/es6.string.raw":399,"./modules/es6.string.repeat":400,"./modules/es6.string.small":401,"./modules/es6.string.starts-with":402,"./modules/es6.string.strike":403,"./modules/es6.string.sub":404,"./modules/es6.string.sup":405,"./modules/es6.string.trim":406,"./modules/es6.symbol":407,"./modules/es6.typed.array-buffer":408,"./modules/es6.typed.data-view":409,"./modules/es6.typed.float32-array":410,"./modules/es6.typed.float64-array":411,"./modules/es6.typed.int16-array":412,"./modules/es6.typed.int32-array":413,"./modules/es6.typed.int8-array":414,"./modules/es6.typed.uint16-array":415,"./modules/es6.typed.uint32-array":416,"./modules/es6.typed.uint8-array":417,"./modules/es6.typed.uint8-clamped-array":418,"./modules/es6.weak-map":419,"./modules/es6.weak-set":420,"./modules/es7.array.flat-map":421,"./modules/es7.array.flatten":422,"./modules/es7.array.includes":423,"./modules/es7.asap":424,"./modules/es7.error.is-error":425,"./modules/es7.global":426,"./modules/es7.map.from":427,"./modules/es7.map.of":428,"./modules/es7.map.to-json":429,"./modules/es7.math.clamp":430,"./modules/es7.math.deg-per-rad":431,"./modules/es7.math.degrees":432,"./modules/es7.math.fscale":433,"./modules/es7.math.iaddh":434,"./modules/es7.math.imulh":435,"./modules/es7.math.isubh":436,"./modules/es7.math.rad-per-deg":437,"./modules/es7.math.radians":438,"./modules/es7.math.scale":439,"./modules/es7.math.signbit":440,"./modules/es7.math.umulh":441,"./modules/es7.object.define-getter":442,"./modules/es7.object.define-setter":443,"./modules/es7.object.entries":444,"./modules/es7.object.get-own-property-descriptors":445,"./modules/es7.object.lookup-getter":446,"./modules/es7.object.lookup-setter":447,"./modules/es7.object.values":448,"./modules/es7.observable":449,"./modules/es7.promise.finally":450,"./modules/es7.promise.try":451,"./modules/es7.reflect.define-metadata":452,"./modules/es7.reflect.delete-metadata":453,"./modules/es7.reflect.get-metadata":455,"./modules/es7.reflect.get-metadata-keys":454,"./modules/es7.reflect.get-own-metadata":457,"./modules/es7.reflect.get-own-metadata-keys":456,"./modules/es7.reflect.has-metadata":458,"./modules/es7.reflect.has-own-metadata":459,"./modules/es7.reflect.metadata":460,"./modules/es7.set.from":461,"./modules/es7.set.of":462,"./modules/es7.set.to-json":463,"./modules/es7.string.at":464,"./modules/es7.string.match-all":465,"./modules/es7.string.pad-end":466,"./modules/es7.string.pad-start":467,"./modules/es7.string.trim-left":468,"./modules/es7.string.trim-right":469,"./modules/es7.symbol.async-iterator":470,"./modules/es7.symbol.observable":471,"./modules/es7.system.global":472,"./modules/es7.weak-map.from":473,"./modules/es7.weak-map.of":474,"./modules/es7.weak-set.from":475,"./modules/es7.weak-set.of":476,"./modules/web.dom.iterable":477,"./modules/web.immediate":478,"./modules/web.timers":479}],481:[function(require,module,exports){ +},{"./modules/_core":184,"./modules/es6.array.copy-within":289,"./modules/es6.array.every":290,"./modules/es6.array.fill":291,"./modules/es6.array.filter":292,"./modules/es6.array.find":294,"./modules/es6.array.find-index":293,"./modules/es6.array.for-each":295,"./modules/es6.array.from":296,"./modules/es6.array.index-of":297,"./modules/es6.array.is-array":298,"./modules/es6.array.iterator":299,"./modules/es6.array.join":300,"./modules/es6.array.last-index-of":301,"./modules/es6.array.map":302,"./modules/es6.array.of":303,"./modules/es6.array.reduce":305,"./modules/es6.array.reduce-right":304,"./modules/es6.array.slice":306,"./modules/es6.array.some":307,"./modules/es6.array.sort":308,"./modules/es6.array.species":309,"./modules/es6.date.now":310,"./modules/es6.date.to-iso-string":311,"./modules/es6.date.to-json":312,"./modules/es6.date.to-primitive":313,"./modules/es6.date.to-string":314,"./modules/es6.function.bind":315,"./modules/es6.function.has-instance":316,"./modules/es6.function.name":317,"./modules/es6.map":318,"./modules/es6.math.acosh":319,"./modules/es6.math.asinh":320,"./modules/es6.math.atanh":321,"./modules/es6.math.cbrt":322,"./modules/es6.math.clz32":323,"./modules/es6.math.cosh":324,"./modules/es6.math.expm1":325,"./modules/es6.math.fround":326,"./modules/es6.math.hypot":327,"./modules/es6.math.imul":328,"./modules/es6.math.log10":329,"./modules/es6.math.log1p":330,"./modules/es6.math.log2":331,"./modules/es6.math.sign":332,"./modules/es6.math.sinh":333,"./modules/es6.math.tanh":334,"./modules/es6.math.trunc":335,"./modules/es6.number.constructor":336,"./modules/es6.number.epsilon":337,"./modules/es6.number.is-finite":338,"./modules/es6.number.is-integer":339,"./modules/es6.number.is-nan":340,"./modules/es6.number.is-safe-integer":341,"./modules/es6.number.max-safe-integer":342,"./modules/es6.number.min-safe-integer":343,"./modules/es6.number.parse-float":344,"./modules/es6.number.parse-int":345,"./modules/es6.number.to-fixed":346,"./modules/es6.number.to-precision":347,"./modules/es6.object.assign":348,"./modules/es6.object.create":349,"./modules/es6.object.define-properties":350,"./modules/es6.object.define-property":351,"./modules/es6.object.freeze":352,"./modules/es6.object.get-own-property-descriptor":353,"./modules/es6.object.get-own-property-names":354,"./modules/es6.object.get-prototype-of":355,"./modules/es6.object.is":359,"./modules/es6.object.is-extensible":356,"./modules/es6.object.is-frozen":357,"./modules/es6.object.is-sealed":358,"./modules/es6.object.keys":360,"./modules/es6.object.prevent-extensions":361,"./modules/es6.object.seal":362,"./modules/es6.object.set-prototype-of":363,"./modules/es6.object.to-string":364,"./modules/es6.parse-float":365,"./modules/es6.parse-int":366,"./modules/es6.promise":367,"./modules/es6.reflect.apply":368,"./modules/es6.reflect.construct":369,"./modules/es6.reflect.define-property":370,"./modules/es6.reflect.delete-property":371,"./modules/es6.reflect.enumerate":372,"./modules/es6.reflect.get":375,"./modules/es6.reflect.get-own-property-descriptor":373,"./modules/es6.reflect.get-prototype-of":374,"./modules/es6.reflect.has":376,"./modules/es6.reflect.is-extensible":377,"./modules/es6.reflect.own-keys":378,"./modules/es6.reflect.prevent-extensions":379,"./modules/es6.reflect.set":381,"./modules/es6.reflect.set-prototype-of":380,"./modules/es6.regexp.constructor":382,"./modules/es6.regexp.flags":383,"./modules/es6.regexp.match":384,"./modules/es6.regexp.replace":385,"./modules/es6.regexp.search":386,"./modules/es6.regexp.split":387,"./modules/es6.regexp.to-string":388,"./modules/es6.set":389,"./modules/es6.string.anchor":390,"./modules/es6.string.big":391,"./modules/es6.string.blink":392,"./modules/es6.string.bold":393,"./modules/es6.string.code-point-at":394,"./modules/es6.string.ends-with":395,"./modules/es6.string.fixed":396,"./modules/es6.string.fontcolor":397,"./modules/es6.string.fontsize":398,"./modules/es6.string.from-code-point":399,"./modules/es6.string.includes":400,"./modules/es6.string.italics":401,"./modules/es6.string.iterator":402,"./modules/es6.string.link":403,"./modules/es6.string.raw":404,"./modules/es6.string.repeat":405,"./modules/es6.string.small":406,"./modules/es6.string.starts-with":407,"./modules/es6.string.strike":408,"./modules/es6.string.sub":409,"./modules/es6.string.sup":410,"./modules/es6.string.trim":411,"./modules/es6.symbol":412,"./modules/es6.typed.array-buffer":413,"./modules/es6.typed.data-view":414,"./modules/es6.typed.float32-array":415,"./modules/es6.typed.float64-array":416,"./modules/es6.typed.int16-array":417,"./modules/es6.typed.int32-array":418,"./modules/es6.typed.int8-array":419,"./modules/es6.typed.uint16-array":420,"./modules/es6.typed.uint32-array":421,"./modules/es6.typed.uint8-array":422,"./modules/es6.typed.uint8-clamped-array":423,"./modules/es6.weak-map":424,"./modules/es6.weak-set":425,"./modules/es7.array.flat-map":426,"./modules/es7.array.flatten":427,"./modules/es7.array.includes":428,"./modules/es7.asap":429,"./modules/es7.error.is-error":430,"./modules/es7.global":431,"./modules/es7.map.from":432,"./modules/es7.map.of":433,"./modules/es7.map.to-json":434,"./modules/es7.math.clamp":435,"./modules/es7.math.deg-per-rad":436,"./modules/es7.math.degrees":437,"./modules/es7.math.fscale":438,"./modules/es7.math.iaddh":439,"./modules/es7.math.imulh":440,"./modules/es7.math.isubh":441,"./modules/es7.math.rad-per-deg":442,"./modules/es7.math.radians":443,"./modules/es7.math.scale":444,"./modules/es7.math.signbit":445,"./modules/es7.math.umulh":446,"./modules/es7.object.define-getter":447,"./modules/es7.object.define-setter":448,"./modules/es7.object.entries":449,"./modules/es7.object.get-own-property-descriptors":450,"./modules/es7.object.lookup-getter":451,"./modules/es7.object.lookup-setter":452,"./modules/es7.object.values":453,"./modules/es7.observable":454,"./modules/es7.promise.finally":455,"./modules/es7.promise.try":456,"./modules/es7.reflect.define-metadata":457,"./modules/es7.reflect.delete-metadata":458,"./modules/es7.reflect.get-metadata":460,"./modules/es7.reflect.get-metadata-keys":459,"./modules/es7.reflect.get-own-metadata":462,"./modules/es7.reflect.get-own-metadata-keys":461,"./modules/es7.reflect.has-metadata":463,"./modules/es7.reflect.has-own-metadata":464,"./modules/es7.reflect.metadata":465,"./modules/es7.set.from":466,"./modules/es7.set.of":467,"./modules/es7.set.to-json":468,"./modules/es7.string.at":469,"./modules/es7.string.match-all":470,"./modules/es7.string.pad-end":471,"./modules/es7.string.pad-start":472,"./modules/es7.string.trim-left":473,"./modules/es7.string.trim-right":474,"./modules/es7.symbol.async-iterator":475,"./modules/es7.symbol.observable":476,"./modules/es7.system.global":477,"./modules/es7.weak-map.from":478,"./modules/es7.weak-map.of":479,"./modules/es7.weak-set.from":480,"./modules/es7.weak-set.of":481,"./modules/web.dom.iterable":482,"./modules/web.immediate":483,"./modules/web.timers":484}],486:[function(require,module,exports){ (function (Buffer){ // Copyright Joyent, Inc. and other Node contributors. // @@ -22395,7 +22825,7 @@ function objectToString(o) { } }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":521}],482:[function(require,module,exports){ +},{"../../is-buffer/index.js":532}],487:[function(require,module,exports){ ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS @@ -22628,7 +23058,7 @@ function objectToString(o) { return CryptoJS.AES; })); -},{"./cipher-core":483,"./core":484,"./enc-base64":485,"./evpkdf":487,"./md5":489}],483:[function(require,module,exports){ +},{"./cipher-core":488,"./core":489,"./enc-base64":490,"./evpkdf":492,"./md5":494}],488:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -23504,7 +23934,7 @@ function objectToString(o) { })); -},{"./core":484}],484:[function(require,module,exports){ +},{"./core":489}],489:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24265,7 +24695,7 @@ function objectToString(o) { return CryptoJS; })); -},{}],485:[function(require,module,exports){ +},{}],490:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24401,7 +24831,7 @@ function objectToString(o) { return CryptoJS.enc.Base64; })); -},{"./core":484}],486:[function(require,module,exports){ +},{"./core":489}],491:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24420,7 +24850,7 @@ function objectToString(o) { return CryptoJS.enc.Utf8; })); -},{"./core":484}],487:[function(require,module,exports){ +},{"./core":489}],492:[function(require,module,exports){ ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS @@ -24553,7 +24983,7 @@ function objectToString(o) { return CryptoJS.EvpKDF; })); -},{"./core":484,"./hmac":488,"./sha1":490}],488:[function(require,module,exports){ +},{"./core":489,"./hmac":493,"./sha1":495}],493:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24697,7 +25127,7 @@ function objectToString(o) { })); -},{"./core":484}],489:[function(require,module,exports){ +},{"./core":489}],494:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24966,7 +25396,7 @@ function objectToString(o) { return CryptoJS.MD5; })); -},{"./core":484}],490:[function(require,module,exports){ +},{"./core":489}],495:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -25117,7 +25547,7 @@ function objectToString(o) { return CryptoJS.SHA1; })); -},{"./core":484}],491:[function(require,module,exports){ +},{"./core":489}],496:[function(require,module,exports){ 'use strict'; /** @@ -25416,12 +25846,12 @@ IdleQueue.prototype = { }; module.exports = IdleQueue; -},{"./util":493}],492:[function(require,module,exports){ +},{"./util":498}],497:[function(require,module,exports){ 'use strict'; var IdleQueue = require('./idle-queue'); module.exports = IdleQueue; -},{"./idle-queue":491}],493:[function(require,module,exports){ +},{"./idle-queue":496}],498:[function(require,module,exports){ "use strict"; module.exports = function () { @@ -25439,7 +25869,7 @@ module.exports = function () { return exports; }(); -},{}],494:[function(require,module,exports){ +},{}],499:[function(require,module,exports){ (function (process){ /** * This is the web browser implementation of `debug()`. @@ -25628,7 +26058,7 @@ function localstorage() { } }).call(this,require('_process')) -},{"./debug":495,"_process":599}],495:[function(require,module,exports){ +},{"./debug":500,"_process":599}],500:[function(require,module,exports){ /** * This is the common logic for both the Node.js and web browser @@ -25832,7 +26262,7 @@ function coerce(val) { return val; } -},{"ms":566}],496:[function(require,module,exports){ +},{"ms":564}],501:[function(require,module,exports){ var pSlice = Array.prototype.slice; var objectKeys = require('./lib/keys.js'); var isArguments = require('./lib/is_arguments.js'); @@ -25928,7 +26358,7 @@ function objEquiv(a, b, opts) { return typeof a === typeof b; } -},{"./lib/is_arguments.js":497,"./lib/keys.js":498}],497:[function(require,module,exports){ +},{"./lib/is_arguments.js":502,"./lib/keys.js":503}],502:[function(require,module,exports){ var supportsArgumentsClass = (function(){ return Object.prototype.toString.call(arguments) })() == '[object Arguments]'; @@ -25950,7 +26380,7 @@ function unsupported(object){ false; }; -},{}],498:[function(require,module,exports){ +},{}],503:[function(require,module,exports){ exports = module.exports = typeof Object.keys === 'function' ? Object.keys : shim; @@ -25961,7 +26391,7 @@ function shim (obj) { return keys; } -},{}],499:[function(require,module,exports){ +},{}],504:[function(require,module,exports){ var util = require('util') , AbstractIterator = require('abstract-leveldown').AbstractIterator @@ -25997,7 +26427,7 @@ DeferredIterator.prototype._operation = function (method, args) { module.exports = DeferredIterator; -},{"abstract-leveldown":504,"util":784}],500:[function(require,module,exports){ +},{"abstract-leveldown":509,"util":725}],505:[function(require,module,exports){ (function (Buffer,process){ var util = require('util') , AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN @@ -26057,7 +26487,7 @@ module.exports = DeferredLevelDOWN module.exports.DeferredIterator = DeferredIterator }).call(this,{"isBuffer":require("../is-buffer/index.js")},require('_process')) -},{"../is-buffer/index.js":521,"./deferred-iterator":499,"_process":599,"abstract-leveldown":504,"util":784}],501:[function(require,module,exports){ +},{"../is-buffer/index.js":532,"./deferred-iterator":504,"_process":599,"abstract-leveldown":509,"util":725}],506:[function(require,module,exports){ (function (process){ /* Copyright (c) 2017 Rod Vagg, MIT License */ @@ -26149,7 +26579,7 @@ AbstractChainedBatch.prototype.write = function (options, callback) { module.exports = AbstractChainedBatch }).call(this,require('_process')) -},{"_process":599}],502:[function(require,module,exports){ +},{"_process":599}],507:[function(require,module,exports){ (function (process){ /* Copyright (c) 2017 Rod Vagg, MIT License */ @@ -26202,7 +26632,7 @@ AbstractIterator.prototype.end = function (callback) { module.exports = AbstractIterator }).call(this,require('_process')) -},{"_process":599}],503:[function(require,module,exports){ +},{"_process":599}],508:[function(require,module,exports){ (function (Buffer,process){ /* Copyright (c) 2017 Rod Vagg, MIT License */ @@ -26477,29 +26907,11 @@ AbstractLevelDOWN.prototype._checkKey = function (obj, type) { module.exports = AbstractLevelDOWN }).call(this,{"isBuffer":require("../../../is-buffer/index.js")},require('_process')) -},{"../../../is-buffer/index.js":521,"./abstract-chained-batch":501,"./abstract-iterator":502,"_process":599,"xtend":793}],504:[function(require,module,exports){ -exports.AbstractLevelDOWN = require('./abstract-leveldown') -exports.AbstractIterator = require('./abstract-iterator') -exports.AbstractChainedBatch = require('./abstract-chained-batch') -exports.isLevelDOWN = require('./is-leveldown') - -},{"./abstract-chained-batch":501,"./abstract-iterator":502,"./abstract-leveldown":503,"./is-leveldown":505}],505:[function(require,module,exports){ -var AbstractLevelDOWN = require('./abstract-leveldown') - -function isLevelDOWN (db) { - if (!db || typeof db !== 'object') - return false - return Object.keys(AbstractLevelDOWN.prototype).filter(function (name) { - // TODO remove approximateSize check when method is gone - return name[0] != '_' && name != 'approximateSize' - }).every(function (name) { - return typeof db[name] == 'function' - }) -} - -module.exports = isLevelDOWN - -},{"./abstract-leveldown":503}],506:[function(require,module,exports){ +},{"../../../is-buffer/index.js":532,"./abstract-chained-batch":506,"./abstract-iterator":507,"_process":599,"xtend":734}],509:[function(require,module,exports){ +arguments[4][41][0].apply(exports,arguments) +},{"./abstract-chained-batch":506,"./abstract-iterator":507,"./abstract-leveldown":508,"./is-leveldown":510,"dup":41}],510:[function(require,module,exports){ +arguments[4][42][0].apply(exports,arguments) +},{"./abstract-leveldown":508,"dup":42}],511:[function(require,module,exports){ /** * Copyright (c) 2013 Petka Antonov * @@ -26776,7 +27188,7 @@ function getCapacity(capacity) { module.exports = Deque; -},{}],507:[function(require,module,exports){ +},{}],512:[function(require,module,exports){ var prr = require('prr') function init (type, message, cause) { @@ -26833,7 +27245,7 @@ module.exports = function (errno) { } } -},{"prr":509}],508:[function(require,module,exports){ +},{"prr":514}],513:[function(require,module,exports){ var all = module.exports.all = [ { errno: -2, @@ -27148,7 +27560,7 @@ all.forEach(function (error) { module.exports.custom = require('./custom')(module.exports) module.exports.create = module.exports.custom.createError -},{"./custom":507}],509:[function(require,module,exports){ +},{"./custom":512}],514:[function(require,module,exports){ /*! * prr * (c) 2013 Rod Vagg @@ -27212,7 +27624,7 @@ module.exports.create = module.exports.custom.createError return prr }) -},{}],510:[function(require,module,exports){ +},{}],515:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -27516,7 +27928,7 @@ function isUndefined(arg) { return arg === void 0; } -},{}],511:[function(require,module,exports){ +},{}],516:[function(require,module,exports){ "use strict" module.exports = createRBTree @@ -28513,7 +28925,7 @@ function defaultCompare(a, b) { function createRBTree(compare) { return new RedBlackTree(compare || defaultCompare, null) } -},{}],512:[function(require,module,exports){ +},{}],517:[function(require,module,exports){ var util = require('util') var INDENT_START = /[\{\[]/ @@ -28576,7 +28988,7 @@ module.exports = function() { return line } -},{"util":784}],513:[function(require,module,exports){ +},{"util":725}],518:[function(require,module,exports){ var isProperty = require('is-property') var gen = function(obj, prop) { @@ -28590,7 +29002,7 @@ gen.property = function (prop) { module.exports = gen -},{"is-property":533}],514:[function(require,module,exports){ +},{"is-property":544}],519:[function(require,module,exports){ /** * @file Used to determine whether an object has an own property with the specified property key. * @see {@link http://www.ecma-international.org/ecma-262/6.0/#sec-hasownproperty|7.3.11 HasOwnProperty (O, P)} @@ -28632,7 +29044,7 @@ module.exports = function hasOwnProperty(object, property) { return hop.call(toObject(object), toPropertyKey(property)); }; -},{"cached-constructors-x":62,"to-object-x":769,"to-property-key-x":771}],515:[function(require,module,exports){ +},{"cached-constructors-x":67,"to-object-x":710,"to-property-key-x":712}],520:[function(require,module,exports){ /** * @file Tests if ES6 Symbol is supported. * @version 1.4.1 @@ -28652,7 +29064,7 @@ module.exports = function hasOwnProperty(object, property) { */ module.exports = typeof Symbol === 'function' && typeof Symbol('') === 'symbol'; -},{}],516:[function(require,module,exports){ +},{}],521:[function(require,module,exports){ /** * @file Tests if ES6 @@toStringTag is supported. * @see {@link http://www.ecma-international.org/ecma-262/6.0/#sec-@@tostringtag|26.3.1 @@toStringTag} @@ -28673,7 +29085,7 @@ module.exports = typeof Symbol === 'function' && typeof Symbol('') === 'symbol'; */ module.exports = require('has-symbol-support-x') && typeof Symbol.toStringTag === 'symbol'; -},{"has-symbol-support-x":515}],517:[function(require,module,exports){ +},{"has-symbol-support-x":520}],522:[function(require,module,exports){ exports.read = function (buffer, offset, isLE, mLen, nBytes) { var e, m var eLen = nBytes * 8 - mLen - 1 @@ -28759,7 +29171,204 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128 } -},{}],518:[function(require,module,exports){ +},{}],523:[function(require,module,exports){ +'use strict'; +var types = [ + require('./nextTick'), + require('./mutation.js'), + require('./messageChannel'), + require('./stateChange'), + require('./timeout') +]; +var draining; +var currentQueue; +var queueIndex = -1; +var queue = []; +var scheduled = false; +function cleanUpNextTick() { + if (!draining || !currentQueue) { + return; + } + draining = false; + if (currentQueue.length) { + queue = currentQueue.concat(queue); + } else { + queueIndex = -1; + } + if (queue.length) { + nextTick(); + } +} + +//named nextTick for less confusing stack traces +function nextTick() { + if (draining) { + return; + } + scheduled = false; + draining = true; + var len = queue.length; + var timeout = setTimeout(cleanUpNextTick); + while (len) { + currentQueue = queue; + queue = []; + while (currentQueue && ++queueIndex < len) { + currentQueue[queueIndex].run(); + } + queueIndex = -1; + len = queue.length; + } + currentQueue = null; + queueIndex = -1; + draining = false; + clearTimeout(timeout); +} +var scheduleDrain; +var i = -1; +var len = types.length; +while (++i < len) { + if (types[i] && types[i].test && types[i].test()) { + scheduleDrain = types[i].install(nextTick); + break; + } +} +// v8 likes predictible objects +function Item(fun, array) { + this.fun = fun; + this.array = array; +} +Item.prototype.run = function () { + var fun = this.fun; + var array = this.array; + switch (array.length) { + case 0: + return fun(); + case 1: + return fun(array[0]); + case 2: + return fun(array[0], array[1]); + case 3: + return fun(array[0], array[1], array[2]); + default: + return fun.apply(null, array); + } + +}; +module.exports = immediate; +function immediate(task) { + var args = new Array(arguments.length - 1); + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i]; + } + } + queue.push(new Item(task, args)); + if (!scheduled && !draining) { + scheduled = true; + scheduleDrain(); + } +} + +},{"./messageChannel":524,"./mutation.js":525,"./nextTick":526,"./stateChange":527,"./timeout":528}],524:[function(require,module,exports){ +(function (global){ +'use strict'; + +exports.test = function () { + if (global.setImmediate) { + // we can only get here in IE10 + // which doesn't handel postMessage well + return false; + } + return typeof global.MessageChannel !== 'undefined'; +}; + +exports.install = function (func) { + var channel = new global.MessageChannel(); + channel.port1.onmessage = func; + return function () { + channel.port2.postMessage(0); + }; +}; +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{}],525:[function(require,module,exports){ +(function (global){ +'use strict'; +//based off rsvp https://github.com/tildeio/rsvp.js +//license https://github.com/tildeio/rsvp.js/blob/master/LICENSE +//https://github.com/tildeio/rsvp.js/blob/master/lib/rsvp/asap.js + +var Mutation = global.MutationObserver || global.WebKitMutationObserver; + +exports.test = function () { + return Mutation; +}; + +exports.install = function (handle) { + var called = 0; + var observer = new Mutation(handle); + var element = global.document.createTextNode(''); + observer.observe(element, { + characterData: true + }); + return function () { + element.data = (called = ++called % 2); + }; +}; +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{}],526:[function(require,module,exports){ +(function (process){ +'use strict'; +exports.test = function () { + // Don't get fooled by e.g. browserify environments. + return (typeof process !== 'undefined') && !process.browser; +}; + +exports.install = function (func) { + return function () { + process.nextTick(func); + }; +}; + +}).call(this,require('_process')) +},{"_process":599}],527:[function(require,module,exports){ +(function (global){ +'use strict'; + +exports.test = function () { + return 'document' in global && 'onreadystatechange' in global.document.createElement('script'); +}; + +exports.install = function (handle) { + return function () { + + // Create a diff --git a/docs/custom-build.html b/docs/custom-build.html index c061587cb11..773667365ed 100644 --- a/docs/custom-build.html +++ b/docs/custom-build.html @@ -1315,7 +1315,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Custom Build","level":"3.11","depth":1,"next":{"title":"Plugins","level":"3.12","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"previous":{"title":"LocalDocuments","level":"3.10","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"custom-build.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Custom Build","level":"3.11","depth":1,"next":{"title":"Plugins","level":"3.12","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"previous":{"title":"LocalDocuments","level":"3.10","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"custom-build.md","mtime":"2017-11-20T19:19:11.902Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/data-migration.html b/docs/data-migration.html index 9bb03fa8fc3..3fca15ea9d7 100644 --- a/docs/data-migration.html +++ b/docs/data-migration.html @@ -1305,7 +1305,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"DataMigration","level":"3.5","depth":1,"next":{"title":"LeaderElection","level":"3.6","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"previous":{"title":"Population","level":"3.4","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"data-migration.md","mtime":"2017-10-10T15:23:02.840Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"DataMigration","level":"3.5","depth":1,"next":{"title":"LeaderElection","level":"3.6","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"previous":{"title":"Population","level":"3.4","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"data-migration.md","mtime":"2017-11-20T19:19:11.902Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/in-memory.html b/docs/in-memory.html index 54b5ec0350f..e4c5dc03aca 100644 --- a/docs/in-memory.html +++ b/docs/in-memory.html @@ -1220,7 +1220,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"InMemory","level":"3.9","depth":1,"next":{"title":"LocalDocuments","level":"3.10","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"previous":{"title":"QueryChangeDetection","level":"3.8","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"in-memory.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"InMemory","level":"3.9","depth":1,"next":{"title":"LocalDocuments","level":"3.10","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"previous":{"title":"QueryChangeDetection","level":"3.8","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"in-memory.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/index.html b/docs/index.html index 60cb44ad236..ef45dba22eb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1211,7 +1211,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Install","level":"1.2","depth":1,"path":"install.md","ref":"./install.md","articles":[{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"README.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Install","level":"1.2","depth":1,"path":"install.md","ref":"./install.md","articles":[{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"README.md","mtime":"2017-11-20T19:19:11.902Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/install.html b/docs/install.html index fb7cef0d3b5..91bceb41630 100644 --- a/docs/install.html +++ b/docs/install.html @@ -1156,8 +1156,7 @@

peer-dependency

You also need to install the peer-dependency rxjs if you not have installed it before.

npm i rxjs --save

polyfills

-

RxDB is coded with es8 and transpiled to es5. -This means you have to install polyfills to support older browsers.

+

RxDB is coded with es8 and transpiled to es5. This means you have to install polyfills to support older browsers.

npm i babel-polyfill --save

Latest

If you need the latest develop-state of RxDB, add it as git-dependency into your package.json.

@@ -1168,19 +1167,35 @@

Latest

Replace commitHash with the hash of the latest build-commit.

Import

To import rxdb, add this to your javascript file:

-
// es6
+
// es6
 import RxDB from 'rxdb';
 
 // es5
 var rxdb = require('rxdb');
 

If you have not included es8-polyfills, you also have to import babel-polyfill.

-
// es6
+
// es6
 import 'babel-polyfill';
 
 // es5
 require('babel-polyfill');
 
+

rxjs

+

To reduce the build-size, RxDB is using rxjs's lettable-operators. This means that by default only some parts of rxjs are included into RxDB. If you want to use additional operators, you either have to require the whole rxjs-lib, or also use the lettable-operators. Another alternative is to cherry-pick the needed operators.

+
// full import
+import 'rxjs'; // es6
+require('rxjs'); // es5
+
+// lettable
+import { Subject } from 'rxjs/Subject';
+import { filter } from 'rxjs/operators/filter';
+
+// cherry-pick
+import 'rxjs/add/operator/map';        
+import 'rxjs/add/operator/mergeMap';        
+import 'rxjs/add/operator/filter';        
+import 'rxjs/add/operator/first';
+

If you are new to RxDB, you should continue here

@@ -1226,7 +1241,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Install","level":"1.2","depth":1,"next":{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"install.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Install","level":"1.2","depth":1,"next":{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"install.md","mtime":"2017-11-21T20:21:49.015Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/leader-election.html b/docs/leader-election.html index 67166a91c96..8cbd7460054 100644 --- a/docs/leader-election.html +++ b/docs/leader-election.html @@ -1232,7 +1232,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"LeaderElection","level":"3.6","depth":1,"next":{"title":"Replication","level":"3.7","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"previous":{"title":"DataMigration","level":"3.5","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"leader-election.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"LeaderElection","level":"3.6","depth":1,"next":{"title":"Replication","level":"3.7","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"previous":{"title":"DataMigration","level":"3.5","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"leader-election.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/middleware.html b/docs/middleware.html index 6f32f44b89d..b31d13ab6d7 100644 --- a/docs/middleware.html +++ b/docs/middleware.html @@ -1391,7 +1391,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Middleware-hooks","level":"3.2","depth":1,"next":{"title":"ORM/DRM","level":"3.3","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"previous":{"title":"RxAttachment","level":"3.1","depth":1,"path":"rx-attachment.md","ref":"./rx-attachment.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"middleware.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Middleware-hooks","level":"3.2","depth":1,"next":{"title":"ORM/DRM","level":"3.3","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"previous":{"title":"RxAttachment","level":"3.1","depth":1,"path":"rx-attachment.md","ref":"./rx-attachment.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"middleware.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/orm.html b/docs/orm.html index 0ab144de180..98841096e1a 100644 --- a/docs/orm.html +++ b/docs/orm.html @@ -1278,7 +1278,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"ORM/DRM","level":"3.3","depth":1,"next":{"title":"Population","level":"3.4","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"previous":{"title":"Middleware-hooks","level":"3.2","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"orm.md","mtime":"2017-11-09T10:35:31.879Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"ORM/DRM","level":"3.3","depth":1,"next":{"title":"Population","level":"3.4","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"previous":{"title":"Middleware-hooks","level":"3.2","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"orm.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/plugins.html b/docs/plugins.html index 30b824f241b..57201a43d95 100644 --- a/docs/plugins.html +++ b/docs/plugins.html @@ -1250,7 +1250,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Plugins","level":"3.12","depth":1,"next":{"title":"Contribute","level":"3.13","depth":1,"path":"contribute.md","ref":"./contribute.md","articles":[]},"previous":{"title":"Custom Build","level":"3.11","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"plugins.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Plugins","level":"3.12","depth":1,"next":{"title":"Contribute","level":"3.13","depth":1,"path":"contribute.md","ref":"./contribute.md","articles":[]},"previous":{"title":"Custom Build","level":"3.11","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"plugins.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/population.html b/docs/population.html index 7d666bc4bff..8d100ec1cbd 100644 --- a/docs/population.html +++ b/docs/population.html @@ -1307,7 +1307,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Population","level":"3.4","depth":1,"next":{"title":"DataMigration","level":"3.5","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"previous":{"title":"ORM/DRM","level":"3.3","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"population.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Population","level":"3.4","depth":1,"next":{"title":"DataMigration","level":"3.5","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"previous":{"title":"ORM/DRM","level":"3.3","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"population.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/query-change-detection.html b/docs/query-change-detection.html index c9911cf7493..93cccb5c6eb 100644 --- a/docs/query-change-detection.html +++ b/docs/query-change-detection.html @@ -1219,7 +1219,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"QueryChangeDetection","level":"3.8","depth":1,"next":{"title":"InMemory","level":"3.9","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"previous":{"title":"Replication","level":"3.7","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"query-change-detection.md","mtime":"2017-11-09T10:35:31.879Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"QueryChangeDetection","level":"3.8","depth":1,"next":{"title":"InMemory","level":"3.9","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"previous":{"title":"Replication","level":"3.7","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"query-change-detection.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/replication.html b/docs/replication.html index 1ae3fa48fdd..25e33e388b5 100644 --- a/docs/replication.html +++ b/docs/replication.html @@ -1245,7 +1245,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Replication","level":"3.7","depth":1,"next":{"title":"QueryChangeDetection","level":"3.8","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"previous":{"title":"LeaderElection","level":"3.6","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"replication.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Replication","level":"3.7","depth":1,"next":{"title":"QueryChangeDetection","level":"3.8","depth":1,"path":"query-change-detection.md","ref":"./query-change-detection.md","articles":[]},"previous":{"title":"LeaderElection","level":"3.6","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"replication.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-attachment.html b/docs/rx-attachment.html index f59cfede362..5ef1e9cbfc2 100644 --- a/docs/rx-attachment.html +++ b/docs/rx-attachment.html @@ -1268,7 +1268,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxAttachment","level":"3.1","depth":1,"next":{"title":"Middleware-hooks","level":"3.2","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"previous":{"title":"update()","level":"2.3.2","depth":2,"anchor":"#update","path":"rx-query.md","ref":"./rx-query.md#update","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-attachment.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxAttachment","level":"3.1","depth":1,"next":{"title":"Middleware-hooks","level":"3.2","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"previous":{"title":"update()","level":"2.3.2","depth":2,"anchor":"#update","path":"rx-query.md","ref":"./rx-query.md#update","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-attachment.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-collection.html b/docs/rx-collection.html index f7846f5d928..a4056a889ac 100644 --- a/docs/rx-collection.html +++ b/docs/rx-collection.html @@ -1332,7 +1332,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxCollection","level":"2.1","depth":1,"next":{"title":"Creation","level":"2.1.1","depth":2,"anchor":"#creating-a-collection","path":"rx-collection.md","ref":"./rx-collection.md#creating-a-collection","articles":[{"title":"name","level":"2.1.1.1","depth":3,"anchor":"#name","path":"rx-collection.md","ref":"./rx-collection.md#name","articles":[]},{"title":"schema","level":"2.1.1.2","depth":3,"anchor":"#schema","path":"rx-collection.md","ref":"./rx-collection.md#schema","articles":[]}]},"previous":{"title":"default","level":"1.4.6","depth":2,"anchor":"#default","path":"rx-schema.md","ref":"./rx-schema.md#default","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-collection.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxCollection","level":"2.1","depth":1,"next":{"title":"Creation","level":"2.1.1","depth":2,"anchor":"#creating-a-collection","path":"rx-collection.md","ref":"./rx-collection.md#creating-a-collection","articles":[{"title":"name","level":"2.1.1.1","depth":3,"anchor":"#name","path":"rx-collection.md","ref":"./rx-collection.md#name","articles":[]},{"title":"schema","level":"2.1.1.2","depth":3,"anchor":"#schema","path":"rx-collection.md","ref":"./rx-collection.md#schema","articles":[]}]},"previous":{"title":"default","level":"1.4.6","depth":2,"anchor":"#default","path":"rx-schema.md","ref":"./rx-schema.md#default","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-collection.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-database.html b/docs/rx-database.html index 9ef98aee6fa..6059cb94f6c 100644 --- a/docs/rx-database.html +++ b/docs/rx-database.html @@ -1300,7 +1300,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxDatabase","level":"1.3","depth":1,"next":{"title":"Creation","level":"1.3.1","depth":2,"anchor":"#creation","path":"rx-database.md","ref":"./rx-database.md#creation","articles":[{"title":"name","level":"1.3.1.1","depth":3,"anchor":"#name","path":"rx-database.md","ref":"./rx-database.md#name","articles":[]},{"title":"adapter","level":"1.3.1.2","depth":3,"anchor":"#adapter","path":"rx-database.md","ref":"./rx-database.md#adapter","articles":[]},{"title":"password","level":"1.3.1.3","depth":3,"anchor":"#password","path":"rx-database.md","ref":"./rx-database.md#password","articles":[]},{"title":"multiInstance","level":"1.3.1.4","depth":3,"anchor":"#multiinstance","path":"rx-database.md","ref":"./rx-database.md#multiinstance","articles":[]},{"title":"ignoreDuplicate","level":"1.3.1.5","depth":3,"anchor":"#ignoreduplicate","path":"rx-database.md","ref":"./rx-database.md#ignoreduplicate","articles":[]}]},"previous":{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-database.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxDatabase","level":"1.3","depth":1,"next":{"title":"Creation","level":"1.3.1","depth":2,"anchor":"#creation","path":"rx-database.md","ref":"./rx-database.md#creation","articles":[{"title":"name","level":"1.3.1.1","depth":3,"anchor":"#name","path":"rx-database.md","ref":"./rx-database.md#name","articles":[]},{"title":"adapter","level":"1.3.1.2","depth":3,"anchor":"#adapter","path":"rx-database.md","ref":"./rx-database.md#adapter","articles":[]},{"title":"password","level":"1.3.1.3","depth":3,"anchor":"#password","path":"rx-database.md","ref":"./rx-database.md#password","articles":[]},{"title":"multiInstance","level":"1.3.1.4","depth":3,"anchor":"#multiinstance","path":"rx-database.md","ref":"./rx-database.md#multiinstance","articles":[]},{"title":"ignoreDuplicate","level":"1.3.1.5","depth":3,"anchor":"#ignoreduplicate","path":"rx-database.md","ref":"./rx-database.md#ignoreduplicate","articles":[]}]},"previous":{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-database.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-document.html b/docs/rx-document.html index 3c5b0fc98dc..d14b4c49ea2 100644 --- a/docs/rx-document.html +++ b/docs/rx-document.html @@ -1408,7 +1408,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxDocument","level":"2.2","depth":1,"next":{"title":"Insert","level":"2.2.1","depth":2,"anchor":"#insert","path":"rx-document.md","ref":"./rx-document.md#insert","articles":[]},"previous":{"title":"remove()","level":"2.1.2.11","depth":3,"anchor":"#clear","path":"rx-collection.md","ref":"./rx-collection.md#clear","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-document.md","mtime":"2017-10-10T15:23:02.880Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxDocument","level":"2.2","depth":1,"next":{"title":"Insert","level":"2.2.1","depth":2,"anchor":"#insert","path":"rx-document.md","ref":"./rx-document.md#insert","articles":[]},"previous":{"title":"remove()","level":"2.1.2.11","depth":3,"anchor":"#clear","path":"rx-collection.md","ref":"./rx-collection.md#clear","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-document.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-local-document.html b/docs/rx-local-document.html index 08d74cce3a2..daa21cc1e75 100644 --- a/docs/rx-local-document.html +++ b/docs/rx-local-document.html @@ -1258,7 +1258,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"LocalDocuments","level":"3.10","depth":1,"next":{"title":"Custom Build","level":"3.11","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"previous":{"title":"InMemory","level":"3.9","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-local-document.md","mtime":"2017-11-14T08:58:51.154Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"LocalDocuments","level":"3.10","depth":1,"next":{"title":"Custom Build","level":"3.11","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"previous":{"title":"InMemory","level":"3.9","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-local-document.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-query.html b/docs/rx-query.html index 5a33e074bcc..9b507ab955a 100644 --- a/docs/rx-query.html +++ b/docs/rx-query.html @@ -1229,7 +1229,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxQuery","level":"2.3","depth":1,"next":{"title":"remove()","level":"2.3.1","depth":2,"anchor":"#remove","path":"rx-query.md","ref":"./rx-query.md#remove","articles":[]},"previous":{"title":"$()","level":"2.2.3.7","depth":3,"anchor":"#observe-","path":"rx-document.md","ref":"./rx-document.md#observe-","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-query.md","mtime":"2017-11-09T10:35:31.879Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxQuery","level":"2.3","depth":1,"next":{"title":"remove()","level":"2.3.1","depth":2,"anchor":"#remove","path":"rx-query.md","ref":"./rx-query.md#remove","articles":[]},"previous":{"title":"$()","level":"2.2.3.7","depth":3,"anchor":"#observe-","path":"rx-document.md","ref":"./rx-document.md#observe-","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-query.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-schema.html b/docs/rx-schema.html index c61eae3fe5b..e82a8d22021 100644 --- a/docs/rx-schema.html +++ b/docs/rx-schema.html @@ -1358,7 +1358,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxSchema","level":"1.4","depth":1,"next":{"title":"Example","level":"1.4.1","depth":2,"anchor":"#example","path":"rx-schema.md","ref":"./rx-schema.md#example","articles":[]},"previous":{"title":"checkAdapter()","level":"1.3.2.8","depth":3,"anchor":"#checkadapter","path":"rx-database.md","ref":"./rx-database.md#checkadapter","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-schema.md","mtime":"2017-10-11T13:57:10.562Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-14T10:10:19.602Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxSchema","level":"1.4","depth":1,"next":{"title":"Example","level":"1.4.1","depth":2,"anchor":"#example","path":"rx-schema.md","ref":"./rx-schema.md#example","articles":[]},"previous":{"title":"checkAdapter()","level":"1.3.2.8","depth":3,"anchor":"#checkadapter","path":"rx-database.md","ref":"./rx-database.md#checkadapter","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Support @patreon":"https://www.patreon.com/rxdb"}},"gitbook":"3.2.2"},"file":{"path":"rx-schema.md","mtime":"2017-11-20T19:19:11.938Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-11-21T23:15:36.904Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/search_index.json b/docs/search_index.json index 9b130cecbe1..a1f0403b850 100644 --- a/docs/search_index.json +++ b/docs/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["client","databas","first","here.","introduct","javascript.","new","offlin","reactive,","rxdb,","serverless,","side,","start"],"install.html":["\"dependencies\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"rxdb\":","'babel","'rxdb';","//","=","add","babel","before.","browsers.","build","code","commit.","commithash","continu","depend","develop","es5","es5.","es6","es8","file:","git","hash","here","import","includ","instal","javascript","latest","mean","need","new","npm","older","package.json,","package.json.","peer","polyfil","polyfill');","polyfill';","polyfill.","polyfills,","releas","replac","require('babel","require('rxdb');","run:","rxdb","rxdb,","rxj","save","state","support","transpil","var","{","}"],"rx-database.html":["$","'heroesdb',","'localstorage');","'memdown';","'mydatabase',","'websql',","(optional)","(optional=false)","(optional=true)","*/).then(()",".create()",".then(()",".then(json","/*","//","12","4","=","=>","actual","ad","adapt","adapter,","adapter:","adapters.","add","affect","allow","app","app,","app.","assum","asynchron","at.","await","becom","befor","between","browsers,","call","case","chang","characters.","check","checkadapter()","cleanup","collect","common","console.dir(changeevent));","console.dir(json));","console.dir(ok);","console.log('done'));","const","contain","continu","cordova","cpu.","creat","creation","current","data","data.","databas","database,","database.","db","db1","db2","decrypt","defin","depend","destroy","destroy()","destroyed.","document.","done","dump","dump()","each","elect","electron","emptydatabase.importdump(json)","enabl","encrypt","environment.","equal","error","event","events.","exampl","explicitli","export","fals","field","folder","follow","free","function","function.","given","gone","handl","here","identifi","idl","idle.","ignoredupl","ignoreduplicate:","import","importdump()","instanc","instance.","instead","intent","isrxdatabas","it'","it.","javascript","json","leader.","level","leveldb","leveldb'));","localstorage'));","main","memdown","memdown});","memori","mistake,","module.","moment","more","ms","multiinst","multipl","mycollection.customcleanupfunction();","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","name","name:","nativ","ness","new","nodej","not.","noth","notice:","now","object","observ","ok","on","other.","paramet","parameters.","pass","password","piec","pouchdb","prevent","process,","promis","rare","react","remov","remove()","replications.","requestidlecallback","requestidlepromise()","resolv","return","run","runtime,","rxdatabas","rxdatabase.","rxdb","rxdb,","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.create({name:","rxdb.isrxdatabase(myobj);","rxdb.plugin()","rxdb.plugin(require('pouchdb","rxdb.removedatabase('mydatabasename',","rxj","same","semi","serverless.","set","share","similar","singl","someth","speed","stop","storag","storage.","store","stream","string","synchronis","task","tasks.","tests,","this.","throw","time","timeout","track","true","true.","two","uniqu","unit","up","us","veri","waitforleadership()","want","window","without","work","wrong.","{","});"],"rx-schema.html":["\"array\",","\"birthyear\":","\"color\":","\"damage\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"healthpoints\":","\"hero","\"item\":","\"max\":","\"maxitems\":","\"min\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","'heroes',","'human","'integer',","'lastname']","'object',","'string'","'string',","//","0","0,","0.","100","1900,","20","2050","5","5,","9]$","9_]*]?[a","=","[\"color\"]","['firstname',","^[a","`queri","accident","add","additionalproperti","advantages:","age:","allow","alway","anyth","anyway","array","attribut","attribute.","await","befor","between","birthyear","chang","change.","collect","collection.","color","compound","compoundindex","compression',","compression,","conform","console.dir(mydatabase.heroes.name);","const","contain","continu","creat","damag","data","database,","default","default:","defin","definit","definition.","detection`,","dev","disabl","disablekeycompress","disablekeycompression:","document","document,","document.","don't","done","dont","enabl","encrypt","encrypted.","ensur","error","everyth","exampl","example,","false.","field","fieldnam","fieldname.","fieldnames,","fields.","fill","final","final,","final:","find","first","firstname:","follow","getter","greater","healthpoint","here","hero","hero\",","hero.","improv","index","index,","index:","indexed,","indexes,","insert","instantli","intern","invalid","it.","json","jsonschema","key","keycompress","lastname:","later.","learn","level","looks.","make","map","match","maximum","mean","migrationstrategi","modifi","mydatabase.collection({","myheroschema","myschema","name","name:","new","new.","notic","notice:","number","number,","object","observ","pass","per","perform","popul","primary,","primary.","properti","properties:","provid","regex","requir","required.","required:","rxdb","rxdb,","rxschema","schema","schema\",","schema.","schema.org.","schema:","schemawithdefaultag","schemawithfinalag","schemawithindex","secondari","secret","set","settings:","simpl","singl","skill","spec","standard","start","store","string","support","sure","team","temporari","therefor","things.","throw","title:","top","true","true,","true.","type:","unique,","unset","us","valid","valu","values.","version","version:","want","whenev","within","worry,","written","z0","z][[a","za","{","}","});","},","};"],"rx-collection.html":["$","'bar'","'bar2'","'bob'","'bob',","'foo',","'foo'}})","'heroes',","'humans',","'kelso'","'kelso';",".collection()",".exec().then(doc",".exec().then(docu",".then(()",".then(collect",".then(json",".upsert()","//","409","77;","9]*$.","=","==","=>",">","^[a","abov","allow","atom","atomicupsert()","automat","await","basic","befor","behavior","between","call","chain","chang","collect","collection'","collection,","collection.","collection2","collection2);","conflict","console.dir(changeevent));","console.dir(collection));","console.dir(doc));","console.dir(documents));","console.dir(json));","console.log('done'));","console.log(collect","const","continu","couchdb","creat","data","data.","databas","database,","database.","database:","db.collection({","db.heroes;","db['heroes']","decrypt","defin","destroy","destroy()","differ","directli","doc","docdata","document","document,","document.","documents,","documents.","does,","dump","dump()","easily.","encrypt","error.","errors,","especi","exec","exist","export","fals","field","fields.","fill","find","find()","findone()","finish","firstname:","follow","form","free","full","function","function.","generated.","given","handled.","helpful","here","here.","ident","identifi","import","importdump()","insert","insert()","instanc","instance.","isrxcollect","it.","javascript","json","known","last","lastname:","later","look","mani","match","mean","memori","method","method.","more","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.dump()","mycollection.dump(true)","mycollection.find().where('name').eq('foo')","mycollection.find({name:","mycollection.findone('foo')","mycollection.findone().where('name').eq('foo')","mycollection.importdump(json)","mycollection.insert({","mycollection.newdocument({","mycollection.remove();","mycollection.upsert(docdata);","mycollection.upsert({","mydatabase.collection({","mydatabase.destroy();","myschema","name","name.","name:","name:foobar","need","never","new","newdocument()","newli","not.","object","observ","older","oper","operations.","option","orm","otherwis","overwrit","overwritten","paramet","parrallel","pass","pouchdb","pouchset","prefil","prevent","previou","primari","primary,","property.","protocol.","queri","re","refind","regex:","remov","remove()","replic","replications.","return","run","running.","rxcollect","rxcollection.","rxcollection.newdocument(initaldata).","rxcollections,","rxdatabas","rxdb,","rxdb.isrxcollection(myobj);","rxdocument","rxdocument.","rxdocument.atomicupdate.","rxj","rxqueri","rxschema","rxschema.","same","save","schema","schema:","schemas,","schemaversions.","search","server","set","short","similar","simpl","singl","sometim","spawn","standard","still","stop","store","stream","supprot","sync","sync()","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temporari","through","throw","timespan,","transform","tri","true","two","type","type.","uniqu","until","up","updat","upsert","upsert()","us","useful","valid","valu","veri","versions.","wait","want","within","work","z0","z][a","{","{$eq:","})","});","};"],"rx-document.html":["![synced.gif](files/synced.gif)","$","$inc:","$set:","'alice'","'bar'","'barfoo';","'foo',","'foobar'","'foobar');","'foobar';","'foobar2'","'foobar2');","'foobar2';","'name'","($)","(synced$","(via",".find()",".insert()",".save()",".subscribe(changeev",".subscribe(newnam","//","1","2","4","409","=","=>","[1,2,3,4].foreach(nr","```","```html","access","ad","ag","age:","alic","angular","anyth","argument,","atom","atomicupdate()","atomicupdate:","automat","await","b","base","befor","belong","boolean","browser","call","chang","changed.","changeev","changes.","click","collection'","collection,","collection.","compar","conflict","console.dir(changeevent));","console.dir(currentname);","console.dir(currentnestedvalue);","console.dir(documents));","console.dir(isname);","console.dir(mydocument.age);","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.firstname);","console.log(mydocument.get('firstname'));","console.log(mydocument.synced);","const","continu","current","currentnam","currentname;","currentnestedvalu","currentnestedvalue;","data","databas","database.","decrypt","delet","deleted$","deleted$.","depend","directli","directly.","doc.ag","document","document,","document.","dollarsign","each","edit","emit","encrypted,","error.","error:","errors,","event","exampl","fals","false),","field","fieldnam","find","finished.","fire","firstnam","fistname:","foobar","function","function.","get$","get$()","get()","getter","given","happen","here","ident","increas","insert","instanc","instead","isnam","isname;","isrxdocu","lastname:","lastpromis","lastpromise;","laststat","level","life","mani","mean","modifi","modifyjs.","mongo","more","mycollection.find().exec()","mycollection.insert({","mydocument.$()","mydocument.ag","mydocument.atomicupdate(function(doc){","mydocument.deleted$.subscribe(st","mydocument.firstnam","mydocument.firstname$","mydocument.get$('name')","mydocument.get('name');","mydocument.nam","mydocument.name;","mydocument.remove();","mydocument.resync();","mydocument.save();","mydocument.set('firstname',","mydocument.set('name',","mydocument.synced$.subscribe(st","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield$","mydocument.whatever.nestedfield;","name","name.","name:","nest","nestedvalu","new","newname;","not.","note","notifi","now","nr;","null;","object","object,","observ","oper","operations.","overwrit","parameter.","path","prevent","previou","promis","proxi","record","relat","remov","remove()","reproduc","resync","resync()","return","returning.","run","running.","rxdb,","rxdb.isrxdocument(myobj);","rxdocument","rxdocument.","rxj","same","save","save()","save().","save,","set","set()","set).","short","show","singl","someon","state","state);","still","storag","store","submit","sync","synced$","synced$.","syntax,","tab","table.","take","throw","time","time.","timespan,","top","transform","true","two","type","updat","update()","us","usag","user","valu","value,","value.","values.","var","veri","warn","warning:","whether","wrap","{","}","});","},"],"rx-query.html":["$inc:",".where()","//","1","18","=","afterwards.","ag","age:","await","chain","chang","changed.","collect","collection.","console.dir(results);","const","continu","creat","database,","defin","delet","document","documents.","example:","fals","field.","find","found","function","given","heavi","here","immut","immutable.","increas","instanc","instead","isrxqueri","it,","keep","less","means,","mind","modifi","mycollection.find().where('age').gt(18);","mycollection.find().where('age').lt(18);","name","new","not.","notice:","now","object","object,","on","optimis","origin","over","perform","previou","promis","queri","queries.","query.remove();","query.update({","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","reactiv","remov","remove()","removeddoc","resolv","result","result.","return","run","rxdb","rxdb,","rxdb.isrxquery(myobj);","rxdocument","rxqueri","rxquery'","rxquery.","sort","this,","time.","true","updat","update()","us","{","}","});"],"rx-attachment.html":["'cat.jpg'","'humans',","'image/jpeg'","'object',","(async)","(string)","(string|blob|buffer)",");",".","//","0,","=","=>","[];","ad","add","allattachments$","allattachments()","array","assign","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attributes/methods.","await","befor","better","binari","blob","blobbuff","buffer.","const","continu","data","data,","data.","db","digest","doc","document.","documents.","done.","each","emit","encrypt","encrypted:","ensur","exist.","files,","follow","get","getattachment()","getdata()","getstringdata()","here","higher","id","id,","id.","imag","length","limit","md5","mycollect","mydatabase.collection({","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.getattachment('cat.jpg');","mydocument.putattachment({","myschema","name","name:","new","null","number","number.","object","observ","password","perform","pouchdb,","promis","properties:","putattachment()","quota","re","regular","remov","remove()","repres","resolv","return","rev","revis","rxattach","rxcollection.","rxdb","rxdb,","rxdocument","rxdocument.","schema","schema:","set","side","store","stream","string","string,","string.","sum","time","to.","true","true,","type","type:","us","version:","want","whaterv","{","}","});","},","};"],"middleware.html":["'anyvalue';","'foobar'","'foobar',","'myfield',","()","(also","//","100));","=","=>","action","add","alreadi","another.","async","asynchron","asynchronous.","atom","avoid","await","befor","behavior","block","cach","call","case","certain","chang","clear","code.","collection.","complex","console.log(doc.myfield);","const","constructed.","continu","control","creat","custom","data","databas","database.","default","defin","delet","depend","differ","doc","doc.anyfield","document","document.","documents.","dure","emmit","error('stop');","error.","event","execut","false);","field","field,","flexibl","follow","function","functions.","get:","getter/sett","happen","help","here","hook","hook,","hook?","hooks)","hooks:","ideas:","insert","instanc","interact","lastnam","level","lifecycl","list","logic","make","mean","middlewar","model","modifi","mongoose,","mongoose.","mycollection.findone().exec();","mycollection.postcreate(function(doc){","mycollection.postinsert(function(documentdata){","mycollection.postremove(function(doc){","mycollection.postsave(function(doc){","mycollection.preinsert(function(documentdata){","mycollection.preremove(function(doc){","mycollection.presave(function(doc){","nest","new","notice:","notif","object","object.defineproperty(doc,","on","oper","parallel","pass","post","postcreat","postinsert","postremov","postsav","pre","preinsert","preremov","presav","promise(r","promise.","receiv","reciev","remov","removed.","return","run","rxcollect","rxcollection.insert","rxdatabas","rxdb","rxdb,","rxdocument","rxdocument,","rxdocument.remov","rxdocument.sav","save","saved.","schema","seri","set","settimeout(res,","specif","specifi","specifiy","stop","structur","support","sure","synchron","task","therefor","throw","trigger","true);","updat","us","usag","useful","valid","valu","way","whenev","whole","written","{","});","},"],"orm.html":["'","'!!';","'aaah!!'","'aaah!!';","'cat.txt',","'heroes'","'heroes',","'i","'meow","'skeletor'","'text/plain'","+","//","=","add","attach","attachments:","await","behavior","call","capabl","collect","collection.","collection:","collections.","console.log(attachment.scream());","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","const","contain","continu","creat","data","data:","defin","doc","doc.putattachment({","document","function","function(){","functions,","here","hero","heroes.findone().exec();","heroes.insert({","id:","instanc","keyword","keyword:","kitty',","map","method","methods:","mongoose,","mydatabase.collection({","myschema,","name:","names.","new","object","orm","orm/drm","pass","relat","resolv","return","rxattachemnt","rxdb","rxdb,","rxdocument","schema:","scream:","skeletor!!'","specif","static","statics:","this.nam","this.name;","type:","us","whoami:","wide","wide.","{","}","});"],"population.html":["'alice'","'alice',","'array',","'bob',","'carol'","'carol',","'dave'","'human","'human'","'human',","'object',","'string'","'string',","(primari","//","//>","//[insert","0,","=","[","]","_","add","alway","anoth","array","array.","attribut","await","belong","bestfriend","bestfriend:","collect","collections.","come","console.dir(bestfriend);","console.dir(friends);","console.dir(mother);","const","continu","database.","describ","direct","doc","doc.bestfriend_;","doc.populate('bestfriend');","document","exactli","exampl","export","family:","field","fieldname.","foreign","found.","friend","friends:","getter","getter.","here","here]","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","in.","items:","join","keyword","method","method.","mongoose.","mother","mother:","mycollect","mycollection.insert({","mydatabase.collection({","mydocument.family.mother_;","mydocument.friends_;","name:","nest","new","notic","null","on","path","popul","populate()","primary:","promis","properties:","ref","ref:","refer","referenc","refhuman","relat","resolv","return","rxcollect","rxdb","rxdb,","rxdocument","rxdocument)","rxdocument,","rxdocument[alice]","same","schema","schema:","sometim","specifi","still","string","take","therefor","title:","to.","true,","type:","underscor","underscore_","us","valu","values.","version:","via","want","work","{","}","});","},","};"],"data-migration.html":["'bi","'messages',","'sendercountry'","(or","(string)","(version:",");","*","*/",".migratepromise():",".then(respons","/**","//","0","0,","0.","02","1","12","12t23:03:05+00:00","1486940585","1:","2","2)","2017","2:","50,","=","=>","accomplish","add","alreadi","alway","amount","app","appear","assigned.","assur","asynchron","automat","automigr","automigrate:","await","awesom","bar.","better","call)","chang","client'","code","collect","collection,","collection.","combin","compar","console.dir(state),","console.error(error),","console.log('done')","const","continu","coordin","countri","created.","creation","data","data.","datamigr","date","date(olddoc.time).gettime();","dates.","decid","default,","defin","delet","deleted:","devic","distribut","doc","document","don't","done","done:","easier","emit","error","exisit","false,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","field","filter","finish","function","function(olddoc){","get","greater","hand'","handl","handled:","happen","here","hint","if(olddoc.tim","imagin","incom","increas","instead","leaderelect","load","long","look","lot","make","mani","match","means,","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mydatabase.collection({","name:","new","new,","newer","newest","null,","number","object","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","open","paramet","percent:","percentag","problem","promis","properti","provid","remains:","remov","requir","resolv","resourc","respons","response.json();","return","run","rxdb","rxdb,","save","schema","schema'","schema:","schema?","schemas.","sender","server","show","start","state","strategi","string","succeed","success:","sure","tabs.","take","this,","this:","time,","timestamp","total:","transform","true","unix","upon","us","used:","user","user'","user,","users'","users.","version","version,","version.","want","wast","while,","{","}","});","},"],"leader-election.html":["'dies'.","'localstorage',","'mypassword',","'temperature',","'weatherdb',","*",".then(()","//","10","10);","1000","5","6*5=30","=","=>","access.","adapter:","algorithm","alway","api","await","becom","befor","between","browser","build,","case","charts,","check","client","closed,","closed.","code","collection.","conflict","connections.","console.log('long","const","continu","corner.","count","crown","current","data","data,","date().gettime()","db","db.collection({","db.temperature.insert({","db.waitforleadership()","degrees:","device,","display","easy,","elect","exact","exactli","exampl","fetch('https://example.com/api/temp/');","hand","heatmaps.","here","imagin","implement","inspect","king!');","lead","leader","leader,","leader.","leaderelect","live","locat","make","manag","mani","mark","matter","messag","minute.","moment","more","multiinstance:","myschema","name:","new","now","number","old","on","once.","open","out","over","password:","per","pleas","polling.","power","produce,","pull","read","reasign","redund","remot","resourc","right","run","rxdb","rxdb,","rxdb.create({","same","save","schema:","second","seconds.","see","send","sent","server","site","solut","solv","start","stay","sure","system","tab","tab.","tabs,","temp","temp,","temperatur","ten","them,","these","thing","this,","time","time:","top","traffic","tri","true","until","us","usag","vanillaj","variou","visitor","wait..","wast","way","websit","websocket","wire","you.","{","});","},","♛"],"replication.html":["'http://localhost:10102/db/',","(default)","(optional)","(remot",");","//","=","=>","[default=true]","active$","adapt","add","anoth","async","await","basic","call","cancel","cancel()","chang","change$","collect","complete$","complete.","completed.","completes.","connect","console.dir(active));","console.dir(change));","console.dir(completed));","console.dir(docdata));","console.dir(error));","const","continu","couchdb,","data.","database)","database.","db.","default=tru","depend","dies,","direct","direction:","docs$","document","dure","each","emit","enabl","error","error$","event","everytim","exampl","fals","featur","handler","here","here.","http","http'));","https://pouchdb.com/api.html#repl","instanc","instance,","intern","leader","live:","make","match","method","mycollection.find().where('age').gt(18)","mycollection.sync(","need","never","new","observ","occur","on","option","options:","over","performance,","plugin","pouch/couch","pouchdb","powerful","pull:","push:","queri","query:","recogn","reestablished.","remot","remote:","replic","replicated.","replication,","replication.","replicationst","replicationstate.active$.subscribe(act","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","retry:","return","running.","rx.collection.sync()","rxcollect","rxcollection,","rxcollection.sync()","rxcollection.sync().","rxdb","rxdb,","rxdb.plugin(require('pouchdb","rxj","rxreplicationst","same","save","server","serverurl,","specifi","start","stream.","sure","sync","sync.","synchronis","time","true","true,","until","us","via","waitforleadership:","{","},"],"query-change-detection.html":["'');","'',","'rxdb';","+",".exec()'",".reduce((prev,","//","=","=>","again.","anyuser.loggedin","anyuser.save();","await","beta","big","calcul","call","case","collect","collection.","console.log","const","continu","cost.","creat","cur)","cur.username+","current","databas","default.","detect,","disabl","display","document.queryselector('body').innerhtml","documents,","documents.","done","driver,","enabl","enable()","enabled.","engine.","events.","everytim","exampl","false;","function","gain","here","huge","imagin","import","in.","io","it.","log","long","made","make","mani","memori","meteor","module.","multipl","new","notice:","now,","observ","off,","on","oplog","optim","optimis","over","page","perform","plu","point","prev","queri","queries,","queries.","query.","query.$.subscribe(us","querychangedetect","querychangedetector","querychangedetector.enable();","querychangedetector.enabledebugging();","re","realli","request","result","reus","run","rxchangeevent.","rxdb","rxdb,","same","show","similar","storag","subscrib","sure","take","then,","thousand","time","toplist","update/insert/remov","us","user","userscollection.find().where('loggedin').eq(true).sort('points');","veri","want","whole","without","work","zero","{","}","});"],"in-memory.html":["(all","//","=","amount","anoth","attach","automat","await","behav","both.","chang","collect","collection.","computer.","cons:","const","continu","creation","data","decrypt","disc","doc","document","encrypt","enough","equal","event","faster","field","fields.","fire","fit","heavi","here","initi","inmemori","insid","it'","load","longer","mean","memcol","memcol.find().exec();","memori","memory)","mycollect","mycollection.inmemory();","new","now","on","oper","optim","origin","over","parent","promis","pros:","queri","ram","replic","resolv","result","return","rxcollect","rxcollection().inmemory();","rxcollection,","rxdb,","same","share","small","store","stream.","support","take","them,","two","u","updat","us","version","want","way","work","write"],"rx-local-document.html":["'bar'","'bar');","'bar';","'bar2');","'foobar',",");","*/","..","/*","//","=","=>","access","acess","addit","alreadi","attach","await","behav","chang","class","collect","collection.","come","const","continu","creat","data","databas","document","documents.","exist","exists.","field","find","foo","foo:","found","getlocal()","handi","handl","here","id","id.","insertlocal()","it'","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","match","metadata.","migrat","mycollection.getlocal('foobar');","mycollection.insertlocal(","mycollection.upsertlocal(","mydatabase.insertlocal(","new","next","normal","notice:","null","observ","overwrit","promis","proxi","pseudo","queri","remov","replic","resolv","return","rxcollect","rxdatabas","rxdb,","rxdocument.","rxlocaldocu","rxlocaldocument.","same","schema","schema,","set","special","store","throw","undefin","upsertlocal()","us","via","want","work","work!","work.","works!","{","}","});"],"custom-build.html":["'rxdb/plugins/adapt","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/update';","'rxdb/plugins/validate';","//","=","adapt","add","addit","advantag","alway","attach","bandwidth","basic","batteri","befor","build","build,","builds.","check","check'));","check';","checkadapt","cherri","choos","collect","collections.","compress","compression'));","compression';","const","continu","core","core,","correctli","creat","crypto","current","custom","databas","databases.","default","default,","dev","disablekeycompress","disadvantag","document","documents'));","documents';","don't","done","dont","dump","dump'));","dump';","elect","election'));","election';","enabl","enabled.","encrypt","ensur","es5","es6","full","function","functionality.","here","import","import/export","imported.","includ","insert","instead.","javascript,","js","json","jsonschema","key","keycompress","keycompressor","leader","leaderelect","leaderelection.","local","lot","make","mean","memori","memory'));","memory';","mode.","modul","module,","module.","need","need.","new","not.","on","option","overwritt","part","password.","pick","plugin","plugin.","provid","realli","replic","requir","require('rxdb/plugins/core');","required.","rxcollection.","rxdb","rxdb,","rxdb.","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdbadaptercheckmodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbupdatemodul","rxdbvalidatemodul","rxdocument.","rxdocument.upd","rxquery.update.","save","schema","schemacheck","set","size.","start","support","sure","thing","this,","this:","true","updat","us","valid","want","work"],"plugins.html":["!==","&&","'mycollection.hello()'","'string'","'world';","(password","(proto)","*","*/","/**","//","=","=>","@link","@param","ad","add","alway","avail","basic","builds/src/plugin.j","call","call.","class","classes,","code","const","contain","continu","correspond","creat","don't","each","exist","extend","find","function","function(){","function(password)","get","here","here.","hook","hooks.","https://github.com/pubkey/rxdb/blob/cutsom","insid","intern","it.","javascript","jump","keynam","know","list","list:","manipul","manipulate.","method","method,","modifi","myplugin","new","object","object.","overwrit","overwritable:","overwritten","paramet","password","password.length","plugin","plugin.","plugins:","pouchdb","properti","proto.hello","prototyp","prototypes:","protoyp","return","rxcollect","rxcollection:","rxdb","rxdb'","rxdb,","rxdb:","see","set","simple.","singal","sometim","static","static.","time","true","true,","true.","typeof","validatepassword:","valu","veri","want","{","{object}","||","}","},","};"],"contribute.html":["&&","(anyth","7","ad","add","ask","befor","bug,","bugfix","build","cd","change.","changes,","check","clone","commit","community.","console.","contribut","contributing!","contribution,","creat","depend","dev","develop","developing,","device,","discuss","dist","doc","docs:instal","docs:serv","document","don't","ensur","everyth","everytim","expect","expected.","featur","feature,","file","file.","flow","folder)","folder.","following:","for,","get","git","gitter.","grate","help","higher","http://localhost:4000/","https://github.com/pubkey/rxdb.git","instal","integr","issu","it.","leav","locallly,","made","make","manual","merg","modifi","need","nodej","non","npm","open","pr","pull","read","repositori","reproduc","request,","requir","run","rxdb","shoud","slow","sourc","src","start","sure","test","test/unit","test:nod","tests,","thank","time.","to,","togeth","trivial","unit","version","want","wast","work","work."]},"length":20},"tokenStore":{"root":{"0":{"2":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.014989293361884369},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"1":{"0":{"0":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}},")":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}}}},"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"t":{"2":{"3":{"docs":{},":":{"0":{"3":{"docs":{},":":{"0":{"5":{"docs":{},"+":{"0":{"0":{"docs":{},":":{"0":{"0":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"4":{"8":{"6":{"9":{"4":{"0":{"5":{"8":{"5":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},"9":{"0":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"docs":{}},"docs":{}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"2":{"0":{"1":{"7":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{}},"5":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"docs":{}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"4":{"0":{"9":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},"docs":{}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"5":{"0":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"6":{"docs":{},"*":{"5":{"docs":{},"=":{"3":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"docs":{}},"docs":{}}},"docs":{}}},"7":{"7":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"9":{"docs":{},"]":{"docs":{},"$":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"*":{"docs":{},"$":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"_":{"docs":{},"]":{"docs":{},"*":{"docs":{},"]":{"docs":{},"?":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"c":{"docs":{},"k":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"n":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}},"e":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":10.012422360248447}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}}},"o":{"docs":{},"k":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016985138004246284},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.05063291139240506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.046218487394957986},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.041474654377880185},"population.html":{"ref":"population.html","tf":0.03460207612456748},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03686635944700461},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691},"rx-collection.html":{"ref":"rx-collection.html","tf":0.036093418259023353},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.04},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"i":{"docs":{},"o":{"docs":{},"n":{"2":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.018433179723502304},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.032},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"r":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"c":{"docs":{},"h":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"i":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"p":{"docs":{},"u":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014861995753715499},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}},")":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"+":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"custom-build.html":{"ref":"custom-build.html","tf":5.0084507042253525}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.012738853503184714},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.03361344537815126},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.016194331983805668},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-database.html":{"ref":"rx-database.html","tf":0.031026252983293555},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":10.00257731958763}}}}}}},"e":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.04081632653061224},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"i":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"i":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"b":{"1":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.027600849256900213},"rx-document.html":{"ref":"rx-document.html","tf":0.018148820326678767},"rx-query.html":{"ref":"rx-query.html","tf":0.0379746835443038},"middleware.html":{"ref":"middleware.html","tf":0.018140589569160998},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"replication.html":{"ref":"replication.html","tf":0.014018691588785047},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"n":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}},"s":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"'":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"r":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"c":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.009345794392523364}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"l":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.029978586723768737},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"replication.html":{"ref":"replication.html","tf":0.014018691588785047}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},")":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.034013605442176874}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.016}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},")":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},":":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.014084507042253521},"plugins.html":{"ref":"plugins.html","tf":0.022099447513812154}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383}}},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.009216589861751152},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},".":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"orm.html":{"ref":"orm.html","tf":0.02304147465437788}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"l":{"docs":{},"p":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"i":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.054421768707483},"plugins.html":{"ref":"plugins.html","tf":0.022099447513812154}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"?":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"s":{"docs":{},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"4":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"r":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"g":{"docs":{},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":10.051020408163266},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"n":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"replication.html":{"ref":"replication.html","tf":0.014018691588785047}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"i":{"docs":{},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":10}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.05102040816326531},"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.07887323943661972}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"d":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"s":{"docs":{},"u":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"f":{"docs":{},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.027210884353741496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.022535211267605635},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.006920415224913495}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"x":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.04081632653061224},"contribute.html":{"ref":"contribute.html","tf":0.043478260869565216}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.027649769585253458},"population.html":{"ref":"population.html","tf":0.03460207612456748},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"j":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}},"i":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"n":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"r":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}},"l":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014861995753715499},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.022099447513812154}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.016194331983805668},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.04048582995951417},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"s":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"m":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"i":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":10}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"in-memory.html":{"ref":"in-memory.html","tf":0.04}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.016}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.03867403314917127}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"i":{"docs":{},"v":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}}}}}}},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"replication.html":{"ref":"replication.html","tf":10.032710280373832},"in-memory.html":{"ref":"in-memory.html","tf":0.04},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"e":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.04225352112676056},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.014018691588785047}},"e":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.03164556962025317},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014861995753715499},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-query.html":{"ref":"rx-query.html","tf":0.02531645569620253},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.015873015873015872},"orm.html":{"ref":"orm.html","tf":0.018433179723502304},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"f":{"docs":{"population.html":{"ref":"population.html","tf":0.010380622837370242}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.010380622837370242}}},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"g":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}}}}}},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"install.html":{"ref":"install.html","tf":0.05102040816326531},"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.01971830985915493},"plugins.html":{"ref":"plugins.html","tf":0.03314917127071823},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"install.html":{"ref":"install.html","tf":0.030612244897959183},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.014084507042253521}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":10.011933174224344},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":10.012704174228675},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.009216589861751152},"population.html":{"ref":"population.html","tf":0.01384083044982699}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"[":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}}}}}}}}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":10.002141327623127},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":10.00212314225053},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":10.031645569620252}}},"y":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":10.012605042016807}},"e":{"docs":{},"m":{"docs":{},"n":{"docs":{},"t":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"contribute.html":{"ref":"contribute.html","tf":0.06832298136645963}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"m":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02947845804988662}}}},"m":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}},")":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}},"a":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"t":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"z":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"t":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"i":{"docs":{},"c":{"docs":{"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"s":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"o":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.04081632653061224},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"population.html":{"ref":"population.html","tf":0.006920415224913495},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.024},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}}}}},"m":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"s":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"w":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"u":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"i":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"o":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"v":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}},"i":{"docs":{},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"y":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"a":{"docs":{},"w":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"replication.html":{"ref":"replication.html","tf":0.04205607476635514}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.027837259100642397},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"?":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"+":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"#":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.021413276231263382}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}},"r":{"2":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.010380622837370242}}}}}},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"orm.html":{"ref":"orm.html","tf":0.02304147465437788}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"0":{"1":{"0":{"2":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"w":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}}},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"i":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.010380622837370242}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.01284796573875803},"population.html":{"ref":"population.html","tf":0.01730103806228374},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"2":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.006920415224913495}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.010380622837370242}}}}}}}},"n":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"/":{"docs":{},"/":{"docs":{"install.html":{"ref":"install.html","tf":0.04081632653061224},"rx-database.html":{"ref":"rx-database.html","tf":0.028639618138424822},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.036093418259023353},"rx-document.html":{"ref":"rx-document.html","tf":0.05263157894736842},"rx-query.html":{"ref":"rx-query.html","tf":0.0379746835443038},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.049886621315192746},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.03865979381443299},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.04672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.07323943661971831},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},">":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}},"*":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}}}}},"=":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.021231422505307854},"rx-document.html":{"ref":"rx-document.html","tf":0.043557168784029036},"rx-query.html":{"ref":"rx-query.html","tf":0.05063291139240506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.05042016806722689},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.041474654377880185},"population.html":{"ref":"population.html","tf":0.03460207612456748},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},">":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01910828025477707},"rx-document.html":{"ref":"rx-document.html","tf":0.014519056261343012},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.015873015873015872},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.02336448598130841},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},"=":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"a":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"orm.html":{"ref":"orm.html","tf":0.018433179723502304},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.01971830985915493},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"i":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.02386634844868735},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"c":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"i":{"docs":{},"c":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}},"p":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"i":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.015873015873015872},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.10504201680672269},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.016706443914081145},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.012738853503184714},"rx-document.html":{"ref":"rx-document.html","tf":0.018148820326678767},"rx-query.html":{"ref":"rx-query.html","tf":0.02531645569620253},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.025210084033613446},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.04608294930875576},"population.html":{"ref":"population.html","tf":0.04844290657439446},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03225806451612903}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495},"replication.html":{"ref":"replication.html","tf":0.014018691588785047},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612}}}}},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}},"r":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"a":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.01730103806228374}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"custom-build.html":{"ref":"custom-build.html","tf":5.0084507042253525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"t":{"docs":{},"h":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"c":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"e":{"docs":{},"s":{"5":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612},"custom-build.html":{"ref":"custom-build.html","tf":0.036619718309859155}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}},"6":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612},"custom-build.html":{"ref":"custom-build.html","tf":0.036619718309859155}}},"8":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}}}},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"y":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.02336448598130841}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"d":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"in-memory.html":{"ref":"in-memory.html","tf":0.032},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},":":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"replication.html":{"ref":"replication.html","tf":0.02336448598130841},"in-memory.html":{"ref":"in-memory.html","tf":0.016}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}},"i":{"docs":{},"m":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"population.html":{"ref":"population.html","tf":0.006920415224913495},"leader-election.html":{"ref":"leader-election.html","tf":0.024291497975708502},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"l":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"e":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"u":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"s":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}}}}},"i":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"e":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.04081632653061224}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.024291497975708502},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":10},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"r":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06451612903225806},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.02304147465437788}},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":10}}}}}},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"o":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517}},"i":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"a":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"i":{"docs":{},"f":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"s":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"v":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}}},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.064},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}},"y":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.016}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"s":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"1":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"docs":{}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"r":{"docs":{},"g":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"k":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"n":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"r":{"docs":{},"k":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"d":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.00907029478458}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.03380281690140845}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.006920415224913495},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}}},"docs":{}},"docs":{}}}},"l":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}}}}},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"0":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},".":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136}},"e":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.02304147465437788}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"d":{"5":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"docs":{}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02947845804988662}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"g":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.02040816326530612}}}},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.030612244897959183}},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}},";":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"replication.html":{"ref":"replication.html","tf":0.018691588785046728},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":10.017301038062284}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623}}}}}},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.01384083044982699}}}}}},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.04419889502762431}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}}}},"x":{"docs":{},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"s":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"s":{"docs":{},"h":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"u":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":10.03867403314917}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"u":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.02336448598130841},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.014018691588785047},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"leader-election.html":{"ref":"leader-election.html","tf":0.032388663967611336}},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"k":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.062111801242236024}},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"m":{"docs":{},"p":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}}}}}}}},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"e":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"m":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"s":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"n":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"w":{"docs":{},"o":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"o":{"docs":{},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.02100840336134454}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.027837259100642397},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.03460207612456748}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"o":{"docs":{},"f":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748},"custom-build.html":{"ref":"custom-build.html","tf":0.01971830985915493}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}},"u":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.018148820326678767},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.006920415224913495},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"j":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"data-migration.html":{"ref":"data-migration.html","tf":0.023195876288659795},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.010380622837370242}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"i":{"docs":{},"a":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"{":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.06209850107066381},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.05190311418685121},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304},"plugins.html":{"ref":"plugins.html","tf":0.027624309392265192}},"$":{"docs":{},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"}":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}},"}":{"docs":{"install.html":{"ref":"install.html","tf":0.01020408163265306},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014989293361884369},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.04608294930875576},"population.html":{"ref":"population.html","tf":0.03806228373702422},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.014519056261343012},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.03225806451612903},"population.html":{"ref":"population.html","tf":0.02422145328719723},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.016194331983805668},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.029978586723768737},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.047619047619047616},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"$":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"replication.html":{"ref":"replication.html","tf":0.018691588785046728}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"$":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"|":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"plugins.html":{"ref":"plugins.html","tf":0.03867403314917127}},"/":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}}}}}},"'":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"u":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"x":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"e":{"docs":{},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.02386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.017130620985010708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016985138004246284},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.016901408450704224}},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.037037037037037035}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"r":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"y":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"i":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"d":{"docs":{},"e":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}}},"r":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.006920415224913495},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}},"e":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"a":{"docs":{},"p":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}}}}}}}}},"[":{"1":{"docs":{},",":{"2":{"docs":{},",":{"3":{"docs":{},",":{"4":{"docs":{},"]":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"n":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}},"]":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}},"^":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"`":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"`":{"docs":{},"`":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"e":{"docs":{},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}},"z":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"docs":{},"]":{"docs":{},"[":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015}}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},">":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-query.html":{"ref":"rx-query.html","tf":0.03164556962025317},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.030864197530864196},"in-memory.html":{"ref":"in-memory.html","tf":0.024},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"y":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":10.030864197530864}},"o":{"docs":{},"r":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"!":{"docs":{},"[":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},"]":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"=":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}},"+":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"♛":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"&":{"docs":{},"&":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"@":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"|":{"docs":{},"|":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"length":2895},"corpusTokens":["!==","![synced.gif](files/synced.gif)","\"array\",","\"birthyear\":","\"color\":","\"damage\":","\"dependencies\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"healthpoints\":","\"hero","\"item\":","\"max\":","\"maxitems\":","\"min\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"rxdb\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","$","$inc:","$set:","&&","'","'!!';","'');","'',","'aaah!!'","'aaah!!';","'alice'","'alice',","'anyvalue';","'array',","'babel","'bar'","'bar');","'bar';","'bar2'","'bar2');","'barfoo';","'bi","'bob'","'bob',","'carol'","'carol',","'cat.jpg'","'cat.txt',","'dave'","'dies'.","'foo',","'foo'}})","'foobar'","'foobar');","'foobar',","'foobar';","'foobar2'","'foobar2');","'foobar2';","'heroes'","'heroes',","'heroesdb',","'http://localhost:10102/db/',","'human","'human'","'human',","'humans',","'i","'image/jpeg'","'integer',","'kelso'","'kelso';","'lastname']","'localstorage');","'localstorage',","'memdown';","'meow","'messages',","'mycollection.hello()'","'mydatabase',","'myfield',","'mypassword',","'name'","'object',","'rxdb';","'rxdb/plugins/adapt","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/update';","'rxdb/plugins/validate';","'sendercountry'","'skeletor'","'string'","'string',","'temperature',","'text/plain'","'weatherdb',","'websql',","'world';","($)","()","(all","(also","(anyth","(async)","(default)","(optional)","(optional=false)","(optional=true)","(or","(password","(primari","(proto)","(remot","(string)","(string|blob|buffer)","(synced$","(version:","(via",");","*","*/","*/).then(()","+",".","..",".collection()",".create()",".exec()'",".exec().then(doc",".exec().then(docu",".find()",".insert()",".migratepromise():",".reduce((prev,",".save()",".subscribe(changeev",".subscribe(newnam",".then(()",".then(collect",".then(json",".then(respons",".upsert()",".where()","/*","/**","//","//>","//[insert","0","0,","0.","02","1","10","10);","100","100));","1000","12","12t23:03:05+00:00","1486940585","18","1900,","1:","2","2)","20","2017","2050","2:","4","409","5","5,","50,","6*5=30","7","77;","9]$","9]*$.","9_]*]?[a","=","==","=>",">","@link","@param","[","[\"color\"]","['firstname',","[1,2,3,4].foreach(nr","[];","[default=true]","]","^[a","_","```","```html","`queri","abov","access","access.","accident","accomplish","acess","action","active$","actual","ad","adapt","adapter,","adapter:","adapters.","add","addit","additionalproperti","advantag","advantages:","affect","afterwards.","ag","again.","age:","algorithm","alic","allattachments$","allattachments()","allow","alreadi","alway","amount","angular","anoth","another.","anyth","anyuser.loggedin","anyuser.save();","anyway","api","app","app,","app.","appear","argument,","array","array.","ask","assign","assigned.","assum","assur","async","asynchron","asynchronous.","at.","atom","atomicupdate()","atomicupdate:","atomicupsert()","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attribut","attribute.","attributes/methods.","automat","automigr","automigrate:","avail","avoid","await","awesom","b","babel","bandwidth","bar.","base","basic","batteri","becom","befor","before.","behav","behavior","belong","bestfriend","bestfriend:","beta","better","between","big","binari","birthyear","blob","blobbuff","block","boolean","both.","browser","browsers,","browsers.","buffer.","bug,","bugfix","build","build,","builds.","builds/src/plugin.j","cach","calcul","call","call)","call.","cancel","cancel()","capabl","case","cd","certain","chain","chang","change$","change.","changed.","changeev","changes,","changes.","characters.","charts,","check","check'));","check';","checkadapt","checkadapter()","cherri","choos","class","classes,","cleanup","clear","click","client","client'","clone","closed,","closed.","code","code.","collect","collection'","collection,","collection.","collection2","collection2);","collection:","collections.","color","combin","come","commit","commit.","commithash","common","community.","compar","complete$","complete.","completed.","completes.","complex","compound","compoundindex","compress","compression'));","compression',","compression';","compression,","computer.","conflict","conform","connect","connections.","cons:","console.","console.dir(active));","console.dir(bestfriend);","console.dir(change));","console.dir(changeevent));","console.dir(collection));","console.dir(completed));","console.dir(currentname);","console.dir(currentnestedvalue);","console.dir(doc));","console.dir(docdata));","console.dir(documents));","console.dir(error));","console.dir(friends);","console.dir(isname);","console.dir(json));","console.dir(mother);","console.dir(mydatabase.heroes.name);","console.dir(mydocument.age);","console.dir(ok);","console.dir(results);","console.dir(state),","console.error(error),","console.log","console.log('done')","console.log('done'));","console.log('long","console.log(attachment.scream());","console.log(collect","console.log(doc.myfield);","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.firstname);","console.log(mydocument.get('firstname'));","console.log(mydocument.synced);","const","constructed.","contain","continu","contribut","contributing!","contribution,","control","coordin","cordova","core","core,","corner.","correctli","correspond","cost.","couchdb","couchdb,","count","countri","cpu.","creat","created.","creation","crown","crypto","cur)","cur.username+","current","currentnam","currentname;","currentnestedvalu","currentnestedvalue;","custom","damag","data","data,","data.","data:","databas","database)","database,","database.","database:","databases.","datamigr","date","date().gettime()","date(olddoc.time).gettime();","dates.","db","db.","db.collection({","db.heroes;","db.temperature.insert({","db.waitforleadership()","db1","db2","db['heroes']","decid","decrypt","default","default,","default.","default:","default=tru","defin","definit","definition.","degrees:","delet","deleted$","deleted$.","deleted:","depend","describ","destroy","destroy()","destroyed.","detect,","detection`,","dev","develop","developing,","devic","device,","dies,","differ","digest","direct","direction:","directli","directly.","disabl","disablekeycompress","disablekeycompression:","disadvantag","disc","discuss","display","dist","distribut","doc","doc.ag","doc.anyfield","doc.bestfriend_;","doc.populate('bestfriend');","doc.putattachment({","docdata","docs$","docs:instal","docs:serv","document","document,","document.","document.queryselector('body').innerhtml","documents'));","documents';","documents,","documents.","does,","dollarsign","don't","done","done.","done:","dont","driver,","dump","dump'));","dump';","dump()","dure","each","easier","easily.","easy,","edit","elect","election'));","election';","electron","emit","emmit","emptydatabase.importdump(json)","enabl","enable()","enabled.","encrypt","encrypted,","encrypted.","encrypted:","engine.","enough","ensur","environment.","equal","error","error$","error('stop');","error.","error:","errors,","es5","es5.","es6","es8","especi","event","events.","everyth","everytim","exact","exactli","exampl","example,","example:","exec","execut","exisit","exist","exist.","exists.","expect","expected.","explicitli","export","extend","fals","false),","false);","false,","false.","false;","family:","faster","featur","feature,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","fetch('https://example.com/api/temp/');","field","field,","field.","fieldnam","fieldname.","fieldnames,","fields.","file","file.","file:","files,","fill","filter","final","final,","final:","find","find()","findone()","finish","finished.","fire","first","firstnam","firstname:","fistname:","fit","flexibl","flow","folder","folder)","folder.","follow","following:","foo","foo:","foobar","for,","foreign","form","found","found.","free","friend","friends:","full","function","function(){","function(olddoc){","function(password)","function.","functionality.","functions,","functions.","gain","generated.","get","get$","get$()","get()","get:","getattachment()","getdata()","getlocal()","getstringdata()","getter","getter.","getter/sett","git","gitter.","given","gone","grate","greater","hand","hand'","handi","handl","handled.","handled:","handler","happen","hash","healthpoint","heatmaps.","heavi","help","helpful","here","here.","here]","hero","hero\",","hero.","heroes.findone().exec();","heroes.insert({","higher","hint","hook","hook,","hook?","hooks)","hooks.","hooks:","http","http'));","http://localhost:4000/","https://github.com/pubkey/rxdb.git","https://github.com/pubkey/rxdb/blob/cutsom","https://pouchdb.com/api.html#repl","huge","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","id","id,","id.","id:","ideas:","ident","identifi","idl","idle.","if(olddoc.tim","ignoredupl","ignoreduplicate:","imag","imagin","immut","immutable.","implement","import","import/export","importdump()","imported.","improv","in.","includ","incom","increas","index","index,","index:","indexed,","indexes,","initi","inmemori","insert","insert()","insertlocal()","insid","inspect","instal","instanc","instance,","instance.","instantli","instead","instead.","integr","intent","interact","intern","introduct","invalid","io","isnam","isname;","isrxcollect","isrxdatabas","isrxdocu","isrxqueri","issu","it'","it,","it.","items:","javascript","javascript,","javascript.","join","js","json","jsonschema","jump","keep","key","keycompress","keycompressor","keynam","keyword","keyword:","king!');","kitty',","know","known","last","lastnam","lastname:","lastpromis","lastpromise;","laststat","later","later.","latest","lead","leader","leader,","leader.","leaderelect","leaderelection.","learn","leav","length","less","level","leveldb","leveldb'));","life","lifecycl","limit","list","list:","live","live:","load","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","locallly,","localstorage'));","locat","log","logic","long","longer","look","looks.","lot","made","main","make","manag","mani","manipul","manipulate.","manual","map","mark","match","matter","maximum","md5","mean","means,","memcol","memcol.find().exec();","memdown","memdown});","memori","memory'));","memory';","memory)","merg","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","metadata.","meteor","method","method,","method.","methods:","middlewar","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mind","minute.","mistake,","mode.","model","modifi","modifyjs.","modul","module,","module.","moment","mongo","mongoose,","mongoose.","more","mother","mother:","ms","multiinst","multiinstance:","multipl","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.customcleanupfunction();","mycollection.dump()","mycollection.dump(true)","mycollection.find().exec()","mycollection.find().where('age').gt(18)","mycollection.find().where('age').gt(18);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find({name:","mycollection.findone('foo')","mycollection.findone().exec();","mycollection.findone().where('name').eq('foo')","mycollection.getlocal('foobar');","mycollection.importdump(json)","mycollection.inmemory();","mycollection.insert({","mycollection.insertlocal(","mycollection.newdocument({","mycollection.postcreate(function(doc){","mycollection.postinsert(function(documentdata){","mycollection.postremove(function(doc){","mycollection.postsave(function(doc){","mycollection.preinsert(function(documentdata){","mycollection.preremove(function(doc){","mycollection.presave(function(doc){","mycollection.remove();","mycollection.sync(","mycollection.upsert(docdata);","mycollection.upsert({","mycollection.upsertlocal(","mydatabase.collection({","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.insertlocal(","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","mydocument.$()","mydocument.ag","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.atomicupdate(function(doc){","mydocument.deleted$.subscribe(st","mydocument.family.mother_;","mydocument.firstnam","mydocument.firstname$","mydocument.friends_;","mydocument.get$('name')","mydocument.get('name');","mydocument.getattachment('cat.jpg');","mydocument.nam","mydocument.name;","mydocument.putattachment({","mydocument.remove();","mydocument.resync();","mydocument.save();","mydocument.set('firstname',","mydocument.set('name',","mydocument.synced$.subscribe(st","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield$","mydocument.whatever.nestedfield;","myheroschema","myplugin","myschema","myschema,","name","name.","name:","name:foobar","names.","nativ","need","need.","ness","nest","nestedvalu","never","new","new,","new.","newdocument()","newer","newest","newli","newname;","next","nodej","non","normal","not.","note","noth","notic","notice:","notif","notifi","now","now,","npm","nr;","null","null,","null;","number","number,","number.","object","object,","object.","object.defineproperty(doc,","observ","occur","off,","offlin","ok","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","once.","open","oper","operations.","oplog","optim","optimis","option","options:","origin","orm","orm/drm","other.","otherwis","out","over","overwrit","overwritable:","overwritt","overwritten","package.json,","package.json.","page","parallel","paramet","parameter.","parameters.","parent","parrallel","part","pass","password","password.","password.length","password:","path","peer","per","percent:","percentag","perform","performance,","pick","piec","pleas","plu","plugin","plugin.","plugins:","point","polling.","polyfil","polyfill');","polyfill';","polyfill.","polyfills,","popul","populate()","post","postcreat","postinsert","postremov","postsav","pouch/couch","pouchdb","pouchdb,","pouchset","power","powerful","pr","pre","prefil","preinsert","preremov","presav","prev","prevent","previou","primari","primary,","primary.","primary:","problem","process,","produce,","promis","promise(r","promise.","properti","properties:","property.","pros:","proto.hello","protocol.","prototyp","prototypes:","protoyp","provid","proxi","pseudo","pull","pull:","push:","putattachment()","queri","queries,","queries.","query.","query.$.subscribe(us","query.remove();","query.update({","query:","querychangedetect","querychangedetector","querychangedetector.enable();","querychangedetector.enabledebugging();","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","quota","ram","rare","re","react","reactiv","reactive,","read","realli","reasign","receiv","reciev","recogn","record","redund","reestablished.","ref","ref:","refer","referenc","refhuman","refind","regex","regex:","regular","relat","releas","remains:","remot","remote:","remov","remove()","removed.","removeddoc","replac","replic","replicated.","replication,","replication.","replications.","replicationst","replicationstate.active$.subscribe(act","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","repositori","repres","reproduc","request","request,","requestidlecallback","requestidlepromise()","requir","require('babel","require('rxdb');","require('rxdb/plugins/core');","required.","required:","resolv","resourc","respons","response.json();","result","result.","resync","resync()","retry:","return","returning.","reus","rev","revis","right","run","run:","running.","runtime,","rx.collection.sync()","rxattach","rxattachemnt","rxchangeevent.","rxcollect","rxcollection().inmemory();","rxcollection,","rxcollection.","rxcollection.insert","rxcollection.newdocument(initaldata).","rxcollection.sync()","rxcollection.sync().","rxcollection:","rxcollections,","rxdatabas","rxdatabase.","rxdb","rxdb'","rxdb,","rxdb.","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.create({name:","rxdb.isrxcollection(myobj);","rxdb.isrxdatabase(myobj);","rxdb.isrxdocument(myobj);","rxdb.isrxquery(myobj);","rxdb.plugin()","rxdb.plugin(require('pouchdb","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdb.removedatabase('mydatabasename',","rxdb:","rxdbadaptercheckmodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbupdatemodul","rxdbvalidatemodul","rxdocument","rxdocument)","rxdocument,","rxdocument.","rxdocument.atomicupdate.","rxdocument.remov","rxdocument.sav","rxdocument.upd","rxdocument[alice]","rxj","rxlocaldocu","rxlocaldocument.","rxqueri","rxquery'","rxquery.","rxquery.update.","rxreplicationst","rxschema","rxschema.","same","save","save()","save().","save,","saved.","schema","schema\",","schema'","schema,","schema.","schema.org.","schema:","schema?","schemacheck","schemas,","schemas.","schemaversions.","schemawithdefaultag","schemawithfinalag","schemawithindex","scream:","search","second","secondari","seconds.","secret","see","semi","send","sender","sent","seri","server","serverless,","serverless.","serverurl,","set","set()","set).","settimeout(res,","settings:","share","short","shoud","show","side","side,","similar","simpl","simple.","singal","singl","site","size.","skeletor!!'","skill","slow","small","solut","solv","someon","someth","sometim","sort","sourc","spawn","spec","special","specif","specifi","specifiy","speed","src","standard","start","state","state);","static","static.","statics:","stay","still","stop","storag","storage.","store","strategi","stream","stream.","string","string,","string.","structur","submit","subscrib","succeed","success:","sum","support","supprot","sure","sync","sync()","sync.","synced$","synced$.","synchron","synchronis","syntax,","system","tab","tab.","table.","tabs,","tabs.","take","task","tasks.","team","temp","temp,","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temperatur","temporari","ten","test","test/unit","test:nod","tests,","thank","them,","then,","therefor","these","thing","things.","this,","this.","this.nam","this.name;","this:","thousand","through","throw","time","time,","time.","time:","timeout","timespan,","timestamp","title:","to,","to.","togeth","top","toplist","total:","track","traffic","transform","transpil","tri","trigger","trivial","true","true);","true,","true.","two","type","type.","type:","typeof","u","undefin","underscor","underscore_","uniqu","unique,","unit","unix","unset","until","up","updat","update()","update/insert/remov","upon","upsert","upsert()","upsertlocal()","us","usag","used:","useful","user","user'","user,","users'","users.","userscollection.find().where('loggedin').eq(true).sort('points');","valid","validatepassword:","valu","value,","value.","values.","vanillaj","var","variou","veri","version","version,","version.","version:","versions.","via","visitor","wait","wait..","waitforleadership()","waitforleadership:","want","warn","warning:","wast","way","websit","websocket","whaterv","whenev","whether","while,","whoami:","whole","wide","wide.","window","wire","within","without","work","work!","work.","works!","worry,","wrap","write","written","wrong.","you.","z0","z][[a","z][a","za","zero","{","{$eq:","{object}","||","}","})","});","},","};","♛"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n \n \n \n\n\n\n Reactive, serverless, client-side, offline-first database in javascript.\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n If you are new to RxDB, you should start here.\n\n"},"install.html":{"url":"install.html","title":"Install","keywords":"","body":"Install\nnpm\nTo install the latest release of rxdb and its dependencies and save it to your package.json, run:\nnpm i rxdb --save\npeer-dependency\nYou also need to install the peer-dependency rxjs if you not have installed it before.\nnpm i rxjs --save\npolyfills\nRxDB is coded with es8 and transpiled to es5.\nThis means you have to install polyfills to support older browsers.\nnpm i babel-polyfill --save\nLatest\nIf you need the latest develop-state of RxDB, add it as git-dependency into your package.json.\n \"dependencies\": {\n \"rxdb\": \"git+https://git@github.com/pubkey/rxdb.git#commitHash\"\n }\n\nReplace commitHash with the hash of the latest build-commit.\nImport\nTo import rxdb, add this to your javascript file:\n// es6\nimport RxDB from 'rxdb';\n\n// es5\nvar rxdb = require('rxdb');\n\nIf you have not included es8-polyfills, you also have to import babel-polyfill.\n// es6\nimport 'babel-polyfill';\n\n// es5\nrequire('babel-polyfill');\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-database.html":{"url":"rx-database.html","title":"RxDatabase","keywords":"","body":"RxDatabase\nA RxDatabase-Object contains your collections and handles the synchronisation of change-events.\nCreation\nThe database is created by the asynchronous .create()-function of the main RxDB-module. It has the following 4 parameters.\nconst db = await RxDB.create({\n name: 'heroesdb', // \nname\nThe database-name is a string which uniquely identifies the database. When two RxDatabases have the same name and use the same storage-adapter, their data can be assumed as equal and they will share change-events between each other.\nDepending on the adapter this can also be used to define the storage-folder of your data.\nadapter\nThe storage-adapter defines where the data is actually stored at. You can use a string for pouchdb-adapters or an object for level-adapters. To use an adapter it must before have been added with the RxDB.plugin()-function.\nBefore using a level-adapter, you have to add the pouchdb-adapter-leveldb module.\nExample with level-adapter:\nimport memdown from 'memdown';\nRxDB.plugin(require('pouchdb-adapter-leveldb'));\nconst db = await RxDB.create({name: 'mydatabase', adapter: memdown});\n\npassword\n(optional)\nIf you want to use encrypted fields in the collections of a database, you have to set a password for it. The password must be a string with at least 12 characters.\nmultiInstance\n(optional=true)\nWhen you create more than one instance of the same database in a single javascript-runtime, you should set multiInstance to true. This will enable the event-sharing between the two instances serverless. This should be set to false when you have single-instances like a single nodejs-process, a react-native-app, a cordova-app or a single-window electron-app.\nignoreDuplicate\n(optional=false)\nIf you create multiple RxDatabase-instances with the same name and same adapter, it's very likely that you have done something wrong.\nTo prevent this common mistake, RxDB will throw an error when you do this.\nIn some rare cases like unit-tests, you want to do this intentional by setting ignoreDuplicate to true.\nconst db1 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true\n});\nconst db2 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true // this create-call will not throw because you explicitly allow it\n});\n\nFunctions\nObserve with $\nCalling this will return an rxjs-Observable which streams every change to data of this database.\nmyDb.$.subscribe(changeEvent => console.dir(changeEvent));\n\nwaitForLeadership()\nReturns a Promise which resolves when the RxDatabase becomes elected leader.\ndump()\nUse this function to create a json-export from every piece of data in every collection of this database. You can pass true as a parameter to decrypt the encrypted data-fields of your document.\nmyDatabase.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyDatabase.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json-dumps into your database, use this function.\n// import the dump to the database\nemptyDatabase.importDump(json)\n .then(() => console.log('done'));\n\nrequestIdlePromise()\nReturns a promise which resolves when the database is in idle. This works similar to requestIdleCallback but tracks the idle-ness of the database instead of the CPU.\nUse this for semi-important tasks like cleanups which should not affect the speed of important tasks.\n\nmyDatabase.requestIdlePromise().then(() => {\n // this will run at the moment the database has nothing else to do\n myCollection.customCleanupFunction();\n});\n\n// with timeout\nmyDatabase.requestIdlePromise(1000 /* time in ms */).then(() => {\n // this will run at the moment the database has nothing else to do\n // or the timeout has passed\n myCollection.customCleanupFunction();\n});\n\ndestroy()\nDestroys the databases object-instance. This is to free up memory and stop all observings and replications.\nReturns a Promise that resolves when the database is destroyed.\nawait myDatabase.destroy();\n\nremove()\nRemoves the database and all data of it from the storage.\nawait myDatabase.remove();\n// database is now gone\n\n// NOTICE: You can also remove a database without its instance\nRxDB.removeDatabase('mydatabasename', 'localstorage');\n\ncheckAdapter()\nChecks if the given adapter can be used with RxDB in the current environment.\nRxDB.plugin(require('pouchdb-adapter-localstorage')); // adapter must be added before\n\nconst ok = await RxDB.checkAdapter('localstorage');\nconsole.dir(ok); // true on most browsers, false on nodejs\n\nisRxDatabase\nReturns true if the given object is an instance of RxDatabase. Returns false if not.\nconst is = RxDB.isRxDatabase(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-schema.html":{"url":"rx-schema.html","title":"RxSchema","keywords":"","body":"RxSchema\nSchemas define how your data looks. Which field should be used as primary, which fields should be used as indexes and what should be encrypted. The schema also validates that every inserted document of your collections conforms to the schema. Every collection has its own schema. With RxDB, schemas are defined with the jsonschema-standard so that you dont have to learn anything new.\nExample\nIn this example-schema we define a hero-collection with the following settings:\n\nthe version-number of the schema is 0\nthe name-property is the primary. This means its an unique, indexed, required string which can be used to definitely find a single document.\nthe color-field is required for every document\nthe healthpoints-field must be a number between 0 and 100\nthe secret-field stores an encrypted value\nthe birthyear-field is final which means it is required and cannot be changed\nthe skills-attribute must be an array with objects which contain the name and the damage-attribute. There is a maximum of 5 skills per hero.\n{\n \"title\": \"hero schema\",\n \"version\": 0,\n \"description\": \"describes a simple hero\",\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"primary\": true\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"healthpoints\": {\n \"type\": \"number\",\n \"min\": 0,\n \"max\": 100\n },\n \"secret\": {\n \"type\": \"string\",\n \"encrypted\": true\n },\n \"birthyear\": {\n \"type\": \"number\",\n \"final\": true,\n \"min\": 1900,\n \"max\": 2050\n },\n \"skills\": {\n \"type\": \"array\",\n \"maxItems\": 5,\n \"uniqueItems\": true,\n \"item\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"damage\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n \"required\": [\"color\"]\n}\n\n\n\nCreate a collection with the schema\nawait myDatabase.collection({\n name: 'heroes',\n schema: myHeroSchema\n});\nconsole.dir(myDatabase.heroes.name);\n// heroes\n\nversion\nThe version field is a number, starting with 0.\nWhen the version is greater than 0, you have to provide the migrationStrategies to create a collection with this schema.\ndisableKeyCompression\nIf you do not want to use the internal key-compression, you can disable it by setting the field disableKeyCompression to true.\nNotice that disableKeyCompression can only be used on the top-level of a schema.\nconst mySchema = {\n disableKeyCompression: true,\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nIndexes\nRxDB supports secondary indexes which are defined at the schema-level of the collection.\nTo add a simple index, add index: true to any fieldName.\nTo add compound-indexes, add them in an array to a compoundIndexes-field at the top-level of the schema-definition.\nIndex-example\nconst schemaWithIndexes = {\n disableKeyCompression: true,\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string',\n index: true // \ndefault\nDefault values can only be defined for first-level fields.\nWhenever you insert a document or create a temporary-document, unset fields will be filled with default-values.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n default: 20 // \nfinal\nBy setting a field to final, you make sure it cannot be modified later. Final fields are always required.\nFinal fields cannot be observed because they anyway will not change.\nAdvantages:\n- With final fields you can ensure that no other in your dev-team accidentally modifies the data\n- When you enable the `query-change-detection`, some performance-improvements are done\nconst schemaWithFinalAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n final: true\n }\n },\n};\n\nNOTICE: Not everything within the jsonschema-spec is allowed\nThe schema is not only used to validate objects before they are written into the database, but also used to map getters to observe and populate single fieldnames, keycompression and other things. Therefore you can not use every schema which would be valid for the spec of json-schema.org.\nFor example, fieldnames must match the regex ^[a-zA-Z][[a-zA-Z0-9_]*]?[a-zA-Z0-9]$ and additionalProperties is always set to false. But don't worry, RxDB will instantly throw an error when you pass a invalid schema into it.\n\nIf you are new to RxDB, you should continue here\n"},"rx-collection.html":{"url":"rx-collection.html","title":"RxCollection","keywords":"","body":"RxCollection\nA collection stores documents of the same type.\nCreating a Collection\nTo create a collection you need a RxDatabase object which has the .collection()-method. Every collection needs a collection name and a valid RxSchema.\nmyDatabase.collection({\n name: 'humans',\n schema: mySchema\n})\n .then(collection => console.dir(collection));\n\nname\nThe name uniquely identifies the collection and should be used to refind the collection in the database. Two different collections in the same database can never have the same name. Collection names must match the following regex: ^[a-z][a-z0-9]*$.\nschema\nThe schema defines how your data looks and how it should be handled. You can pass a RxSchema object or a simple javascript-object from which the schema will be generated.\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property.\nGet a collection from the database\nTo get an existing collection from the database, call the collection name directly on the database:\n// newly created collection\nconst collection = await db.collection({\n name: 'heroes',\n schema: mySchema\n});\nconst collection2 = db.heroes;\n// or\n// const collection2 = db['heroes']\n\nconsole.log(collection == collection2);\n// true\n\nFunctions\nObserve $\nCalling this will return an rxjs-Observable which streams every change to data of this collection.\nmyCollection.$.subscribe(changeEvent => console.dir(changeEvent));\n\ninsert()\nUse this to insert new documents into the database. The collection will validate the schema and automatically encrypt any encrypted fields. Returns the new RxDocument.\nconst doc = await myCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nnewDocument()\nSometimes it can be helpfull to spawn and use documents before saving them into the database.\nThis is usefull especially when you want to use the ORM methods or prefill values from form data.\nYou can create temporary documents by calling RxCollection.newDocument(initalData).\nconst tempDoc = myCollection.newDocument({\n firstName: 'Bob'\n});\n\n// fill in data later\ntempDoc.lastName = 'Kelso';\ntempDoc.age = 77;\n\n// saving a temporary document will transform it to a standard RxDocument\nawait tempDoc.save();\n\nupsert()\nInserts the document if it does not exist within the collection, otherwise it will overwrite it. Returns the new or overwritten RxDocument.\nconst doc = await myCollection.upsert({\n name: 'foo',\n lastname: 'bar2'\n});\n\natomicUpsert()\nWhen you run many upsert operations on the same RxDocument in a very short timespan, you might get a 409 Conflict error.\nThis means that you tried to run a .upsert() on the document, while the previous upsert operation was still running.\nTo prevent these types of errors, you can run atomic upsert operations.\nThe behavior is similar to RxDocument.atomicUpdate.\nconst docData = {\n name: 'Bob', // primary\n lastName: 'Kelso'\n};\n\nmyCollection.upsert(docData);\nmyCollection.upsert(docData);\n// -> throws because of parrallel update to the same document\n\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\n\n// wait until last upsert finished\nawait myCollection.atomicUpsert(docData);\n// -> works\n\nfind()\nTo find documents in your collection, use this method.\nThis will return a RxQuery object with the exec function.\n// directly pass search-object\nmyCollection.find({name: {$eq: 'foo'}})\n .exec().then(documents => console.dir(documents));\n\n// chained queries\nmyCollection.find().where('name').eq('foo')\n .exec().then(documents => console.dir(documents));\n\nfindOne()\nThis does basically what find() does, but it returns only a single document. You can pass a primary value to find a single document more easily.\n// get document with name:foobar\nmyCollection.findOne().where('name').eq('foo')\n .exec().then(doc => console.dir(doc));\n\n// get document by primary, functionally identical to above query\nmyCollection.findOne('foo')\n .exec().then(doc => console.dir(doc));\n\ndump()\nUse this function to create a json export from every document in the collection. You can pass true as parameter to decrypt the encrypted data fields of your documents.\nmyCollection.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyCollection.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json dump into your collection, use this function.\n// import the dump to the database\nmyCollection.importDump(json)\n .then(() => console.log('done'));\n\ndestroy()\nDestroys the collection's object instance. This is to free up memory and stop all observings and replications.\nmyDatabase.destroy();\n\nsync()\nThis method allows you to replicate data between other RxCollections, pouchdb instances or remove servers which supprot the couchdb-sync-protocol.\nFull documentation on how to use replication is here.\nremove()\nRemoves all known data of the collection and its previous versions.\nThis removes the documents, the schemas, and older schemaVersions.\nawait myCollection.remove();\n// collection is no removed and can be re-created\n\nisRxCollection\nReturns true if the given object is an instance of RxCollection. Returns false if not.\nconst is = RxDB.isRxCollection(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-document.html":{"url":"rx-document.html","title":"RxDocument","keywords":"","body":"RxDocument\nA document is a single object which is stored in a collection. It can be compared to a single record in a relational database table.\ninsert\nTo insert a document into a collection, you have to call the collection's .insert()-function.\nmyCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nfind\nTo find documents in a collection, you have to call the collection's .find()-function.\nmyCollection.find().exec() // console.dir(documents));\n\nFunctions\nget()\nThis will get a single field of the document. If the field is encrypted, it will be automatically decrypted before returning.\nvar name = myDocument.get('name'); // returns the name\n\nproxy-get\nAs RxDocument is wrapped into a Proxy-object, you can also directly access values instead of using the get()-function.\n // Identical to myDocument.get('name');\n var name = myDocument.name;\n // Can also get nested values.\n var nestedValue = myDocument.whatever.nestedfield;\n\nset()\nTo change data in your document, use this function. It takes the field-path and the new value as parameter. Note that calling the set-function will not change anything in your storage directly. You have to call .save() after to submit changes.\nmyDocument.set('firstName', 'foobar');\nconsole.log(myDocument.get('firstName')); // \nproxy-set\nAs RxDocument is wrapped into a Proxy-object, you can also directly set values instead of using the set()-function.\nmyDocument.firstName = 'foobar';\nmyDocument.whatever.nestedfield = 'foobar2';\n\nsave()\nThis will update the document in the storage if it has been changed. Call this after modifying the document (via set() or proxy-set).\nmyDocument.name = 'foobar';\nawait myDocument.save(); // submit the changes to the storage\n\nremove()\nThis removes the document from the collection.\nmyDocument.remove();\n\nupdate()\nUpdates the document based on the mongo-update-syntax, based on modifyjs.\nawait myDocument.update({\n $inc: {\n age: 1 // increases age by 1\n },\n $set: {\n fistName: 'foobar' // sets firstName to foobar\n }\n});\n\natomicUpdate()\nWhen you run many save-operations on the same RxDocument in a very short timespan, it can happen that you get a 409 Conflict-Error.\nThis means that you did run a .save() on the document, while the previous save-operation was still running.\nTo prevent these types of errors, you can run atomic update-operations.\natomicUpdate() has a function as argument, which transforms the document and then automatically runs a save().\nIt returns a promise to notify you when the given atomic-update has finished.\nExample to reproduce the 409-error:\n[1,2,3,4].forEach(nr => {\n myDocument.age = nr;\n myDocument.save();\n});\n// throws\n\nUsage of atomicUpdate:\nlet lastPromise;\n[1,2,3,4].forEach(nr => {\n lastPromise = myDocument.atomicUpdate(function(doc){\n doc.age = nr;\n });\n});\nawait lastPromise;\nconsole.dir(myDocument.age); // 4\n\nObserve $\nCalling this will return an rxjs-Observable which emits all change-Events belonging to this document.\n// get all changeEvents\nmyDocument.$()\n .subscribe(changeEvent => console.dir(changeEvent));\n\nget$()\nThis function returns an observable of the given paths-value.\nThe current value of this path will be emitted each time the document changes.\n// get the life-updating value of 'name'\nvar isName;\nmyDocument.get$('name')\n .subscribe(newName => {\n isName = newName;\n });\n\nmyDocument.set('name', 'foobar2');\nawait myDocument.save();\n\nconsole.dir(isName); // isName is now 'foobar2'\n\nproxy-get$\nYou can directly get value-observables for a fieldName by adding the dollarSign ($) to its name.\n// top-level\nvar currentName;\nmyDocument.firstName$\n .subscribe(newName => {\n currentName = newName;\n });\nmyDocument.firstName = 'foobar2';\nawait myDocument.save();\nconsole.dir(currentName); // currentName is now 'foobar2'\n\n// nested\nvar currentNestedValue;\nmyDocument.whatever.nestedfield$\n .subscribe(newName => {\n currentNestedValue = newName;\n });\nmyDocument.whatever.nestedfield = 'foobar2';\nawait myDocument.save();\nconsole.dir(currentNestedValue); // currentNestedValue is now 'foobar2'\n\ndeleted$\nEmits a boolean value, depending on whether the RxDocument is deleted or not.\nlet lastState = null;\nmyDocument.deleted$.subscribe(state => lastState = state);\n\nconsole.log(lastState);\n// false\n\nawait myDocument.remove();\n\nconsole.log(lastState);\n// true\n\nget deleted\nA getter to get the current value of deleted$.\nconsole.log(myDocument.deleted);\n// false\n\nawait myDocument.remove();\n\nconsole.log(myDocument.deleted);\n// true\n\nsynced$\nEmits a boolean value of whether the RxDocument is in the same state as its value stored in the database.\nThis is useful to show warnings when two or more users edit a document at the same time.\nBrowser tab A\nlet lastState = null;\nmyDocument.synced$.subscribe(state => lastState = state);\nconsole.log(lastState);\n// true\n\nmyDocument.firstName = 'foobar';\nconsole.log(lastState);\n// true\n\nBrowser tab B\nmyDocument.firstName = 'barfoo';\nawait myDocument.save();\n\nBrowser tab A\nconsole.log(lastState);\n// false\n\n\n\n Example with Angular 2\n\n\n```html\n\n Warning:\n Someone else has changed this document. If you click save, you will overwrite the changes.\n resync\n\n```\n\n![synced.gif](files/synced.gif)\n\n\nget synced\nA getter to get the current value of synced$.\nBrowser tab A\nconsole.log(myDocument.synced);\n// true\n\nmyDocument.firstName = 'foobar';\nconsole.log(myDocument.synced);\n// true\n\nBrowser tab B\nmyDocument.firstName = 'barfoo';\nawait myDocument.save();\n\nBrowser tab A\nconsole.log(myDocument.synced);\n// false\n\nresync()\nIf the RxDocument is not in sync (synced$ fires false), you can run resync() to overwrite own changes with the new state from the database.\nmyDocument.firstName = 'foobar';\n\n// now someone else overwrites firstName with 'Alice'\n\nmyDocument.resync();\n\nconsole.log(myDocument.firstName);\n// Alice\n\nisRxDocument\nReturns true if the given object is an instance of RxDocument. Returns false if not.\nconst is = RxDB.isRxDocument(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-query.html":{"url":"rx-query.html","title":"RxQuery","keywords":"","body":"RxQuery\nA query defines how to find documents in your collection. With RxDB you can use chained queries.\nremove()\nDeletes all found documents. Returns a promise which resolves to the deleted documents.\n// All documents where the age is less than 18\nconst query = myCollection.find().where('age').lt(18);\n// Remove the documents from the collection\nconst removedDocs = await query.remove();\n\nupdate()\nRuns and update on every RxDocument of the query-result.\nconst query = myCollection.find().where('age').gt(18);\nawait query.update({\n $inc: {\n age: 1 // increases age of every found document by 1\n }\n});\n\nNOTICE: RxQuery's are immutable\nBecause RxDB is a reactive database, we can do heavy performance-optimisation on query-results which change over time. To be able to do this, RxQuery's have to be immutable.\nThis means, when you have a RxQuery and run a .where() on it, the original RxQuery-Object is not changed. Instead the where-function returns a new RxQuery-Object with the changed where-field. Keep this in mind if you create RxQuery's and change them afterwards.\nExample:\nconst queryObject = myCollection.find().where('age').gt(18);\n// Creates a new RxQuery object, does not modify previous one\nqueryObject.sort('name');\nconst results = await queryObject.exec();\nconsole.dir(results); // result-documents are not sorted by name\n\nconst queryObjectSort = queryObject.sort('name');\nconst results = await queryObjectSort.exec();\nconsole.dir(results); // result-documents are now sorted\n\nisRxQuery\nReturns true if the given object is an instance of RxQuery. Returns false if not.\nconst is = RxDB.isRxQuery(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-attachment.html":{"url":"rx-attachment.html","title":"RxAttachment","keywords":"","body":"Attachments\nLike pouchdb, RxDB can store attachments which has a better performance and a higher quota-limit then regular data.\nYou can store string, binary files, images and whaterver you want side by side with your documents.\nBefore you can use attachments, you have to ensure that the attachments-object is set in the schema of your RxCollection.\n\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n // .\n // .\n // .\n },\n attachments: {\n encrypted: true // if true, the attachment-data will be encrypted with the db-password\n }\n};\n\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema\n});\n\nputAttachment()\nAdds an attachment to a RxDocument. Returns a Promise with the new attachment.\nconst attachment = await myDocument.putAttachment({\n id, // string, name of the attachment like 'cat.jpg'\n data, // (string|Blob|Buffer) data of the attachment\n type // (string) type of the attachment-data like 'image/jpeg'\n});\n\ngetAttachment()\nReturns an RxAttachment by its id. Returns null when the attachment does not exist.\nconst attachment = myDocument.getAttachment('cat.jpg');\n\nallAttachments()\nReturns an array of all attachments of the RxDocument.\nconst attachments = myDocument.allAttachments();\n\nallAttachments$\nGets an Observable which emits a stream of all attachments from the document. Re-emits each time an attachment gets added or removed from the RxDocument.\nconst all = [];\nmyDocument.allAttachments$.subscribe(\n attachments => all = attachments\n);\n\nRxAttachment\nThe attachments of RxDB are represented by the type RxAttachment which has the following attributes/methods.\ndoc\nThe RxDocument which the attachement is assigned to.\nid\nThe id as string of the attachment.\ntype\nThe type as string of the attachment.\nlength\nThe length of the data of the attachment as number.\ndigest\nThe md5-sum of the attachments data as string.\nrev\nThe revision-number of the attachment as number.\nremove()\nRemoves the attachment. Returns a Promise that resolves when done.\nconst attachment = myDocument.getAttachment('cat.jpg');\nawait attachment.remove();\n\ngetData()\nReturns a Promise which resolves the attachment's data as Blob or Buffer. (async)\nconst attachment = myDocument.getAttachment('cat.jpg');\nconst blobBuffer = await attachment.getData();\n\ngetStringData()\nReturns a Promise which resolves the attachment's data as string.\nconst attachment = await myDocument.getAttachment('cat.jpg');\nconst data = await attachment.getStringData();\n\n\nIf you are new to RxDB, you should continue here\n"},"middleware.html":{"url":"middleware.html","title":"Middleware-hooks","keywords":"","body":"Middleware\nRxDB supports middleware-hooks like mongoose.\nMiddleware (also called pre and post hooks) are functions which are passed control during execution of asynchronous functions.\nThe hooks are specified on RxCollection-level and help to create a clear what-happens-when-structure of your code.\nHooks can be defined to run parallel or as series one after another.\nHooks can be synchronous or asynchronous when they return a Promise.\nTo stop the operation at a specific hook, throw an error.\nList\nRxDB supports the following hooks:\n\npreInsert\npostInsert\npreSave\npostSave\npreRemove\npostRemove\npostCreate\n\nWhy is there no validate-hook?\nDifferent to mongoose, the validation on document-data is running on the field-level for every change to a document.\nThis means if you set the value lastName of a RxDocument, then the validation will only run on the changed field, not the whole document.\nTherefore it is not usefull to have validate-hooks when a document is written to the database.\nUse Cases\nMiddleware are useful for atomizing model logic and avoiding nested blocks of async code.\nHere are some other ideas:\n\ncomplex validation\nremoving dependent documents\nasynchronous defaults\nasynchronous tasks that a certain action triggers\ntriggering custom events\nnotifications\n\nUsage\nInsert\nAn insert-hook recieves the data-object of the new document.\nlifecycle\n\nRxCollection.insert is called\npreInsert series-hooks\npreInsert parallel-hooks\nschema validation runs\nnew document is written to database\npostInsert series-hooks\npostInsert parallel-hooks\nevent is emmited to RxDatabase and RxCollection\n\npreInsert\n// series\nmyCollection.preInsert(function(documentData){\n\n}, false);\n\n// parallel\nmyCollection.preInsert(function(documentData){\n\n}, true);\n\n// async\nmyCollection.preInsert(function(documentData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the insert-operation\nmyCollection.preInsert(function(documentData){\n throw new Error('stop');\n}, false);\n\npostInsert\n// series\nmyCollection.postInsert(function(documentData){\n\n}, false);\n\n// parallel\nmyCollection.postInsert(function(documentData){\n\n}, true);\n\n// async\nmyCollection.postInsert(function(documentData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nSave\nA save-hook receives the document which is saved.\nlifecycle\n\nRxDocument.save is called\npreSave series-hooks\npreSave parallel-hooks\nupdated document is written to database\npostSave series-hooks\npostSave parallel-hooks\nevent is emmited to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preSave(function(doc){\n doc.anyField = 'anyValue';\n}, false);\n\n// parallel\nmyCollection.preSave(function(doc){\n\n}, true);\n\n// async\nmyCollection.preSave(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the save-operation\nmyCollection.preSave(function(doc){\n throw new Error('stop');\n}, false);\n\npostSave\n// series\nmyCollection.postSave(function(doc){\n\n}, false);\n\n// parallel\nmyCollection.postSave(function(doc){\n\n}, true);\n\n// async\nmyCollection.postSave(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nRemove\nAn remove-hook recieves the document which is removed.\nlifecycle\n\nRxDocument.remove is called\npreRemove series-hooks\npreRemove parallel-hooks\ndeleted document is written to database\npostRemove series-hooks\npostRemove parallel-hooks\nevent is emmited to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preRemove(function(doc){\n\n}, false);\n\n// parallel\nmyCollection.preRemove(function(doc){\n\n}, true);\n\n// async\nmyCollection.preRemove(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the remove-operation\nmyCollection.preRemove(function(doc){\n throw new Error('stop');\n}, false);\n\npostRemove\n// series\nmyCollection.postRemove(function(doc){\n\n}, false);\n\n// parallel\nmyCollection.postRemove(function(doc){\n\n}, true);\n\n// async\nmyCollection.postRemove(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\npostCreate\nThis hook is called whenever a RxDocument is constructed.\nYou can use postCreate to modify every RxDocument-instance of the collection.\nThis adds a flexible way to add specifiy behavior to every document. You can also use it to add custom getter/setter to documents. PostCreate-hooks cannot be asynchronous.\nmyCollection.postCreate(function(doc){\n Object.defineProperty(doc, 'myField', {\n get: () => 'foobar',\n });\n});\n\nconst doc = await myCollection.findOne().exec();\n\nconsole.log(doc.myField);\n// 'foobar'\n\nNotice: This hook does not run on already created or cached documents. Make sure to add postCreate-hooks before interacting with the collection.\n\nIf you are new to RxDB, you should continue here\n"},"orm.html":{"url":"orm.html","title":"ORM/DRM","keywords":"","body":"Object-Data-Relational-Mapping\nLike mongoose, RxDB has ORM-capabilities which can be used to add specific behavior to documents and collections.\nstatics\nStatics are defined collection-wide and can be called on the collection.\nAdd statics to a collection\nTo add static functions, pass a statics-object when you create your collection. The object contains functions, mapped to their function-names.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\n\nconsole.log(heroes.scream());\n// 'AAAH!!'\n\nYou can also use the this-keyword which resolves to the collection:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n whoAmI: function(){\n this.name;\n }\n }\n});\nconsole.log(heroes.whoAmI());\n// 'heroes'\n\ninstance-methods\nInstance-methods are defined collection-wide. They can be called on the RxDocuments of the collection.\nAdd instance-methods to a collection\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.scream());\n// 'AAAH!!'\n\nHere you can also use the this-keyword:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n whoAmI: function(){\n return 'I am ' + this.name + '!!';\n }\n }\n});\nawait heroes.insert({\n name: 'Skeletor'\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.whoAmI());\n// 'I am Skeletor!!'\n\nattachment-methods\nAttachment-methods are defined collection-wide. They can be called on the RxAttachemnts of the RxDocuments of the collection.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n attachments: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconst attachment = await doc.putAttachment({\n id: 'cat.txt',\n data: 'meow I am a kitty',\n type: 'text/plain'\n});\nconsole.log(attachment.scream());\n// 'AAAH!!'\n\n\nIf you are new to RxDB, you should continue here\n"},"population.html":{"url":"population.html","title":"Population","keywords":"","body":"Population\nThere are no joins in RxDB but sometimes we still want references to documents in other collections. This is where population comes in. You can specify a relation from one RxDocument to another RxDocument in the same or another RxCollection of the same database.\nThen you can get the referenced document with the population-getter.\nThis works exactly like population with mongoose.\nSchema with ref\nThe ref-keyword describes to which collection the field-value belongs to.\nexport const refHuman = {\n title: 'human related to other human',\n version: 0,\n properties: {\n name: {\n primary: true,\n type: 'string'\n },\n bestFriend: {\n ref: 'human', // refers to collection human\n type: 'string' // ref-values must always be string (primary of foreign RxDocument)\n }\n }\n};\n\npopulate()\nvia method\nTo get the refered RxDocument, you can use the populate()-method.\nIt takes the field-path as attribute and returns a Promise which resolves to the foreign document or null if not found.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.populate('bestFriend');\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nvia getter\nYou can also get the populated RxDocument with the direct getter. Therefore you have to add the underscore _ to the fieldname.\nThis works also on nested values.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.bestFriend_; // notice the underscore_\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nExample with nested reference\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n family: {\n type: 'object',\n properties: {\n mother: {\n type: 'string',\n ref: 'human'\n }\n }\n }\n }\n }\n});\n\nconst mother = await myDocument.family.mother_;\nconsole.dir(mother); //> RxDocument\n\nExample with array\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n }\n});\n\n//[insert other humans here]\n\nawait myCollection.insert({\n name: 'Alice',\n friends: [\n 'Bob',\n 'Carol',\n 'Dave'\n ]\n});\n\nconst doc = await humansCollection.findOne('Alice').exec();\nconst friends = await myDocument.friends_;\nconsole.dir(friends); //> Array.\n\n\nIf you are new to RxDB, you should continue here\n"},"data-migration.html":{"url":"data-migration.html","title":"DataMigration","keywords":"","body":"DataMigration\nImagine you have your awesome messenger-app distributed to many users. After a while, you decide that in your new version, you want to change the schema of the messages-collection. Instead of saving the message-date like 2017-02-12T23:03:05+00:00 you want to have the unix-timestamp like 1486940585 to make it easier to compare dates. To accomplish this, you change the schema and increase the version-number and you also change your code where you save the incoming messages. But one problem remains: what happens with the messages which are already saved on the user's device in the old schema?\nWith RxDB you can provide migrationStrategies for your collections that automatically (or on call) transform your exisiting data from older to newer schemas. This assures that the client's data always matches your newest code-version.\nProviding strategies\nUpon creation of a collection, you have to provide migrationStrategies when your schema's version-number is greater than 0. To do this, you have to add an object to the migrationStrategies property where a function for every schema-version is assigned. A migrationStrategy is a function which gets the old document-data as a parameter and returns the new, transformed document-data. If the strategy returns null, the document will be removed instead of migrated.\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n }\n }\n});\n\nAsynchronous strategies can also be used:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * 2 means, this transforms data from version 1 to version 2\n * this returns a promise which resolves with the new document-data\n */\n 2: function(oldDoc){\n // in the new schema (version: 2) we defined 'senderCountry' as required field (string)\n // so we must get the country of the message-sender from the server\n const coordinates = oldDoc.coordinates;\n return fetch('http://myserver.com/api/countryByCoordinates/'+coordinates+'/')\n .then(response => {\n const response = response.json();\n oldDoc.senderCountry=response;\n return oldDoc;\n });\n }\n }\n});\n\nyou can also filter which documents should be migrated:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * this removes all documents older then 2017-02-12\n * they will not appear in the new collection\n */\n 2: function(oldDoc){\n if(oldDoc.time \nautoMigrate\nBy default, the migration automatically happens when the collection is created. If you have lots of data or the migrationStrategies take a long time, it might be better to start the migration 'by hand' and show the migration-state to the user as a loading-bar.\nconst messageCol = await myDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n autoMigrate: false, // console.dir(state),\n error => console.error(error),\n done => console.log('done')\n);\n\n// the emitted states look like this:\n{\n done: false, // true if finished\n total: 50, // amount of documents which must be migrated\n handled: 0, // amount of handled docs\n success: 0, // handled docs which succeeded\n deleted: 0, // handled docs which got deleted\n percent: 0 // percentage\n}\n\nIf you don't want to show the state to the user, you can also use .migratePromise():\n const migrationPromise = messageCol.migratePromise(10);\n await migratePromise;\n\nHint\nIf your migration takes a long time, combine it with the leaderElection to make sure you don't waste your users' resources by running it in 2 open tabs.\n\nIf you are new to RxDB, you should continue here\n"},"leader-election.html":{"url":"leader-election.html","title":"LeaderElection","keywords":"","body":"Leader-Election\nBefore you read this, please check out on how many of your open browser-tabs you have opened the same website more than once. Count them, I will wait..\nSo if you would now inspect the traffic that theses open tabs produce, you can see that many of them send exact the same data over wire for every tab. No matter if the data is sent with an open websocket or by polling.\nUse-case-example\nImagine we have a website which displays the current temperature of the visitors location in various charts, numbers or heatmaps. To always display the live-data, the website opens a websocket to our API-Server which sends the current temperature every 10 seconds. Using the way most sites are currently build, we can now open it in 5 browser-tabs and it will open 5 websockets which send data 6*5=30 times per minute. This will not only waste the power of your clients device, but also wastes your api-servers resources by opening redundant connections.\nSolution\nThe solution to this redundancy is the usage of a leader-election-algorithm which makes sure that always exactly one tab is managing the remote-data-access. The managing tab is the elected leader and stays leader until it is closed. No matter how many tabs are opened or closed, there must be always exactly one leader.\nYou could now start implementing a messaging-system between your browser-tabs, hand out which one is leader, solve conflicts and reasign a new leader when the old one 'dies'.\nOr just use RxDB which does all these things for you.\nCode-example\nTo make it easy, here is an example where the temperature is pulled every ten seconds and saved to a collection. The pulling starts at the moment where the opened tab becomes the leader.\nconst db = await RxDB.create({\n name: 'weatherDB',\n adapter: 'localstorage',\n password: 'myPassword',\n multiInstance: true\n});\nawait db.collection({\n name: 'temperature',\n schema: mySchema\n});\n\ndb.waitForLeadership()\n .then(() => {\n console.log('Long lives the king!'); // {\n const temp = await fetch('https://example.com/api/temp/');\n db.temperature.insert({\n degrees: temp,\n time: new Date().getTime()\n });\n }, 1000 * 10);\n });\n\nLive-Example\nIn this example the leader is marked with the crown ♛\n\nTry it out\nRun the vanillaJS-example where the leading tab is marked with a crown on the top-right-corner.\n\nIf you are new to RxDB, you should continue here\n"},"replication.html":{"url":"replication.html","title":"Replication","keywords":"","body":"Replication\nOne of the most powerfull features with CouchDB, PouchDB and RxDB is sync.\nYou can sync every RxCollection with another RxCollection, a PouchDB-instance or a remote pouch/couch-DB.\nRx.Collection.sync()\nTo replicate the collection with another instance, use RxCollection.sync().\nIt basically does the same as pouchdb-sync but also adds event-handlers to make sure that change-events will be recognized in the internal event-stream.\n\n// you need these plugins to sync\nRxDB.plugin(require('pouchdb-adapter-http')); // enable syncing over http (remote database)\n\nconst replicationState = myCollection.sync(\n remote: 'http://localhost:10102/db/', // remote database. This can be the serverURL, another RxCollection or a PouchDB-instance\n waitForLeadership: true, // (optional) [default=true] to save performance, the sync starts on leader-instance only\n direction: { // direction (optional) to specify sync-directions\n pull: true, // default=true\n push: true // default=true\n },\n options: { // sync-options (optional) from https://pouchdb.com/api.html#replication\n live: true,\n retry: true\n },\n query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised\n);\n\nRxReplicationState\nThe method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.\nchange$\nEmits the change-events everytime some documents get replicated.\nreplicationState.change$.subscribe(change => console.dir(change));\n\ndocs$\nEmits each replicated document-data.\nreplicationState.docs$.subscribe(docData => console.dir(docData));\n\nactive$\nEmits true or false depending if the replication is running. For example if you sync with a remote server and the connection dies, this is false until the connection can be reestablished.\nreplicationState.active$.subscribe(active => console.dir(active));\n\ncomplete$\nEmits true or false depending if the replication is completed.\nIf you do a live: true-sync (default) the replication never completes.\nOnly one-time-replications will complete.\nreplicationState.complete$.subscribe(completed => console.dir(completed));\n\nerror$\nIf errors occur during the replication, they will get emited here.\nreplicationState.error$.subscribe(error => console.dir(error));\n\ncancel()\nCalling this method will cancel the replication.\nawait replicationState.cancel(); // cancel() is async\n\n\nIf you are new to RxDB, you should continue here\n"},"query-change-detection.html":{"url":"query-change-detection.html","title":"QueryChangeDetection","keywords":"","body":"QueryChangeDetection\nSimilar to Meteors oplog-observe-driver,\nRxDB has a QueryChangeDetection to optimize observed or reused queries. This makes sure that when you update/insert/remove documents, the query does not have to re-run over the whole database but the new results will be calculated from the events. This creates a huge performance gain with zero cost.\nNOTICE:\nQueryChangeDetection is currently in beta and disabled by default.\nYou can enable it by calling the enable()-function on its module.\nimport { QueryChangeDetector } from 'rxdb';\nQueryChangeDetector.enable();\nQueryChangeDetector.enableDebugging(); // shows a console.log everytime an optimisation is made\n\nUse-case-example\nImagine you have a very big collection with many user-documents. At your page you want to display a toplist with users which have the most points and are currently logged in.\nYou create a query and subscribe to it.\nconst query = usersCollection.find().where('loggedIn').eq(true).sort('points');\nquery.$.subscribe(users => {\n document.querySelector('body').innerHTML = users\n .reduce((prev, cur) => prev + cur.username+ '', '');\n});\n\nAs you may detect, the query can take a very long time to run because you have thousands of users in the collection.\nThen, when a user logs off, the whole query will re-run over the database which takes a really long time yet again.\nanyUser.loggedIn = false;\nawait anyUser.save();\n\nBut not with QueryChangeDetection enabled.\nNow, when one user logs off, it will calculate the new results from the current results plus the RxChangeEvent. This can often be done in-memory without making IO-requests to the storage-engine. QueryChangeDetection not only works on subscribed queries, but also when you do multiple .exec()'s on the same query.\n\nIf you are new to RxDB, you should continue here\n"},"in-memory.html":{"url":"in-memory.html","title":"InMemory","keywords":"","body":"in-memory\nWhen you do a heavy amount of operations on a RxCollection, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Ram of your computer.\nRxCollection().inMemory();\nReturns a promise that resolves with another RxCollection that is the in-memory-replicated version of the original collection. The memory-collection has the same documents as it's parent and also shares the same event-stream.\n\nconst memCol = await myCollection.inMemory();\n\n// now u can use memCol as it would be myCollection\n\nconst docs = await memCol.find().exec(); // has same result as on the original collection\n\nencryption\nEncrypted fields are automatically decrypted inside of the memory-collection. This means you can do queries over encrypted fields.\nreplication\nThe memory-collection is two-way-replicated with its original collection. This means when you change documents on one of them, the update and the change-event will fire on both.\nPros:\n\nFaster queries\nFaster writes\nQuerying works over encrypted fields\n\nCons:\n\nThe original collection has to be small enough to fit into the memory\nNo attachment-support\nInitial creation takes longer (all data is loaded from disc into the memory)\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-local-document.html":{"url":"rx-local-document.html","title":"LocalDocuments","keywords":"","body":"Local Documents\nLocal documents are a special class of documents which are used to store local metadata.\nThey come in handy when you want to store settings or additional data next to your documents.\n\nLocal Documents can exist on RxDatabase or RxCollection\nLocal Document do not have to match the collections schema\nLocal Documents do not get replicated\nLocal Documents will not be found on queries\nLocal Documents can not have attachments\nLocal Documents will not get handled by the data-migration\n\ninsertLocal()\nCreates a local document for the database or collection. Throws if a local document with the same id already exists. Returns a Promise which resolves the new RxLocalDocument.\nconst localDoc = await myCollection.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\n// you can also use local-documents on a database\nconst localDoc = await myDatabase.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\nupsertLocal()\nCreates a local document for the database or collection if not exists. Overwrites the if exists. Returns a Promise which resolves the RxLocalDocument.\nconst localDoc = await myCollection.upsertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\ngetLocal()\nFind a RxLocalDocument by it's id. Returns a Promise which resolves the RxLocalDocument or null if not exists.\nconst localDoc = await myCollection.getLocal('foobar');\n\nRxLocalDocument\nA RxLocalDocument behaves like a normal RxDocument.\nconst localDoc = await myCollection.getLocal('foobar');\n\n// access data\nconst foo = localDoc.get('foo');\n\n// change data\nlocalDoc.set('foo', 'bar2');\nawait localDoc.save();\n\n// observe data\nlocalDoc.get$('foo').subscribe(value => { /* .. */ });\n\n// remove it\nawait localDoc.remove();\n\nNOTICE: Because the local document does not have a schema, acessing the documents data-fields via pseudo-proxy will not work.\nconst foo = localDoc.foo; // undefined\nconst foo = localDoc.get('foo'); // works!\n\nlocalDoc.foo = 'bar'; // does not work!\nlocalDoc.set('foo', 'bar'); // works\n\n\nIf you are new to RxDB, you should continue here\n"},"custom-build.html":{"url":"custom-build.html","title":"Custom Build","keywords":"","body":"Custom Build\nBy default, if you import RxDB into your javascript, a full batteries-included build will be imported. This has the advantage that you dont have to choose which things you need and which not. The disadvantage is the build-size. Often you don't need most of the functionality and you could save a lot of bandwidth by cherry-picking only the things you really need. For this, RxDB supports custom builds.\nCore\nThe core-module is the part of RxDB which is always needed to provide basic functionality. If you need a custom build, you start with the core and then add all modules that you need.\n// es6-import\nimport RxDB from 'rxdb/plugins/core';\n\n// es5-require\nconst RxDB = require('rxdb/plugins/core');\n\nrequired modules\nSome parts of RxDB are not in the core, but are required. This means they must always be overwritte by at least one plugin.\nvalidate\nThe validation-module does the schema-validation when you insert or update a RxDocument. Currently we have only one validation-module, which is using is-my-json-valid but you can also use your own validator instead. To import the default validation-module, do this:\n// es6-import\nimport RxDBValidateModule from 'rxdb/plugins/validate';\nRxDB.plugin(RxDBValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/validate'));\n\noptional modules\nSome modules are optional and only needed if you use their functionality.\nschemacheck\nThe schemacheck-module does additional checks on your jsonschema before you create a RxCollection. This ensure that your collection-schema is correctly working with rxdb. You should always enable this plugin on dev-mode.\n// es6-import\nimport RxDBSchemaCheckModule from 'rxdb/plugins/schema-check';\nRxDB.plugin(RxDBSchemaCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/schema-check'));\n\nreplication\nAdds the replication-functionality to RxDB.\n// es6-import\nimport RxDBReplicationModule from 'rxdb/plugins/replication';\nRxDB.plugin(RxDBReplicationModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication'));\n\nattachments\nAdds the attachments-functionality to RxDB.\n// es6-import\nimport RxDBAttachmentsModule from 'rxdb/plugins/attachments';\nRxDB.plugin(RxDBAttachmentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/attachments'));\n\nin-memory\nAdds the in-memory-replication to the collections.\n// es6-import\nimport RxDBInMemoryModule from 'rxdb/plugins/in-memory';\nRxDB.plugin(RxDBInMemoryModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/in-memory'));\n\nlocal-documents\nAdds the local-documents to the collections and databases.\n// es6-import\nimport RxDBLocalDocumentsModule from 'rxdb/plugins/local-documents';\nRxDB.plugin(RxDBLocalDocumentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/local-documents'));\n\njson-dump\nAdds the json import/export-functionality to RxDB.\n// es6-import\nimport RxDBJsonDumpModule from 'rxdb/plugins/json-dump';\nRxDB.plugin(RxDBJsonDumpModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/json-dump'));\n\nkey-compression\nThe keycompressor-module is needed when you have keyCompression enabled. This is done by default so make sure that you set disableKeyCompression to true when you do not have this module.\n// es6-import\nimport RxDBKeyCompressionModule from 'rxdb/plugins/key-compression';\nRxDB.plugin(RxDBKeyCompressionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/key-compression'));\n\nleader-election\nThe leaderelection-module is needed when want to use the leaderelection.\n// es6-import\nimport RxDBLeaderElectionModule from 'rxdb/plugins/leader-election';\nRxDB.plugin(RxDBLeaderElectionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/leader-election'));\n\nencryption\nThe encryption-module is using crypto-js and is only needed when you create your RxDB-Database with a password.\n// es6-import\nimport RxDBEncryptionModule from 'rxdb/plugins/encryption';\nRxDB.plugin(RxDBEncryptionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/encryption'));\n\nupdate\nThe update-module is only required when you use RxDocument.update or RxQuery.update.\n// es6-import\nimport RxDBUpdateModule from 'rxdb/plugins/update';\nRxDB.plugin(RxDBUpdateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/update'));\n\nadapter-check\nThis module add the checkAdapter-function to RxDB.\n// es6-import\nimport RxDBAdapterCheckModule from 'rxdb/plugins/adapter-check';\nRxDB.plugin(RxDBAdapterCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/adapter-check'));\n\n\nIf you are new to RxDB, you should continue here\n"},"plugins.html":{"url":"plugins.html","title":"Plugins","keywords":"","body":"Plugins\nCreating an own plugin is very simple. A plugin is basically an javascript-object which overwrites or extends RxDB's internal classes, prototypes and hooks.\nA basic plugins:\n\nconst myPlugin = {\n rxdb: true, // this must be true so rxdb knows that this is a rxdb-plugin and not a pouchdb-plugin\n /**\n * every value in this object can manipulate the prototype of the keynames class\n * You can manipulate every prototype in this list:\n * @link https://github.com/pubkey/rxdb/blob/cutsom-builds/src/Plugin.js\n */\n prototypes: {\n /**\n * add a function to RxCollection so you can call 'myCollection.hello()'\n *\n * @param {object} prototype of RxCollection\n */\n RxCollection: (proto) => {\n proto.hello = function(){\n return 'world';\n };\n }\n },\n /**\n * some methods are static and can be overwritten in the overwriteable-object\n */\n overwritable: {\n validatePassword: function(password) {\n if (password && typeof password !== 'string' || password.length \nProperties\nrxdb\nThe rxdb-property singals that this plugin is and rxdb-plugin and not a pouchdb-plugin. The value should always be true.\nprototypes\nThe prototypes-property contains a function for each of RxDB's internal protoype that you want to manipulate. Each function gets the protoype-object of the corresponding class as parameter and than can modify it. You can see a list of all available prototypes here\noverwritable\nSome of RxDB's functions are not inside of a class-prototype but are static. You can set and overwrite them with the overwritable-object. You can see a list of all overwriteables here.\nhooks\nSometimes you don't want to overwrite an existing RxDB-method, but extend it. You can do this by adding hooks which will be called each time the code jumps into the hooks corresponding call. You can find a list of all hooks here here.\n\nIf you are new to RxDB, you should continue here\n"},"contribute.html":{"url":"contribute.html","title":"Contribute","keywords":"","body":"Contribution\nWe are open to, and grateful for, any contributions made by the community.\nDeveloping\nRequirements\nBefore you can start developing, do the following:\n\nMake shoud you have installed nodejs with version 7 or higher\nClone the repository git clone https://github.com/pubkey/rxdb.git\nInstall the dependencies cd rxdb && npm install\nMake sure that the tests work for you npm run test\n\nFlow\nWhile developing you should run npm run dev and leave it open in the console. This will run the unit-tests on every file-change. If you have a slow device, you can also manually run npm run test:node everytime you want to check if the tests work.\nAdding tests\nBefore you start creating a bugfix or a feature, you should create a test to reproduce it. Tests are in the test/unit-folder.\nIf you want to reproduce a bug, you can modify the test in this file.\nMaking a PR\nIf you make a pull-request, ensure the following:\n\nEvery feature or bugfix must be commited together with a unit-test which ensures everything works as expected.\nDo not commit build-files (anything in the dist-folder)\nBefore you add non-trivial changes, create an issue to discuss if this will be merged and you don't waste your time.\nTo run the unit and integration-tests, do npm run test and ensure everything works as expected\n\nGetting help\nIf you need help with your contribution, ask at gitter.\nDocs\nThe source of the documentation is at the docs-src-folder.\nTo read the docs locallly, run npm run docs docs:install && npm run docs:serve and open http://localhost:4000/\nThank you for contributing!\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["client","databas","first","here.","introduct","javascript.","new","offlin","reactive,","rxdb,","serverless,","side,","start"],"install.html":["\"dependencies\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"rxdb\":","'babel","'rxdb';","'rxjs';","'rxjs/add/operator/filter';","'rxjs/add/operator/first';","'rxjs/add/operator/map';","'rxjs/add/operator/mergemap';","'rxjs/operators/filter';","'rxjs/subject';","//","=","add","addit","altern","anoth","babel","before.","browsers.","build","cherri","code","commit.","commithash","continu","default","depend","develop","es5","es5.","es6","es8","file:","filter","full","git","hash","here","import","includ","instal","javascript","latest","lettabl","lib,","mean","need","new","npm","older","operators,","operators.","package.json,","package.json.","part","peer","pick","polyfil","polyfill');","polyfill';","polyfill.","polyfills,","reduc","releas","replac","requir","require('babel","require('rxdb');","require('rxjs');","run:","rxdb","rxdb,","rxdb.","rxj","rxjs'","save","size,","state","subject","support","transpil","us","var","want","whole","{","}"],"rx-database.html":["$","'heroesdb',","'localstorage');","'memdown';","'mydatabase',","'websql',","(optional)","(optional=false)","(optional=true)","*/).then(()",".create()",".then(()",".then(json","/*","//","12","4","=","=>","actual","ad","adapt","adapter,","adapter:","adapters.","add","affect","allow","app","app,","app.","assum","asynchron","at.","await","becom","befor","between","browsers,","call","case","chang","characters.","check","checkadapter()","cleanup","collect","common","console.dir(changeevent));","console.dir(json));","console.dir(ok);","console.log('done'));","const","contain","continu","cordova","cpu.","creat","creation","current","data","data.","databas","database,","database.","db","db1","db2","decrypt","defin","depend","destroy","destroy()","destroyed.","document.","done","dump","dump()","each","elect","electron","emptydatabase.importdump(json)","enabl","encrypt","environment.","equal","error","event","events.","exampl","explicitli","export","fals","field","folder","follow","free","function","function.","given","gone","handl","here","identifi","idl","idle.","ignoredupl","ignoreduplicate:","import","importdump()","instanc","instance.","instead","intent","isrxdatabas","it'","it.","javascript","json","leader.","level","leveldb","leveldb'));","localstorage'));","main","memdown","memdown});","memori","mistake,","module.","moment","more","ms","multiinst","multipl","mycollection.customcleanupfunction();","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","name","name:","nativ","ness","new","nodej","not.","noth","notice:","now","object","observ","ok","on","other.","paramet","parameters.","pass","password","piec","pouchdb","prevent","process,","promis","rare","react","remov","remove()","replications.","requestidlecallback","requestidlepromise()","resolv","return","run","runtime,","rxdatabas","rxdatabase.","rxdb","rxdb,","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.create({name:","rxdb.isrxdatabase(myobj);","rxdb.plugin()","rxdb.plugin(require('pouchdb","rxdb.removedatabase('mydatabasename',","rxj","same","semi","serverless.","set","share","similar","singl","someth","speed","stop","storag","storage.","store","stream","string","synchronis","task","tasks.","tests,","this.","throw","time","timeout","track","true","true.","two","uniqu","unit","up","us","veri","waitforleadership()","want","window","without","work","wrong.","{","});"],"rx-schema.html":["\"array\",","\"birthyear\":","\"color\":","\"damage\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"healthpoints\":","\"hero","\"item\":","\"max\":","\"maxitems\":","\"min\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","'heroes',","'human","'integer',","'lastname']","'object',","'string'","'string',","//","0","0,","0.","100","1900,","20","2050","5","5,","9]$","9_]*]?[a","=","[\"color\"]","['firstname',","^[a","`queri","accident","add","additionalproperti","advantages:","age:","allow","alway","anyth","anyway","array","attribut","attribute.","await","befor","between","birthyear","chang","change.","collect","collection.","color","compound","compoundindex","compression',","compression,","conform","console.dir(mydatabase.heroes.name);","const","contain","continu","creat","damag","data","database,","default","default:","defin","definit","definition.","detection`,","dev","disabl","disablekeycompress","disablekeycompression:","document","document,","document.","don't","done","dont","enabl","encrypt","encrypted.","ensur","error","everyth","exampl","example,","false.","field","fieldnam","fieldname.","fieldnames,","fields.","fill","final","final,","final:","find","first","firstname:","follow","getter","greater","healthpoint","here","hero","hero\",","hero.","improv","index","index,","index:","indexed,","indexes,","insert","instantli","intern","invalid","it.","json","jsonschema","key","keycompress","lastname:","later.","learn","level","looks.","make","map","match","maximum","mean","migrationstrategi","modifi","mydatabase.collection({","myheroschema","myschema","name","name:","new","new.","notic","notice:","number","number,","object","observ","pass","per","perform","popul","primary,","primary.","properti","properties:","provid","regex","requir","required.","required:","rxdb","rxdb,","rxschema","schema","schema\",","schema.","schema.org.","schema:","schemawithdefaultag","schemawithfinalag","schemawithindex","secondari","secret","set","settings:","simpl","singl","skill","spec","standard","start","store","string","support","sure","team","temporari","therefor","things.","throw","title:","top","true","true,","true.","type:","unique,","unset","us","valid","valu","values.","version","version:","want","whenev","within","worry,","written","z0","z][[a","za","{","}","});","},","};"],"rx-collection.html":["$","'bar'","'bar2'","'bob'","'bob',","'foo',","'foo'}})","'heroes',","'humans',","'kelso'","'kelso';",".collection()",".exec().then(doc",".exec().then(docu",".then(()",".then(collect",".then(json",".upsert()","//","409","77;","9]*$.","=","==","=>",">","^[a","abov","allow","atom","atomicupsert()","automat","await","basic","befor","behavior","between","call","chain","chang","collect","collection'","collection,","collection.","collection2","collection2);","conflict","console.dir(changeevent));","console.dir(collection));","console.dir(doc));","console.dir(documents));","console.dir(json));","console.log('done'));","console.log(collect","const","continu","couchdb","creat","data","data.","databas","database,","database.","database:","db.collection({","db.heroes;","db['heroes']","decrypt","defin","destroy","destroy()","differ","directli","doc","docdata","document","document,","document.","documents,","documents.","does,","dump","dump()","easily.","encrypt","error.","errors,","especi","exec","exist","export","fals","field","fields.","fill","find","find()","findone()","finish","firstname:","follow","form","free","full","function","function.","generated.","given","handled.","helpful","here","here.","ident","identifi","import","importdump()","insert","insert()","instanc","instance.","isrxcollect","it.","javascript","json","known","last","lastname:","later","look","mani","match","mean","memori","method","method.","more","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.dump()","mycollection.dump(true)","mycollection.find().where('name').eq('foo')","mycollection.find({name:","mycollection.findone('foo')","mycollection.findone().where('name').eq('foo')","mycollection.importdump(json)","mycollection.insert({","mycollection.newdocument({","mycollection.remove();","mycollection.upsert(docdata);","mycollection.upsert({","mydatabase.collection({","mydatabase.destroy();","myschema","name","name.","name:","name:foobar","need","never","new","newdocument()","newli","not.","object","observ","older","oper","operations.","option","orm","otherwis","overwrit","overwritten","paramet","parrallel","pass","pouchdb","pouchset","prefil","prevent","previou","primari","primary,","property.","protocol.","queri","re","refind","regex:","remov","remove()","replic","replications.","return","run","running.","rxcollect","rxcollection.","rxcollection.newdocument(initaldata).","rxcollections,","rxdatabas","rxdb,","rxdb.isrxcollection(myobj);","rxdocument","rxdocument.","rxdocument.atomicupdate.","rxj","rxqueri","rxschema","rxschema.","same","save","schema","schema:","schemas,","schemaversions.","search","server","set","short","similar","simpl","singl","sometim","spawn","standard","still","stop","store","stream","supprot","sync","sync()","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temporari","through","throw","timespan,","transform","tri","true","two","type","type.","uniqu","until","up","updat","upsert","upsert()","us","useful","valid","valu","veri","versions.","wait","want","within","work","z0","z][a","{","{$eq:","})","});","};"],"rx-document.html":["![synced.gif](files/synced.gif)","$","$inc:","$set:","'alice'","'bar'","'barfoo';","'foo',","'foobar'","'foobar');","'foobar';","'foobar2'","'foobar2');","'foobar2';","'name'","($)","(synced$","(via",".find()",".insert()",".save()",".subscribe(changeev",".subscribe(newnam","//","1","2","4","409","=","=>","[1,2,3,4].foreach(nr","```","```html","access","ad","ag","age:","alic","angular","anyth","argument,","atom","atomicupdate()","atomicupdate:","automat","await","b","base","befor","belong","boolean","browser","call","chang","changed.","changeev","changes.","click","collection'","collection,","collection.","compar","conflict","console.dir(changeevent));","console.dir(currentname);","console.dir(currentnestedvalue);","console.dir(documents));","console.dir(isname);","console.dir(mydocument.age);","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.firstname);","console.log(mydocument.get('firstname'));","console.log(mydocument.synced);","const","continu","current","currentnam","currentname;","currentnestedvalu","currentnestedvalue;","data","databas","database.","decrypt","delet","deleted$","deleted$.","depend","directli","directly.","doc.ag","document","document,","document.","dollarsign","each","edit","emit","encrypted,","error.","error:","errors,","event","exampl","fals","false),","field","fieldnam","find","finished.","fire","firstnam","fistname:","foobar","function","function.","get$","get$()","get()","getter","given","happen","here","ident","increas","insert","instanc","instead","isnam","isname;","isrxdocu","lastname:","lastpromis","lastpromise;","laststat","level","life","mani","mean","modifi","modifyjs.","mongo","more","mycollection.find().exec()","mycollection.insert({","mydocument.$()","mydocument.ag","mydocument.atomicupdate(function(doc){","mydocument.deleted$.subscribe(st","mydocument.firstnam","mydocument.firstname$","mydocument.get$('name')","mydocument.get('name');","mydocument.nam","mydocument.name;","mydocument.remove();","mydocument.resync();","mydocument.save();","mydocument.set('firstname',","mydocument.set('name',","mydocument.synced$.subscribe(st","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield$","mydocument.whatever.nestedfield;","name","name.","name:","nest","nestedvalu","new","newname;","not.","note","notifi","now","nr;","null;","object","object,","observ","oper","operations.","overwrit","parameter.","path","prevent","previou","promis","proxi","record","relat","remov","remove()","reproduc","resync","resync()","return","returning.","run","running.","rxdb,","rxdb.isrxdocument(myobj);","rxdocument","rxdocument.","rxj","same","save","save()","save().","save,","set","set()","set).","short","show","singl","someon","state","state);","still","storag","store","submit","sync","synced$","synced$.","syntax,","tab","table.","take","throw","time","time.","timespan,","top","transform","true","two","type","updat","update()","us","usag","user","valu","value,","value.","values.","var","veri","warn","warning:","whether","wrap","{","}","});","},"],"rx-query.html":["$inc:",".where()","//","1","18","=","afterwards.","ag","age:","await","chain","chang","changed.","collect","collection.","console.dir(results);","const","continu","creat","database,","defin","delet","document","documents.","example:","fals","field.","find","found","function","given","heavi","here","immut","immutable.","increas","instanc","instead","isrxqueri","it,","keep","less","means,","mind","modifi","mycollection.find().where('age').gt(18);","mycollection.find().where('age').lt(18);","name","new","not.","notice:","now","object","object,","on","optimis","origin","over","perform","previou","promis","queri","queries.","query.remove();","query.update({","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","reactiv","remov","remove()","removeddoc","resolv","result","result.","return","run","rxdb","rxdb,","rxdb.isrxquery(myobj);","rxdocument","rxqueri","rxquery'","rxquery.","sort","this,","time.","true","updat","update()","us","{","}","});"],"rx-attachment.html":["'cat.jpg'","'humans',","'image/jpeg'","'object',","(async)","(string)","(string|blob|buffer)",");",".","//","0,","=","=>","[];","ad","add","allattachments$","allattachments()","array","assign","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attributes/methods.","await","befor","better","binari","blob","blobbuff","buffer.","const","continu","data","data,","data.","db","digest","doc","document.","documents.","done.","each","emit","encrypt","encrypted:","ensur","exist.","files,","follow","get","getattachment()","getdata()","getstringdata()","here","higher","id","id,","id.","imag","length","limit","md5","mycollect","mydatabase.collection({","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.getattachment('cat.jpg');","mydocument.putattachment({","myschema","name","name:","new","null","number","number.","object","observ","password","perform","pouchdb,","promis","properties:","putattachment()","quota","re","regular","remov","remove()","repres","resolv","return","rev","revis","rxattach","rxcollection.","rxdb","rxdb,","rxdocument","rxdocument.","schema","schema:","set","side","store","stream","string","string,","string.","sum","time","to.","true","true,","type","type:","us","version:","want","whaterv","{","}","});","},","};"],"middleware.html":["'anyvalue';","'foobar'","'foobar',","'myfield',","()","(also","//","100));","=","=>","action","add","alreadi","another.","async","asynchron","asynchronous.","atom","avoid","await","befor","behavior","block","cach","call","case","certain","chang","clear","code.","collection.","complex","console.log(doc.myfield);","const","constructed.","continu","control","creat","custom","data","databas","database.","default","defin","delet","depend","differ","doc","doc.anyfield","document","document.","documents.","dure","emmit","error('stop');","error.","event","execut","false);","field","field,","flexibl","follow","function","functions.","get:","getter/sett","happen","help","here","hook","hook,","hook?","hooks)","hooks:","ideas:","insert","instanc","interact","lastnam","level","lifecycl","list","logic","make","mean","middlewar","model","modifi","mongoose,","mongoose.","mycollection.findone().exec();","mycollection.postcreate(function(doc){","mycollection.postinsert(function(documentdata){","mycollection.postremove(function(doc){","mycollection.postsave(function(doc){","mycollection.preinsert(function(documentdata){","mycollection.preremove(function(doc){","mycollection.presave(function(doc){","nest","new","notice:","notif","object","object.defineproperty(doc,","on","oper","parallel","pass","post","postcreat","postinsert","postremov","postsav","pre","preinsert","preremov","presav","promise(r","promise.","receiv","reciev","remov","removed.","return","run","rxcollect","rxcollection.insert","rxdatabas","rxdb","rxdb,","rxdocument","rxdocument,","rxdocument.remov","rxdocument.sav","save","saved.","schema","seri","set","settimeout(res,","specif","specifi","specifiy","stop","structur","support","sure","synchron","task","therefor","throw","trigger","true);","updat","us","usag","useful","valid","valu","way","whenev","whole","written","{","});","},"],"orm.html":["'","'!!';","'aaah!!'","'aaah!!';","'cat.txt',","'heroes'","'heroes',","'i","'meow","'skeletor'","'text/plain'","+","//","=","add","attach","attachments:","await","behavior","call","capabl","collect","collection.","collection:","collections.","console.log(attachment.scream());","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","const","contain","continu","creat","data","data:","defin","doc","doc.putattachment({","document","function","function(){","functions,","here","hero","heroes.findone().exec();","heroes.insert({","id:","instanc","keyword","keyword:","kitty',","map","method","methods:","mongoose,","mydatabase.collection({","myschema,","name:","names.","new","object","orm","orm/drm","pass","relat","resolv","return","rxattachemnt","rxdb","rxdb,","rxdocument","schema:","scream:","skeletor!!'","specif","static","statics:","this.nam","this.name;","type:","us","whoami:","wide","wide.","{","}","});"],"population.html":["'alice'","'alice',","'array',","'bob',","'carol'","'carol',","'dave'","'human","'human'","'human',","'object',","'string'","'string',","(primari","//","//>","//[insert","0,","=","[","]","_","add","alway","anoth","array","array.","attribut","await","belong","bestfriend","bestfriend:","collect","collections.","come","console.dir(bestfriend);","console.dir(friends);","console.dir(mother);","const","continu","database.","describ","direct","doc","doc.bestfriend_;","doc.populate('bestfriend');","document","exactli","exampl","export","family:","field","fieldname.","foreign","found.","friend","friends:","getter","getter.","here","here]","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","in.","items:","join","keyword","method","method.","mongoose.","mother","mother:","mycollect","mycollection.insert({","mydatabase.collection({","mydocument.family.mother_;","mydocument.friends_;","name:","nest","new","notic","null","on","path","popul","populate()","primary:","promis","properties:","ref","ref:","refer","referenc","refhuman","relat","resolv","return","rxcollect","rxdb","rxdb,","rxdocument","rxdocument)","rxdocument,","rxdocument[alice]","same","schema","schema:","sometim","specifi","still","string","take","therefor","title:","to.","true,","type:","underscor","underscore_","us","valu","values.","version:","via","want","work","{","}","});","},","};"],"data-migration.html":["'bi","'messages',","'sendercountry'","(or","(string)","(version:",");","*","*/",".migratepromise():",".then(respons","/**","//","0","0,","0.","02","1","12","12t23:03:05+00:00","1486940585","1:","2","2)","2017","2:","50,","=","=>","accomplish","add","alreadi","alway","amount","app","appear","assigned.","assur","asynchron","automat","automigr","automigrate:","await","awesom","bar.","better","call)","chang","client'","code","collect","collection,","collection.","combin","compar","console.dir(state),","console.error(error),","console.log('done')","const","continu","coordin","countri","created.","creation","data","data.","datamigr","date","date(olddoc.time).gettime();","dates.","decid","default,","defin","delet","deleted:","devic","distribut","doc","document","don't","done","done:","easier","emit","error","exisit","false,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","field","filter","finish","function","function(olddoc){","get","greater","hand'","handl","handled:","happen","here","hint","if(olddoc.tim","imagin","incom","increas","instead","leaderelect","load","long","look","lot","make","mani","match","means,","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mydatabase.collection({","name:","new","new,","newer","newest","null,","number","object","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","open","paramet","percent:","percentag","problem","promis","properti","provid","remains:","remov","requir","resolv","resourc","respons","response.json();","return","run","rxdb","rxdb,","save","schema","schema'","schema:","schema?","schemas.","sender","server","show","start","state","strategi","string","succeed","success:","sure","tabs.","take","this,","this:","time,","timestamp","total:","transform","true","unix","upon","us","used:","user","user'","user,","users'","users.","version","version,","version.","want","wast","while,","{","}","});","},"],"leader-election.html":["'dies'.","'localstorage',","'mypassword',","'temperature',","'weatherdb',","*",".then(()","//","10","10);","1000","5","6*5=30","=","=>","access.","adapter:","algorithm","alway","api","await","becom","befor","between","browser","build,","case","charts,","check","client","closed,","closed.","code","collection.","conflict","connections.","console.log('long","const","continu","corner.","count","crown","current","data","data,","date().gettime()","db","db.collection({","db.temperature.insert({","db.waitforleadership()","degrees:","device,","display","easy,","elect","exact","exactli","exampl","fetch('https://example.com/api/temp/');","hand","heatmaps.","here","imagin","implement","inspect","king!');","lead","leader","leader,","leader.","leaderelect","live","locat","make","manag","mani","mark","matter","messag","minute.","moment","more","multiinstance:","myschema","name:","new","now","number","old","on","once.","open","out","over","password:","per","pleas","polling.","power","produce,","pull","read","reasign","redund","remot","resourc","right","run","rxdb","rxdb,","rxdb.create({","same","save","schema:","second","seconds.","see","send","sent","server","site","solut","solv","start","stay","sure","system","tab","tab.","tabs,","temp","temp,","temperatur","ten","them,","these","thing","this,","time","time:","top","traffic","tri","true","until","us","usag","vanillaj","variou","visitor","wait..","wast","way","websit","websocket","wire","you.","{","});","},","♛"],"replication.html":["'http://localhost:10102/db/',","(default)","(optional)","(remot",");","//","=","=>","[default=true]","active$","adapt","add","anoth","async","await","basic","call","cancel","cancel()","chang","change$","collect","complete$","complete.","completed.","completes.","connect","console.dir(active));","console.dir(change));","console.dir(completed));","console.dir(docdata));","console.dir(error));","const","continu","couchdb,","data.","database)","database.","db.","default=tru","depend","dies,","direct","direction:","docs$","document","dure","each","emit","enabl","error","error$","event","everytim","exampl","fals","featur","handler","here","here.","http","http'));","https://pouchdb.com/api.html#repl","instanc","instance,","intern","leader","live:","make","match","method","mycollection.find().where('age').gt(18)","mycollection.sync(","need","never","new","observ","occur","on","option","options:","over","performance,","plugin","pouch/couch","pouchdb","powerful","pull:","push:","queri","query:","recogn","reestablished.","remot","remote:","replic","replicated.","replication,","replication.","replicationst","replicationstate.active$.subscribe(act","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","retry:","return","running.","rx.collection.sync()","rxcollect","rxcollection,","rxcollection.sync()","rxcollection.sync().","rxdb","rxdb,","rxdb.plugin(require('pouchdb","rxj","rxreplicationst","same","save","server","serverurl,","specifi","start","stream.","sure","sync","sync.","synchronis","time","true","true,","until","us","via","waitforleadership:","{","},"],"query-change-detection.html":["'');","'',","'rxdb';","+",".exec()'",".reduce((prev,","//","=","=>","again.","anyuser.loggedin","anyuser.save();","await","beta","big","calcul","call","case","collect","collection.","console.log","const","continu","cost.","creat","cur)","cur.username+","current","databas","default.","detect,","disabl","display","document.queryselector('body').innerhtml","documents,","documents.","done","driver,","enabl","enable()","enabled.","engine.","events.","everytim","exampl","false;","function","gain","here","huge","imagin","import","in.","io","it.","log","long","made","make","mani","memori","meteor","module.","multipl","new","notice:","now,","observ","off,","on","oplog","optim","optimis","over","page","perform","plu","point","prev","queri","queries,","queries.","query.","query.$.subscribe(us","querychangedetect","querychangedetector","querychangedetector.enable();","querychangedetector.enabledebugging();","re","realli","request","result","reus","run","rxchangeevent.","rxdb","rxdb,","same","show","similar","storag","subscrib","sure","take","then,","thousand","time","toplist","update/insert/remov","us","user","userscollection.find().where('loggedin').eq(true).sort('points');","veri","want","whole","without","work","zero","{","}","});"],"in-memory.html":["(all","//","=","amount","anoth","attach","automat","await","behav","both.","chang","collect","collection.","computer.","cons:","const","continu","creation","data","decrypt","disc","doc","document","encrypt","enough","equal","event","faster","field","fields.","fire","fit","heavi","here","initi","inmemori","insid","it'","load","longer","mean","memcol","memcol.find().exec();","memori","memory)","mycollect","mycollection.inmemory();","new","now","on","oper","optim","origin","over","parent","promis","pros:","queri","ram","replic","resolv","result","return","rxcollect","rxcollection().inmemory();","rxcollection,","rxdb,","same","share","small","store","stream.","support","take","them,","two","u","updat","us","version","want","way","work","write"],"rx-local-document.html":["'bar'","'bar');","'bar';","'bar2');","'foobar',",");","*/","..","/*","//","=","=>","access","acess","addit","alreadi","attach","await","behav","chang","class","collect","collection.","come","const","continu","creat","data","databas","document","documents.","exist","exists.","field","find","foo","foo:","found","getlocal()","handi","handl","here","id","id.","insertlocal()","it'","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","match","metadata.","migrat","mycollection.getlocal('foobar');","mycollection.insertlocal(","mycollection.upsertlocal(","mydatabase.insertlocal(","new","next","normal","notice:","null","observ","overwrit","promis","proxi","pseudo","queri","remov","replic","resolv","return","rxcollect","rxdatabas","rxdb,","rxdocument.","rxlocaldocu","rxlocaldocument.","same","schema","schema,","set","special","store","throw","undefin","upsertlocal()","us","via","want","work","work!","work.","works!","{","}","});"],"custom-build.html":["'rxdb/plugins/adapt","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/update';","'rxdb/plugins/validate';","//","=","adapt","add","addit","advantag","alway","attach","bandwidth","basic","batteri","befor","build","build,","builds.","check","check'));","check';","checkadapt","cherri","choos","collect","collections.","compress","compression'));","compression';","const","continu","core","core,","correctli","creat","crypto","current","custom","databas","databases.","default","default,","dev","disablekeycompress","disadvantag","document","documents'));","documents';","don't","done","dont","dump","dump'));","dump';","elect","election'));","election';","enabl","enabled.","encrypt","ensur","es5","es6","full","function","functionality.","here","import","import/export","imported.","includ","insert","instead.","javascript,","js","json","jsonschema","key","keycompress","keycompressor","leader","leaderelect","leaderelection.","local","lot","make","mean","memori","memory'));","memory';","mode.","modul","module,","module.","need","need.","new","not.","on","option","overwritt","part","password.","pick","plugin","plugin.","provid","realli","replic","requir","require('rxdb/plugins/core');","required.","rxcollection.","rxdb","rxdb,","rxdb.","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdbadaptercheckmodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbupdatemodul","rxdbvalidatemodul","rxdocument.","rxdocument.upd","rxquery.update.","save","schema","schemacheck","set","size.","start","support","sure","thing","this,","this:","true","updat","us","valid","want","work"],"plugins.html":["!==","&&","'mycollection.hello()'","'string'","'world';","(password","(proto)","*","*/","/**","//","=","=>","@link","@param","ad","add","alway","avail","basic","builds/src/plugin.j","call","call.","class","classes,","code","const","contain","continu","correspond","creat","don't","each","exist","extend","find","function","function(){","function(password)","get","here","here.","hook","hooks.","https://github.com/pubkey/rxdb/blob/cutsom","insid","intern","it.","javascript","jump","keynam","know","list","list:","manipul","manipulate.","method","method,","modifi","myplugin","new","object","object.","overwrit","overwritable:","overwritten","paramet","password","password.length","plugin","plugin.","plugins:","pouchdb","properti","proto.hello","prototyp","prototypes:","protoyp","return","rxcollect","rxcollection:","rxdb","rxdb'","rxdb,","rxdb:","see","set","simple.","singal","sometim","static","static.","time","true","true,","true.","typeof","validatepassword:","valu","veri","want","{","{object}","||","}","},","};"],"contribute.html":["&&","(anyth","7","ad","add","ask","befor","bug,","bugfix","build","cd","change.","changes,","check","clone","commit","community.","console.","contribut","contributing!","contribution,","creat","depend","dev","develop","developing,","device,","discuss","dist","doc","docs:instal","docs:serv","document","don't","ensur","everyth","everytim","expect","expected.","featur","feature,","file","file.","flow","folder)","folder.","following:","for,","get","git","gitter.","grate","help","higher","http://localhost:4000/","https://github.com/pubkey/rxdb.git","instal","integr","issu","it.","leav","locallly,","made","make","manual","merg","modifi","need","nodej","non","npm","open","pr","pull","read","repositori","reproduc","request,","requir","run","rxdb","shoud","slow","sourc","src","start","sure","test","test/unit","test:nod","tests,","thank","time.","to,","togeth","trivial","unit","version","want","wast","work","work."]},"length":20},"tokenStore":{"root":{"0":{"2":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.014989293361884369},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"1":{"0":{"0":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}},")":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}}}},"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"t":{"2":{"3":{"docs":{},":":{"0":{"3":{"docs":{},":":{"0":{"5":{"docs":{},"+":{"0":{"0":{"docs":{},":":{"0":{"0":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"4":{"8":{"6":{"9":{"4":{"0":{"5":{"8":{"5":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},"9":{"0":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"docs":{}},"docs":{}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"2":{"0":{"1":{"7":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{}},"5":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"docs":{}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"4":{"0":{"9":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},"docs":{}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"5":{"0":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"6":{"docs":{},"*":{"5":{"docs":{},"=":{"3":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"docs":{}},"docs":{}}},"docs":{}}},"7":{"7":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"9":{"docs":{},"]":{"docs":{},"$":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"*":{"docs":{},"$":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"_":{"docs":{},"]":{"docs":{},"*":{"docs":{},"]":{"docs":{},"?":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"c":{"docs":{},"k":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"n":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"i":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}},"e":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":10.012422360248447}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}}},"o":{"docs":{},"k":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016985138004246284},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.05063291139240506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.046218487394957986},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.041474654377880185},"population.html":{"ref":"population.html","tf":0.03460207612456748},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03686635944700461},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691},"rx-collection.html":{"ref":"rx-collection.html","tf":0.036093418259023353},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.04},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"i":{"docs":{},"o":{"docs":{},"n":{"2":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.018433179723502304},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.032},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"r":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"c":{"docs":{},"h":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}}}}},"p":{"docs":{},"u":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014861995753715499},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}},")":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"+":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"custom-build.html":{"ref":"custom-build.html","tf":5.0084507042253525}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.012738853503184714},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.03361344537815126},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.016194331983805668},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-database.html":{"ref":"rx-database.html","tf":0.031026252983293555},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":10.00257731958763}}}}}}},"e":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"i":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.024539877300613498},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"i":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"b":{"1":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.027600849256900213},"rx-document.html":{"ref":"rx-document.html","tf":0.018148820326678767},"rx-query.html":{"ref":"rx-query.html","tf":0.0379746835443038},"middleware.html":{"ref":"middleware.html","tf":0.018140589569160998},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"replication.html":{"ref":"replication.html","tf":0.014018691588785047},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"n":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}},"s":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"'":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"r":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"c":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.009345794392523364}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"l":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.029978586723768737},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.014084507042253521},"plugins.html":{"ref":"plugins.html","tf":0.022099447513812154}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383}}},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"replication.html":{"ref":"replication.html","tf":0.014018691588785047}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},")":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.034013605442176874}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.016}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},")":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},":":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.009216589861751152},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},".":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"orm.html":{"ref":"orm.html","tf":0.02304147465437788}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"l":{"docs":{},"p":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"i":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.054421768707483},"plugins.html":{"ref":"plugins.html","tf":0.022099447513812154}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"?":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"s":{"docs":{},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"4":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"r":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"g":{"docs":{},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":10.030674846625766},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"n":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"replication.html":{"ref":"replication.html","tf":0.014018691588785047}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"i":{"docs":{},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":10}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.07975460122699386},"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.07887323943661972}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"d":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"s":{"docs":{},"u":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"f":{"docs":{},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.027210884353741496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.022535211267605635},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.006920415224913495}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"x":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.024539877300613498},"contribute.html":{"ref":"contribute.html","tf":0.043478260869565216}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.027649769585253458},"population.html":{"ref":"population.html","tf":0.03460207612456748},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"j":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}},"i":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"n":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"r":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}},"l":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.04048582995951417},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"s":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"m":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"i":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014861995753715499},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.022099447513812154}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.016194331983805668},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":10}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"in-memory.html":{"ref":"in-memory.html","tf":0.04}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.016}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.03867403314917127}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"i":{"docs":{},"v":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}}}}}}},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"replication.html":{"ref":"replication.html","tf":10.032710280373832},"in-memory.html":{"ref":"in-memory.html","tf":0.04},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"e":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.04225352112676056},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.014018691588785047}},"e":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.03164556962025317},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014861995753715499},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-query.html":{"ref":"rx-query.html","tf":0.02531645569620253},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.015873015873015872},"orm.html":{"ref":"orm.html","tf":0.018433179723502304},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"f":{"docs":{"population.html":{"ref":"population.html","tf":0.010380622837370242}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.010380622837370242}}},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"g":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}}}}}},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"install.html":{"ref":"install.html","tf":0.03680981595092025},"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.01971830985915493},"plugins.html":{"ref":"plugins.html","tf":0.03314917127071823},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"install.html":{"ref":"install.html","tf":0.018404907975460124},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"custom-build.html":{"ref":"custom-build.html","tf":0.014084507042253521}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":10.011933174224344},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":10.012704174228675},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.009216589861751152},"population.html":{"ref":"population.html","tf":0.01384083044982699}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"[":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}}}}}}}}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.03067484662576687},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"s":{"docs":{},"'":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":10.002141327623127},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":10.00212314225053},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-query.html":{"ref":"rx-query.html","tf":10.031645569620252}}},"y":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0189873417721519}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":10.012605042016807}},"e":{"docs":{},"m":{"docs":{},"n":{"docs":{},"t":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266},"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"contribute.html":{"ref":"contribute.html","tf":0.06832298136645963}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"m":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02947845804988662}}}},"m":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}},")":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}},",":{"docs":{"./":{"ref":"./","tf":0.08333333333333333}}}}},"z":{"docs":{},"e":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}},"a":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"t":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.08333333333333333},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"t":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"i":{"docs":{},"c":{"docs":{"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"s":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"o":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.024539877300613498},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"population.html":{"ref":"population.html","tf":0.006920415224913495},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.024},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"m":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"s":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"w":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"u":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"i":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"o":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"v":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}},"i":{"docs":{},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"y":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"a":{"docs":{},"w":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"replication.html":{"ref":"replication.html","tf":0.04205607476635514}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.027837259100642397},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"?":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"+":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"#":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.021413276231263382}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}},"r":{"2":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.010380622837370242}}}}}},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"orm.html":{"ref":"orm.html","tf":0.02304147465437788}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"0":{"1":{"0":{"2":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"w":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}}},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"i":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.010380622837370242}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.01284796573875803},"population.html":{"ref":"population.html","tf":0.01730103806228374},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"}":{"docs":{},"}":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"2":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.009074410163339383}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.006920415224913495}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.010380622837370242}}}}}}}},"n":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013824884792626729}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"/":{"docs":{},"/":{"docs":{"install.html":{"ref":"install.html","tf":0.05521472392638037},"rx-database.html":{"ref":"rx-database.html","tf":0.028639618138424822},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.036093418259023353},"rx-document.html":{"ref":"rx-document.html","tf":0.05263157894736842},"rx-query.html":{"ref":"rx-query.html","tf":0.0379746835443038},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.049886621315192746},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.03865979381443299},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.04672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.07323943661971831},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},">":{"docs":{"population.html":{"ref":"population.html","tf":0.01384083044982699}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}},"*":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}}}}},"=":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.021231422505307854},"rx-document.html":{"ref":"rx-document.html","tf":0.043557168784029036},"rx-query.html":{"ref":"rx-query.html","tf":0.05063291139240506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.05042016806722689},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.041474654377880185},"population.html":{"ref":"population.html","tf":0.03460207612456748},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},">":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.014319809069212411},"rx-collection.html":{"ref":"rx-collection.html","tf":0.01910828025477707},"rx-document.html":{"ref":"rx-document.html","tf":0.014519056261343012},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.015873015873015872},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.02336448598130841},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},"=":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"a":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749},"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"orm.html":{"ref":"orm.html","tf":0.018433179723502304},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.01971830985915493},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"i":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.02386634844868735},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"i":{"docs":{},"c":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"population.html":{"ref":"population.html","tf":0.006920415224913495},"replication.html":{"ref":"replication.html","tf":0.014018691588785047},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"c":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"i":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.015873015873015872},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.10504201680672269},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.016706443914081145},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.012738853503184714},"rx-document.html":{"ref":"rx-document.html","tf":0.018148820326678767},"rx-query.html":{"ref":"rx-query.html","tf":0.02531645569620253},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.025210084033613446},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.04608294930875576},"population.html":{"ref":"population.html","tf":0.04844290657439446},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03225806451612903}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749}}}}},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}},"r":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"a":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.01730103806228374}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749},"custom-build.html":{"ref":"custom-build.html","tf":5.0084507042253525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"t":{"docs":{},"h":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"c":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"e":{"docs":{},"s":{"5":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124},"custom-build.html":{"ref":"custom-build.html","tf":0.036619718309859155}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},"6":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124},"custom-build.html":{"ref":"custom-build.html","tf":0.036619718309859155}}},"8":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}}}},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"y":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.02336448598130841}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}},"d":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"in-memory.html":{"ref":"in-memory.html","tf":0.032},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},":":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"replication.html":{"ref":"replication.html","tf":0.02336448598130841},"in-memory.html":{"ref":"in-memory.html","tf":0.016}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}},"i":{"docs":{},"m":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"population.html":{"ref":"population.html","tf":0.006920415224913495},"leader-election.html":{"ref":"leader-election.html","tf":0.024291497975708502},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"l":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"e":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"u":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"s":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}}}}},"i":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"e":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.024539877300613498}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124}}}}}}},"a":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.024291497975708502},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":10},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"r":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}}},"i":{"docs":{},"b":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},"f":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"s":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"v":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.009345794392523364}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06451612903225806},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.02304147465437788}},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":10}}}}}},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"o":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"g":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.018518518518518517}},"i":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"a":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749},"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.064},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}},"y":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.016}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"s":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"1":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"docs":{}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"r":{"docs":{},"g":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"k":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"n":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"r":{"docs":{},"k":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834}}}},"d":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.00907029478458}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.03380281690140845}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.006920415224913495},"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}}},"docs":{}},"docs":{}}}},"l":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}}}}},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"0":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.006920415224913495},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},".":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136}},"e":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.02304147465437788}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"d":{"5":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"docs":{}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02947845804988662}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010615711252653927},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"g":{"docs":{},"e":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749}}}},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"install.html":{"ref":"install.html","tf":0.012269938650306749},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"e":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124}},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},";":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"replication.html":{"ref":"replication.html","tf":0.018691588785046728},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"population.html":{"ref":"population.html","tf":10.017301038062284}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006802721088435374}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.011337868480725623}}}}}},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007159904534606206},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.01384083044982699}}}}}},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.04419889502762431}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}}}}}},"x":{"docs":{},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"s":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"s":{"docs":{},"h":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"u":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":10.03867403314917}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}},"u":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011933174224343675},"rx-schema.html":{"ref":"rx-schema.html","tf":0.010706638115631691},"rx-collection.html":{"ref":"rx-collection.html","tf":0.006369426751592357},"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.02336448598130841},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"replication.html":{"ref":"replication.html","tf":0.014018691588785047},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748}}}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"leader-election.html":{"ref":"leader-election.html","tf":0.032388663967611336}},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"k":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.062111801242236024}},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"m":{"docs":{},"p":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}}}}}}}},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},"e":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"custom-build.html":{"ref":"custom-build.html","tf":0.005633802816901409}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"m":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"s":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"n":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"w":{"docs":{},"o":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"o":{"docs":{},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.02100840336134454}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.027837259100642397},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.03460207612456748}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"o":{"docs":{},"f":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"u":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124},"rx-database.html":{"ref":"rx-database.html","tf":0.02386634844868735},"rx-schema.html":{"ref":"rx-schema.html","tf":0.017130620985010708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.016985138004246284},"rx-document.html":{"ref":"rx-document.html","tf":0.007259528130671506},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499},"orm.html":{"ref":"orm.html","tf":0.013824884792626729},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.016},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.016901408450704224}},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.037037037037037035}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"x":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"e":{"docs":{},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"custom-build.html":{"ref":"custom-build.html","tf":0.008450704225352112}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-document.html":{"ref":"rx-document.html","tf":0.010889292196007259}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"middleware.html":{"ref":"middleware.html","tf":0.013605442176870748},"custom-build.html":{"ref":"custom-build.html","tf":0.01971830985915493}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}},"u":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-document.html":{"ref":"rx-document.html","tf":0.018148820326678767},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"population.html":{"ref":"population.html","tf":0.006920415224913495},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"j":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"data-migration.html":{"ref":"data-migration.html","tf":0.023195876288659795},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008565310492505354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.010380622837370242}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"i":{"docs":{},"a":{"docs":{"population.html":{"ref":"population.html","tf":0.006920415224913495},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"plugins.html":{"ref":"plugins.html","tf":0.011049723756906077},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"r":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"y":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"in-memory.html":{"ref":"in-memory.html","tf":0.008}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.006134969325153374},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"i":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"d":{"docs":{},"e":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152}}}}},"r":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"population.html":{"ref":"population.html","tf":0.006920415224913495},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"in-memory.html":{"ref":"in-memory.html","tf":0.008},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"s":{"docs":{},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"middleware.html":{"ref":"middleware.html","tf":0.009070294784580499}}}}},"e":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}}},"a":{"docs":{},"p":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.012145748987854251}}}}}}}}}}},"{":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124},"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-schema.html":{"ref":"rx-schema.html","tf":0.06209850107066381},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.012704174228675136},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248},"orm.html":{"ref":"orm.html","tf":0.02304147465437788},"population.html":{"ref":"population.html","tf":0.05190311418685121},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"leader-election.html":{"ref":"leader-election.html","tf":0.008097165991902834},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.012345679012345678},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304},"plugins.html":{"ref":"plugins.html","tf":0.027624309392265192}},"$":{"docs":{},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"}":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}},"}":{"docs":{"install.html":{"ref":"install.html","tf":0.018404907975460124},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014989293361884369},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.04608294930875576},"population.html":{"ref":"population.html","tf":0.03806228373702422},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00954653937947494},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008492569002123142},"rx-document.html":{"ref":"rx-document.html","tf":0.014519056261343012},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.0045351473922902496},"orm.html":{"ref":"orm.html","tf":0.03225806451612903},"population.html":{"ref":"population.html","tf":0.02422145328719723},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.016194331983805668},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.029978586723768737},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.047619047619047616},"population.html":{"ref":"population.html","tf":0.010380622837370242},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0034602076124567475},"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}},"$":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765},"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"replication.html":{"ref":"replication.html","tf":0.018691588785046728}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"$":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"|":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}}},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.008}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0022675736961451248}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417},"plugins.html":{"ref":"plugins.html","tf":0.03867403314917127}},"/":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.016574585635359115}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.002386634844868735},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855},"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.00477326968973747},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}}}}}}}}}}},"'":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0054446460980036296}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"[":{"1":{"docs":{},",":{"2":{"docs":{},",":{"3":{"docs":{},",":{"4":{"docs":{},"]":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"n":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.003629764065335753}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}}}}}}}}},"]":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}}}}}}}}}}}}}}},"^":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"`":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}}}}},"`":{"docs":{},"`":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384},"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0028169014084507044}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576},"population.html":{"ref":"population.html","tf":0.0034602076124567475}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"e":{"docs":{},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.004608294930875576}}}}}}},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}}}}}},"z":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.004282655246252677},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}},"docs":{},"]":{"docs":{},"[":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0021413276231263384}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0021231422505307855}}}}},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.006423982869379015}}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},">":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004246284501061571},"rx-query.html":{"ref":"rx-query.html","tf":0.03164556962025317},"replication.html":{"ref":"replication.html","tf":0.009345794392523364},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.030864197530864196},"in-memory.html":{"ref":"in-memory.html","tf":0.024},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},",":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}},"y":{"docs":{},".":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.012658227848101266}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.006329113924050633}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.004672897196261682}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":10.030864197530864}},"o":{"docs":{},"r":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"!":{"docs":{},"[":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},"]":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0018148820326678765}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"=":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}},"+":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009216589861751152},"query-change-detection.html":{"ref":"query-change-detection.html","tf":0.006172839506172839}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.0034602076124567475}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}}}}},"♛":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.004048582995951417}}},"&":{"docs":{},"&":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"@":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}}}}},"|":{"docs":{},"|":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0055248618784530384}}}}},"length":2925},"corpusTokens":["!==","![synced.gif](files/synced.gif)","\"array\",","\"birthyear\":","\"color\":","\"damage\":","\"dependencies\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"healthpoints\":","\"hero","\"item\":","\"max\":","\"maxitems\":","\"min\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"rxdb\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","$","$inc:","$set:","&&","'","'!!';","'');","'',","'aaah!!'","'aaah!!';","'alice'","'alice',","'anyvalue';","'array',","'babel","'bar'","'bar');","'bar';","'bar2'","'bar2');","'barfoo';","'bi","'bob'","'bob',","'carol'","'carol',","'cat.jpg'","'cat.txt',","'dave'","'dies'.","'foo',","'foo'}})","'foobar'","'foobar');","'foobar',","'foobar';","'foobar2'","'foobar2');","'foobar2';","'heroes'","'heroes',","'heroesdb',","'http://localhost:10102/db/',","'human","'human'","'human',","'humans',","'i","'image/jpeg'","'integer',","'kelso'","'kelso';","'lastname']","'localstorage');","'localstorage',","'memdown';","'meow","'messages',","'mycollection.hello()'","'mydatabase',","'myfield',","'mypassword',","'name'","'object',","'rxdb';","'rxdb/plugins/adapt","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/replication';","'rxdb/plugins/schema","'rxdb/plugins/update';","'rxdb/plugins/validate';","'rxjs';","'rxjs/add/operator/filter';","'rxjs/add/operator/first';","'rxjs/add/operator/map';","'rxjs/add/operator/mergemap';","'rxjs/operators/filter';","'rxjs/subject';","'sendercountry'","'skeletor'","'string'","'string',","'temperature',","'text/plain'","'weatherdb',","'websql',","'world';","($)","()","(all","(also","(anyth","(async)","(default)","(optional)","(optional=false)","(optional=true)","(or","(password","(primari","(proto)","(remot","(string)","(string|blob|buffer)","(synced$","(version:","(via",");","*","*/","*/).then(()","+",".","..",".collection()",".create()",".exec()'",".exec().then(doc",".exec().then(docu",".find()",".insert()",".migratepromise():",".reduce((prev,",".save()",".subscribe(changeev",".subscribe(newnam",".then(()",".then(collect",".then(json",".then(respons",".upsert()",".where()","/*","/**","//","//>","//[insert","0","0,","0.","02","1","10","10);","100","100));","1000","12","12t23:03:05+00:00","1486940585","18","1900,","1:","2","2)","20","2017","2050","2:","4","409","5","5,","50,","6*5=30","7","77;","9]$","9]*$.","9_]*]?[a","=","==","=>",">","@link","@param","[","[\"color\"]","['firstname',","[1,2,3,4].foreach(nr","[];","[default=true]","]","^[a","_","```","```html","`queri","abov","access","access.","accident","accomplish","acess","action","active$","actual","ad","adapt","adapter,","adapter:","adapters.","add","addit","additionalproperti","advantag","advantages:","affect","afterwards.","ag","again.","age:","algorithm","alic","allattachments$","allattachments()","allow","alreadi","altern","alway","amount","angular","anoth","another.","anyth","anyuser.loggedin","anyuser.save();","anyway","api","app","app,","app.","appear","argument,","array","array.","ask","assign","assigned.","assum","assur","async","asynchron","asynchronous.","at.","atom","atomicupdate()","atomicupdate:","atomicupsert()","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attribut","attribute.","attributes/methods.","automat","automigr","automigrate:","avail","avoid","await","awesom","b","babel","bandwidth","bar.","base","basic","batteri","becom","befor","before.","behav","behavior","belong","bestfriend","bestfriend:","beta","better","between","big","binari","birthyear","blob","blobbuff","block","boolean","both.","browser","browsers,","browsers.","buffer.","bug,","bugfix","build","build,","builds.","builds/src/plugin.j","cach","calcul","call","call)","call.","cancel","cancel()","capabl","case","cd","certain","chain","chang","change$","change.","changed.","changeev","changes,","changes.","characters.","charts,","check","check'));","check';","checkadapt","checkadapter()","cherri","choos","class","classes,","cleanup","clear","click","client","client'","clone","closed,","closed.","code","code.","collect","collection'","collection,","collection.","collection2","collection2);","collection:","collections.","color","combin","come","commit","commit.","commithash","common","community.","compar","complete$","complete.","completed.","completes.","complex","compound","compoundindex","compress","compression'));","compression',","compression';","compression,","computer.","conflict","conform","connect","connections.","cons:","console.","console.dir(active));","console.dir(bestfriend);","console.dir(change));","console.dir(changeevent));","console.dir(collection));","console.dir(completed));","console.dir(currentname);","console.dir(currentnestedvalue);","console.dir(doc));","console.dir(docdata));","console.dir(documents));","console.dir(error));","console.dir(friends);","console.dir(isname);","console.dir(json));","console.dir(mother);","console.dir(mydatabase.heroes.name);","console.dir(mydocument.age);","console.dir(ok);","console.dir(results);","console.dir(state),","console.error(error),","console.log","console.log('done')","console.log('done'));","console.log('long","console.log(attachment.scream());","console.log(collect","console.log(doc.myfield);","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.firstname);","console.log(mydocument.get('firstname'));","console.log(mydocument.synced);","const","constructed.","contain","continu","contribut","contributing!","contribution,","control","coordin","cordova","core","core,","corner.","correctli","correspond","cost.","couchdb","couchdb,","count","countri","cpu.","creat","created.","creation","crown","crypto","cur)","cur.username+","current","currentnam","currentname;","currentnestedvalu","currentnestedvalue;","custom","damag","data","data,","data.","data:","databas","database)","database,","database.","database:","databases.","datamigr","date","date().gettime()","date(olddoc.time).gettime();","dates.","db","db.","db.collection({","db.heroes;","db.temperature.insert({","db.waitforleadership()","db1","db2","db['heroes']","decid","decrypt","default","default,","default.","default:","default=tru","defin","definit","definition.","degrees:","delet","deleted$","deleted$.","deleted:","depend","describ","destroy","destroy()","destroyed.","detect,","detection`,","dev","develop","developing,","devic","device,","dies,","differ","digest","direct","direction:","directli","directly.","disabl","disablekeycompress","disablekeycompression:","disadvantag","disc","discuss","display","dist","distribut","doc","doc.ag","doc.anyfield","doc.bestfriend_;","doc.populate('bestfriend');","doc.putattachment({","docdata","docs$","docs:instal","docs:serv","document","document,","document.","document.queryselector('body').innerhtml","documents'));","documents';","documents,","documents.","does,","dollarsign","don't","done","done.","done:","dont","driver,","dump","dump'));","dump';","dump()","dure","each","easier","easily.","easy,","edit","elect","election'));","election';","electron","emit","emmit","emptydatabase.importdump(json)","enabl","enable()","enabled.","encrypt","encrypted,","encrypted.","encrypted:","engine.","enough","ensur","environment.","equal","error","error$","error('stop');","error.","error:","errors,","es5","es5.","es6","es8","especi","event","events.","everyth","everytim","exact","exactli","exampl","example,","example:","exec","execut","exisit","exist","exist.","exists.","expect","expected.","explicitli","export","extend","fals","false),","false);","false,","false.","false;","family:","faster","featur","feature,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","fetch('https://example.com/api/temp/');","field","field,","field.","fieldnam","fieldname.","fieldnames,","fields.","file","file.","file:","files,","fill","filter","final","final,","final:","find","find()","findone()","finish","finished.","fire","first","firstnam","firstname:","fistname:","fit","flexibl","flow","folder","folder)","folder.","follow","following:","foo","foo:","foobar","for,","foreign","form","found","found.","free","friend","friends:","full","function","function(){","function(olddoc){","function(password)","function.","functionality.","functions,","functions.","gain","generated.","get","get$","get$()","get()","get:","getattachment()","getdata()","getlocal()","getstringdata()","getter","getter.","getter/sett","git","gitter.","given","gone","grate","greater","hand","hand'","handi","handl","handled.","handled:","handler","happen","hash","healthpoint","heatmaps.","heavi","help","helpful","here","here.","here]","hero","hero\",","hero.","heroes.findone().exec();","heroes.insert({","higher","hint","hook","hook,","hook?","hooks)","hooks.","hooks:","http","http'));","http://localhost:4000/","https://github.com/pubkey/rxdb.git","https://github.com/pubkey/rxdb/blob/cutsom","https://pouchdb.com/api.html#repl","huge","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","id","id,","id.","id:","ideas:","ident","identifi","idl","idle.","if(olddoc.tim","ignoredupl","ignoreduplicate:","imag","imagin","immut","immutable.","implement","import","import/export","importdump()","imported.","improv","in.","includ","incom","increas","index","index,","index:","indexed,","indexes,","initi","inmemori","insert","insert()","insertlocal()","insid","inspect","instal","instanc","instance,","instance.","instantli","instead","instead.","integr","intent","interact","intern","introduct","invalid","io","isnam","isname;","isrxcollect","isrxdatabas","isrxdocu","isrxqueri","issu","it'","it,","it.","items:","javascript","javascript,","javascript.","join","js","json","jsonschema","jump","keep","key","keycompress","keycompressor","keynam","keyword","keyword:","king!');","kitty',","know","known","last","lastnam","lastname:","lastpromis","lastpromise;","laststat","later","later.","latest","lead","leader","leader,","leader.","leaderelect","leaderelection.","learn","leav","length","less","lettabl","level","leveldb","leveldb'));","lib,","life","lifecycl","limit","list","list:","live","live:","load","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","locallly,","localstorage'));","locat","log","logic","long","longer","look","looks.","lot","made","main","make","manag","mani","manipul","manipulate.","manual","map","mark","match","matter","maximum","md5","mean","means,","memcol","memcol.find().exec();","memdown","memdown});","memori","memory'));","memory';","memory)","merg","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","metadata.","meteor","method","method,","method.","methods:","middlewar","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mind","minute.","mistake,","mode.","model","modifi","modifyjs.","modul","module,","module.","moment","mongo","mongoose,","mongoose.","more","mother","mother:","ms","multiinst","multiinstance:","multipl","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.customcleanupfunction();","mycollection.dump()","mycollection.dump(true)","mycollection.find().exec()","mycollection.find().where('age').gt(18)","mycollection.find().where('age').gt(18);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find({name:","mycollection.findone('foo')","mycollection.findone().exec();","mycollection.findone().where('name').eq('foo')","mycollection.getlocal('foobar');","mycollection.importdump(json)","mycollection.inmemory();","mycollection.insert({","mycollection.insertlocal(","mycollection.newdocument({","mycollection.postcreate(function(doc){","mycollection.postinsert(function(documentdata){","mycollection.postremove(function(doc){","mycollection.postsave(function(doc){","mycollection.preinsert(function(documentdata){","mycollection.preremove(function(doc){","mycollection.presave(function(doc){","mycollection.remove();","mycollection.sync(","mycollection.upsert(docdata);","mycollection.upsert({","mycollection.upsertlocal(","mydatabase.collection({","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.insertlocal(","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","mydocument.$()","mydocument.ag","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.atomicupdate(function(doc){","mydocument.deleted$.subscribe(st","mydocument.family.mother_;","mydocument.firstnam","mydocument.firstname$","mydocument.friends_;","mydocument.get$('name')","mydocument.get('name');","mydocument.getattachment('cat.jpg');","mydocument.nam","mydocument.name;","mydocument.putattachment({","mydocument.remove();","mydocument.resync();","mydocument.save();","mydocument.set('firstname',","mydocument.set('name',","mydocument.synced$.subscribe(st","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield$","mydocument.whatever.nestedfield;","myheroschema","myplugin","myschema","myschema,","name","name.","name:","name:foobar","names.","nativ","need","need.","ness","nest","nestedvalu","never","new","new,","new.","newdocument()","newer","newest","newli","newname;","next","nodej","non","normal","not.","note","noth","notic","notice:","notif","notifi","now","now,","npm","nr;","null","null,","null;","number","number,","number.","object","object,","object.","object.defineproperty(doc,","observ","occur","off,","offlin","ok","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","once.","open","oper","operations.","operators,","operators.","oplog","optim","optimis","option","options:","origin","orm","orm/drm","other.","otherwis","out","over","overwrit","overwritable:","overwritt","overwritten","package.json,","package.json.","page","parallel","paramet","parameter.","parameters.","parent","parrallel","part","pass","password","password.","password.length","password:","path","peer","per","percent:","percentag","perform","performance,","pick","piec","pleas","plu","plugin","plugin.","plugins:","point","polling.","polyfil","polyfill');","polyfill';","polyfill.","polyfills,","popul","populate()","post","postcreat","postinsert","postremov","postsav","pouch/couch","pouchdb","pouchdb,","pouchset","power","powerful","pr","pre","prefil","preinsert","preremov","presav","prev","prevent","previou","primari","primary,","primary.","primary:","problem","process,","produce,","promis","promise(r","promise.","properti","properties:","property.","pros:","proto.hello","protocol.","prototyp","prototypes:","protoyp","provid","proxi","pseudo","pull","pull:","push:","putattachment()","queri","queries,","queries.","query.","query.$.subscribe(us","query.remove();","query.update({","query:","querychangedetect","querychangedetector","querychangedetector.enable();","querychangedetector.enabledebugging();","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","quota","ram","rare","re","react","reactiv","reactive,","read","realli","reasign","receiv","reciev","recogn","record","reduc","redund","reestablished.","ref","ref:","refer","referenc","refhuman","refind","regex","regex:","regular","relat","releas","remains:","remot","remote:","remov","remove()","removed.","removeddoc","replac","replic","replicated.","replication,","replication.","replications.","replicationst","replicationstate.active$.subscribe(act","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","repositori","repres","reproduc","request","request,","requestidlecallback","requestidlepromise()","requir","require('babel","require('rxdb');","require('rxdb/plugins/core');","require('rxjs');","required.","required:","resolv","resourc","respons","response.json();","result","result.","resync","resync()","retry:","return","returning.","reus","rev","revis","right","run","run:","running.","runtime,","rx.collection.sync()","rxattach","rxattachemnt","rxchangeevent.","rxcollect","rxcollection().inmemory();","rxcollection,","rxcollection.","rxcollection.insert","rxcollection.newdocument(initaldata).","rxcollection.sync()","rxcollection.sync().","rxcollection:","rxcollections,","rxdatabas","rxdatabase.","rxdb","rxdb'","rxdb,","rxdb.","rxdb.checkadapter('localstorage');","rxdb.create({","rxdb.create({name:","rxdb.isrxcollection(myobj);","rxdb.isrxdatabase(myobj);","rxdb.isrxdocument(myobj);","rxdb.isrxquery(myobj);","rxdb.plugin()","rxdb.plugin(require('pouchdb","rxdb.plugin(require('rxdb/plugins/adapt","rxdb.plugin(require('rxdb/plugins/attachments'));","rxdb.plugin(require('rxdb/plugins/encryption'));","rxdb.plugin(require('rxdb/plugins/in","rxdb.plugin(require('rxdb/plugins/json","rxdb.plugin(require('rxdb/plugins/key","rxdb.plugin(require('rxdb/plugins/lead","rxdb.plugin(require('rxdb/plugins/loc","rxdb.plugin(require('rxdb/plugins/replication'));","rxdb.plugin(require('rxdb/plugins/schema","rxdb.plugin(require('rxdb/plugins/update'));","rxdb.plugin(require('rxdb/plugins/validate'));","rxdb.plugin(rxdbadaptercheckmodule);","rxdb.plugin(rxdbattachmentsmodule);","rxdb.plugin(rxdbencryptionmodule);","rxdb.plugin(rxdbinmemorymodule);","rxdb.plugin(rxdbjsondumpmodule);","rxdb.plugin(rxdbkeycompressionmodule);","rxdb.plugin(rxdbleaderelectionmodule);","rxdb.plugin(rxdblocaldocumentsmodule);","rxdb.plugin(rxdbreplicationmodule);","rxdb.plugin(rxdbschemacheckmodule);","rxdb.plugin(rxdbupdatemodule);","rxdb.plugin(rxdbvalidatemodule);","rxdb.removedatabase('mydatabasename',","rxdb:","rxdbadaptercheckmodul","rxdbattachmentsmodul","rxdbencryptionmodul","rxdbinmemorymodul","rxdbjsondumpmodul","rxdbkeycompressionmodul","rxdbleaderelectionmodul","rxdblocaldocumentsmodul","rxdbreplicationmodul","rxdbschemacheckmodul","rxdbupdatemodul","rxdbvalidatemodul","rxdocument","rxdocument)","rxdocument,","rxdocument.","rxdocument.atomicupdate.","rxdocument.remov","rxdocument.sav","rxdocument.upd","rxdocument[alice]","rxj","rxjs'","rxlocaldocu","rxlocaldocument.","rxqueri","rxquery'","rxquery.","rxquery.update.","rxreplicationst","rxschema","rxschema.","same","save","save()","save().","save,","saved.","schema","schema\",","schema'","schema,","schema.","schema.org.","schema:","schema?","schemacheck","schemas,","schemas.","schemaversions.","schemawithdefaultag","schemawithfinalag","schemawithindex","scream:","search","second","secondari","seconds.","secret","see","semi","send","sender","sent","seri","server","serverless,","serverless.","serverurl,","set","set()","set).","settimeout(res,","settings:","share","short","shoud","show","side","side,","similar","simpl","simple.","singal","singl","site","size,","size.","skeletor!!'","skill","slow","small","solut","solv","someon","someth","sometim","sort","sourc","spawn","spec","special","specif","specifi","specifiy","speed","src","standard","start","state","state);","static","static.","statics:","stay","still","stop","storag","storage.","store","strategi","stream","stream.","string","string,","string.","structur","subject","submit","subscrib","succeed","success:","sum","support","supprot","sure","sync","sync()","sync.","synced$","synced$.","synchron","synchronis","syntax,","system","tab","tab.","table.","tabs,","tabs.","take","task","tasks.","team","temp","temp,","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temperatur","temporari","ten","test","test/unit","test:nod","tests,","thank","them,","then,","therefor","these","thing","things.","this,","this.","this.nam","this.name;","this:","thousand","through","throw","time","time,","time.","time:","timeout","timespan,","timestamp","title:","to,","to.","togeth","top","toplist","total:","track","traffic","transform","transpil","tri","trigger","trivial","true","true);","true,","true.","two","type","type.","type:","typeof","u","undefin","underscor","underscore_","uniqu","unique,","unit","unix","unset","until","up","updat","update()","update/insert/remov","upon","upsert","upsert()","upsertlocal()","us","usag","used:","useful","user","user'","user,","users'","users.","userscollection.find().where('loggedin').eq(true).sort('points');","valid","validatepassword:","valu","value,","value.","values.","vanillaj","var","variou","veri","version","version,","version.","version:","versions.","via","visitor","wait","wait..","waitforleadership()","waitforleadership:","want","warn","warning:","wast","way","websit","websocket","whaterv","whenev","whether","while,","whoami:","whole","wide","wide.","window","wire","within","without","work","work!","work.","works!","worry,","wrap","write","written","wrong.","you.","z0","z][[a","z][a","za","zero","{","{$eq:","{object}","||","}","})","});","},","};","♛"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n \n \n \n\n\n\n Reactive, serverless, client-side, offline-first database in javascript.\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n If you are new to RxDB, you should start here.\n\n"},"install.html":{"url":"install.html","title":"Install","keywords":"","body":"Install\nnpm\nTo install the latest release of rxdb and its dependencies and save it to your package.json, run:\nnpm i rxdb --save\npeer-dependency\nYou also need to install the peer-dependency rxjs if you not have installed it before.\nnpm i rxjs --save\npolyfills\nRxDB is coded with es8 and transpiled to es5. This means you have to install polyfills to support older browsers.\nnpm i babel-polyfill --save\nLatest\nIf you need the latest develop-state of RxDB, add it as git-dependency into your package.json.\n \"dependencies\": {\n \"rxdb\": \"git+https://git@github.com/pubkey/rxdb.git#commitHash\"\n }\n\nReplace commitHash with the hash of the latest build-commit.\nImport\nTo import rxdb, add this to your javascript file:\n// es6\nimport RxDB from 'rxdb';\n\n// es5\nvar rxdb = require('rxdb');\n\nIf you have not included es8-polyfills, you also have to import babel-polyfill.\n// es6\nimport 'babel-polyfill';\n\n// es5\nrequire('babel-polyfill');\n\nrxjs\nTo reduce the build-size, RxDB is using rxjs's lettable-operators. This means that by default only some parts of rxjs are included into RxDB. If you want to use additional operators, you either have to require the whole rxjs-lib, or also use the lettable-operators. Another alternative is to cherry-pick the needed operators.\n// full import\nimport 'rxjs'; // es6\nrequire('rxjs'); // es5\n\n// lettable\nimport { Subject } from 'rxjs/Subject';\nimport { filter } from 'rxjs/operators/filter';\n\n// cherry-pick\nimport 'rxjs/add/operator/map'; \nimport 'rxjs/add/operator/mergeMap'; \nimport 'rxjs/add/operator/filter'; \nimport 'rxjs/add/operator/first';\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-database.html":{"url":"rx-database.html","title":"RxDatabase","keywords":"","body":"RxDatabase\nA RxDatabase-Object contains your collections and handles the synchronisation of change-events.\nCreation\nThe database is created by the asynchronous .create()-function of the main RxDB-module. It has the following 4 parameters.\nconst db = await RxDB.create({\n name: 'heroesdb', // \nname\nThe database-name is a string which uniquely identifies the database. When two RxDatabases have the same name and use the same storage-adapter, their data can be assumed as equal and they will share change-events between each other.\nDepending on the adapter this can also be used to define the storage-folder of your data.\nadapter\nThe storage-adapter defines where the data is actually stored at. You can use a string for pouchdb-adapters or an object for level-adapters. To use an adapter it must before have been added with the RxDB.plugin()-function.\nBefore using a level-adapter, you have to add the pouchdb-adapter-leveldb module.\nExample with level-adapter:\nimport memdown from 'memdown';\nRxDB.plugin(require('pouchdb-adapter-leveldb'));\nconst db = await RxDB.create({name: 'mydatabase', adapter: memdown});\n\npassword\n(optional)\nIf you want to use encrypted fields in the collections of a database, you have to set a password for it. The password must be a string with at least 12 characters.\nmultiInstance\n(optional=true)\nWhen you create more than one instance of the same database in a single javascript-runtime, you should set multiInstance to true. This will enable the event-sharing between the two instances serverless. This should be set to false when you have single-instances like a single nodejs-process, a react-native-app, a cordova-app or a single-window electron-app.\nignoreDuplicate\n(optional=false)\nIf you create multiple RxDatabase-instances with the same name and same adapter, it's very likely that you have done something wrong.\nTo prevent this common mistake, RxDB will throw an error when you do this.\nIn some rare cases like unit-tests, you want to do this intentional by setting ignoreDuplicate to true.\nconst db1 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true\n});\nconst db2 = await RxDB.create({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true // this create-call will not throw because you explicitly allow it\n});\n\nFunctions\nObserve with $\nCalling this will return an rxjs-Observable which streams every change to data of this database.\nmyDb.$.subscribe(changeEvent => console.dir(changeEvent));\n\nwaitForLeadership()\nReturns a Promise which resolves when the RxDatabase becomes elected leader.\ndump()\nUse this function to create a json-export from every piece of data in every collection of this database. You can pass true as a parameter to decrypt the encrypted data-fields of your document.\nmyDatabase.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyDatabase.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json-dumps into your database, use this function.\n// import the dump to the database\nemptyDatabase.importDump(json)\n .then(() => console.log('done'));\n\nrequestIdlePromise()\nReturns a promise which resolves when the database is in idle. This works similar to requestIdleCallback but tracks the idle-ness of the database instead of the CPU.\nUse this for semi-important tasks like cleanups which should not affect the speed of important tasks.\n\nmyDatabase.requestIdlePromise().then(() => {\n // this will run at the moment the database has nothing else to do\n myCollection.customCleanupFunction();\n});\n\n// with timeout\nmyDatabase.requestIdlePromise(1000 /* time in ms */).then(() => {\n // this will run at the moment the database has nothing else to do\n // or the timeout has passed\n myCollection.customCleanupFunction();\n});\n\ndestroy()\nDestroys the databases object-instance. This is to free up memory and stop all observings and replications.\nReturns a Promise that resolves when the database is destroyed.\nawait myDatabase.destroy();\n\nremove()\nRemoves the database and all data of it from the storage.\nawait myDatabase.remove();\n// database is now gone\n\n// NOTICE: You can also remove a database without its instance\nRxDB.removeDatabase('mydatabasename', 'localstorage');\n\ncheckAdapter()\nChecks if the given adapter can be used with RxDB in the current environment.\nRxDB.plugin(require('pouchdb-adapter-localstorage')); // adapter must be added before\n\nconst ok = await RxDB.checkAdapter('localstorage');\nconsole.dir(ok); // true on most browsers, false on nodejs\n\nisRxDatabase\nReturns true if the given object is an instance of RxDatabase. Returns false if not.\nconst is = RxDB.isRxDatabase(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-schema.html":{"url":"rx-schema.html","title":"RxSchema","keywords":"","body":"RxSchema\nSchemas define how your data looks. Which field should be used as primary, which fields should be used as indexes and what should be encrypted. The schema also validates that every inserted document of your collections conforms to the schema. Every collection has its own schema. With RxDB, schemas are defined with the jsonschema-standard so that you dont have to learn anything new.\nExample\nIn this example-schema we define a hero-collection with the following settings:\n\nthe version-number of the schema is 0\nthe name-property is the primary. This means its an unique, indexed, required string which can be used to definitely find a single document.\nthe color-field is required for every document\nthe healthpoints-field must be a number between 0 and 100\nthe secret-field stores an encrypted value\nthe birthyear-field is final which means it is required and cannot be changed\nthe skills-attribute must be an array with objects which contain the name and the damage-attribute. There is a maximum of 5 skills per hero.\n{\n \"title\": \"hero schema\",\n \"version\": 0,\n \"description\": \"describes a simple hero\",\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"primary\": true\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"healthpoints\": {\n \"type\": \"number\",\n \"min\": 0,\n \"max\": 100\n },\n \"secret\": {\n \"type\": \"string\",\n \"encrypted\": true\n },\n \"birthyear\": {\n \"type\": \"number\",\n \"final\": true,\n \"min\": 1900,\n \"max\": 2050\n },\n \"skills\": {\n \"type\": \"array\",\n \"maxItems\": 5,\n \"uniqueItems\": true,\n \"item\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"damage\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n \"required\": [\"color\"]\n}\n\n\n\nCreate a collection with the schema\nawait myDatabase.collection({\n name: 'heroes',\n schema: myHeroSchema\n});\nconsole.dir(myDatabase.heroes.name);\n// heroes\n\nversion\nThe version field is a number, starting with 0.\nWhen the version is greater than 0, you have to provide the migrationStrategies to create a collection with this schema.\ndisableKeyCompression\nIf you do not want to use the internal key-compression, you can disable it by setting the field disableKeyCompression to true.\nNotice that disableKeyCompression can only be used on the top-level of a schema.\nconst mySchema = {\n disableKeyCompression: true,\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nIndexes\nRxDB supports secondary indexes which are defined at the schema-level of the collection.\nTo add a simple index, add index: true to any fieldName.\nTo add compound-indexes, add them in an array to a compoundIndexes-field at the top-level of the schema-definition.\nIndex-example\nconst schemaWithIndexes = {\n disableKeyCompression: true,\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string',\n index: true // \ndefault\nDefault values can only be defined for first-level fields.\nWhenever you insert a document or create a temporary-document, unset fields will be filled with default-values.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n default: 20 // \nfinal\nBy setting a field to final, you make sure it cannot be modified later. Final fields are always required.\nFinal fields cannot be observed because they anyway will not change.\nAdvantages:\n- With final fields you can ensure that no other in your dev-team accidentally modifies the data\n- When you enable the `query-change-detection`, some performance-improvements are done\nconst schemaWithFinalAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n final: true\n }\n },\n};\n\nNOTICE: Not everything within the jsonschema-spec is allowed\nThe schema is not only used to validate objects before they are written into the database, but also used to map getters to observe and populate single fieldnames, keycompression and other things. Therefore you can not use every schema which would be valid for the spec of json-schema.org.\nFor example, fieldnames must match the regex ^[a-zA-Z][[a-zA-Z0-9_]*]?[a-zA-Z0-9]$ and additionalProperties is always set to false. But don't worry, RxDB will instantly throw an error when you pass a invalid schema into it.\n\nIf you are new to RxDB, you should continue here\n"},"rx-collection.html":{"url":"rx-collection.html","title":"RxCollection","keywords":"","body":"RxCollection\nA collection stores documents of the same type.\nCreating a Collection\nTo create a collection you need a RxDatabase object which has the .collection()-method. Every collection needs a collection name and a valid RxSchema.\nmyDatabase.collection({\n name: 'humans',\n schema: mySchema\n})\n .then(collection => console.dir(collection));\n\nname\nThe name uniquely identifies the collection and should be used to refind the collection in the database. Two different collections in the same database can never have the same name. Collection names must match the following regex: ^[a-z][a-z0-9]*$.\nschema\nThe schema defines how your data looks and how it should be handled. You can pass a RxSchema object or a simple javascript-object from which the schema will be generated.\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property.\nGet a collection from the database\nTo get an existing collection from the database, call the collection name directly on the database:\n// newly created collection\nconst collection = await db.collection({\n name: 'heroes',\n schema: mySchema\n});\nconst collection2 = db.heroes;\n// or\n// const collection2 = db['heroes']\n\nconsole.log(collection == collection2);\n// true\n\nFunctions\nObserve $\nCalling this will return an rxjs-Observable which streams every change to data of this collection.\nmyCollection.$.subscribe(changeEvent => console.dir(changeEvent));\n\ninsert()\nUse this to insert new documents into the database. The collection will validate the schema and automatically encrypt any encrypted fields. Returns the new RxDocument.\nconst doc = await myCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nnewDocument()\nSometimes it can be helpfull to spawn and use documents before saving them into the database.\nThis is usefull especially when you want to use the ORM methods or prefill values from form data.\nYou can create temporary documents by calling RxCollection.newDocument(initalData).\nconst tempDoc = myCollection.newDocument({\n firstName: 'Bob'\n});\n\n// fill in data later\ntempDoc.lastName = 'Kelso';\ntempDoc.age = 77;\n\n// saving a temporary document will transform it to a standard RxDocument\nawait tempDoc.save();\n\nupsert()\nInserts the document if it does not exist within the collection, otherwise it will overwrite it. Returns the new or overwritten RxDocument.\nconst doc = await myCollection.upsert({\n name: 'foo',\n lastname: 'bar2'\n});\n\natomicUpsert()\nWhen you run many upsert operations on the same RxDocument in a very short timespan, you might get a 409 Conflict error.\nThis means that you tried to run a .upsert() on the document, while the previous upsert operation was still running.\nTo prevent these types of errors, you can run atomic upsert operations.\nThe behavior is similar to RxDocument.atomicUpdate.\nconst docData = {\n name: 'Bob', // primary\n lastName: 'Kelso'\n};\n\nmyCollection.upsert(docData);\nmyCollection.upsert(docData);\n// -> throws because of parrallel update to the same document\n\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\n\n// wait until last upsert finished\nawait myCollection.atomicUpsert(docData);\n// -> works\n\nfind()\nTo find documents in your collection, use this method.\nThis will return a RxQuery object with the exec function.\n// directly pass search-object\nmyCollection.find({name: {$eq: 'foo'}})\n .exec().then(documents => console.dir(documents));\n\n// chained queries\nmyCollection.find().where('name').eq('foo')\n .exec().then(documents => console.dir(documents));\n\nfindOne()\nThis does basically what find() does, but it returns only a single document. You can pass a primary value to find a single document more easily.\n// get document with name:foobar\nmyCollection.findOne().where('name').eq('foo')\n .exec().then(doc => console.dir(doc));\n\n// get document by primary, functionally identical to above query\nmyCollection.findOne('foo')\n .exec().then(doc => console.dir(doc));\n\ndump()\nUse this function to create a json export from every document in the collection. You can pass true as parameter to decrypt the encrypted data fields of your documents.\nmyCollection.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyCollection.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json dump into your collection, use this function.\n// import the dump to the database\nmyCollection.importDump(json)\n .then(() => console.log('done'));\n\ndestroy()\nDestroys the collection's object instance. This is to free up memory and stop all observings and replications.\nmyDatabase.destroy();\n\nsync()\nThis method allows you to replicate data between other RxCollections, pouchdb instances or remove servers which supprot the couchdb-sync-protocol.\nFull documentation on how to use replication is here.\nremove()\nRemoves all known data of the collection and its previous versions.\nThis removes the documents, the schemas, and older schemaVersions.\nawait myCollection.remove();\n// collection is no removed and can be re-created\n\nisRxCollection\nReturns true if the given object is an instance of RxCollection. Returns false if not.\nconst is = RxDB.isRxCollection(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-document.html":{"url":"rx-document.html","title":"RxDocument","keywords":"","body":"RxDocument\nA document is a single object which is stored in a collection. It can be compared to a single record in a relational database table.\ninsert\nTo insert a document into a collection, you have to call the collection's .insert()-function.\nmyCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nfind\nTo find documents in a collection, you have to call the collection's .find()-function.\nmyCollection.find().exec() // console.dir(documents));\n\nFunctions\nget()\nThis will get a single field of the document. If the field is encrypted, it will be automatically decrypted before returning.\nvar name = myDocument.get('name'); // returns the name\n\nproxy-get\nAs RxDocument is wrapped into a Proxy-object, you can also directly access values instead of using the get()-function.\n // Identical to myDocument.get('name');\n var name = myDocument.name;\n // Can also get nested values.\n var nestedValue = myDocument.whatever.nestedfield;\n\nset()\nTo change data in your document, use this function. It takes the field-path and the new value as parameter. Note that calling the set-function will not change anything in your storage directly. You have to call .save() after to submit changes.\nmyDocument.set('firstName', 'foobar');\nconsole.log(myDocument.get('firstName')); // \nproxy-set\nAs RxDocument is wrapped into a Proxy-object, you can also directly set values instead of using the set()-function.\nmyDocument.firstName = 'foobar';\nmyDocument.whatever.nestedfield = 'foobar2';\n\nsave()\nThis will update the document in the storage if it has been changed. Call this after modifying the document (via set() or proxy-set).\nmyDocument.name = 'foobar';\nawait myDocument.save(); // submit the changes to the storage\n\nremove()\nThis removes the document from the collection.\nmyDocument.remove();\n\nupdate()\nUpdates the document based on the mongo-update-syntax, based on modifyjs.\nawait myDocument.update({\n $inc: {\n age: 1 // increases age by 1\n },\n $set: {\n fistName: 'foobar' // sets firstName to foobar\n }\n});\n\natomicUpdate()\nWhen you run many save-operations on the same RxDocument in a very short timespan, it can happen that you get a 409 Conflict-Error.\nThis means that you did run a .save() on the document, while the previous save-operation was still running.\nTo prevent these types of errors, you can run atomic update-operations.\natomicUpdate() has a function as argument, which transforms the document and then automatically runs a save().\nIt returns a promise to notify you when the given atomic-update has finished.\nExample to reproduce the 409-error:\n[1,2,3,4].forEach(nr => {\n myDocument.age = nr;\n myDocument.save();\n});\n// throws\n\nUsage of atomicUpdate:\nlet lastPromise;\n[1,2,3,4].forEach(nr => {\n lastPromise = myDocument.atomicUpdate(function(doc){\n doc.age = nr;\n });\n});\nawait lastPromise;\nconsole.dir(myDocument.age); // 4\n\nObserve $\nCalling this will return an rxjs-Observable which emits all change-Events belonging to this document.\n// get all changeEvents\nmyDocument.$()\n .subscribe(changeEvent => console.dir(changeEvent));\n\nget$()\nThis function returns an observable of the given paths-value.\nThe current value of this path will be emitted each time the document changes.\n// get the life-updating value of 'name'\nvar isName;\nmyDocument.get$('name')\n .subscribe(newName => {\n isName = newName;\n });\n\nmyDocument.set('name', 'foobar2');\nawait myDocument.save();\n\nconsole.dir(isName); // isName is now 'foobar2'\n\nproxy-get$\nYou can directly get value-observables for a fieldName by adding the dollarSign ($) to its name.\n// top-level\nvar currentName;\nmyDocument.firstName$\n .subscribe(newName => {\n currentName = newName;\n });\nmyDocument.firstName = 'foobar2';\nawait myDocument.save();\nconsole.dir(currentName); // currentName is now 'foobar2'\n\n// nested\nvar currentNestedValue;\nmyDocument.whatever.nestedfield$\n .subscribe(newName => {\n currentNestedValue = newName;\n });\nmyDocument.whatever.nestedfield = 'foobar2';\nawait myDocument.save();\nconsole.dir(currentNestedValue); // currentNestedValue is now 'foobar2'\n\ndeleted$\nEmits a boolean value, depending on whether the RxDocument is deleted or not.\nlet lastState = null;\nmyDocument.deleted$.subscribe(state => lastState = state);\n\nconsole.log(lastState);\n// false\n\nawait myDocument.remove();\n\nconsole.log(lastState);\n// true\n\nget deleted\nA getter to get the current value of deleted$.\nconsole.log(myDocument.deleted);\n// false\n\nawait myDocument.remove();\n\nconsole.log(myDocument.deleted);\n// true\n\nsynced$\nEmits a boolean value of whether the RxDocument is in the same state as its value stored in the database.\nThis is useful to show warnings when two or more users edit a document at the same time.\nBrowser tab A\nlet lastState = null;\nmyDocument.synced$.subscribe(state => lastState = state);\nconsole.log(lastState);\n// true\n\nmyDocument.firstName = 'foobar';\nconsole.log(lastState);\n// true\n\nBrowser tab B\nmyDocument.firstName = 'barfoo';\nawait myDocument.save();\n\nBrowser tab A\nconsole.log(lastState);\n// false\n\n\n\n Example with Angular 2\n\n\n```html\n\n Warning:\n Someone else has changed this document. If you click save, you will overwrite the changes.\n resync\n\n```\n\n![synced.gif](files/synced.gif)\n\n\nget synced\nA getter to get the current value of synced$.\nBrowser tab A\nconsole.log(myDocument.synced);\n// true\n\nmyDocument.firstName = 'foobar';\nconsole.log(myDocument.synced);\n// true\n\nBrowser tab B\nmyDocument.firstName = 'barfoo';\nawait myDocument.save();\n\nBrowser tab A\nconsole.log(myDocument.synced);\n// false\n\nresync()\nIf the RxDocument is not in sync (synced$ fires false), you can run resync() to overwrite own changes with the new state from the database.\nmyDocument.firstName = 'foobar';\n\n// now someone else overwrites firstName with 'Alice'\n\nmyDocument.resync();\n\nconsole.log(myDocument.firstName);\n// Alice\n\nisRxDocument\nReturns true if the given object is an instance of RxDocument. Returns false if not.\nconst is = RxDB.isRxDocument(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-query.html":{"url":"rx-query.html","title":"RxQuery","keywords":"","body":"RxQuery\nA query defines how to find documents in your collection. With RxDB you can use chained queries.\nremove()\nDeletes all found documents. Returns a promise which resolves to the deleted documents.\n// All documents where the age is less than 18\nconst query = myCollection.find().where('age').lt(18);\n// Remove the documents from the collection\nconst removedDocs = await query.remove();\n\nupdate()\nRuns and update on every RxDocument of the query-result.\nconst query = myCollection.find().where('age').gt(18);\nawait query.update({\n $inc: {\n age: 1 // increases age of every found document by 1\n }\n});\n\nNOTICE: RxQuery's are immutable\nBecause RxDB is a reactive database, we can do heavy performance-optimisation on query-results which change over time. To be able to do this, RxQuery's have to be immutable.\nThis means, when you have a RxQuery and run a .where() on it, the original RxQuery-Object is not changed. Instead the where-function returns a new RxQuery-Object with the changed where-field. Keep this in mind if you create RxQuery's and change them afterwards.\nExample:\nconst queryObject = myCollection.find().where('age').gt(18);\n// Creates a new RxQuery object, does not modify previous one\nqueryObject.sort('name');\nconst results = await queryObject.exec();\nconsole.dir(results); // result-documents are not sorted by name\n\nconst queryObjectSort = queryObject.sort('name');\nconst results = await queryObjectSort.exec();\nconsole.dir(results); // result-documents are now sorted\n\nisRxQuery\nReturns true if the given object is an instance of RxQuery. Returns false if not.\nconst is = RxDB.isRxQuery(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-attachment.html":{"url":"rx-attachment.html","title":"RxAttachment","keywords":"","body":"Attachments\nLike pouchdb, RxDB can store attachments which has a better performance and a higher quota-limit then regular data.\nYou can store string, binary files, images and whaterver you want side by side with your documents.\nBefore you can use attachments, you have to ensure that the attachments-object is set in the schema of your RxCollection.\n\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n // .\n // .\n // .\n },\n attachments: {\n encrypted: true // if true, the attachment-data will be encrypted with the db-password\n }\n};\n\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema\n});\n\nputAttachment()\nAdds an attachment to a RxDocument. Returns a Promise with the new attachment.\nconst attachment = await myDocument.putAttachment({\n id, // string, name of the attachment like 'cat.jpg'\n data, // (string|Blob|Buffer) data of the attachment\n type // (string) type of the attachment-data like 'image/jpeg'\n});\n\ngetAttachment()\nReturns an RxAttachment by its id. Returns null when the attachment does not exist.\nconst attachment = myDocument.getAttachment('cat.jpg');\n\nallAttachments()\nReturns an array of all attachments of the RxDocument.\nconst attachments = myDocument.allAttachments();\n\nallAttachments$\nGets an Observable which emits a stream of all attachments from the document. Re-emits each time an attachment gets added or removed from the RxDocument.\nconst all = [];\nmyDocument.allAttachments$.subscribe(\n attachments => all = attachments\n);\n\nRxAttachment\nThe attachments of RxDB are represented by the type RxAttachment which has the following attributes/methods.\ndoc\nThe RxDocument which the attachement is assigned to.\nid\nThe id as string of the attachment.\ntype\nThe type as string of the attachment.\nlength\nThe length of the data of the attachment as number.\ndigest\nThe md5-sum of the attachments data as string.\nrev\nThe revision-number of the attachment as number.\nremove()\nRemoves the attachment. Returns a Promise that resolves when done.\nconst attachment = myDocument.getAttachment('cat.jpg');\nawait attachment.remove();\n\ngetData()\nReturns a Promise which resolves the attachment's data as Blob or Buffer. (async)\nconst attachment = myDocument.getAttachment('cat.jpg');\nconst blobBuffer = await attachment.getData();\n\ngetStringData()\nReturns a Promise which resolves the attachment's data as string.\nconst attachment = await myDocument.getAttachment('cat.jpg');\nconst data = await attachment.getStringData();\n\n\nIf you are new to RxDB, you should continue here\n"},"middleware.html":{"url":"middleware.html","title":"Middleware-hooks","keywords":"","body":"Middleware\nRxDB supports middleware-hooks like mongoose.\nMiddleware (also called pre and post hooks) are functions which are passed control during execution of asynchronous functions.\nThe hooks are specified on RxCollection-level and help to create a clear what-happens-when-structure of your code.\nHooks can be defined to run parallel or as series one after another.\nHooks can be synchronous or asynchronous when they return a Promise.\nTo stop the operation at a specific hook, throw an error.\nList\nRxDB supports the following hooks:\n\npreInsert\npostInsert\npreSave\npostSave\npreRemove\npostRemove\npostCreate\n\nWhy is there no validate-hook?\nDifferent to mongoose, the validation on document-data is running on the field-level for every change to a document.\nThis means if you set the value lastName of a RxDocument, then the validation will only run on the changed field, not the whole document.\nTherefore it is not usefull to have validate-hooks when a document is written to the database.\nUse Cases\nMiddleware are useful for atomizing model logic and avoiding nested blocks of async code.\nHere are some other ideas:\n\ncomplex validation\nremoving dependent documents\nasynchronous defaults\nasynchronous tasks that a certain action triggers\ntriggering custom events\nnotifications\n\nUsage\nInsert\nAn insert-hook recieves the data-object of the new document.\nlifecycle\n\nRxCollection.insert is called\npreInsert series-hooks\npreInsert parallel-hooks\nschema validation runs\nnew document is written to database\npostInsert series-hooks\npostInsert parallel-hooks\nevent is emmited to RxDatabase and RxCollection\n\npreInsert\n// series\nmyCollection.preInsert(function(documentData){\n\n}, false);\n\n// parallel\nmyCollection.preInsert(function(documentData){\n\n}, true);\n\n// async\nmyCollection.preInsert(function(documentData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the insert-operation\nmyCollection.preInsert(function(documentData){\n throw new Error('stop');\n}, false);\n\npostInsert\n// series\nmyCollection.postInsert(function(documentData){\n\n}, false);\n\n// parallel\nmyCollection.postInsert(function(documentData){\n\n}, true);\n\n// async\nmyCollection.postInsert(function(documentData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nSave\nA save-hook receives the document which is saved.\nlifecycle\n\nRxDocument.save is called\npreSave series-hooks\npreSave parallel-hooks\nupdated document is written to database\npostSave series-hooks\npostSave parallel-hooks\nevent is emmited to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preSave(function(doc){\n doc.anyField = 'anyValue';\n}, false);\n\n// parallel\nmyCollection.preSave(function(doc){\n\n}, true);\n\n// async\nmyCollection.preSave(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the save-operation\nmyCollection.preSave(function(doc){\n throw new Error('stop');\n}, false);\n\npostSave\n// series\nmyCollection.postSave(function(doc){\n\n}, false);\n\n// parallel\nmyCollection.postSave(function(doc){\n\n}, true);\n\n// async\nmyCollection.postSave(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nRemove\nAn remove-hook recieves the document which is removed.\nlifecycle\n\nRxDocument.remove is called\npreRemove series-hooks\npreRemove parallel-hooks\ndeleted document is written to database\npostRemove series-hooks\npostRemove parallel-hooks\nevent is emmited to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preRemove(function(doc){\n\n}, false);\n\n// parallel\nmyCollection.preRemove(function(doc){\n\n}, true);\n\n// async\nmyCollection.preRemove(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the remove-operation\nmyCollection.preRemove(function(doc){\n throw new Error('stop');\n}, false);\n\npostRemove\n// series\nmyCollection.postRemove(function(doc){\n\n}, false);\n\n// parallel\nmyCollection.postRemove(function(doc){\n\n}, true);\n\n// async\nmyCollection.postRemove(function(doc){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\npostCreate\nThis hook is called whenever a RxDocument is constructed.\nYou can use postCreate to modify every RxDocument-instance of the collection.\nThis adds a flexible way to add specifiy behavior to every document. You can also use it to add custom getter/setter to documents. PostCreate-hooks cannot be asynchronous.\nmyCollection.postCreate(function(doc){\n Object.defineProperty(doc, 'myField', {\n get: () => 'foobar',\n });\n});\n\nconst doc = await myCollection.findOne().exec();\n\nconsole.log(doc.myField);\n// 'foobar'\n\nNotice: This hook does not run on already created or cached documents. Make sure to add postCreate-hooks before interacting with the collection.\n\nIf you are new to RxDB, you should continue here\n"},"orm.html":{"url":"orm.html","title":"ORM/DRM","keywords":"","body":"Object-Data-Relational-Mapping\nLike mongoose, RxDB has ORM-capabilities which can be used to add specific behavior to documents and collections.\nstatics\nStatics are defined collection-wide and can be called on the collection.\nAdd statics to a collection\nTo add static functions, pass a statics-object when you create your collection. The object contains functions, mapped to their function-names.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\n\nconsole.log(heroes.scream());\n// 'AAAH!!'\n\nYou can also use the this-keyword which resolves to the collection:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n whoAmI: function(){\n this.name;\n }\n }\n});\nconsole.log(heroes.whoAmI());\n// 'heroes'\n\ninstance-methods\nInstance-methods are defined collection-wide. They can be called on the RxDocuments of the collection.\nAdd instance-methods to a collection\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.scream());\n// 'AAAH!!'\n\nHere you can also use the this-keyword:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n whoAmI: function(){\n return 'I am ' + this.name + '!!';\n }\n }\n});\nawait heroes.insert({\n name: 'Skeletor'\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.whoAmI());\n// 'I am Skeletor!!'\n\nattachment-methods\nAttachment-methods are defined collection-wide. They can be called on the RxAttachemnts of the RxDocuments of the collection.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n attachments: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconst attachment = await doc.putAttachment({\n id: 'cat.txt',\n data: 'meow I am a kitty',\n type: 'text/plain'\n});\nconsole.log(attachment.scream());\n// 'AAAH!!'\n\n\nIf you are new to RxDB, you should continue here\n"},"population.html":{"url":"population.html","title":"Population","keywords":"","body":"Population\nThere are no joins in RxDB but sometimes we still want references to documents in other collections. This is where population comes in. You can specify a relation from one RxDocument to another RxDocument in the same or another RxCollection of the same database.\nThen you can get the referenced document with the population-getter.\nThis works exactly like population with mongoose.\nSchema with ref\nThe ref-keyword describes to which collection the field-value belongs to.\nexport const refHuman = {\n title: 'human related to other human',\n version: 0,\n properties: {\n name: {\n primary: true,\n type: 'string'\n },\n bestFriend: {\n ref: 'human', // refers to collection human\n type: 'string' // ref-values must always be string (primary of foreign RxDocument)\n }\n }\n};\n\npopulate()\nvia method\nTo get the refered RxDocument, you can use the populate()-method.\nIt takes the field-path as attribute and returns a Promise which resolves to the foreign document or null if not found.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.populate('bestFriend');\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nvia getter\nYou can also get the populated RxDocument with the direct getter. Therefore you have to add the underscore _ to the fieldname.\nThis works also on nested values.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.bestFriend_; // notice the underscore_\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nExample with nested reference\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n family: {\n type: 'object',\n properties: {\n mother: {\n type: 'string',\n ref: 'human'\n }\n }\n }\n }\n }\n});\n\nconst mother = await myDocument.family.mother_;\nconsole.dir(mother); //> RxDocument\n\nExample with array\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n }\n});\n\n//[insert other humans here]\n\nawait myCollection.insert({\n name: 'Alice',\n friends: [\n 'Bob',\n 'Carol',\n 'Dave'\n ]\n});\n\nconst doc = await humansCollection.findOne('Alice').exec();\nconst friends = await myDocument.friends_;\nconsole.dir(friends); //> Array.\n\n\nIf you are new to RxDB, you should continue here\n"},"data-migration.html":{"url":"data-migration.html","title":"DataMigration","keywords":"","body":"DataMigration\nImagine you have your awesome messenger-app distributed to many users. After a while, you decide that in your new version, you want to change the schema of the messages-collection. Instead of saving the message-date like 2017-02-12T23:03:05+00:00 you want to have the unix-timestamp like 1486940585 to make it easier to compare dates. To accomplish this, you change the schema and increase the version-number and you also change your code where you save the incoming messages. But one problem remains: what happens with the messages which are already saved on the user's device in the old schema?\nWith RxDB you can provide migrationStrategies for your collections that automatically (or on call) transform your exisiting data from older to newer schemas. This assures that the client's data always matches your newest code-version.\nProviding strategies\nUpon creation of a collection, you have to provide migrationStrategies when your schema's version-number is greater than 0. To do this, you have to add an object to the migrationStrategies property where a function for every schema-version is assigned. A migrationStrategy is a function which gets the old document-data as a parameter and returns the new, transformed document-data. If the strategy returns null, the document will be removed instead of migrated.\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n }\n }\n});\n\nAsynchronous strategies can also be used:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * 2 means, this transforms data from version 1 to version 2\n * this returns a promise which resolves with the new document-data\n */\n 2: function(oldDoc){\n // in the new schema (version: 2) we defined 'senderCountry' as required field (string)\n // so we must get the country of the message-sender from the server\n const coordinates = oldDoc.coordinates;\n return fetch('http://myserver.com/api/countryByCoordinates/'+coordinates+'/')\n .then(response => {\n const response = response.json();\n oldDoc.senderCountry=response;\n return oldDoc;\n });\n }\n }\n});\n\nyou can also filter which documents should be migrated:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * this removes all documents older then 2017-02-12\n * they will not appear in the new collection\n */\n 2: function(oldDoc){\n if(oldDoc.time \nautoMigrate\nBy default, the migration automatically happens when the collection is created. If you have lots of data or the migrationStrategies take a long time, it might be better to start the migration 'by hand' and show the migration-state to the user as a loading-bar.\nconst messageCol = await myDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n autoMigrate: false, // console.dir(state),\n error => console.error(error),\n done => console.log('done')\n);\n\n// the emitted states look like this:\n{\n done: false, // true if finished\n total: 50, // amount of documents which must be migrated\n handled: 0, // amount of handled docs\n success: 0, // handled docs which succeeded\n deleted: 0, // handled docs which got deleted\n percent: 0 // percentage\n}\n\nIf you don't want to show the state to the user, you can also use .migratePromise():\n const migrationPromise = messageCol.migratePromise(10);\n await migratePromise;\n\nHint\nIf your migration takes a long time, combine it with the leaderElection to make sure you don't waste your users' resources by running it in 2 open tabs.\n\nIf you are new to RxDB, you should continue here\n"},"leader-election.html":{"url":"leader-election.html","title":"LeaderElection","keywords":"","body":"Leader-Election\nBefore you read this, please check out on how many of your open browser-tabs you have opened the same website more than once. Count them, I will wait..\nSo if you would now inspect the traffic that theses open tabs produce, you can see that many of them send exact the same data over wire for every tab. No matter if the data is sent with an open websocket or by polling.\nUse-case-example\nImagine we have a website which displays the current temperature of the visitors location in various charts, numbers or heatmaps. To always display the live-data, the website opens a websocket to our API-Server which sends the current temperature every 10 seconds. Using the way most sites are currently build, we can now open it in 5 browser-tabs and it will open 5 websockets which send data 6*5=30 times per minute. This will not only waste the power of your clients device, but also wastes your api-servers resources by opening redundant connections.\nSolution\nThe solution to this redundancy is the usage of a leader-election-algorithm which makes sure that always exactly one tab is managing the remote-data-access. The managing tab is the elected leader and stays leader until it is closed. No matter how many tabs are opened or closed, there must be always exactly one leader.\nYou could now start implementing a messaging-system between your browser-tabs, hand out which one is leader, solve conflicts and reasign a new leader when the old one 'dies'.\nOr just use RxDB which does all these things for you.\nCode-example\nTo make it easy, here is an example where the temperature is pulled every ten seconds and saved to a collection. The pulling starts at the moment where the opened tab becomes the leader.\nconst db = await RxDB.create({\n name: 'weatherDB',\n adapter: 'localstorage',\n password: 'myPassword',\n multiInstance: true\n});\nawait db.collection({\n name: 'temperature',\n schema: mySchema\n});\n\ndb.waitForLeadership()\n .then(() => {\n console.log('Long lives the king!'); // {\n const temp = await fetch('https://example.com/api/temp/');\n db.temperature.insert({\n degrees: temp,\n time: new Date().getTime()\n });\n }, 1000 * 10);\n });\n\nLive-Example\nIn this example the leader is marked with the crown ♛\n\nTry it out\nRun the vanillaJS-example where the leading tab is marked with a crown on the top-right-corner.\n\nIf you are new to RxDB, you should continue here\n"},"replication.html":{"url":"replication.html","title":"Replication","keywords":"","body":"Replication\nOne of the most powerfull features with CouchDB, PouchDB and RxDB is sync.\nYou can sync every RxCollection with another RxCollection, a PouchDB-instance or a remote pouch/couch-DB.\nRx.Collection.sync()\nTo replicate the collection with another instance, use RxCollection.sync().\nIt basically does the same as pouchdb-sync but also adds event-handlers to make sure that change-events will be recognized in the internal event-stream.\n\n// you need these plugins to sync\nRxDB.plugin(require('pouchdb-adapter-http')); // enable syncing over http (remote database)\n\nconst replicationState = myCollection.sync(\n remote: 'http://localhost:10102/db/', // remote database. This can be the serverURL, another RxCollection or a PouchDB-instance\n waitForLeadership: true, // (optional) [default=true] to save performance, the sync starts on leader-instance only\n direction: { // direction (optional) to specify sync-directions\n pull: true, // default=true\n push: true // default=true\n },\n options: { // sync-options (optional) from https://pouchdb.com/api.html#replication\n live: true,\n retry: true\n },\n query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised\n);\n\nRxReplicationState\nThe method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.\nchange$\nEmits the change-events everytime some documents get replicated.\nreplicationState.change$.subscribe(change => console.dir(change));\n\ndocs$\nEmits each replicated document-data.\nreplicationState.docs$.subscribe(docData => console.dir(docData));\n\nactive$\nEmits true or false depending if the replication is running. For example if you sync with a remote server and the connection dies, this is false until the connection can be reestablished.\nreplicationState.active$.subscribe(active => console.dir(active));\n\ncomplete$\nEmits true or false depending if the replication is completed.\nIf you do a live: true-sync (default) the replication never completes.\nOnly one-time-replications will complete.\nreplicationState.complete$.subscribe(completed => console.dir(completed));\n\nerror$\nIf errors occur during the replication, they will get emited here.\nreplicationState.error$.subscribe(error => console.dir(error));\n\ncancel()\nCalling this method will cancel the replication.\nawait replicationState.cancel(); // cancel() is async\n\n\nIf you are new to RxDB, you should continue here\n"},"query-change-detection.html":{"url":"query-change-detection.html","title":"QueryChangeDetection","keywords":"","body":"QueryChangeDetection\nSimilar to Meteors oplog-observe-driver,\nRxDB has a QueryChangeDetection to optimize observed or reused queries. This makes sure that when you update/insert/remove documents, the query does not have to re-run over the whole database but the new results will be calculated from the events. This creates a huge performance gain with zero cost.\nNOTICE:\nQueryChangeDetection is currently in beta and disabled by default.\nYou can enable it by calling the enable()-function on its module.\nimport { QueryChangeDetector } from 'rxdb';\nQueryChangeDetector.enable();\nQueryChangeDetector.enableDebugging(); // shows a console.log everytime an optimisation is made\n\nUse-case-example\nImagine you have a very big collection with many user-documents. At your page you want to display a toplist with users which have the most points and are currently logged in.\nYou create a query and subscribe to it.\nconst query = usersCollection.find().where('loggedIn').eq(true).sort('points');\nquery.$.subscribe(users => {\n document.querySelector('body').innerHTML = users\n .reduce((prev, cur) => prev + cur.username+ '', '');\n});\n\nAs you may detect, the query can take a very long time to run because you have thousands of users in the collection.\nThen, when a user logs off, the whole query will re-run over the database which takes a really long time yet again.\nanyUser.loggedIn = false;\nawait anyUser.save();\n\nBut not with QueryChangeDetection enabled.\nNow, when one user logs off, it will calculate the new results from the current results plus the RxChangeEvent. This can often be done in-memory without making IO-requests to the storage-engine. QueryChangeDetection not only works on subscribed queries, but also when you do multiple .exec()'s on the same query.\n\nIf you are new to RxDB, you should continue here\n"},"in-memory.html":{"url":"in-memory.html","title":"InMemory","keywords":"","body":"in-memory\nWhen you do a heavy amount of operations on a RxCollection, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Ram of your computer.\nRxCollection().inMemory();\nReturns a promise that resolves with another RxCollection that is the in-memory-replicated version of the original collection. The memory-collection has the same documents as it's parent and also shares the same event-stream.\n\nconst memCol = await myCollection.inMemory();\n\n// now u can use memCol as it would be myCollection\n\nconst docs = await memCol.find().exec(); // has same result as on the original collection\n\nencryption\nEncrypted fields are automatically decrypted inside of the memory-collection. This means you can do queries over encrypted fields.\nreplication\nThe memory-collection is two-way-replicated with its original collection. This means when you change documents on one of them, the update and the change-event will fire on both.\nPros:\n\nFaster queries\nFaster writes\nQuerying works over encrypted fields\n\nCons:\n\nThe original collection has to be small enough to fit into the memory\nNo attachment-support\nInitial creation takes longer (all data is loaded from disc into the memory)\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-local-document.html":{"url":"rx-local-document.html","title":"LocalDocuments","keywords":"","body":"Local Documents\nLocal documents are a special class of documents which are used to store local metadata.\nThey come in handy when you want to store settings or additional data next to your documents.\n\nLocal Documents can exist on RxDatabase or RxCollection\nLocal Document do not have to match the collections schema\nLocal Documents do not get replicated\nLocal Documents will not be found on queries\nLocal Documents can not have attachments\nLocal Documents will not get handled by the data-migration\n\ninsertLocal()\nCreates a local document for the database or collection. Throws if a local document with the same id already exists. Returns a Promise which resolves the new RxLocalDocument.\nconst localDoc = await myCollection.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\n// you can also use local-documents on a database\nconst localDoc = await myDatabase.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\nupsertLocal()\nCreates a local document for the database or collection if not exists. Overwrites the if exists. Returns a Promise which resolves the RxLocalDocument.\nconst localDoc = await myCollection.upsertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\ngetLocal()\nFind a RxLocalDocument by it's id. Returns a Promise which resolves the RxLocalDocument or null if not exists.\nconst localDoc = await myCollection.getLocal('foobar');\n\nRxLocalDocument\nA RxLocalDocument behaves like a normal RxDocument.\nconst localDoc = await myCollection.getLocal('foobar');\n\n// access data\nconst foo = localDoc.get('foo');\n\n// change data\nlocalDoc.set('foo', 'bar2');\nawait localDoc.save();\n\n// observe data\nlocalDoc.get$('foo').subscribe(value => { /* .. */ });\n\n// remove it\nawait localDoc.remove();\n\nNOTICE: Because the local document does not have a schema, acessing the documents data-fields via pseudo-proxy will not work.\nconst foo = localDoc.foo; // undefined\nconst foo = localDoc.get('foo'); // works!\n\nlocalDoc.foo = 'bar'; // does not work!\nlocalDoc.set('foo', 'bar'); // works\n\n\nIf you are new to RxDB, you should continue here\n"},"custom-build.html":{"url":"custom-build.html","title":"Custom Build","keywords":"","body":"Custom Build\nBy default, if you import RxDB into your javascript, a full batteries-included build will be imported. This has the advantage that you dont have to choose which things you need and which not. The disadvantage is the build-size. Often you don't need most of the functionality and you could save a lot of bandwidth by cherry-picking only the things you really need. For this, RxDB supports custom builds.\nCore\nThe core-module is the part of RxDB which is always needed to provide basic functionality. If you need a custom build, you start with the core and then add all modules that you need.\n// es6-import\nimport RxDB from 'rxdb/plugins/core';\n\n// es5-require\nconst RxDB = require('rxdb/plugins/core');\n\nrequired modules\nSome parts of RxDB are not in the core, but are required. This means they must always be overwritte by at least one plugin.\nvalidate\nThe validation-module does the schema-validation when you insert or update a RxDocument. Currently we have only one validation-module, which is using is-my-json-valid but you can also use your own validator instead. To import the default validation-module, do this:\n// es6-import\nimport RxDBValidateModule from 'rxdb/plugins/validate';\nRxDB.plugin(RxDBValidateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/validate'));\n\noptional modules\nSome modules are optional and only needed if you use their functionality.\nschemacheck\nThe schemacheck-module does additional checks on your jsonschema before you create a RxCollection. This ensure that your collection-schema is correctly working with rxdb. You should always enable this plugin on dev-mode.\n// es6-import\nimport RxDBSchemaCheckModule from 'rxdb/plugins/schema-check';\nRxDB.plugin(RxDBSchemaCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/schema-check'));\n\nreplication\nAdds the replication-functionality to RxDB.\n// es6-import\nimport RxDBReplicationModule from 'rxdb/plugins/replication';\nRxDB.plugin(RxDBReplicationModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/replication'));\n\nattachments\nAdds the attachments-functionality to RxDB.\n// es6-import\nimport RxDBAttachmentsModule from 'rxdb/plugins/attachments';\nRxDB.plugin(RxDBAttachmentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/attachments'));\n\nin-memory\nAdds the in-memory-replication to the collections.\n// es6-import\nimport RxDBInMemoryModule from 'rxdb/plugins/in-memory';\nRxDB.plugin(RxDBInMemoryModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/in-memory'));\n\nlocal-documents\nAdds the local-documents to the collections and databases.\n// es6-import\nimport RxDBLocalDocumentsModule from 'rxdb/plugins/local-documents';\nRxDB.plugin(RxDBLocalDocumentsModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/local-documents'));\n\njson-dump\nAdds the json import/export-functionality to RxDB.\n// es6-import\nimport RxDBJsonDumpModule from 'rxdb/plugins/json-dump';\nRxDB.plugin(RxDBJsonDumpModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/json-dump'));\n\nkey-compression\nThe keycompressor-module is needed when you have keyCompression enabled. This is done by default so make sure that you set disableKeyCompression to true when you do not have this module.\n// es6-import\nimport RxDBKeyCompressionModule from 'rxdb/plugins/key-compression';\nRxDB.plugin(RxDBKeyCompressionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/key-compression'));\n\nleader-election\nThe leaderelection-module is needed when want to use the leaderelection.\n// es6-import\nimport RxDBLeaderElectionModule from 'rxdb/plugins/leader-election';\nRxDB.plugin(RxDBLeaderElectionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/leader-election'));\n\nencryption\nThe encryption-module is using crypto-js and is only needed when you create your RxDB-Database with a password.\n// es6-import\nimport RxDBEncryptionModule from 'rxdb/plugins/encryption';\nRxDB.plugin(RxDBEncryptionModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/encryption'));\n\nupdate\nThe update-module is only required when you use RxDocument.update or RxQuery.update.\n// es6-import\nimport RxDBUpdateModule from 'rxdb/plugins/update';\nRxDB.plugin(RxDBUpdateModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/update'));\n\nadapter-check\nThis module add the checkAdapter-function to RxDB.\n// es6-import\nimport RxDBAdapterCheckModule from 'rxdb/plugins/adapter-check';\nRxDB.plugin(RxDBAdapterCheckModule);\n\n// es5-require\nRxDB.plugin(require('rxdb/plugins/adapter-check'));\n\n\nIf you are new to RxDB, you should continue here\n"},"plugins.html":{"url":"plugins.html","title":"Plugins","keywords":"","body":"Plugins\nCreating an own plugin is very simple. A plugin is basically an javascript-object which overwrites or extends RxDB's internal classes, prototypes and hooks.\nA basic plugins:\n\nconst myPlugin = {\n rxdb: true, // this must be true so rxdb knows that this is a rxdb-plugin and not a pouchdb-plugin\n /**\n * every value in this object can manipulate the prototype of the keynames class\n * You can manipulate every prototype in this list:\n * @link https://github.com/pubkey/rxdb/blob/cutsom-builds/src/Plugin.js\n */\n prototypes: {\n /**\n * add a function to RxCollection so you can call 'myCollection.hello()'\n *\n * @param {object} prototype of RxCollection\n */\n RxCollection: (proto) => {\n proto.hello = function(){\n return 'world';\n };\n }\n },\n /**\n * some methods are static and can be overwritten in the overwriteable-object\n */\n overwritable: {\n validatePassword: function(password) {\n if (password && typeof password !== 'string' || password.length \nProperties\nrxdb\nThe rxdb-property singals that this plugin is and rxdb-plugin and not a pouchdb-plugin. The value should always be true.\nprototypes\nThe prototypes-property contains a function for each of RxDB's internal protoype that you want to manipulate. Each function gets the protoype-object of the corresponding class as parameter and than can modify it. You can see a list of all available prototypes here\noverwritable\nSome of RxDB's functions are not inside of a class-prototype but are static. You can set and overwrite them with the overwritable-object. You can see a list of all overwriteables here.\nhooks\nSometimes you don't want to overwrite an existing RxDB-method, but extend it. You can do this by adding hooks which will be called each time the code jumps into the hooks corresponding call. You can find a list of all hooks here here.\n\nIf you are new to RxDB, you should continue here\n"},"contribute.html":{"url":"contribute.html","title":"Contribute","keywords":"","body":"Contribution\nWe are open to, and grateful for, any contributions made by the community.\nDeveloping\nRequirements\nBefore you can start developing, do the following:\n\nMake shoud you have installed nodejs with version 7 or higher\nClone the repository git clone https://github.com/pubkey/rxdb.git\nInstall the dependencies cd rxdb && npm install\nMake sure that the tests work for you npm run test\n\nFlow\nWhile developing you should run npm run dev and leave it open in the console. This will run the unit-tests on every file-change. If you have a slow device, you can also manually run npm run test:node everytime you want to check if the tests work.\nAdding tests\nBefore you start creating a bugfix or a feature, you should create a test to reproduce it. Tests are in the test/unit-folder.\nIf you want to reproduce a bug, you can modify the test in this file.\nMaking a PR\nIf you make a pull-request, ensure the following:\n\nEvery feature or bugfix must be commited together with a unit-test which ensures everything works as expected.\nDo not commit build-files (anything in the dist-folder)\nBefore you add non-trivial changes, create an issue to discuss if this will be merged and you don't waste your time.\nTo run the unit and integration-tests, do npm run test and ensure everything works as expected\n\nGetting help\nIf you need help with your contribution, ask at gitter.\nDocs\nThe source of the documentation is at the docs-src-folder.\nTo read the docs locallly, run npm run docs docs:install && npm run docs:serve and open http://localhost:4000/\nThank you for contributing!\n"}}} \ No newline at end of file diff --git a/package.json b/package.json index 56cc8b1b6ad..54dc277ba7f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rxdb", "description": "Offline-first database with Reactive, Sync, Schema, Promises, Mongo-Query, Encryption, LevelDown", - "version": "7.0.1", + "version": "7.1.0", "author": "pubkey", "repository": { "type": "git",