rxjs-rails 2.2.15 → 2.2.16

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,26 +23,33 @@
23
23
 
24
24
  var Rx = { internals: {}, config: {} };
25
25
 
26
- // Defaults
27
- function noop() { }
28
- function identity(x) { return x; }
29
- var defaultNow = (function () { return !!Date.now ? Date.now : function () { return +new Date; }; }());
30
- function defaultComparer(x, y) { return isEqual(x, y); }
31
- function defaultSubComparer(x, y) { return x - y; }
32
- function defaultKeySerializer(x) { return x.toString(); }
33
- function defaultError(err) { throw err; }
34
- function isPromise(p) { return typeof p.then === 'function'; }
35
-
36
- // Errors
37
- var sequenceContainsNoElements = 'Sequence contains no elements.';
38
- var argumentOutOfRange = 'Argument out of range';
39
- var objectDisposed = 'Object has been disposed';
40
- function checkDisposed() {
41
- if (this.isDisposed) {
42
- throw new Error(objectDisposed);
43
- }
44
- }
45
-
26
+ // Defaults
27
+ function noop() { }
28
+ function identity(x) { return x; }
29
+ var defaultNow = (function () { return !!Date.now ? Date.now : function () { return +new Date; }; }());
30
+ function defaultComparer(x, y) { return isEqual(x, y); }
31
+ function defaultSubComparer(x, y) { return x - y; }
32
+ function defaultKeySerializer(x) { return x.toString(); }
33
+ function defaultError(err) { throw err; }
34
+ function isPromise(p) { return typeof p.then === 'function' && typeof p.subscribe === 'undefined'; }
35
+
36
+ // Errors
37
+ var sequenceContainsNoElements = 'Sequence contains no elements.';
38
+ var argumentOutOfRange = 'Argument out of range';
39
+ var objectDisposed = 'Object has been disposed';
40
+ function checkDisposed() { if (this.isDisposed) { throw new Error(objectDisposed); } }
41
+
42
+ // Shim in iterator support
43
+ var $iterator$ = (typeof Symbol === 'object' && Symbol.iterator) ||
44
+ '_es6shim_iterator_';
45
+ // Firefox ships a partial implementation using the name @@iterator.
46
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=907077#c14
47
+ // So use that name if we detect it.
48
+ if (root.Set && typeof new root.Set()['@@iterator'] === 'function') {
49
+ $iterator$ = '@@iterator';
50
+ }
51
+ var doneEnumerator = { done: true, value: undefined };
52
+
46
53
  /** `Object#toString` result shortcuts */
47
54
  var argsClass = '[object Arguments]',
48
55
  arrayClass = '[object Array]',
@@ -1630,155 +1637,143 @@
1630
1637
  };
1631
1638
  }());
1632
1639
 
1633
- /**
1634
- * @constructor
1635
- * @private
1636
- */
1637
- var Enumerator = Rx.internals.Enumerator = function (moveNext, getCurrent) {
1638
- this.moveNext = moveNext;
1639
- this.getCurrent = getCurrent;
1640
- };
1640
+ var Enumerator = Rx.internals.Enumerator = function (next) {
1641
+ this._next = next;
1642
+ };
1641
1643
 
1642
- /**
1643
- * @static
1644
- * @memberOf Enumerator
1645
- * @private
1646
- */
1647
- var enumeratorCreate = Enumerator.create = function (moveNext, getCurrent) {
1648
- var done = false;
1649
- return new Enumerator(function () {
1650
- if (done) {
1651
- return false;
1652
- }
1653
- var result = moveNext();
1654
- if (!result) {
1655
- done = true;
1656
- }
1657
- return result;
1658
- }, function () { return getCurrent(); });
1659
- };
1660
-
1661
- var Enumerable = Rx.internals.Enumerable = function (getEnumerator) {
1662
- this.getEnumerator = getEnumerator;
1663
- };
1644
+ Enumerator.prototype.next = function () {
1645
+ return this._next();
1646
+ };
1664
1647
 
1665
- Enumerable.prototype.concat = function () {
1666
- var sources = this;
1667
- return new AnonymousObservable(function (observer) {
1668
- var e = sources.getEnumerator(), isDisposed, subscription = new SerialDisposable();
1669
- var cancelable = immediateScheduler.scheduleRecursive(function (self) {
1670
- var current, hasNext;
1671
- if (isDisposed) { return; }
1648
+ Enumerator.prototype[$iterator$] = function () { return this; }
1672
1649
 
1673
- try {
1674
- hasNext = e.moveNext();
1675
- if (hasNext) {
1676
- current = e.getCurrent();
1677
- }
1678
- } catch (ex) {
1679
- observer.onError(ex);
1680
- return;
1681
- }
1650
+ var Enumerable = Rx.internals.Enumerable = function (iterator) {
1651
+ this._iterator = iterator;
1652
+ };
1682
1653
 
1683
- if (!hasNext) {
1684
- observer.onCompleted();
1685
- return;
1686
- }
1654
+ Enumerable.prototype[$iterator$] = function () {
1655
+ return this._iterator();
1656
+ };
1687
1657
 
1688
- var d = new SingleAssignmentDisposable();
1689
- subscription.setDisposable(d);
1690
- d.setDisposable(current.subscribe(
1691
- observer.onNext.bind(observer),
1692
- observer.onError.bind(observer),
1693
- function () { self(); })
1694
- );
1695
- });
1696
- return new CompositeDisposable(subscription, cancelable, disposableCreate(function () {
1697
- isDisposed = true;
1698
- }));
1699
- });
1700
- };
1658
+ Enumerable.prototype.concat = function () {
1659
+ var sources = this;
1660
+ return new AnonymousObservable(function (observer) {
1661
+ var e;
1662
+ try {
1663
+ e = sources[$iterator$]();
1664
+ } catch(err) {
1665
+ observer.onError();
1666
+ return;
1667
+ }
1701
1668
 
1702
- Enumerable.prototype.catchException = function () {
1703
- var sources = this;
1704
- return new AnonymousObservable(function (observer) {
1705
- var e = sources.getEnumerator(), isDisposed, lastException;
1706
- var subscription = new SerialDisposable();
1707
- var cancelable = immediateScheduler.scheduleRecursive(function (self) {
1708
- var current, hasNext;
1709
- if (isDisposed) { return; }
1669
+ var isDisposed,
1670
+ subscription = new SerialDisposable();
1671
+ var cancelable = immediateScheduler.scheduleRecursive(function (self) {
1672
+ var currentItem;
1673
+ if (isDisposed) { return; }
1710
1674
 
1711
- try {
1712
- hasNext = e.moveNext();
1713
- if (hasNext) {
1714
- current = e.getCurrent();
1715
- }
1716
- } catch (ex) {
1717
- observer.onError(ex);
1718
- return;
1719
- }
1675
+ try {
1676
+ currentItem = e.next();
1677
+ } catch (ex) {
1678
+ observer.onError(ex);
1679
+ return;
1680
+ }
1720
1681
 
1721
- if (!hasNext) {
1722
- if (lastException) {
1723
- observer.onError(lastException);
1724
- } else {
1725
- observer.onCompleted();
1726
- }
1727
- return;
1728
- }
1682
+ if (currentItem.done) {
1683
+ observer.onCompleted();
1684
+ return;
1685
+ }
1729
1686
 
1730
- var d = new SingleAssignmentDisposable();
1731
- subscription.setDisposable(d);
1732
- d.setDisposable(current.subscribe(
1733
- observer.onNext.bind(observer),
1734
- function (exn) {
1735
- lastException = exn;
1736
- self();
1737
- },
1738
- observer.onCompleted.bind(observer)));
1739
- });
1740
- return new CompositeDisposable(subscription, cancelable, disposableCreate(function () {
1741
- isDisposed = true;
1742
- }));
1687
+ var d = new SingleAssignmentDisposable();
1688
+ subscription.setDisposable(d);
1689
+ d.setDisposable(currentItem.value.subscribe(
1690
+ observer.onNext.bind(observer),
1691
+ observer.onError.bind(observer),
1692
+ function () { self(); })
1693
+ );
1743
1694
  });
1744
- };
1745
1695
 
1696
+ return new CompositeDisposable(subscription, cancelable, disposableCreate(function () {
1697
+ isDisposed = true;
1698
+ }));
1699
+ });
1700
+ };
1701
+
1702
+ Enumerable.prototype.catchException = function () {
1703
+ var sources = this;
1704
+ return new AnonymousObservable(function (observer) {
1705
+ var e;
1706
+ try {
1707
+ e = sources[$iterator$]();
1708
+ } catch(err) {
1709
+ observer.onError();
1710
+ return;
1711
+ }
1746
1712
 
1747
- var enumerableRepeat = Enumerable.repeat = function (value, repeatCount) {
1748
- if (arguments.length === 1) {
1749
- repeatCount = -1;
1713
+ var isDisposed,
1714
+ lastException,
1715
+ subscription = new SerialDisposable();
1716
+ var cancelable = immediateScheduler.scheduleRecursive(function (self) {
1717
+ if (isDisposed) { return; }
1718
+
1719
+ var currentItem;
1720
+ try {
1721
+ currentItem = e.next();
1722
+ } catch (ex) {
1723
+ observer.onError(ex);
1724
+ return;
1750
1725
  }
1751
- return new Enumerable(function () {
1752
- var current, left = repeatCount;
1753
- return enumeratorCreate(function () {
1754
- if (left === 0) {
1755
- return false;
1756
- }
1757
- if (left > 0) {
1758
- left--;
1759
- }
1760
- current = value;
1761
- return true;
1762
- }, function () { return current; });
1763
- });
1764
- };
1765
1726
 
1766
- var enumerableFor = Enumerable.forEach = function (source, selector, thisArg) {
1767
- selector || (selector = identity);
1768
- return new Enumerable(function () {
1769
- var current, index = -1;
1770
- return enumeratorCreate(
1771
- function () {
1772
- if (++index < source.length) {
1773
- current = selector.call(thisArg, source[index], index, source);
1774
- return true;
1775
- }
1776
- return false;
1777
- },
1778
- function () { return current; }
1779
- );
1727
+ if (currentItem.done) {
1728
+ if (lastException) {
1729
+ observer.onError(lastException);
1730
+ } else {
1731
+ observer.onCompleted();
1732
+ }
1733
+ return;
1734
+ }
1735
+
1736
+ var d = new SingleAssignmentDisposable();
1737
+ subscription.setDisposable(d);
1738
+ d.setDisposable(currentItem.value.subscribe(
1739
+ observer.onNext.bind(observer),
1740
+ function (exn) {
1741
+ lastException = exn;
1742
+ self();
1743
+ },
1744
+ observer.onCompleted.bind(observer)));
1745
+ });
1746
+ return new CompositeDisposable(subscription, cancelable, disposableCreate(function () {
1747
+ isDisposed = true;
1748
+ }));
1749
+ });
1750
+ };
1751
+
1752
+
1753
+ var enumerableRepeat = Enumerable.repeat = function (value, repeatCount) {
1754
+ if (repeatCount == null) { repeatCount = -1; }
1755
+ return new Enumerable(function () {
1756
+ var left = repeatCount;
1757
+ return new Enumerator(function () {
1758
+ if (left === 0) { return doneEnumerator; }
1759
+ if (left > 0) { left--; }
1760
+ return { done: false, value: value };
1761
+ });
1762
+ });
1763
+ };
1764
+
1765
+ var enumerableFor = Enumerable.forEach = function (source, selector, thisArg) {
1766
+ selector || (selector = identity);
1767
+ return new Enumerable(function () {
1768
+ var index = -1;
1769
+ return new Enumerator(
1770
+ function () {
1771
+ return ++index < source.length ?
1772
+ { done: false, value: selector.call(thisArg, source[index], index, source) } :
1773
+ doneEnumerator;
1780
1774
  });
1781
- };
1775
+ });
1776
+ };
1782
1777
 
1783
1778
  /**
1784
1779
  * Supports push-style iteration over an observable sequence.
@@ -2370,37 +2365,44 @@
2370
2365
  });
2371
2366
  };
2372
2367
 
2373
- /**
2374
- * Converts a generator function to an observable sequence, using an optional scheduler to enumerate the generator.
2375
- *
2376
- * @example
2377
- * var res = Rx.Observable.fromGenerator(function* () { yield 42; });
2378
- * var res = Rx.Observable.fromArray(function* () { yield 42; }, Rx.Scheduler.timeout);
2379
- * @param {Scheduler} [scheduler] Scheduler to run the enumeration of the input sequence on.
2380
- * @returns {Observable} The observable sequence whose elements are pulled from the given generator sequence.
2381
- */
2382
- observableProto.fromGenerator = function (genFn, scheduler) {
2383
- scheduler || (scheduler = currentThreadScheduler);
2384
- return new AnonymousObservable(function (observer) {
2385
- var gen;
2386
- try {
2387
- gen = genFn();
2388
- } catch (e) {
2389
- observer.onError(e);
2390
- return;
2391
- }
2368
+ /**
2369
+ * Converts an iterable into an Observable sequence
2370
+ *
2371
+ * @example
2372
+ * var res = Rx.Observable.fromIterable(new Map());
2373
+ * var res = Rx.Observable.fromIterable(new Set(), Rx.Scheduler.timeout);
2374
+ * @param {Scheduler} [scheduler] Scheduler to run the enumeration of the input sequence on.
2375
+ * @returns {Observable} The observable sequence whose elements are pulled from the given generator sequence.
2376
+ */
2377
+ Observable.fromIterable = function (iterable, scheduler) {
2378
+ scheduler || (scheduler = currentThreadScheduler);
2379
+ return new AnonymousObservable(function (observer) {
2380
+ var iterator;
2381
+ try {
2382
+ iterator = iterable[$iterator$]();
2383
+ } catch (e) {
2384
+ observer.onError(e);
2385
+ return;
2386
+ }
2392
2387
 
2393
- return scheduler.scheduleRecursive(function (self) {
2394
- var next = gen.next();
2395
- if (next.done) {
2396
- observer.onCompleted();
2397
- } else {
2398
- observer.onNext(next.value);
2399
- self();
2400
- }
2401
- });
2402
- });
2403
- };
2388
+ return scheduler.scheduleRecursive(function (self) {
2389
+ var next;
2390
+ try {
2391
+ next = iterator.next();
2392
+ } catch (err) {
2393
+ observer.onError(err);
2394
+ return;
2395
+ }
2396
+
2397
+ if (next.done) {
2398
+ observer.onCompleted();
2399
+ } else {
2400
+ observer.onNext(next.value);
2401
+ self();
2402
+ }
2403
+ });
2404
+ });
2405
+ };
2404
2406
 
2405
2407
  /**
2406
2408
  * Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages.
@@ -1,2 +1,2 @@
1
- (function(a){function b(){}function c(a){return a}function d(a,b){return bb(a,b)}function e(a,b){return a-b}function f(a){return a.toString()}function g(a){throw a}function h(a){return"function"==typeof a.then}function i(){if(this.isDisposed)throw new Error(I)}function j(a){var b=typeof a;return a&&("function"==b||"object"==b)||!1}function k(a){var b=[];if(!j(a))return b;ab.nonEnumArgs&&a.length&&o(a)&&(a=cb.call(a));var c=ab.enumPrototypes&&"function"==typeof a,d=ab.enumErrorProps&&(a===W||a instanceof Error);for(var e in a)c&&"prototype"==e||d&&("message"==e||"name"==e)||b.push(e);if(ab.nonEnumShadows&&a!==X){var f=a.constructor,g=-1,h=$.length;if(a===(f&&f.prototype))var i=a===stringProto?S:a===W?N:T.call(a),k=_[i];for(;++g<h;)e=$[g],k&&k[e]||!U.call(a,e)||b.push(e)}return b}function l(a,b,c){for(var d=-1,e=c(a),f=e.length;++d<f;){var g=e[d];if(b(a[g],g,a)===!1)break}return a}function m(a,b){return l(a,b,k)}function n(a){return"function"!=typeof a.toString&&"string"==typeof(a+"")}function o(a){return a&&"object"==typeof a?T.call(a)==J:!1}function p(a){return"function"==typeof a}function q(a,b,c,d){if(a===b)return 0!==a||1/a==1/b;var e=typeof a,f=typeof b;if(a===a&&(null==a||null==b||"function"!=e&&"object"!=e&&"function"!=f&&"object"!=f))return!1;var g=T.call(a),h=T.call(b);if(g==J&&(g=Q),h==J&&(h=Q),g!=h)return!1;switch(g){case L:case M:return+a==+b;case P:return a!=+a?b!=+b:0==a?1/a==1/b:a==+b;case R:case S:return a==String(b)}var i=g==K;if(!i){if(g!=Q||!ab.nodeClass&&(n(a)||n(b)))return!1;var j=!ab.argsObject&&o(a)?Object:a.constructor,k=!ab.argsObject&&o(b)?Object:b.constructor;if(!(j==k||U.call(a,"constructor")&&U.call(b,"constructor")||p(j)&&j instanceof j&&p(k)&&k instanceof k||!("constructor"in a&&"constructor"in b)))return!1}c||(c=[]),d||(d=[]);for(var l=c.length;l--;)if(c[l]==a)return d[l]==b;var r=0;if(result=!0,c.push(a),d.push(b),i){if(l=a.length,r=b.length,result=r==l)for(;r--;){var s=b[r];if(!(result=q(a[r],s,c,d)))break}}else m(b,function(b,e,f){return U.call(f,e)?(r++,result=U.call(a,e)&&q(a[e],b,c,d)):void 0}),result&&m(a,function(a,b,c){return U.call(c,b)?result=--r>-1:void 0});return c.pop(),d.pop(),result}function r(a,b){return 1===a.length&&Array.isArray(a[b])?a[b]:cb.call(a)}function s(a,b){for(var c=new Array(a),d=0;a>d;d++)c[d]=b();return c}function t(a,b){this.scheduler=a,this.disposable=b,this.isDisposed=!1}function u(a,b){return new dc(function(c){var d=new rb,e=new sb;return e.setDisposable(d),d.setDisposable(a.subscribe(c.onNext.bind(c),function(a){var d,f;try{f=b(a)}catch(g){return c.onError(g),void 0}d=new rb,e.setDisposable(d),d.setDisposable(f.subscribe(c))},c.onCompleted.bind(c))),e})}function v(a,b){var c=this;return new dc(function(d){var e=0,f=a.length;return c.subscribe(function(c){if(f>e){var g,h=a[e++];try{g=b(c,h)}catch(i){return d.onError(i),void 0}d.onNext(g)}else d.onCompleted()},d.onError.bind(d),d.onCompleted.bind(d))})}function w(a){return this.select(function(b,c){var d=a(b,c);return h(d)?Ub(d):d}).mergeObservable()}var x={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},y=x[typeof window]&&window||this,z=x[typeof exports]&&exports&&!exports.nodeType&&exports,A=x[typeof module]&&module&&!module.nodeType&&module,B=A&&A.exports===z&&z,C=x[typeof global]&&global;!C||C.global!==C&&C.window!==C||(y=C);var D,E={internals:{},config:{}},F=function(){return Date.now?Date.now:function(){return+new Date}}(),G="Sequence contains no elements.",H="Argument out of range",I="Object has been disposed",J="[object Arguments]",K="[object Array]",L="[object Boolean]",M="[object Date]",N="[object Error]",O="[object Function]",P="[object Number]",Q="[object Object]",R="[object RegExp]",S="[object String]",T=Object.prototype.toString,U=Object.prototype.hasOwnProperty,V=T.call(arguments)==J,W=Error.prototype,X=Object.prototype,Y=X.propertyIsEnumerable;try{D=!(T.call(document)==Q&&!({toString:0}+""))}catch(Z){D=!0}var $=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],_={};_[K]=_[M]=_[P]={constructor:!0,toLocaleString:!0,toString:!0,valueOf:!0},_[L]=_[S]={constructor:!0,toString:!0,valueOf:!0},_[N]=_[O]=_[R]={constructor:!0,toString:!0},_[Q]={constructor:!0};var ab={};!function(){var a=function(){this.x=1},b=[];a.prototype={valueOf:1,y:1};for(var c in new a)b.push(c);for(c in arguments);ab.enumErrorProps=Y.call(W,"message")||Y.call(W,"name"),ab.enumPrototypes=Y.call(a,"prototype"),ab.nonEnumArgs=0!=c,ab.nonEnumShadows=!/valueOf/.test(b)}(1),V||(o=function(a){return a&&"object"==typeof a?U.call(a,"callee"):!1}),p(/x/)&&(p=function(a){return"function"==typeof a&&T.call(a)==O});var bb=E.internals.isEqual=function(a,b){return q(a,b,[],[])},cb=Array.prototype.slice,db=({}.hasOwnProperty,this.inherits=E.internals.inherits=function(a,b){function c(){this.constructor=a}c.prototype=b.prototype,a.prototype=new c}),eb=E.internals.addProperties=function(a){for(var b=cb.call(arguments,1),c=0,d=b.length;d>c;c++){var e=b[c];for(var f in e)a[f]=e[f]}},fb=E.internals.addRef=function(a,b){return new dc(function(c){return new lb(b.getDisposable(),a.subscribe(c))})};Function.prototype.bind||(Function.prototype.bind=function(a){var b=this,c=cb.call(arguments,1),d=function(){function e(){}if(this instanceof d){e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(cb.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(cb.call(arguments)))};return d});var gb=Object("a"),hb="a"!=gb[0]||!(0 in gb);Array.prototype.every||(Array.prototype.every=function(a){var b=Object(this),c=hb&&{}.toString.call(this)==S?this.split(""):b,d=c.length>>>0,e=arguments[1];if({}.toString.call(a)!=O)throw new TypeError(a+" is not a function");for(var f=0;d>f;f++)if(f in c&&!a.call(e,c[f],f,b))return!1;return!0}),Array.prototype.map||(Array.prototype.map=function(a){var b=Object(this),c=hb&&{}.toString.call(this)==S?this.split(""):b,d=c.length>>>0,e=Array(d),f=arguments[1];if({}.toString.call(a)!=O)throw new TypeError(a+" is not a function");for(var g=0;d>g;g++)g in c&&(e[g]=a.call(f,c[g],g,b));return e}),Array.prototype.filter||(Array.prototype.filter=function(a){for(var b,c=[],d=new Object(this),e=0,f=d.length>>>0;f>e;e++)b=d[e],e in d&&a.call(arguments[1],b,e,d)&&c.push(b);return c}),Array.isArray||(Array.isArray=function(a){return Object.prototype.toString.call(a)==K}),Array.prototype.indexOf||(Array.prototype.indexOf=function(a){var b=Object(this),c=b.length>>>0;if(0===c)return-1;var d=0;if(arguments.length>1&&(d=Number(arguments[1]),d!==d?d=0:0!==d&&1/0!=d&&d!==-1/0&&(d=(d>0||-1)*Math.floor(Math.abs(d)))),d>=c)return-1;for(var e=d>=0?d:Math.max(c-Math.abs(d),0);c>e;e++)if(e in b&&b[e]===a)return e;return-1});var ib=function(a,b){this.id=a,this.value=b};ib.prototype.compareTo=function(a){var b=this.value.compareTo(a.value);return 0===b&&(b=this.id-a.id),b};var jb=E.internals.PriorityQueue=function(a){this.items=new Array(a),this.length=0},kb=jb.prototype;kb.isHigherPriority=function(a,b){return this.items[a].compareTo(this.items[b])<0},kb.percolate=function(a){if(!(a>=this.length||0>a)){var b=a-1>>1;if(!(0>b||b===a)&&this.isHigherPriority(a,b)){var c=this.items[a];this.items[a]=this.items[b],this.items[b]=c,this.percolate(b)}}},kb.heapify=function(b){if(b===a&&(b=0),!(b>=this.length||0>b)){var c=2*b+1,d=2*b+2,e=b;if(c<this.length&&this.isHigherPriority(c,e)&&(e=c),d<this.length&&this.isHigherPriority(d,e)&&(e=d),e!==b){var f=this.items[b];this.items[b]=this.items[e],this.items[e]=f,this.heapify(e)}}},kb.peek=function(){return this.items[0].value},kb.removeAt=function(a){this.items[a]=this.items[--this.length],delete this.items[this.length],this.heapify()},kb.dequeue=function(){var a=this.peek();return this.removeAt(0),a},kb.enqueue=function(a){var b=this.length++;this.items[b]=new ib(jb.count++,a),this.percolate(b)},kb.remove=function(a){for(var b=0;b<this.length;b++)if(this.items[b].value===a)return this.removeAt(b),!0;return!1},jb.count=0;var lb=E.CompositeDisposable=function(){this.disposables=r(arguments,0),this.isDisposed=!1,this.length=this.disposables.length},mb=lb.prototype;mb.add=function(a){this.isDisposed?a.dispose():(this.disposables.push(a),this.length++)},mb.remove=function(a){var b=!1;if(!this.isDisposed){var c=this.disposables.indexOf(a);-1!==c&&(b=!0,this.disposables.splice(c,1),this.length--,a.dispose())}return b},mb.dispose=function(){if(!this.isDisposed){this.isDisposed=!0;var a=this.disposables.slice(0);this.disposables=[],this.length=0;for(var b=0,c=a.length;c>b;b++)a[b].dispose()}},mb.clear=function(){var a=this.disposables.slice(0);this.disposables=[],this.length=0;for(var b=0,c=a.length;c>b;b++)a[b].dispose()},mb.contains=function(a){return-1!==this.disposables.indexOf(a)},mb.toArray=function(){return this.disposables.slice(0)};var nb=E.Disposable=function(a){this.isDisposed=!1,this.action=a||b};nb.prototype.dispose=function(){this.isDisposed||(this.action(),this.isDisposed=!0)};var ob=nb.create=function(a){return new nb(a)},pb=nb.empty={dispose:b},qb=function(){function a(a){this.isSingle=a,this.isDisposed=!1,this.current=null}var b=a.prototype;return b.getDisposable=function(){return this.current},b.setDisposable=function(a){if(this.current&&this.isSingle)throw new Error("Disposable has already been assigned");var b,c=this.isDisposed;c||(b=this.current,this.current=a),b&&b.dispose(),c&&a&&a.dispose()},b.dispose=function(){var a;this.isDisposed||(this.isDisposed=!0,a=this.current,this.current=null),a&&a.dispose()},a}(),rb=E.SingleAssignmentDisposable=function(a){function b(){a.call(this,!0)}return db(b,a),b}(qb),sb=E.SerialDisposable=function(a){function b(){a.call(this,!1)}return db(b,a),b}(qb),tb=E.RefCountDisposable=function(){function a(a){this.disposable=a,this.disposable.count++,this.isInnerDisposed=!1}function b(a){this.underlyingDisposable=a,this.isDisposed=!1,this.isPrimaryDisposed=!1,this.count=0}return a.prototype.dispose=function(){this.disposable.isDisposed||this.isInnerDisposed||(this.isInnerDisposed=!0,this.disposable.count--,0===this.disposable.count&&this.disposable.isPrimaryDisposed&&(this.disposable.isDisposed=!0,this.disposable.underlyingDisposable.dispose()))},b.prototype.dispose=function(){this.isDisposed||this.isPrimaryDisposed||(this.isPrimaryDisposed=!0,0===this.count&&(this.isDisposed=!0,this.underlyingDisposable.dispose()))},b.prototype.getDisposable=function(){return this.isDisposed?pb:new a(this)},b}();t.prototype.dispose=function(){var a=this;this.scheduler.schedule(function(){a.isDisposed||(a.isDisposed=!0,a.disposable.dispose())})};var ub=E.internals.ScheduledItem=function(a,b,c,d,f){this.scheduler=a,this.state=b,this.action=c,this.dueTime=d,this.comparer=f||e,this.disposable=new rb};ub.prototype.invoke=function(){this.disposable.setDisposable(this.invokeCore())},ub.prototype.compareTo=function(a){return this.comparer(this.dueTime,a.dueTime)},ub.prototype.isCancelled=function(){return this.disposable.isDisposed},ub.prototype.invokeCore=function(){return this.action(this.scheduler,this.state)};var vb,wb=E.Scheduler=function(){function a(a,b,c,d){this.now=a,this._schedule=b,this._scheduleRelative=c,this._scheduleAbsolute=d}function b(a,b){var c=b.first,d=b.second,e=new lb,f=function(b){d(b,function(b){var c=!1,d=!1,g=a.scheduleWithState(b,function(a,b){return c?e.remove(g):d=!0,f(b),pb});d||(e.add(g),c=!0)})};return f(c),e}function c(a,b,c){var d=b.first,e=b.second,f=new lb,g=function(b){e(b,function(b,d){var e=!1,h=!1,i=a[c].call(a,b,d,function(a,b){return e?f.remove(i):h=!0,g(b),pb});h||(f.add(i),e=!0)})};return g(d),f}function d(a,b){return b(),pb}var e=a.prototype;return e.catchException=e["catch"]=function(a){return new Bb(this,a)},e.schedulePeriodic=function(a,b){return this.schedulePeriodicWithState(null,a,function(){b()})},e.schedulePeriodicWithState=function(a,b,c){var d=a,e=setInterval(function(){d=c(d)},b);return ob(function(){clearInterval(e)})},e.schedule=function(a){return this._schedule(a,d)},e.scheduleWithState=function(a,b){return this._schedule(a,b)},e.scheduleWithRelative=function(a,b){return this._scheduleRelative(b,a,d)},e.scheduleWithRelativeAndState=function(a,b,c){return this._scheduleRelative(a,b,c)},e.scheduleWithAbsolute=function(a,b){return this._scheduleAbsolute(b,a,d)},e.scheduleWithAbsoluteAndState=function(a,b,c){return this._scheduleAbsolute(a,b,c)},e.scheduleRecursive=function(a){return this.scheduleRecursiveWithState(a,function(a,b){a(function(){b(a)})})},e.scheduleRecursiveWithState=function(a,c){return this.scheduleWithState({first:a,second:c},function(a,c){return b(a,c)})},e.scheduleRecursiveWithRelative=function(a,b){return this.scheduleRecursiveWithRelativeAndState(b,a,function(a,b){a(function(c){b(a,c)})})},e.scheduleRecursiveWithRelativeAndState=function(a,b,d){return this._scheduleRelative({first:a,second:d},b,function(a,b){return c(a,b,"scheduleWithRelativeAndState")})},e.scheduleRecursiveWithAbsolute=function(a,b){return this.scheduleRecursiveWithAbsoluteAndState(b,a,function(a,b){a(function(c){b(a,c)})})},e.scheduleRecursiveWithAbsoluteAndState=function(a,b,d){return this._scheduleAbsolute({first:a,second:d},b,function(a,b){return c(a,b,"scheduleWithAbsoluteAndState")})},a.now=F,a.normalize=function(a){return 0>a&&(a=0),a},a}(),xb=wb.normalize,yb=(E.internals.SchedulePeriodicRecursive=function(){function a(a,b){b(0,this._period);try{this._state=this._action(this._state)}catch(c){throw this._cancel.dispose(),c}}function b(a,b,c,d){this._scheduler=a,this._state=b,this._period=c,this._action=d}return b.prototype.start=function(){var b=new rb;return this._cancel=b,b.setDisposable(this._scheduler.scheduleRecursiveWithRelativeAndState(0,this._period,a.bind(this))),b},b}(),wb.immediate=function(){function a(a,b){return b(this,a)}function b(a,b,c){for(var d=xb(d);d-this.now()>0;);return c(this,a)}function c(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}return new wb(F,a,b,c)}()),zb=wb.currentThread=function(){function a(a){for(var b;a.length>0;)if(b=a.dequeue(),!b.isCancelled()){for(;b.dueTime-wb.now()>0;);b.isCancelled()||b.invoke()}}function b(a,b){return this.scheduleWithRelativeAndState(a,0,b)}function c(b,c,d){var f=this.now()+wb.normalize(c),g=new ub(this,b,d,f);if(e)e.enqueue(g);else{e=new jb(4),e.enqueue(g);try{a(e)}catch(h){throw h}finally{e=null}}return g.disposable}function d(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}var e,f=new wb(F,b,c,d);return f.scheduleRequired=function(){return null===e},f.ensureTrampoline=function(a){return null===e?this.schedule(a):a()},f}(),Ab=b;!function(){function a(){if(!y.postMessage||y.importScripts)return!1;var a=!1,b=y.onmessage;return y.onmessage=function(){a=!0},y.postMessage("","*"),y.onmessage=b,a}function b(a){if("string"==typeof a.data&&a.data.substring(0,f.length)===f){var b=a.data.substring(f.length),c=g[b];c(),delete g[b]}}var c=RegExp("^"+String(T).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),d="function"==typeof(d=C&&B&&C.setImmediate)&&!c.test(d)&&d,e="function"==typeof(e=C&&B&&C.clearImmediate)&&!c.test(e)&&e;if("undefined"!=typeof process&&"[object process]"==={}.toString.call(process))vb=process.nextTick;else if("function"==typeof d)vb=d,Ab=e;else if(a()){var f="ms.rx.schedule"+Math.random(),g={},h=0;y.addEventListener?y.addEventListener("message",b,!1):y.attachEvent("onmessage",b,!1),vb=function(a){var b=h++;g[b]=a,y.postMessage(f+b,"*")}}else if(y.MessageChannel){var i=new y.MessageChannel,j={},k=0;i.port1.onmessage=function(a){var b=a.data,c=j[b];c(),delete j[b]},vb=function(a){var b=k++;j[b]=a,i.port2.postMessage(b)}}else"document"in y&&"onreadystatechange"in y.document.createElement("script")?vb=function(a){var b=y.document.createElement("script");b.onreadystatechange=function(){a(),b.onreadystatechange=null,b.parentNode.removeChild(b),b=null},y.document.documentElement.appendChild(b)}:(vb=function(a){return setTimeout(a,0)},Ab=clearTimeout)}();var Bb=(wb.timeout=function(){function a(a,b){var c=this,d=new rb,e=vb(function(){d.isDisposed||d.setDisposable(b(c,a))});return new lb(d,ob(function(){Ab(e)}))}function b(a,b,c){var d=this,e=wb.normalize(b);if(0===e)return d.scheduleWithState(a,c);var f=new rb,g=setTimeout(function(){f.isDisposed||f.setDisposable(c(d,a))},e);return new lb(f,ob(function(){clearTimeout(g)}))}function c(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}return new wb(F,a,b,c)}(),function(a){function b(){return this._scheduler.now()}function c(a,b){return this._scheduler.scheduleWithState(a,this._wrap(b))}function d(a,b,c){return this._scheduler.scheduleWithRelativeAndState(a,b,this._wrap(c))}function e(a,b,c){return this._scheduler.scheduleWithAbsoluteAndState(a,b,this._wrap(c))}function f(f,g){this._scheduler=f,this._handler=g,this._recursiveOriginal=null,this._recursiveWrapper=null,a.call(this,b,c,d,e)}return db(f,a),f.prototype._clone=function(a){return new f(a,this._handler)},f.prototype._wrap=function(a){var b=this;return function(c,d){try{return a(b._getRecursiveWrapper(c),d)}catch(e){if(!b._handler(e))throw e;return pb}}},f.prototype._getRecursiveWrapper=function(a){if(this._recursiveOriginal!==a){this._recursiveOriginal=a;var b=this._clone(a);b._recursiveOriginal=a,b._recursiveWrapper=b,this._recursiveWrapper=b}return this._recursiveWrapper},f.prototype.schedulePeriodicWithState=function(a,b,c){var d=this,e=!1,f=new rb;return f.setDisposable(this._scheduler.schedulePeriodicWithState(a,b,function(a){if(e)return null;try{return c(a)}catch(b){if(e=!0,!d._handler(b))throw b;return f.dispose(),null}})),f},f}(wb)),Cb=E.Notification=function(){function a(a,b){this.hasValue=null==b?!1:b,this.kind=a}var b=a.prototype;return b.accept=function(a,b,c){return 1===arguments.length&&"object"==typeof a?this._acceptObservable(a):this._accept(a,b,c)},b.toObservable=function(a){var b=this;return a||(a=yb),new dc(function(c){return a.schedule(function(){b._acceptObservable(c),"N"===b.kind&&c.onCompleted()})})},a}(),Db=Cb.createOnNext=function(){function a(a){return a(this.value)}function b(a){return a.onNext(this.value)}function c(){return"OnNext("+this.value+")"}return function(d){var e=new Cb("N",!0);return e.value=d,e._accept=a,e._acceptObservable=b,e.toString=c,e}}(),Eb=Cb.createOnError=function(){function a(a,b){return b(this.exception)}function b(a){return a.onError(this.exception)}function c(){return"OnError("+this.exception+")"}return function(d){var e=new Cb("E");return e.exception=d,e._accept=a,e._acceptObservable=b,e.toString=c,e}}(),Fb=Cb.createOnCompleted=function(){function a(a,b,c){return c()}function b(a){return a.onCompleted()}function c(){return"OnCompleted()"}return function(){var d=new Cb("C");return d._accept=a,d._acceptObservable=b,d.toString=c,d}}(),Gb=E.internals.Enumerator=function(a,b){this.moveNext=a,this.getCurrent=b},Hb=Gb.create=function(a,b){var c=!1;return new Gb(function(){if(c)return!1;var b=a();return b||(c=!0),b},function(){return b()})},Ib=E.internals.Enumerable=function(a){this.getEnumerator=a};Ib.prototype.concat=function(){var a=this;return new dc(function(b){var c,d=a.getEnumerator(),e=new sb,f=yb.scheduleRecursive(function(a){var f,g;if(!c){try{g=d.moveNext(),g&&(f=d.getCurrent())}catch(h){return b.onError(h),void 0}if(!g)return b.onCompleted(),void 0;var i=new rb;e.setDisposable(i),i.setDisposable(f.subscribe(b.onNext.bind(b),b.onError.bind(b),function(){a()}))}});return new lb(e,f,ob(function(){c=!0}))})},Ib.prototype.catchException=function(){var a=this;return new dc(function(b){var c,d,e=a.getEnumerator(),f=new sb,g=yb.scheduleRecursive(function(a){var g,h;if(!c){try{h=e.moveNext(),h&&(g=e.getCurrent())}catch(i){return b.onError(i),void 0}if(!h)return d?b.onError(d):b.onCompleted(),void 0;var j=new rb;f.setDisposable(j),j.setDisposable(g.subscribe(b.onNext.bind(b),function(b){d=b,a()},b.onCompleted.bind(b)))}});return new lb(f,g,ob(function(){c=!0}))})};var Jb=Ib.repeat=function(a,b){return 1===arguments.length&&(b=-1),new Ib(function(){var c,d=b;return Hb(function(){return 0===d?!1:(d>0&&d--,c=a,!0)},function(){return c})})},Kb=Ib.forEach=function(a,b,d){return b||(b=c),new Ib(function(){var c,e=-1;return Hb(function(){return++e<a.length?(c=b.call(d,a[e],e,a),!0):!1},function(){return c})})},Lb=E.Observer=function(){};Lb.prototype.toNotifier=function(){var a=this;return function(b){return b.accept(a)}},Lb.prototype.asObserver=function(){return new Pb(this.onNext.bind(this),this.onError.bind(this),this.onCompleted.bind(this))},Lb.prototype.checked=function(){return new Qb(this)};var Mb=Lb.create=function(a,c,d){return a||(a=b),c||(c=g),d||(d=b),new Pb(a,c,d)};Lb.fromNotifier=function(a){return new Pb(function(b){return a(Db(b))},function(b){return a(Eb(b))},function(){return a(Fb())})},Lb.notifyOn=function(a){return new Sb(a,this)};var Nb,Ob=E.internals.AbstractObserver=function(a){function b(){this.isStopped=!1,a.call(this)}return db(b,a),b.prototype.onNext=function(a){this.isStopped||this.next(a)},b.prototype.onError=function(a){this.isStopped||(this.isStopped=!0,this.error(a))},b.prototype.onCompleted=function(){this.isStopped||(this.isStopped=!0,this.completed())},b.prototype.dispose=function(){this.isStopped=!0},b.prototype.fail=function(a){return this.isStopped?!1:(this.isStopped=!0,this.error(a),!0)},b}(Lb),Pb=E.AnonymousObserver=function(a){function b(b,c,d){a.call(this),this._onNext=b,this._onError=c,this._onCompleted=d}return db(b,a),b.prototype.next=function(a){this._onNext(a)},b.prototype.error=function(a){this._onError(a)},b.prototype.completed=function(){this._onCompleted()},b}(Ob),Qb=function(a){function b(b){a.call(this),this._observer=b,this._state=0}db(b,a);var c=b.prototype;return c.onNext=function(a){this.checkAccess();try{this._observer.onNext(a)}catch(b){throw b}finally{this._state=0}},c.onError=function(a){this.checkAccess();try{this._observer.onError(a)}catch(b){throw b}finally{this._state=2}},c.onCompleted=function(){this.checkAccess();try{this._observer.onCompleted()}catch(a){throw a}finally{this._state=2}},c.checkAccess=function(){if(1===this._state)throw new Error("Re-entrancy detected");if(2===this._state)throw new Error("Observer completed");0===this._state&&(this._state=1)},b}(Lb),Rb=E.internals.ScheduledObserver=function(a){function b(b,c){a.call(this),this.scheduler=b,this.observer=c,this.isAcquired=!1,this.hasFaulted=!1,this.queue=[],this.disposable=new sb}return db(b,a),b.prototype.next=function(a){var b=this;this.queue.push(function(){b.observer.onNext(a)})},b.prototype.error=function(a){var b=this;this.queue.push(function(){b.observer.onError(a)})},b.prototype.completed=function(){var a=this;this.queue.push(function(){a.observer.onCompleted()})},b.prototype.ensureActive=function(){var a=!1,b=this;!this.hasFaulted&&this.queue.length>0&&(a=!this.isAcquired,this.isAcquired=!0),a&&this.disposable.setDisposable(this.scheduler.scheduleRecursive(function(a){var c;if(!(b.queue.length>0))return b.isAcquired=!1,void 0;c=b.queue.shift();try{c()}catch(d){throw b.queue=[],b.hasFaulted=!0,d}a()}))},b.prototype.dispose=function(){a.prototype.dispose.call(this),this.disposable.dispose()},b}(Ob),Sb=function(a){function b(){a.apply(this,arguments)}return db(b,a),b.prototype.next=function(b){a.prototype.next.call(this,b),this.ensureActive()},b.prototype.error=function(b){a.prototype.error.call(this,b),this.ensureActive()},b.prototype.completed=function(){a.prototype.completed.call(this),this.ensureActive()},b}(Rb),Tb=E.Observable=function(){function a(a){this._subscribe=a}return Nb=a.prototype,Nb.finalValue=function(){var a=this;return new dc(function(b){var c,d=!1;return a.subscribe(function(a){d=!0,c=a},b.onError.bind(b),function(){d?(b.onNext(c),b.onCompleted()):b.onError(new Error(G))})})},Nb.subscribe=Nb.forEach=function(a,b,c){var d;return d="object"==typeof a?a:Mb(a,b,c),this._subscribe(d)},Nb.toArray=function(){function a(a,b){var c=a.slice(0);return c.push(b),c}return this.scan([],a).startWith([]).finalValue()},a}();Nb.observeOn=function(a){var b=this;return new dc(function(c){return b.subscribe(new Sb(a,c))})},Nb.subscribeOn=function(a){var b=this;return new dc(function(c){var d=new rb,e=new sb;return e.setDisposable(d),d.setDisposable(a.schedule(function(){e.setDisposable(new t(a,b.subscribe(c)))})),e})};var Ub=Tb.fromPromise=function(a){return new dc(function(b){a.then(function(a){b.onNext(a),b.onCompleted()},function(a){b.onError(a)})})};Nb.toPromise=function(a){if(a||(a=E.config.Promise),!a)throw new Error("Promise type not provided nor in Rx.config.Promise");var b=this;return new a(function(a,c){var d,e=!1;b.subscribe(function(a){d=a,e=!0},function(a){c(a)},function(){e&&a(d)})})},Tb.create=Tb.createWithDisposable=function(a){return new dc(a)};var Vb=(Tb.defer=function(a){return new dc(function(b){var c;try{c=a()}catch(d){return Zb(d).subscribe(b)}return c.subscribe(b)})},Tb.empty=function(a){return a||(a=yb),new dc(function(b){return a.schedule(function(){b.onCompleted()})})}),Wb=Tb.fromArray=function(a,b){return b||(b=zb),new dc(function(c){var d=0;return b.scheduleRecursive(function(b){d<a.length?(c.onNext(a[d++]),b()):c.onCompleted()})})};Nb.fromGenerator=function(a,b){return b||(b=zb),new dc(function(c){var d;try{d=a()}catch(e){return c.onError(e),void 0}return b.scheduleRecursive(function(a){var b=d.next();b.done?c.onCompleted():(c.onNext(b.value),a())})})},Tb.generate=function(a,b,c,d,e){return e||(e=zb),new dc(function(f){var g=!0,h=a;return e.scheduleRecursive(function(a){var e,i;try{g?g=!1:h=c(h),e=b(h),e&&(i=d(h))}catch(j){return f.onError(j),void 0}e?(f.onNext(i),a()):f.onCompleted()})})};var Xb=Tb.never=function(){return new dc(function(){return pb})};Tb.range=function(a,b,c){return c||(c=zb),new dc(function(d){return c.scheduleRecursiveWithState(0,function(c,e){b>c?(d.onNext(a+c),e(c+1)):d.onCompleted()})})},Tb.repeat=function(a,b,c){return c||(c=zb),null==b&&(b=-1),Yb(a,c).repeat(b)};var Yb=Tb["return"]=Tb.returnValue=function(a,b){return b||(b=yb),new dc(function(c){return b.schedule(function(){c.onNext(a),c.onCompleted()})})},Zb=Tb["throw"]=Tb.throwException=function(a,b){return b||(b=yb),new dc(function(c){return b.schedule(function(){c.onError(a)})})};Tb.using=function(a,b){return new dc(function(c){var d,e,f=pb;try{d=a(),d&&(f=d),e=b(d)}catch(g){return new lb(Zb(g).subscribe(c),f)}return new lb(e.subscribe(c),f)})},Nb.amb=function(a){var b=this;return new dc(function(c){function d(){f||(f=g,j.dispose())}function e(){f||(f=h,i.dispose())}var f,g="L",h="R",i=new rb,j=new rb;return i.setDisposable(b.subscribe(function(a){d(),f===g&&c.onNext(a)},function(a){d(),f===g&&c.onError(a)},function(){d(),f===g&&c.onCompleted()})),j.setDisposable(a.subscribe(function(a){e(),f===h&&c.onNext(a)},function(a){e(),f===h&&c.onError(a)},function(){e(),f===h&&c.onCompleted()})),new lb(i,j)})},Tb.amb=function(){function a(a,b){return a.amb(b)}for(var b=Xb(),c=r(arguments,0),d=0,e=c.length;e>d;d++)b=a(b,c[d]);return b},Nb["catch"]=Nb.catchException=function(a){return"function"==typeof a?u(this,a):$b([this,a])};var $b=Tb.catchException=Tb["catch"]=function(){var a=r(arguments,0);return Kb(a).catchException()};Nb.combineLatest=function(){var a=cb.call(arguments);return Array.isArray(a[0])?a[0].unshift(this):a.unshift(this),_b.apply(this,a)};var _b=Tb.combineLatest=function(){var a=cb.call(arguments),b=a.pop();return Array.isArray(a[0])&&(a=a[0]),new dc(function(d){function e(a){var e;if(i[a]=!0,j||(j=i.every(c))){try{e=b.apply(null,l)}catch(f){return d.onError(f),void 0}d.onNext(e)}else k.filter(function(b,c){return c!==a}).every(c)&&d.onCompleted()}function f(a){k[a]=!0,k.every(c)&&d.onCompleted()}for(var g=function(){return!1},h=a.length,i=s(h,g),j=!1,k=s(h,g),l=new Array(h),m=new Array(h),n=0;h>n;n++)!function(b){m[b]=new rb,m[b].setDisposable(a[b].subscribe(function(a){l[b]=a,e(b)},d.onError.bind(d),function(){f(b)}))}(n);return new lb(m)})};Nb.concat=function(){var a=cb.call(arguments,0);return a.unshift(this),ac.apply(this,a)};var ac=Tb.concat=function(){var a=r(arguments,0);return Kb(a).concat()};Nb.concatObservable=Nb.concatAll=function(){return this.merge(1)},Nb.merge=function(a){if("number"!=typeof a)return bc(this,a);var b=this;return new dc(function(c){var d=0,e=new lb,f=!1,g=[],i=function(a){var b=new rb;e.add(b),h(a)&&(a=Ub(a)),b.setDisposable(a.subscribe(c.onNext.bind(c),c.onError.bind(c),function(){var a;e.remove(b),g.length>0?(a=g.shift(),i(a)):(d--,f&&0===d&&c.onCompleted())}))};return e.add(b.subscribe(function(b){a>d?(d++,i(b)):g.push(b)},c.onError.bind(c),function(){f=!0,0===d&&c.onCompleted()})),e})};var bc=Tb.merge=function(){var a,b;return arguments[0]?arguments[0].now?(a=arguments[0],b=cb.call(arguments,1)):(a=yb,b=cb.call(arguments,0)):(a=yb,b=cb.call(arguments,1)),Array.isArray(b[0])&&(b=b[0]),Wb(b,a).mergeObservable()};Nb.mergeObservable=Nb.mergeAll=function(){var a=this;return new dc(function(b){var c=new lb,d=!1,e=new rb;return c.add(e),e.setDisposable(a.subscribe(function(a){var e=new rb;c.add(e),h(a)&&(a=Ub(a)),e.setDisposable(a.subscribe(function(a){b.onNext(a)},b.onError.bind(b),function(){c.remove(e),d&&1===c.length&&b.onCompleted()}))},b.onError.bind(b),function(){d=!0,1===c.length&&b.onCompleted()})),c})},Nb.onErrorResumeNext=function(a){if(!a)throw new Error("Second observable is required");return cc([this,a])};var cc=Tb.onErrorResumeNext=function(){var a=r(arguments,0);return new dc(function(b){var c=0,d=new sb,e=yb.scheduleRecursive(function(e){var f,g;c<a.length?(f=a[c++],g=new rb,d.setDisposable(g),g.setDisposable(f.subscribe(b.onNext.bind(b),function(){e()},function(){e()}))):b.onCompleted()});return new lb(d,e)})};Nb.skipUntil=function(a){var b=this;return new dc(function(c){var d=!1,e=new lb(b.subscribe(function(a){d&&c.onNext(a)},c.onError.bind(c),function(){d&&c.onCompleted()})),f=new rb;return e.add(f),f.setDisposable(a.subscribe(function(){d=!0,f.dispose()},c.onError.bind(c),function(){f.dispose()})),e})},Nb["switch"]=Nb.switchLatest=function(){var a=this;return new dc(function(b){var c=!1,d=new sb,e=!1,f=0,g=a.subscribe(function(a){var g=new rb,i=++f;c=!0,d.setDisposable(g),h(a)&&(a=Ub(a)),g.setDisposable(a.subscribe(function(a){f===i&&b.onNext(a)},function(a){f===i&&b.onError(a)},function(){f===i&&(c=!1,e&&b.onCompleted())}))},b.onError.bind(b),function(){e=!0,c||b.onCompleted()});return new lb(g,d)})},Nb.takeUntil=function(a){var c=this;return new dc(function(d){return new lb(c.subscribe(d),a.subscribe(d.onCompleted.bind(d),d.onError.bind(d),b))})},Nb.zip=function(){if(Array.isArray(arguments[0]))return v.apply(this,arguments);var a=this,b=cb.call(arguments),d=b.pop();return b.unshift(a),new dc(function(e){function f(a){i[a]=!0,i.every(function(a){return a})&&e.onCompleted()}for(var g=b.length,h=s(g,function(){return[]}),i=s(g,function(){return!1}),j=function(b){var f,g;if(h.every(function(a){return a.length>0})){try{g=h.map(function(a){return a.shift()}),f=d.apply(a,g)}catch(j){return e.onError(j),void 0}e.onNext(f)}else i.filter(function(a,c){return c!==b}).every(c)&&e.onCompleted()},k=new Array(g),l=0;g>l;l++)!function(a){k[a]=new rb,k[a].setDisposable(b[a].subscribe(function(b){h[a].push(b),j(a)},e.onError.bind(e),function(){f(a)}))}(l);return new lb(k)})},Tb.zip=function(){var a=cb.call(arguments,0),b=a.shift();return b.zip.apply(b,a)},Tb.zipArray=function(){var a=r(arguments,0);return new dc(function(b){function d(a){if(g.every(function(a){return a.length>0})){var d=g.map(function(a){return a.shift()});b.onNext(d)}else if(h.filter(function(b,c){return c!==a}).every(c))return b.onCompleted(),void 0}function e(a){return h[a]=!0,h.every(c)?(b.onCompleted(),void 0):void 0}for(var f=a.length,g=s(f,function(){return[]}),h=s(f,function(){return!1}),i=new Array(f),j=0;f>j;j++)!function(c){i[c]=new rb,i[c].setDisposable(a[c].subscribe(function(a){g[c].push(a),d(c)},b.onError.bind(b),function(){e(c)}))}(j);var k=new lb(i);return k.add(ob(function(){for(var a=0,b=g.length;b>a;a++)g[a]=[]})),k})},Nb.asObservable=function(){var a=this;
2
- return new dc(function(b){return a.subscribe(b)})},Nb.bufferWithCount=function(a,b){return 1===arguments.length&&(b=a),this.windowWithCount(a,b).selectMany(function(a){return a.toArray()}).where(function(a){return a.length>0})},Nb.dematerialize=function(){var a=this;return new dc(function(b){return a.subscribe(function(a){return a.accept(b)},b.onError.bind(b),b.onCompleted.bind(b))})},Nb.distinctUntilChanged=function(a,b){var e=this;return a||(a=c),b||(b=d),new dc(function(c){var d,f=!1;return e.subscribe(function(e){var g,h=!1;try{g=a(e)}catch(i){return c.onError(i),void 0}if(f)try{h=b(d,g)}catch(i){return c.onError(i),void 0}f&&h||(f=!0,d=g,c.onNext(e))},c.onError.bind(c),c.onCompleted.bind(c))})},Nb["do"]=Nb.doAction=function(a,b,c){var d,e=this;return"function"==typeof a?d=a:(d=a.onNext.bind(a),b=a.onError.bind(a),c=a.onCompleted.bind(a)),new dc(function(a){return e.subscribe(function(b){try{d(b)}catch(c){a.onError(c)}a.onNext(b)},function(c){if(b){try{b(c)}catch(d){a.onError(d)}a.onError(c)}else a.onError(c)},function(){if(c){try{c()}catch(b){a.onError(b)}a.onCompleted()}else a.onCompleted()})})},Nb["finally"]=Nb.finallyAction=function(a){var b=this;return new dc(function(c){var d=b.subscribe(c);return ob(function(){try{d.dispose()}catch(b){throw b}finally{a()}})})},Nb.ignoreElements=function(){var a=this;return new dc(function(c){return a.subscribe(b,c.onError.bind(c),c.onCompleted.bind(c))})},Nb.materialize=function(){var a=this;return new dc(function(b){return a.subscribe(function(a){b.onNext(Db(a))},function(a){b.onNext(Eb(a)),b.onCompleted()},function(){b.onNext(Fb()),b.onCompleted()})})},Nb.repeat=function(a){return Jb(this,a).concat()},Nb.retry=function(a){return Jb(this,a).catchException()},Nb.scan=function(){var a,b,c=!1,d=this;return 2===arguments.length?(c=!0,a=arguments[0],b=arguments[1]):b=arguments[0],new dc(function(e){var f,g,h;return d.subscribe(function(d){try{h||(h=!0),f?g=b(g,d):(g=c?b(a,d):d,f=!0)}catch(i){return e.onError(i),void 0}e.onNext(g)},e.onError.bind(e),function(){!h&&c&&e.onNext(a),e.onCompleted()})})},Nb.skipLast=function(a){var b=this;return new dc(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&c.onNext(d.shift())},c.onError.bind(c),c.onCompleted.bind(c))})},Nb.startWith=function(){var a,b,c=0;return arguments.length&&"now"in Object(arguments[0])?(b=arguments[0],c=1):b=yb,a=cb.call(arguments,c),Kb([Wb(a,b),this]).concat()},Nb.takeLast=function(a,b){return this.takeLastBuffer(a).selectMany(function(a){return Wb(a,b)})},Nb.takeLastBuffer=function(a){var b=this;return new dc(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&d.shift()},c.onError.bind(c),function(){c.onNext(d),c.onCompleted()})})},Nb.windowWithCount=function(a,b){var c=this;if(0>=a)throw new Error(H);if(1===arguments.length&&(b=a),0>=b)throw new Error(H);return new dc(function(d){var e=new rb,f=new tb(e),g=0,h=[],i=function(){var a=new hc;h.push(a),d.onNext(fb(a,f))};return i(),e.setDisposable(c.subscribe(function(c){for(var d,e=0,f=h.length;f>e;e++)h[e].onNext(c);var j=g-a+1;j>=0&&j%b===0&&(d=h.shift(),d.onCompleted()),g++,g%b===0&&i()},function(a){for(;h.length>0;)h.shift().onError(a);d.onError(a)},function(){for(;h.length>0;)h.shift().onCompleted();d.onCompleted()})),f})},Nb.defaultIfEmpty=function(b){var c=this;return b===a&&(b=null),new dc(function(a){var d=!1;return c.subscribe(function(b){d=!0,a.onNext(b)},a.onError.bind(a),function(){d||a.onNext(b),a.onCompleted()})})},Nb.distinct=function(a,b){var d=this;return a||(a=c),b||(b=f),new dc(function(c){var e={};return d.subscribe(function(d){var f,g,h,i=!1;try{f=a(d),g=b(f)}catch(j){return c.onError(j),void 0}for(h in e)if(g===h){i=!0;break}i||(e[g]=null,c.onNext(d))},c.onError.bind(c),c.onCompleted.bind(c))})},Nb.groupBy=function(a,b,c){return this.groupByUntil(a,b,function(){return Xb()},c)},Nb.groupByUntil=function(a,d,e,g){var h=this;return d||(d=c),g||(g=f),new dc(function(c){var f={},i=new lb,j=new tb(i);return i.add(h.subscribe(function(h){var k,l,m,n,o,p,q,r,s,t;try{p=a(h),q=g(p)}catch(u){for(t in f)f[t].onError(u);return c.onError(u),void 0}n=!1;try{s=f[q],s||(s=new hc,f[q]=s,n=!0)}catch(u){for(t in f)f[t].onError(u);return c.onError(u),void 0}if(n){o=new fc(p,s,j),l=new fc(p,s);try{k=e(l)}catch(u){for(t in f)f[t].onError(u);return c.onError(u),void 0}c.onNext(o),r=new rb,i.add(r);var v=function(){q in f&&(delete f[q],s.onCompleted()),i.remove(r)};r.setDisposable(k.take(1).subscribe(b,function(a){for(t in f)f[t].onError(a);c.onError(a)},function(){v()}))}try{m=d(h)}catch(u){for(t in f)f[t].onError(u);return c.onError(u),void 0}s.onNext(m)},function(a){for(var b in f)f[b].onError(a);c.onError(a)},function(){for(var a in f)f[a].onCompleted();c.onCompleted()})),j})},Nb.select=Nb.map=function(a,b){var c=this;return new dc(function(d){var e=0;return c.subscribe(function(f){var g;try{g=a.call(b,f,e++,c)}catch(h){return d.onError(h),void 0}d.onNext(g)},d.onError.bind(d),d.onCompleted.bind(d))})},Nb.pluck=function(a){return this.select(function(b){return b[a]})},Nb.selectMany=Nb.flatMap=function(a,b){return b?this.selectMany(function(c,d){var e=a(c,d),f=h(e)?Ub(e):e;return f.select(function(a){return b(c,a,d)})}):"function"==typeof a?w.call(this,a):w.call(this,function(){return a})},Nb.selectSwitch=Nb.flatMapLatest=function(a,b){return this.select(a,b).switchLatest()},Nb.skip=function(a){if(0>a)throw new Error(H);var b=this;return new dc(function(c){var d=a;return b.subscribe(function(a){0>=d?c.onNext(a):d--},c.onError.bind(c),c.onCompleted.bind(c))})},Nb.skipWhile=function(a,b){var c=this;return new dc(function(d){var e=0,f=!1;return c.subscribe(function(g){if(!f)try{f=!a.call(b,g,e++,c)}catch(h){return d.onError(h),void 0}f&&d.onNext(g)},d.onError.bind(d),d.onCompleted.bind(d))})},Nb.take=function(a,b){if(0>a)throw new Error(H);if(0===a)return Vb(b);var c=this;return new dc(function(b){var d=a;return c.subscribe(function(a){d>0&&(d--,b.onNext(a),0===d&&b.onCompleted())},b.onError.bind(b),b.onCompleted.bind(b))})},Nb.takeWhile=function(a,b){var c=this;return new dc(function(d){var e=0,f=!0;return c.subscribe(function(g){if(f){try{f=a.call(b,g,e++,c)}catch(h){return d.onError(h),void 0}f?d.onNext(g):d.onCompleted()}},d.onError.bind(d),d.onCompleted.bind(d))})},Nb.where=Nb.filter=function(a,b){var c=this;return new dc(function(d){var e=0;return c.subscribe(function(f){var g;try{g=a.call(b,f,e++,c)}catch(h){return d.onError(h),void 0}g&&d.onNext(f)},d.onError.bind(d),d.onCompleted.bind(d))})};var dc=E.AnonymousObservable=function(a){function b(a){return"undefined"==typeof a?a=pb:"function"==typeof a&&(a=ob(a)),a}function c(d){function e(a){var c=new ec(a);if(zb.scheduleRequired())zb.schedule(function(){try{c.setDisposable(b(d(c)))}catch(a){if(!c.fail(a))throw a}});else try{c.setDisposable(b(d(c)))}catch(e){if(!c.fail(e))throw e}return c}return this instanceof c?(a.call(this,e),void 0):new c(d)}return db(c,a),c}(Tb),ec=function(a){function b(b){a.call(this),this.observer=b,this.m=new rb}db(b,a);var c=b.prototype;return c.next=function(a){var b=!1;try{this.observer.onNext(a),b=!0}catch(c){throw c}finally{b||this.dispose()}},c.error=function(a){try{this.observer.onError(a)}catch(b){throw b}finally{this.dispose()}},c.completed=function(){try{this.observer.onCompleted()}catch(a){throw a}finally{this.dispose()}},c.setDisposable=function(a){this.m.setDisposable(a)},c.getDisposable=function(){return this.m.getDisposable()},c.disposable=function(a){return arguments.length?this.getDisposable():setDisposable(a)},c.dispose=function(){a.prototype.dispose.call(this),this.m.dispose()},b}(Ob),fc=function(a){function b(a){return this.underlyingObservable.subscribe(a)}function c(c,d,e){a.call(this,b),this.key=c,this.underlyingObservable=e?new dc(function(a){return new lb(e.getDisposable(),d.subscribe(a))}):d}return db(c,a),c}(Tb),gc=function(a,b){this.subject=a,this.observer=b};gc.prototype.dispose=function(){if(!this.subject.isDisposed&&null!==this.observer){var a=this.subject.observers.indexOf(this.observer);this.subject.observers.splice(a,1),this.observer=null}};var hc=E.Subject=function(a){function b(a){return i.call(this),this.isStopped?this.exception?(a.onError(this.exception),pb):(a.onCompleted(),pb):(this.observers.push(a),new gc(this,a))}function c(){a.call(this,b),this.isDisposed=!1,this.isStopped=!1,this.observers=[]}return db(c,a),eb(c.prototype,Lb,{hasObservers:function(){return this.observers.length>0},onCompleted:function(){if(i.call(this),!this.isStopped){var a=this.observers.slice(0);this.isStopped=!0;for(var b=0,c=a.length;c>b;b++)a[b].onCompleted();this.observers=[]}},onError:function(a){if(i.call(this),!this.isStopped){var b=this.observers.slice(0);this.isStopped=!0,this.exception=a;for(var c=0,d=b.length;d>c;c++)b[c].onError(a);this.observers=[]}},onNext:function(a){if(i.call(this),!this.isStopped)for(var b=this.observers.slice(0),c=0,d=b.length;d>c;c++)b[c].onNext(a)},dispose:function(){this.isDisposed=!0,this.observers=null}}),c.create=function(a,b){return new ic(a,b)},c}(Tb),ic=(E.AsyncSubject=function(a){function b(a){if(i.call(this),!this.isStopped)return this.observers.push(a),new gc(this,a);var b=this.exception,c=this.hasValue,d=this.value;return b?a.onError(b):c?(a.onNext(d),a.onCompleted()):a.onCompleted(),pb}function c(){a.call(this,b),this.isDisposed=!1,this.isStopped=!1,this.value=null,this.hasValue=!1,this.observers=[],this.exception=null}return db(c,a),eb(c.prototype,Lb,{hasObservers:function(){return i.call(this),this.observers.length>0},onCompleted:function(){var a,b,c;if(i.call(this),!this.isStopped){this.isStopped=!0;var d=this.observers.slice(0),e=this.value,f=this.hasValue;if(f)for(b=0,c=d.length;c>b;b++)a=d[b],a.onNext(e),a.onCompleted();else for(b=0,c=d.length;c>b;b++)d[b].onCompleted();this.observers=[]}},onError:function(a){if(i.call(this),!this.isStopped){var b=this.observers.slice(0);this.isStopped=!0,this.exception=a;for(var c=0,d=b.length;d>c;c++)b[c].onError(a);this.observers=[]}},onNext:function(a){i.call(this),this.isStopped||(this.value=a,this.hasValue=!0)},dispose:function(){this.isDisposed=!0,this.observers=null,this.exception=null,this.value=null}}),c}(Tb),function(a){function b(a){return this.observable.subscribe(a)}function c(c,d){a.call(this,b),this.observer=c,this.observable=d}return db(c,a),eb(c.prototype,Lb,{onCompleted:function(){this.observer.onCompleted()},onError:function(a){this.observer.onError(a)},onNext:function(a){this.observer.onNext(a)}}),c}(Tb));"function"==typeof define&&"object"==typeof define.amd&&define.amd?(y.Rx=E,define(function(){return E})):z&&A?B?(A.exports=E).Rx=E:z.Rx=E:y.Rx=E}).call(this);
1
+ (function(t){function e(){}function n(t){return t}function r(t,e){return re(t,e)}function i(t,e){return t-e}function o(t){return""+t}function s(t){throw t}function u(e){return"function"==typeof e.then&&e.subscribe===t}function c(){if(this.isDisposed)throw Error(k)}function a(t){var e=typeof t;return t&&("function"==e||"object"==e)||!1}function h(t){var e=[];if(!a(t))return e;ne.nonEnumArgs&&t.length&&d(t)&&(t=ie.call(t));var n=ne.enumPrototypes&&"function"==typeof t,r=ne.enumErrorProps&&(t===K||t instanceof Error);for(var i in t)n&&"prototype"==i||r&&("message"==i||"name"==i)||e.push(i);if(ne.nonEnumShadows&&t!==X){var o=t.constructor,s=-1,u=te.length;if(t===(o&&o.prototype))var c=t===stringProto?$:t===K?V:Q.call(t),h=ee[c];for(;u>++s;)i=te[s],h&&h[i]||!G.call(t,i)||e.push(i)}return e}function l(t,e,n){for(var r=-1,i=n(t),o=i.length;o>++r;){var s=i[r];if(e(t[s],s,t)===!1)break}return t}function f(t,e){return l(t,e,h)}function p(t){return"function"!=typeof t.toString&&"string"==typeof(t+"")}function d(t){return t&&"object"==typeof t?Q.call(t)==M:!1}function b(t){return"function"==typeof t}function v(e,n,r,i){if(e===n)return 0!==e||1/e==1/n;var o=typeof e,s=typeof n;if(e===e&&(null==e||null==n||"function"!=o&&"object"!=o&&"function"!=s&&"object"!=s))return!1;var u=Q.call(e),c=Q.call(n);if(u==M&&(u=U),c==M&&(c=U),u!=c)return!1;switch(u){case I:case z:return+e==+n;case F:return e!=+e?n!=+n:0==e?1/e==1/n:e==+n;case H:case $:return e==n+""}var a=u==L;if(!a){if(u!=U||!ne.nodeClass&&(p(e)||p(n)))return!1;var h=!ne.argsObject&&d(e)?Object:e.constructor,l=!ne.argsObject&&d(n)?Object:n.constructor;if(!(h==l||G.call(e,"constructor")&&G.call(n,"constructor")||b(h)&&h instanceof h&&b(l)&&l instanceof l||!("constructor"in e&&"constructor"in n)))return!1}r||(r=[]),i||(i=[]);for(var m=r.length;m--;)if(r[m]==e)return i[m]==n;var y=0;if(result=!0,r.push(e),i.push(n),a){if(m=e.length,y=n.length,result=y==m)for(;y--;){var w=n[y];if(!(result=v(e[y],w,r,i)))break}}else f(n,function(n,o,s){return G.call(s,o)?(y++,result=G.call(e,o)&&v(e[o],n,r,i)):t}),result&&f(e,function(e,n,r){return G.call(r,n)?result=--y>-1:t});return r.pop(),i.pop(),result}function m(t,e){return 1===t.length&&Array.isArray(t[e])?t[e]:ie.call(t)}function y(t,e){for(var n=Array(t),r=0;t>r;r++)n[r]=e();return n}function w(t,e){this.scheduler=t,this.disposable=e,this.isDisposed=!1}function g(e,n){return new on(function(r){var i=new we,o=new ge;return o.setDisposable(i),i.setDisposable(e.subscribe(r.onNext.bind(r),function(e){var i,s;try{s=n(e)}catch(u){return r.onError(u),t}i=new we,o.setDisposable(i),i.setDisposable(s.subscribe(r))},r.onCompleted.bind(r))),o})}function E(e,n){var r=this;return new on(function(i){var o=0,s=e.length;return r.subscribe(function(r){if(s>o){var u,c=e[o++];try{u=n(r,c)}catch(a){return i.onError(a),t}i.onNext(u)}else i.onCompleted()},i.onError.bind(i),i.onCompleted.bind(i))})}function x(t){return this.select(function(e,n){var r=t(e,n);return u(r)?Qe(r):r}).mergeObservable()}var C={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},D=C[typeof window]&&window||this,A=C[typeof exports]&&exports&&!exports.nodeType&&exports,S=C[typeof module]&&module&&!module.nodeType&&module,_=S&&S.exports===A&&A,N=C[typeof global]&&global;!N||N.global!==N&&N.window!==N||(D=N);var O={internals:{},config:{}},R=function(){return Date.now?Date.now:function(){return+new Date}}(),W="Sequence contains no elements.",j="Argument out of range",k="Object has been disposed",P="object"==typeof Symbol&&Symbol.iterator||"_es6shim_iterator_";D.Set&&"function"==typeof(new D.Set)["@@iterator"]&&(P="@@iterator");var q,T={done:!0,value:t},M="[object Arguments]",L="[object Array]",I="[object Boolean]",z="[object Date]",V="[object Error]",B="[object Function]",F="[object Number]",U="[object Object]",H="[object RegExp]",$="[object String]",Q=Object.prototype.toString,G=Object.prototype.hasOwnProperty,J=Q.call(arguments)==M,K=Error.prototype,X=Object.prototype,Y=X.propertyIsEnumerable;try{q=!(Q.call(document)==U&&!({toString:0}+""))}catch(Z){q=!0}var te=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],ee={};ee[L]=ee[z]=ee[F]={constructor:!0,toLocaleString:!0,toString:!0,valueOf:!0},ee[I]=ee[$]={constructor:!0,toString:!0,valueOf:!0},ee[V]=ee[B]=ee[H]={constructor:!0,toString:!0},ee[U]={constructor:!0};var ne={};(function(){var t=function(){this.x=1},e=[];t.prototype={valueOf:1,y:1};for(var n in new t)e.push(n);for(n in arguments);ne.enumErrorProps=Y.call(K,"message")||Y.call(K,"name"),ne.enumPrototypes=Y.call(t,"prototype"),ne.nonEnumArgs=0!=n,ne.nonEnumShadows=!/valueOf/.test(e)})(1),J||(d=function(t){return t&&"object"==typeof t?G.call(t,"callee"):!1}),b(/x/)&&(b=function(t){return"function"==typeof t&&Q.call(t)==B});var re=O.internals.isEqual=function(t,e){return v(t,e,[],[])},ie=Array.prototype.slice;({}).hasOwnProperty;var oe=this.inherits=O.internals.inherits=function(t,e){function n(){this.constructor=t}n.prototype=e.prototype,t.prototype=new n},se=O.internals.addProperties=function(t){for(var e=ie.call(arguments,1),n=0,r=e.length;r>n;n++){var i=e[n];for(var o in i)t[o]=i[o]}},ue=O.internals.addRef=function(t,e){return new on(function(n){return new pe(e.getDisposable(),t.subscribe(n))})};Function.prototype.bind||(Function.prototype.bind=function(t){var e=this,n=ie.call(arguments,1),r=function(){function i(){}if(this instanceof r){i.prototype=e.prototype;var o=new i,s=e.apply(o,n.concat(ie.call(arguments)));return Object(s)===s?s:o}return e.apply(t,n.concat(ie.call(arguments)))};return r});var ce=Object("a"),ae="a"!=ce[0]||!(0 in ce);Array.prototype.every||(Array.prototype.every=function(t){var e=Object(this),n=ae&&{}.toString.call(this)==$?this.split(""):e,r=n.length>>>0,i=arguments[1];if({}.toString.call(t)!=B)throw new TypeError(t+" is not a function");for(var o=0;r>o;o++)if(o in n&&!t.call(i,n[o],o,e))return!1;return!0}),Array.prototype.map||(Array.prototype.map=function(t){var e=Object(this),n=ae&&{}.toString.call(this)==$?this.split(""):e,r=n.length>>>0,i=Array(r),o=arguments[1];if({}.toString.call(t)!=B)throw new TypeError(t+" is not a function");for(var s=0;r>s;s++)s in n&&(i[s]=t.call(o,n[s],s,e));return i}),Array.prototype.filter||(Array.prototype.filter=function(t){for(var e,n=[],r=Object(this),i=0,o=r.length>>>0;o>i;i++)e=r[i],i in r&&t.call(arguments[1],e,i,r)&&n.push(e);return n}),Array.isArray||(Array.isArray=function(t){return Object.prototype.toString.call(t)==L}),Array.prototype.indexOf||(Array.prototype.indexOf=function(t){var e=Object(this),n=e.length>>>0;if(0===n)return-1;var r=0;if(arguments.length>1&&(r=Number(arguments[1]),r!==r?r=0:0!==r&&1/0!=r&&r!==-1/0&&(r=(r>0||-1)*Math.floor(Math.abs(r)))),r>=n)return-1;for(var i=r>=0?r:Math.max(n-Math.abs(r),0);n>i;i++)if(i in e&&e[i]===t)return i;return-1});var he=function(t,e){this.id=t,this.value=e};he.prototype.compareTo=function(t){var e=this.value.compareTo(t.value);return 0===e&&(e=this.id-t.id),e};var le=O.internals.PriorityQueue=function(t){this.items=Array(t),this.length=0},fe=le.prototype;fe.isHigherPriority=function(t,e){return 0>this.items[t].compareTo(this.items[e])},fe.percolate=function(t){if(!(t>=this.length||0>t)){var e=t-1>>1;if(!(0>e||e===t)&&this.isHigherPriority(t,e)){var n=this.items[t];this.items[t]=this.items[e],this.items[e]=n,this.percolate(e)}}},fe.heapify=function(e){if(e===t&&(e=0),!(e>=this.length||0>e)){var n=2*e+1,r=2*e+2,i=e;if(this.length>n&&this.isHigherPriority(n,i)&&(i=n),this.length>r&&this.isHigherPriority(r,i)&&(i=r),i!==e){var o=this.items[e];this.items[e]=this.items[i],this.items[i]=o,this.heapify(i)}}},fe.peek=function(){return this.items[0].value},fe.removeAt=function(t){this.items[t]=this.items[--this.length],delete this.items[this.length],this.heapify()},fe.dequeue=function(){var t=this.peek();return this.removeAt(0),t},fe.enqueue=function(t){var e=this.length++;this.items[e]=new he(le.count++,t),this.percolate(e)},fe.remove=function(t){for(var e=0;this.length>e;e++)if(this.items[e].value===t)return this.removeAt(e),!0;return!1},le.count=0;var pe=O.CompositeDisposable=function(){this.disposables=m(arguments,0),this.isDisposed=!1,this.length=this.disposables.length},de=pe.prototype;de.add=function(t){this.isDisposed?t.dispose():(this.disposables.push(t),this.length++)},de.remove=function(t){var e=!1;if(!this.isDisposed){var n=this.disposables.indexOf(t);-1!==n&&(e=!0,this.disposables.splice(n,1),this.length--,t.dispose())}return e},de.dispose=function(){if(!this.isDisposed){this.isDisposed=!0;var t=this.disposables.slice(0);this.disposables=[],this.length=0;for(var e=0,n=t.length;n>e;e++)t[e].dispose()}},de.clear=function(){var t=this.disposables.slice(0);this.disposables=[],this.length=0;for(var e=0,n=t.length;n>e;e++)t[e].dispose()},de.contains=function(t){return-1!==this.disposables.indexOf(t)},de.toArray=function(){return this.disposables.slice(0)};var be=O.Disposable=function(t){this.isDisposed=!1,this.action=t||e};be.prototype.dispose=function(){this.isDisposed||(this.action(),this.isDisposed=!0)};var ve=be.create=function(t){return new be(t)},me=be.empty={dispose:e},ye=function(){function t(t){this.isSingle=t,this.isDisposed=!1,this.current=null}var e=t.prototype;return e.getDisposable=function(){return this.current},e.setDisposable=function(t){if(this.current&&this.isSingle)throw Error("Disposable has already been assigned");var e,n=this.isDisposed;n||(e=this.current,this.current=t),e&&e.dispose(),n&&t&&t.dispose()},e.dispose=function(){var t;this.isDisposed||(this.isDisposed=!0,t=this.current,this.current=null),t&&t.dispose()},t}(),we=O.SingleAssignmentDisposable=function(t){function e(){t.call(this,!0)}return oe(e,t),e}(ye),ge=O.SerialDisposable=function(t){function e(){t.call(this,!1)}return oe(e,t),e}(ye),Ee=O.RefCountDisposable=function(){function t(t){this.disposable=t,this.disposable.count++,this.isInnerDisposed=!1}function e(t){this.underlyingDisposable=t,this.isDisposed=!1,this.isPrimaryDisposed=!1,this.count=0}return t.prototype.dispose=function(){this.disposable.isDisposed||this.isInnerDisposed||(this.isInnerDisposed=!0,this.disposable.count--,0===this.disposable.count&&this.disposable.isPrimaryDisposed&&(this.disposable.isDisposed=!0,this.disposable.underlyingDisposable.dispose()))},e.prototype.dispose=function(){this.isDisposed||this.isPrimaryDisposed||(this.isPrimaryDisposed=!0,0===this.count&&(this.isDisposed=!0,this.underlyingDisposable.dispose()))},e.prototype.getDisposable=function(){return this.isDisposed?me:new t(this)},e}();w.prototype.dispose=function(){var t=this;this.scheduler.schedule(function(){t.isDisposed||(t.isDisposed=!0,t.disposable.dispose())})};var xe=O.internals.ScheduledItem=function(t,e,n,r,o){this.scheduler=t,this.state=e,this.action=n,this.dueTime=r,this.comparer=o||i,this.disposable=new we};xe.prototype.invoke=function(){this.disposable.setDisposable(this.invokeCore())},xe.prototype.compareTo=function(t){return this.comparer(this.dueTime,t.dueTime)},xe.prototype.isCancelled=function(){return this.disposable.isDisposed},xe.prototype.invokeCore=function(){return this.action(this.scheduler,this.state)};var Ce=O.Scheduler=function(){function t(t,e,n,r){this.now=t,this._schedule=e,this._scheduleRelative=n,this._scheduleAbsolute=r}function e(t,e){var n=e.first,r=e.second,i=new pe,o=function(e){r(e,function(e){var n=!1,r=!1,s=t.scheduleWithState(e,function(t,e){return n?i.remove(s):r=!0,o(e),me});r||(i.add(s),n=!0)})};return o(n),i}function n(t,e,n){var r=e.first,i=e.second,o=new pe,s=function(e){i(e,function(e,r){var i=!1,u=!1,c=t[n].call(t,e,r,function(t,e){return i?o.remove(c):u=!0,s(e),me});u||(o.add(c),i=!0)})};return s(r),o}function r(t,e){return e(),me}var i=t.prototype;return i.catchException=i["catch"]=function(t){return new Oe(this,t)},i.schedulePeriodic=function(t,e){return this.schedulePeriodicWithState(null,t,function(){e()})},i.schedulePeriodicWithState=function(t,e,n){var r=t,i=setInterval(function(){r=n(r)},e);return ve(function(){clearInterval(i)})},i.schedule=function(t){return this._schedule(t,r)},i.scheduleWithState=function(t,e){return this._schedule(t,e)},i.scheduleWithRelative=function(t,e){return this._scheduleRelative(e,t,r)},i.scheduleWithRelativeAndState=function(t,e,n){return this._scheduleRelative(t,e,n)},i.scheduleWithAbsolute=function(t,e){return this._scheduleAbsolute(e,t,r)},i.scheduleWithAbsoluteAndState=function(t,e,n){return this._scheduleAbsolute(t,e,n)},i.scheduleRecursive=function(t){return this.scheduleRecursiveWithState(t,function(t,e){t(function(){e(t)})})},i.scheduleRecursiveWithState=function(t,n){return this.scheduleWithState({first:t,second:n},function(t,n){return e(t,n)})},i.scheduleRecursiveWithRelative=function(t,e){return this.scheduleRecursiveWithRelativeAndState(e,t,function(t,e){t(function(n){e(t,n)})})},i.scheduleRecursiveWithRelativeAndState=function(t,e,r){return this._scheduleRelative({first:t,second:r},e,function(t,e){return n(t,e,"scheduleWithRelativeAndState")})},i.scheduleRecursiveWithAbsolute=function(t,e){return this.scheduleRecursiveWithAbsoluteAndState(e,t,function(t,e){t(function(n){e(t,n)})})},i.scheduleRecursiveWithAbsoluteAndState=function(t,e,r){return this._scheduleAbsolute({first:t,second:r},e,function(t,e){return n(t,e,"scheduleWithAbsoluteAndState")})},t.now=R,t.normalize=function(t){return 0>t&&(t=0),t},t}(),De=Ce.normalize;O.internals.SchedulePeriodicRecursive=function(){function t(t,e){e(0,this._period);try{this._state=this._action(this._state)}catch(n){throw this._cancel.dispose(),n}}function e(t,e,n,r){this._scheduler=t,this._state=e,this._period=n,this._action=r}return e.prototype.start=function(){var e=new we;return this._cancel=e,e.setDisposable(this._scheduler.scheduleRecursiveWithRelativeAndState(0,this._period,t.bind(this))),e},e}();var Ae,Se=Ce.immediate=function(){function t(t,e){return e(this,t)}function e(t,e,n){for(var r=De(r);r-this.now()>0;);return n(this,t)}function n(t,e,n){return this.scheduleWithRelativeAndState(t,e-this.now(),n)}return new Ce(R,t,e,n)}(),_e=Ce.currentThread=function(){function t(t){for(var e;t.length>0;)if(e=t.dequeue(),!e.isCancelled()){for(;e.dueTime-Ce.now()>0;);e.isCancelled()||e.invoke()}}function e(t,e){return this.scheduleWithRelativeAndState(t,0,e)}function n(e,n,r){var o=this.now()+Ce.normalize(n),s=new xe(this,e,r,o);if(i)i.enqueue(s);else{i=new le(4),i.enqueue(s);try{t(i)}catch(u){throw u}finally{i=null}}return s.disposable}function r(t,e,n){return this.scheduleWithRelativeAndState(t,e-this.now(),n)}var i,o=new Ce(R,e,n,r);return o.scheduleRequired=function(){return null===i},o.ensureTrampoline=function(t){return null===i?this.schedule(t):t()},o}(),Ne=e;(function(){function t(){if(!D.postMessage||D.importScripts)return!1;var t=!1,e=D.onmessage;return D.onmessage=function(){t=!0},D.postMessage("","*"),D.onmessage=e,t}function e(t){if("string"==typeof t.data&&t.data.substring(0,o.length)===o){var e=t.data.substring(o.length),n=s[e];n(),delete s[e]}}var n=RegExp("^"+(Q+"").replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),r="function"==typeof(r=N&&_&&N.setImmediate)&&!n.test(r)&&r,i="function"==typeof(i=N&&_&&N.clearImmediate)&&!n.test(i)&&i;if("undefined"!=typeof process&&"[object process]"==={}.toString.call(process))Ae=process.nextTick;else if("function"==typeof r)Ae=r,Ne=i;else if(t()){var o="ms.rx.schedule"+Math.random(),s={},u=0;D.addEventListener?D.addEventListener("message",e,!1):D.attachEvent("onmessage",e,!1),Ae=function(t){var e=u++;s[e]=t,D.postMessage(o+e,"*")}}else if(D.MessageChannel){var c=new D.MessageChannel,a={},h=0;c.port1.onmessage=function(t){var e=t.data,n=a[e];n(),delete a[e]},Ae=function(t){var e=h++;a[e]=t,c.port2.postMessage(e)}}else"document"in D&&"onreadystatechange"in D.document.createElement("script")?Ae=function(t){var e=D.document.createElement("script");e.onreadystatechange=function(){t(),e.onreadystatechange=null,e.parentNode.removeChild(e),e=null},D.document.documentElement.appendChild(e)}:(Ae=function(t){return setTimeout(t,0)},Ne=clearTimeout)})(),Ce.timeout=function(){function t(t,e){var n=this,r=new we,i=Ae(function(){r.isDisposed||r.setDisposable(e(n,t))});return new pe(r,ve(function(){Ne(i)}))}function e(t,e,n){var r=this,i=Ce.normalize(e);if(0===i)return r.scheduleWithState(t,n);var o=new we,s=setTimeout(function(){o.isDisposed||o.setDisposable(n(r,t))},i);return new pe(o,ve(function(){clearTimeout(s)}))}function n(t,e,n){return this.scheduleWithRelativeAndState(t,e-this.now(),n)}return new Ce(R,t,e,n)}();var Oe=function(t){function e(){return this._scheduler.now()}function n(t,e){return this._scheduler.scheduleWithState(t,this._wrap(e))}function r(t,e,n){return this._scheduler.scheduleWithRelativeAndState(t,e,this._wrap(n))}function i(t,e,n){return this._scheduler.scheduleWithAbsoluteAndState(t,e,this._wrap(n))}function o(o,s){this._scheduler=o,this._handler=s,this._recursiveOriginal=null,this._recursiveWrapper=null,t.call(this,e,n,r,i)}return oe(o,t),o.prototype._clone=function(t){return new o(t,this._handler)},o.prototype._wrap=function(t){var e=this;return function(n,r){try{return t(e._getRecursiveWrapper(n),r)}catch(i){if(!e._handler(i))throw i;return me}}},o.prototype._getRecursiveWrapper=function(t){if(this._recursiveOriginal!==t){this._recursiveOriginal=t;var e=this._clone(t);e._recursiveOriginal=t,e._recursiveWrapper=e,this._recursiveWrapper=e}return this._recursiveWrapper},o.prototype.schedulePeriodicWithState=function(t,e,n){var r=this,i=!1,o=new we;return o.setDisposable(this._scheduler.schedulePeriodicWithState(t,e,function(t){if(i)return null;try{return n(t)}catch(e){if(i=!0,!r._handler(e))throw e;return o.dispose(),null}})),o},o}(Ce),Re=O.Notification=function(){function t(t,e){this.hasValue=null==e?!1:e,this.kind=t}var e=t.prototype;return e.accept=function(t,e,n){return 1===arguments.length&&"object"==typeof t?this._acceptObservable(t):this._accept(t,e,n)},e.toObservable=function(t){var e=this;return t||(t=Se),new on(function(n){return t.schedule(function(){e._acceptObservable(n),"N"===e.kind&&n.onCompleted()})})},t}(),We=Re.createOnNext=function(){function t(t){return t(this.value)}function e(t){return t.onNext(this.value)}function n(){return"OnNext("+this.value+")"}return function(r){var i=new Re("N",!0);return i.value=r,i._accept=t,i._acceptObservable=e,i.toString=n,i}}(),je=Re.createOnError=function(){function t(t,e){return e(this.exception)}function e(t){return t.onError(this.exception)}function n(){return"OnError("+this.exception+")"}return function(r){var i=new Re("E");return i.exception=r,i._accept=t,i._acceptObservable=e,i.toString=n,i}}(),ke=Re.createOnCompleted=function(){function t(t,e,n){return n()}function e(t){return t.onCompleted()}function n(){return"OnCompleted()"}return function(){var r=new Re("C");return r._accept=t,r._acceptObservable=e,r.toString=n,r}}(),Pe=O.internals.Enumerator=function(t){this._next=t};Pe.prototype.next=function(){return this._next()},Pe.prototype[P]=function(){return this};var qe=O.internals.Enumerable=function(t){this._iterator=t};qe.prototype[P]=function(){return this._iterator()},qe.prototype.concat=function(){var e=this;return new on(function(n){var r;try{r=e[P]()}catch(i){return n.onError(),t}var o,s=new ge,u=Se.scheduleRecursive(function(e){var i;if(!o){try{i=r.next()}catch(u){return n.onError(u),t}if(i.done)return n.onCompleted(),t;var c=new we;s.setDisposable(c),c.setDisposable(i.value.subscribe(n.onNext.bind(n),n.onError.bind(n),function(){e()}))}});return new pe(s,u,ve(function(){o=!0}))})},qe.prototype.catchException=function(){var e=this;return new on(function(n){var r;try{r=e[P]()}catch(i){return n.onError(),t}var o,s,u=new ge,c=Se.scheduleRecursive(function(e){if(!o){var i;try{i=r.next()}catch(c){return n.onError(c),t}if(i.done)return s?n.onError(s):n.onCompleted(),t;var a=new we;u.setDisposable(a),a.setDisposable(i.value.subscribe(n.onNext.bind(n),function(t){s=t,e()},n.onCompleted.bind(n)))}});return new pe(u,c,ve(function(){o=!0}))})};var Te=qe.repeat=function(t,e){return null==e&&(e=-1),new qe(function(){var n=e;return new Pe(function(){return 0===n?T:(n>0&&n--,{done:!1,value:t})})})},Me=qe.forEach=function(t,e,r){return e||(e=n),new qe(function(){var n=-1;return new Pe(function(){return++n<t.length?{done:!1,value:e.call(r,t[n],n,t)}:T})})},Le=O.Observer=function(){};Le.prototype.toNotifier=function(){var t=this;return function(e){return e.accept(t)}},Le.prototype.asObserver=function(){return new Be(this.onNext.bind(this),this.onError.bind(this),this.onCompleted.bind(this))},Le.prototype.checked=function(){return new Fe(this)};var Ie=Le.create=function(t,n,r){return t||(t=e),n||(n=s),r||(r=e),new Be(t,n,r)};Le.fromNotifier=function(t){return new Be(function(e){return t(We(e))},function(e){return t(je(e))},function(){return t(ke())})},Le.notifyOn=function(t){return new He(t,this)};var ze,Ve=O.internals.AbstractObserver=function(t){function e(){this.isStopped=!1,t.call(this)}return oe(e,t),e.prototype.onNext=function(t){this.isStopped||this.next(t)},e.prototype.onError=function(t){this.isStopped||(this.isStopped=!0,this.error(t))},e.prototype.onCompleted=function(){this.isStopped||(this.isStopped=!0,this.completed())},e.prototype.dispose=function(){this.isStopped=!0},e.prototype.fail=function(t){return this.isStopped?!1:(this.isStopped=!0,this.error(t),!0)},e}(Le),Be=O.AnonymousObserver=function(t){function e(e,n,r){t.call(this),this._onNext=e,this._onError=n,this._onCompleted=r}return oe(e,t),e.prototype.next=function(t){this._onNext(t)},e.prototype.error=function(t){this._onError(t)},e.prototype.completed=function(){this._onCompleted()},e}(Ve),Fe=function(t){function e(e){t.call(this),this._observer=e,this._state=0}oe(e,t);var n=e.prototype;return n.onNext=function(t){this.checkAccess();try{this._observer.onNext(t)}catch(e){throw e}finally{this._state=0}},n.onError=function(t){this.checkAccess();try{this._observer.onError(t)}catch(e){throw e}finally{this._state=2}},n.onCompleted=function(){this.checkAccess();try{this._observer.onCompleted()}catch(t){throw t}finally{this._state=2}},n.checkAccess=function(){if(1===this._state)throw Error("Re-entrancy detected");if(2===this._state)throw Error("Observer completed");0===this._state&&(this._state=1)},e}(Le),Ue=O.internals.ScheduledObserver=function(e){function n(t,n){e.call(this),this.scheduler=t,this.observer=n,this.isAcquired=!1,this.hasFaulted=!1,this.queue=[],this.disposable=new ge}return oe(n,e),n.prototype.next=function(t){var e=this;this.queue.push(function(){e.observer.onNext(t)})},n.prototype.error=function(t){var e=this;this.queue.push(function(){e.observer.onError(t)})},n.prototype.completed=function(){var t=this;this.queue.push(function(){t.observer.onCompleted()})},n.prototype.ensureActive=function(){var e=!1,n=this;!this.hasFaulted&&this.queue.length>0&&(e=!this.isAcquired,this.isAcquired=!0),e&&this.disposable.setDisposable(this.scheduler.scheduleRecursive(function(e){var r;if(!(n.queue.length>0))return n.isAcquired=!1,t;r=n.queue.shift();try{r()}catch(i){throw n.queue=[],n.hasFaulted=!0,i}e()}))},n.prototype.dispose=function(){e.prototype.dispose.call(this),this.disposable.dispose()},n}(Ve),He=function(t){function e(){t.apply(this,arguments)}return oe(e,t),e.prototype.next=function(e){t.prototype.next.call(this,e),this.ensureActive()},e.prototype.error=function(e){t.prototype.error.call(this,e),this.ensureActive()},e.prototype.completed=function(){t.prototype.completed.call(this),this.ensureActive()},e}(Ue),$e=O.Observable=function(){function t(t){this._subscribe=t}return ze=t.prototype,ze.finalValue=function(){var t=this;return new on(function(e){var n,r=!1;return t.subscribe(function(t){r=!0,n=t},e.onError.bind(e),function(){r?(e.onNext(n),e.onCompleted()):e.onError(Error(W))})})},ze.subscribe=ze.forEach=function(t,e,n){var r;return r="object"==typeof t?t:Ie(t,e,n),this._subscribe(r)},ze.toArray=function(){function t(t,e){var n=t.slice(0);return n.push(e),n}return this.scan([],t).startWith([]).finalValue()},t}();ze.observeOn=function(t){var e=this;return new on(function(n){return e.subscribe(new He(t,n))})},ze.subscribeOn=function(t){var e=this;return new on(function(n){var r=new we,i=new ge;return i.setDisposable(r),r.setDisposable(t.schedule(function(){i.setDisposable(new w(t,e.subscribe(n)))})),i})};var Qe=$e.fromPromise=function(t){return new on(function(e){t.then(function(t){e.onNext(t),e.onCompleted()},function(t){e.onError(t)})})};ze.toPromise=function(t){if(t||(t=O.config.Promise),!t)throw Error("Promise type not provided nor in Rx.config.Promise");var e=this;return new t(function(t,n){var r,i=!1;e.subscribe(function(t){r=t,i=!0},function(t){n(t)},function(){i&&t(r)})})},$e.create=$e.createWithDisposable=function(t){return new on(t)},$e.defer=function(t){return new on(function(e){var n;try{n=t()}catch(r){return Ye(r).subscribe(e)}return n.subscribe(e)})};var Ge=$e.empty=function(t){return t||(t=Se),new on(function(e){return t.schedule(function(){e.onCompleted()})})},Je=$e.fromArray=function(t,e){return e||(e=_e),new on(function(n){var r=0;return e.scheduleRecursive(function(e){t.length>r?(n.onNext(t[r++]),e()):n.onCompleted()})})};$e.fromIterable=function(e,n){return n||(n=_e),new on(function(r){var i;try{i=e[P]()}catch(o){return r.onError(o),t}return n.scheduleRecursive(function(e){var n;try{n=i.next()}catch(o){return r.onError(o),t}n.done?r.onCompleted():(r.onNext(n.value),e())})})},$e.generate=function(e,n,r,i,o){return o||(o=_e),new on(function(s){var u=!0,c=e;return o.scheduleRecursive(function(e){var o,a;try{u?u=!1:c=r(c),o=n(c),o&&(a=i(c))}catch(h){return s.onError(h),t}o?(s.onNext(a),e()):s.onCompleted()})})};var Ke=$e.never=function(){return new on(function(){return me})};$e.range=function(t,e,n){return n||(n=_e),new on(function(r){return n.scheduleRecursiveWithState(0,function(n,i){e>n?(r.onNext(t+n),i(n+1)):r.onCompleted()})})},$e.repeat=function(t,e,n){return n||(n=_e),null==e&&(e=-1),Xe(t,n).repeat(e)};var Xe=$e["return"]=$e.returnValue=function(t,e){return e||(e=Se),new on(function(n){return e.schedule(function(){n.onNext(t),n.onCompleted()})})},Ye=$e["throw"]=$e.throwException=function(t,e){return e||(e=Se),new on(function(n){return e.schedule(function(){n.onError(t)})})};$e.using=function(t,e){return new on(function(n){var r,i,o=me;try{r=t(),r&&(o=r),i=e(r)}catch(s){return new pe(Ye(s).subscribe(n),o)}return new pe(i.subscribe(n),o)})},ze.amb=function(t){var e=this;return new on(function(n){function r(){o||(o=s,a.dispose())}function i(){o||(o=u,c.dispose())}var o,s="L",u="R",c=new we,a=new we;return c.setDisposable(e.subscribe(function(t){r(),o===s&&n.onNext(t)},function(t){r(),o===s&&n.onError(t)},function(){r(),o===s&&n.onCompleted()})),a.setDisposable(t.subscribe(function(t){i(),o===u&&n.onNext(t)},function(t){i(),o===u&&n.onError(t)},function(){i(),o===u&&n.onCompleted()})),new pe(c,a)})},$e.amb=function(){function t(t,e){return t.amb(e)}for(var e=Ke(),n=m(arguments,0),r=0,i=n.length;i>r;r++)e=t(e,n[r]);return e},ze["catch"]=ze.catchException=function(t){return"function"==typeof t?g(this,t):Ze([this,t])};var Ze=$e.catchException=$e["catch"]=function(){var t=m(arguments,0);return Me(t).catchException()};ze.combineLatest=function(){var t=ie.call(arguments);return Array.isArray(t[0])?t[0].unshift(this):t.unshift(this),tn.apply(this,t)};var tn=$e.combineLatest=function(){var e=ie.call(arguments),r=e.pop();return Array.isArray(e[0])&&(e=e[0]),new on(function(i){function o(e){var o;if(a[e]=!0,h||(h=a.every(n))){try{o=r.apply(null,f)}catch(s){return i.onError(s),t}i.onNext(o)}else l.filter(function(t,n){return n!==e}).every(n)&&i.onCompleted()}function s(t){l[t]=!0,l.every(n)&&i.onCompleted()}for(var u=function(){return!1},c=e.length,a=y(c,u),h=!1,l=y(c,u),f=Array(c),p=Array(c),d=0;c>d;d++)(function(t){p[t]=new we,p[t].setDisposable(e[t].subscribe(function(e){f[t]=e,o(t)},i.onError.bind(i),function(){s(t)}))})(d);return new pe(p)})};ze.concat=function(){var t=ie.call(arguments,0);return t.unshift(this),en.apply(this,t)};var en=$e.concat=function(){var t=m(arguments,0);return Me(t).concat()};ze.concatObservable=ze.concatAll=function(){return this.merge(1)},ze.merge=function(t){if("number"!=typeof t)return nn(this,t);var e=this;return new on(function(n){var r=0,i=new pe,o=!1,s=[],c=function(t){var e=new we;i.add(e),u(t)&&(t=Qe(t)),e.setDisposable(t.subscribe(n.onNext.bind(n),n.onError.bind(n),function(){var t;i.remove(e),s.length>0?(t=s.shift(),c(t)):(r--,o&&0===r&&n.onCompleted())}))};return i.add(e.subscribe(function(e){t>r?(r++,c(e)):s.push(e)},n.onError.bind(n),function(){o=!0,0===r&&n.onCompleted()})),i})};var nn=$e.merge=function(){var t,e;return arguments[0]?arguments[0].now?(t=arguments[0],e=ie.call(arguments,1)):(t=Se,e=ie.call(arguments,0)):(t=Se,e=ie.call(arguments,1)),Array.isArray(e[0])&&(e=e[0]),Je(e,t).mergeObservable()};ze.mergeObservable=ze.mergeAll=function(){var t=this;return new on(function(e){var n=new pe,r=!1,i=new we;return n.add(i),i.setDisposable(t.subscribe(function(t){var i=new we;n.add(i),u(t)&&(t=Qe(t)),i.setDisposable(t.subscribe(function(t){e.onNext(t)},e.onError.bind(e),function(){n.remove(i),r&&1===n.length&&e.onCompleted()}))},e.onError.bind(e),function(){r=!0,1===n.length&&e.onCompleted()})),n})},ze.onErrorResumeNext=function(t){if(!t)throw Error("Second observable is required");return rn([this,t])};var rn=$e.onErrorResumeNext=function(){var t=m(arguments,0);return new on(function(e){var n=0,r=new ge,i=Se.scheduleRecursive(function(i){var o,s;t.length>n?(o=t[n++],s=new we,r.setDisposable(s),s.setDisposable(o.subscribe(e.onNext.bind(e),function(){i()},function(){i()}))):e.onCompleted()});return new pe(r,i)})};ze.skipUntil=function(t){var e=this;return new on(function(n){var r=!1,i=new pe(e.subscribe(function(t){r&&n.onNext(t)},n.onError.bind(n),function(){r&&n.onCompleted()})),o=new we;return i.add(o),o.setDisposable(t.subscribe(function(){r=!0,o.dispose()},n.onError.bind(n),function(){o.dispose()})),i})},ze["switch"]=ze.switchLatest=function(){var t=this;return new on(function(e){var n=!1,r=new ge,i=!1,o=0,s=t.subscribe(function(t){var s=new we,c=++o;n=!0,r.setDisposable(s),u(t)&&(t=Qe(t)),s.setDisposable(t.subscribe(function(t){o===c&&e.onNext(t)},function(t){o===c&&e.onError(t)},function(){o===c&&(n=!1,i&&e.onCompleted())}))},e.onError.bind(e),function(){i=!0,n||e.onCompleted()});return new pe(s,r)})},ze.takeUntil=function(t){var n=this;return new on(function(r){return new pe(n.subscribe(r),t.subscribe(r.onCompleted.bind(r),r.onError.bind(r),e))})},ze.zip=function(){if(Array.isArray(arguments[0]))return E.apply(this,arguments);var e=this,r=ie.call(arguments),i=r.pop();return r.unshift(e),new on(function(o){function s(t){a[t]=!0,a.every(function(t){return t})&&o.onCompleted()}for(var u=r.length,c=y(u,function(){return[]}),a=y(u,function(){return!1}),h=function(r){var s,u;if(c.every(function(t){return t.length>0})){try{u=c.map(function(t){return t.shift()}),s=i.apply(e,u)}catch(h){return o.onError(h),t}o.onNext(s)}else a.filter(function(t,e){return e!==r}).every(n)&&o.onCompleted()},l=Array(u),f=0;u>f;f++)(function(t){l[t]=new we,l[t].setDisposable(r[t].subscribe(function(e){c[t].push(e),h(t)},o.onError.bind(o),function(){s(t)}))})(f);return new pe(l)})},$e.zip=function(){var t=ie.call(arguments,0),e=t.shift();return e.zip.apply(e,t)},$e.zipArray=function(){var e=m(arguments,0);return new on(function(r){function i(e){if(u.every(function(t){return t.length>0})){var i=u.map(function(t){return t.shift()});r.onNext(i)}else if(c.filter(function(t,n){return n!==e}).every(n))return r.onCompleted(),t}function o(e){return c[e]=!0,c.every(n)?(r.onCompleted(),t):t}for(var s=e.length,u=y(s,function(){return[]}),c=y(s,function(){return!1}),a=Array(s),h=0;s>h;h++)(function(t){a[t]=new we,a[t].setDisposable(e[t].subscribe(function(e){u[t].push(e),i(t)},r.onError.bind(r),function(){o(t)}))})(h);var l=new pe(a);return l.add(ve(function(){for(var t=0,e=u.length;e>t;t++)u[t]=[]
2
+ })),l})},ze.asObservable=function(){var t=this;return new on(function(e){return t.subscribe(e)})},ze.bufferWithCount=function(t,e){return 1===arguments.length&&(e=t),this.windowWithCount(t,e).selectMany(function(t){return t.toArray()}).where(function(t){return t.length>0})},ze.dematerialize=function(){var t=this;return new on(function(e){return t.subscribe(function(t){return t.accept(e)},e.onError.bind(e),e.onCompleted.bind(e))})},ze.distinctUntilChanged=function(e,i){var o=this;return e||(e=n),i||(i=r),new on(function(n){var r,s=!1;return o.subscribe(function(o){var u,c=!1;try{u=e(o)}catch(a){return n.onError(a),t}if(s)try{c=i(r,u)}catch(a){return n.onError(a),t}s&&c||(s=!0,r=u,n.onNext(o))},n.onError.bind(n),n.onCompleted.bind(n))})},ze["do"]=ze.doAction=function(t,e,n){var r,i=this;return"function"==typeof t?r=t:(r=t.onNext.bind(t),e=t.onError.bind(t),n=t.onCompleted.bind(t)),new on(function(t){return i.subscribe(function(e){try{r(e)}catch(n){t.onError(n)}t.onNext(e)},function(n){if(e){try{e(n)}catch(r){t.onError(r)}t.onError(n)}else t.onError(n)},function(){if(n){try{n()}catch(e){t.onError(e)}t.onCompleted()}else t.onCompleted()})})},ze["finally"]=ze.finallyAction=function(t){var e=this;return new on(function(n){var r=e.subscribe(n);return ve(function(){try{r.dispose()}catch(e){throw e}finally{t()}})})},ze.ignoreElements=function(){var t=this;return new on(function(n){return t.subscribe(e,n.onError.bind(n),n.onCompleted.bind(n))})},ze.materialize=function(){var t=this;return new on(function(e){return t.subscribe(function(t){e.onNext(We(t))},function(t){e.onNext(je(t)),e.onCompleted()},function(){e.onNext(ke()),e.onCompleted()})})},ze.repeat=function(t){return Te(this,t).concat()},ze.retry=function(t){return Te(this,t).catchException()},ze.scan=function(){var e,n,r=!1,i=this;return 2===arguments.length?(r=!0,e=arguments[0],n=arguments[1]):n=arguments[0],new on(function(o){var s,u,c;return i.subscribe(function(i){try{c||(c=!0),s?u=n(u,i):(u=r?n(e,i):i,s=!0)}catch(a){return o.onError(a),t}o.onNext(u)},o.onError.bind(o),function(){!c&&r&&o.onNext(e),o.onCompleted()})})},ze.skipLast=function(t){var e=this;return new on(function(n){var r=[];return e.subscribe(function(e){r.push(e),r.length>t&&n.onNext(r.shift())},n.onError.bind(n),n.onCompleted.bind(n))})},ze.startWith=function(){var t,e,n=0;return arguments.length&&"now"in Object(arguments[0])?(e=arguments[0],n=1):e=Se,t=ie.call(arguments,n),Me([Je(t,e),this]).concat()},ze.takeLast=function(t,e){return this.takeLastBuffer(t).selectMany(function(t){return Je(t,e)})},ze.takeLastBuffer=function(t){var e=this;return new on(function(n){var r=[];return e.subscribe(function(e){r.push(e),r.length>t&&r.shift()},n.onError.bind(n),function(){n.onNext(r),n.onCompleted()})})},ze.windowWithCount=function(t,e){var n=this;if(0>=t)throw Error(j);if(1===arguments.length&&(e=t),0>=e)throw Error(j);return new on(function(r){var i=new we,o=new Ee(i),s=0,u=[],c=function(){var t=new an;u.push(t),r.onNext(ue(t,o))};return c(),i.setDisposable(n.subscribe(function(n){for(var r,i=0,o=u.length;o>i;i++)u[i].onNext(n);var a=s-t+1;a>=0&&0===a%e&&(r=u.shift(),r.onCompleted()),s++,0===s%e&&c()},function(t){for(;u.length>0;)u.shift().onError(t);r.onError(t)},function(){for(;u.length>0;)u.shift().onCompleted();r.onCompleted()})),o})},ze.defaultIfEmpty=function(e){var n=this;return e===t&&(e=null),new on(function(t){var r=!1;return n.subscribe(function(e){r=!0,t.onNext(e)},t.onError.bind(t),function(){r||t.onNext(e),t.onCompleted()})})},ze.distinct=function(e,r){var i=this;return e||(e=n),r||(r=o),new on(function(n){var o={};return i.subscribe(function(i){var s,u,c,a=!1;try{s=e(i),u=r(s)}catch(h){return n.onError(h),t}for(c in o)if(u===c){a=!0;break}a||(o[u]=null,n.onNext(i))},n.onError.bind(n),n.onCompleted.bind(n))})},ze.groupBy=function(t,e,n){return this.groupByUntil(t,e,function(){return Ke()},n)},ze.groupByUntil=function(r,i,s,u){var c=this;return i||(i=n),u||(u=o),new on(function(n){var o={},a=new pe,h=new Ee(a);return a.add(c.subscribe(function(c){var l,f,p,d,b,v,m,y,w,g;try{v=r(c),m=u(v)}catch(E){for(g in o)o[g].onError(E);return n.onError(E),t}d=!1;try{w=o[m],w||(w=new an,o[m]=w,d=!0)}catch(E){for(g in o)o[g].onError(E);return n.onError(E),t}if(d){b=new un(v,w,h),f=new un(v,w);try{l=s(f)}catch(E){for(g in o)o[g].onError(E);return n.onError(E),t}n.onNext(b),y=new we,a.add(y);var x=function(){m in o&&(delete o[m],w.onCompleted()),a.remove(y)};y.setDisposable(l.take(1).subscribe(e,function(t){for(g in o)o[g].onError(t);n.onError(t)},function(){x()}))}try{p=i(c)}catch(E){for(g in o)o[g].onError(E);return n.onError(E),t}w.onNext(p)},function(t){for(var e in o)o[e].onError(t);n.onError(t)},function(){for(var t in o)o[t].onCompleted();n.onCompleted()})),h})},ze.select=ze.map=function(e,n){var r=this;return new on(function(i){var o=0;return r.subscribe(function(s){var u;try{u=e.call(n,s,o++,r)}catch(c){return i.onError(c),t}i.onNext(u)},i.onError.bind(i),i.onCompleted.bind(i))})},ze.pluck=function(t){return this.select(function(e){return e[t]})},ze.selectMany=ze.flatMap=function(t,e){return e?this.selectMany(function(n,r){var i=t(n,r),o=u(i)?Qe(i):i;return o.select(function(t){return e(n,t,r)})}):"function"==typeof t?x.call(this,t):x.call(this,function(){return t})},ze.selectSwitch=ze.flatMapLatest=function(t,e){return this.select(t,e).switchLatest()},ze.skip=function(t){if(0>t)throw Error(j);var e=this;return new on(function(n){var r=t;return e.subscribe(function(t){0>=r?n.onNext(t):r--},n.onError.bind(n),n.onCompleted.bind(n))})},ze.skipWhile=function(e,n){var r=this;return new on(function(i){var o=0,s=!1;return r.subscribe(function(u){if(!s)try{s=!e.call(n,u,o++,r)}catch(c){return i.onError(c),t}s&&i.onNext(u)},i.onError.bind(i),i.onCompleted.bind(i))})},ze.take=function(t,e){if(0>t)throw Error(j);if(0===t)return Ge(e);var n=this;return new on(function(e){var r=t;return n.subscribe(function(t){r>0&&(r--,e.onNext(t),0===r&&e.onCompleted())},e.onError.bind(e),e.onCompleted.bind(e))})},ze.takeWhile=function(e,n){var r=this;return new on(function(i){var o=0,s=!0;return r.subscribe(function(u){if(s){try{s=e.call(n,u,o++,r)}catch(c){return i.onError(c),t}s?i.onNext(u):i.onCompleted()}},i.onError.bind(i),i.onCompleted.bind(i))})},ze.where=ze.filter=function(e,n){var r=this;return new on(function(i){var o=0;return r.subscribe(function(s){var u;try{u=e.call(n,s,o++,r)}catch(c){return i.onError(c),t}u&&i.onNext(s)},i.onError.bind(i),i.onCompleted.bind(i))})};var on=O.AnonymousObservable=function(e){function n(e){return e===t?e=me:"function"==typeof e&&(e=ve(e)),e}function r(i){function o(t){var e=new sn(t);if(_e.scheduleRequired())_e.schedule(function(){try{e.setDisposable(n(i(e)))}catch(t){if(!e.fail(t))throw t}});else try{e.setDisposable(n(i(e)))}catch(r){if(!e.fail(r))throw r}return e}return this instanceof r?(e.call(this,o),t):new r(i)}return oe(r,e),r}($e),sn=function(t){function e(e){t.call(this),this.observer=e,this.m=new we}oe(e,t);var n=e.prototype;return n.next=function(t){var e=!1;try{this.observer.onNext(t),e=!0}catch(n){throw n}finally{e||this.dispose()}},n.error=function(t){try{this.observer.onError(t)}catch(e){throw e}finally{this.dispose()}},n.completed=function(){try{this.observer.onCompleted()}catch(t){throw t}finally{this.dispose()}},n.setDisposable=function(t){this.m.setDisposable(t)},n.getDisposable=function(){return this.m.getDisposable()},n.disposable=function(t){return arguments.length?this.getDisposable():setDisposable(t)},n.dispose=function(){t.prototype.dispose.call(this),this.m.dispose()},e}(Ve),un=function(t){function e(t){return this.underlyingObservable.subscribe(t)}function n(n,r,i){t.call(this,e),this.key=n,this.underlyingObservable=i?new on(function(t){return new pe(i.getDisposable(),r.subscribe(t))}):r}return oe(n,t),n}($e),cn=function(t,e){this.subject=t,this.observer=e};cn.prototype.dispose=function(){if(!this.subject.isDisposed&&null!==this.observer){var t=this.subject.observers.indexOf(this.observer);this.subject.observers.splice(t,1),this.observer=null}};var an=O.Subject=function(t){function e(t){return c.call(this),this.isStopped?this.exception?(t.onError(this.exception),me):(t.onCompleted(),me):(this.observers.push(t),new cn(this,t))}function n(){t.call(this,e),this.isDisposed=!1,this.isStopped=!1,this.observers=[]}return oe(n,t),se(n.prototype,Le,{hasObservers:function(){return this.observers.length>0},onCompleted:function(){if(c.call(this),!this.isStopped){var t=this.observers.slice(0);this.isStopped=!0;for(var e=0,n=t.length;n>e;e++)t[e].onCompleted();this.observers=[]}},onError:function(t){if(c.call(this),!this.isStopped){var e=this.observers.slice(0);this.isStopped=!0,this.exception=t;for(var n=0,r=e.length;r>n;n++)e[n].onError(t);this.observers=[]}},onNext:function(t){if(c.call(this),!this.isStopped)for(var e=this.observers.slice(0),n=0,r=e.length;r>n;n++)e[n].onNext(t)},dispose:function(){this.isDisposed=!0,this.observers=null}}),n.create=function(t,e){return new hn(t,e)},n}($e);O.AsyncSubject=function(t){function e(t){if(c.call(this),!this.isStopped)return this.observers.push(t),new cn(this,t);var e=this.exception,n=this.hasValue,r=this.value;return e?t.onError(e):n?(t.onNext(r),t.onCompleted()):t.onCompleted(),me}function n(){t.call(this,e),this.isDisposed=!1,this.isStopped=!1,this.value=null,this.hasValue=!1,this.observers=[],this.exception=null}return oe(n,t),se(n.prototype,Le,{hasObservers:function(){return c.call(this),this.observers.length>0},onCompleted:function(){var t,e,n;if(c.call(this),!this.isStopped){this.isStopped=!0;var r=this.observers.slice(0),i=this.value,o=this.hasValue;if(o)for(e=0,n=r.length;n>e;e++)t=r[e],t.onNext(i),t.onCompleted();else for(e=0,n=r.length;n>e;e++)r[e].onCompleted();this.observers=[]}},onError:function(t){if(c.call(this),!this.isStopped){var e=this.observers.slice(0);this.isStopped=!0,this.exception=t;for(var n=0,r=e.length;r>n;n++)e[n].onError(t);this.observers=[]}},onNext:function(t){c.call(this),this.isStopped||(this.value=t,this.hasValue=!0)},dispose:function(){this.isDisposed=!0,this.observers=null,this.exception=null,this.value=null}}),n}($e);var hn=function(t){function e(t){return this.observable.subscribe(t)}function n(n,r){t.call(this,e),this.observer=n,this.observable=r}return oe(n,t),se(n.prototype,Le,{onCompleted:function(){this.observer.onCompleted()},onError:function(t){this.observer.onError(t)},onNext:function(t){this.observer.onNext(t)}}),n}($e);"function"==typeof define&&"object"==typeof define.amd&&define.amd?(D.Rx=O,define(function(){return O})):A&&S?_?(S.exports=O).Rx=O:A.Rx=O:D.Rx=O}).call(this);