{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "OuterSubscriber",
            "range": [
              9,
              24
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 24
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "OuterSubscriber",
            "range": [
              9,
              24
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 24
              }
            }
          },
          "range": [
            9,
            24
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 24
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../OuterSubscriber",
        "raw": "'../OuterSubscriber'",
        "range": [
          32,
          52
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 32
          },
          "end": {
            "line": 1,
            "column": 52
          }
        }
      },
      "range": [
        0,
        53
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 53
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "subscribeToResult",
            "range": [
              63,
              80
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 26
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "subscribeToResult",
            "range": [
              63,
              80
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 26
              }
            }
          },
          "range": [
            63,
            80
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 9
            },
            "end": {
              "line": 2,
              "column": 26
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../util/subscribeToResult",
        "raw": "'../util/subscribeToResult'",
        "range": [
          88,
          115
        ],
        "loc": {
          "start": {
            "line": 2,
            "column": 34
          },
          "end": {
            "line": 2,
            "column": 61
          }
        }
      },
      "range": [
        54,
        116
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 62
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Set",
            "range": [
              126,
              129
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 9
              },
              "end": {
                "line": 3,
                "column": 12
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "Set",
            "range": [
              126,
              129
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 9
              },
              "end": {
                "line": 3,
                "column": 12
              }
            }
          },
          "range": [
            126,
            129
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 9
            },
            "end": {
              "line": 3,
              "column": 12
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../util/Set",
        "raw": "'../util/Set'",
        "range": [
          137,
          150
        ],
        "loc": {
          "start": {
            "line": 3,
            "column": 20
          },
          "end": {
            "line": 3,
            "column": 33
          }
        }
      },
      "range": [
        117,
        151
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 3,
          "column": 34
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from previous items.\n * If a keySelector function is provided, then it will project each value from the source observable into a new value that it will\n * check for equality with previously projected values. If a keySelector function is not provided, it will use each value from the\n * source observable directly with an equality check against previous values.\n * In JavaScript runtimes that support `Set`, this operator will use a `Set` to improve performance of the distinct value checking.\n * In other runtimes, this operator will use a minimal implementation of `Set` that relies on an `Array` and `indexOf` under the\n * hood, so performance will degrade as more values are checked for distinction. Even in newer browsers, a long-running `distinct`\n * use might result in memory leaks. To help alleviate this in some scenarios, an optional `flushes` parameter is also provided so\n * that the internal `Set` can be \"flushed\", basically clearing it of values.\n * @param {function} [keySelector] optional function to select which value you want to check as distinct.\n * @param {Observable} [flushes] optional Observable for flushing the internal HashSet of the operator.\n * @return {Observable} an Observable that emits items from the source Observable with distinct values.\n * @method distinct\n * @owner Observable\n ",
          "range": [
            152,
            1587
          ],
          "loc": {
            "start": {
              "line": 4,
              "column": 0
            },
            "end": {
              "line": 19,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "distinct",
          "range": [
            1604,
            1612
          ],
          "loc": {
            "start": {
              "line": 20,
              "column": 16
            },
            "end": {
              "line": 20,
              "column": 24
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "keySelector",
            "range": [
              1613,
              1624
            ],
            "loc": {
              "start": {
                "line": 20,
                "column": 25
              },
              "end": {
                "line": 20,
                "column": 36
              }
            }
          },
          {
            "type": "Identifier",
            "name": "flushes",
            "range": [
              1626,
              1633
            ],
            "loc": {
              "start": {
                "line": 20,
                "column": 38
              },
              "end": {
                "line": 20,
                "column": 45
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1648,
                      1652
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 11
                      },
                      "end": {
                        "line": 21,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1653,
                      1657
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 16
                      },
                      "end": {
                        "line": 21,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1648,
                    1657
                  ],
                  "loc": {
                    "start": {
                      "line": 21,
                      "column": 11
                    },
                    "end": {
                      "line": 21,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "DistinctOperator",
                      "range": [
                        1662,
                        1678
                      ],
                      "loc": {
                        "start": {
                          "line": 21,
                          "column": 25
                        },
                        "end": {
                          "line": 21,
                          "column": 41
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "keySelector",
                        "range": [
                          1679,
                          1690
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 42
                          },
                          "end": {
                            "line": 21,
                            "column": 53
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "flushes",
                        "range": [
                          1692,
                          1699
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 55
                          },
                          "end": {
                            "line": 21,
                            "column": 62
                          }
                        }
                      }
                    ],
                    "range": [
                      1658,
                      1700
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 21
                      },
                      "end": {
                        "line": 21,
                        "column": 63
                      }
                    }
                  }
                ],
                "range": [
                  1648,
                  1701
                ],
                "loc": {
                  "start": {
                    "line": 21,
                    "column": 11
                  },
                  "end": {
                    "line": 21,
                    "column": 64
                  }
                }
              },
              "range": [
                1641,
                1702
              ],
              "loc": {
                "start": {
                  "line": 21,
                  "column": 4
                },
                "end": {
                  "line": 21,
                  "column": 65
                }
              }
            }
          ],
          "range": [
            1635,
            1704
          ],
          "loc": {
            "start": {
              "line": 20,
              "column": 47
            },
            "end": {
              "line": 22,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1595,
          1704
        ],
        "loc": {
          "start": {
            "line": 20,
            "column": 7
          },
          "end": {
            "line": 22,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from previous items.\n * If a keySelector function is provided, then it will project each value from the source observable into a new value that it will\n * check for equality with previously projected values. If a keySelector function is not provided, it will use each value from the\n * source observable directly with an equality check against previous values.\n * In JavaScript runtimes that support `Set`, this operator will use a `Set` to improve performance of the distinct value checking.\n * In other runtimes, this operator will use a minimal implementation of `Set` that relies on an `Array` and `indexOf` under the\n * hood, so performance will degrade as more values are checked for distinction. Even in newer browsers, a long-running `distinct`\n * use might result in memory leaks. To help alleviate this in some scenarios, an optional `flushes` parameter is also provided so\n * that the internal `Set` can be \"flushed\", basically clearing it of values.\n * @param {function} [keySelector] optional function to select which value you want to check as distinct.\n * @param {Observable} [flushes] optional Observable for flushing the internal HashSet of the operator.\n * @return {Observable} an Observable that emits items from the source Observable with distinct values.\n * @method distinct\n * @owner Observable\n ",
            "range": [
              152,
              1587
            ],
            "loc": {
              "start": {
                "line": 4,
                "column": 0
              },
              "end": {
                "line": 19,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1588,
        1704
      ],
      "loc": {
        "start": {
          "line": 20,
          "column": 0
        },
        "end": {
          "line": 22,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from previous items.\n * If a keySelector function is provided, then it will project each value from the source observable into a new value that it will\n * check for equality with previously projected values. If a keySelector function is not provided, it will use each value from the\n * source observable directly with an equality check against previous values.\n * In JavaScript runtimes that support `Set`, this operator will use a `Set` to improve performance of the distinct value checking.\n * In other runtimes, this operator will use a minimal implementation of `Set` that relies on an `Array` and `indexOf` under the\n * hood, so performance will degrade as more values are checked for distinction. Even in newer browsers, a long-running `distinct`\n * use might result in memory leaks. To help alleviate this in some scenarios, an optional `flushes` parameter is also provided so\n * that the internal `Set` can be \"flushed\", basically clearing it of values.\n * @param {function} [keySelector] optional function to select which value you want to check as distinct.\n * @param {Observable} [flushes] optional Observable for flushing the internal HashSet of the operator.\n * @return {Observable} an Observable that emits items from the source Observable with distinct values.\n * @method distinct\n * @owner Observable\n ",
          "range": [
            152,
            1587
          ],
          "loc": {
            "start": {
              "line": 4,
              "column": 0
            },
            "end": {
              "line": 19,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "DistinctOperator",
            "range": [
              1709,
              1725
            ],
            "loc": {
              "start": {
                "line": 23,
                "column": 4
              },
              "end": {
                "line": 23,
                "column": 20
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "DistinctOperator",
                      "range": [
                        1756,
                        1772
                      ],
                      "loc": {
                        "start": {
                          "line": 24,
                          "column": 13
                        },
                        "end": {
                          "line": 24,
                          "column": 29
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "keySelector",
                        "range": [
                          1773,
                          1784
                        ],
                        "loc": {
                          "start": {
                            "line": 24,
                            "column": 30
                          },
                          "end": {
                            "line": 24,
                            "column": 41
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "flushes",
                        "range": [
                          1786,
                          1793
                        ],
                        "loc": {
                          "start": {
                            "line": 24,
                            "column": 43
                          },
                          "end": {
                            "line": 24,
                            "column": 50
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1805,
                                  1809
                                ],
                                "loc": {
                                  "start": {
                                    "line": 25,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 25,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "keySelector",
                                "range": [
                                  1810,
                                  1821
                                ],
                                "loc": {
                                  "start": {
                                    "line": 25,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 25,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                1805,
                                1821
                              ],
                              "loc": {
                                "start": {
                                  "line": 25,
                                  "column": 8
                                },
                                "end": {
                                  "line": 25,
                                  "column": 24
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "keySelector",
                              "range": [
                                1824,
                                1835
                              ],
                              "loc": {
                                "start": {
                                  "line": 25,
                                  "column": 27
                                },
                                "end": {
                                  "line": 25,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              1805,
                              1835
                            ],
                            "loc": {
                              "start": {
                                "line": 25,
                                "column": 8
                              },
                              "end": {
                                "line": 25,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            1805,
                            1836
                          ],
                          "loc": {
                            "start": {
                              "line": 25,
                              "column": 8
                            },
                            "end": {
                              "line": 25,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1845,
                                  1849
                                ],
                                "loc": {
                                  "start": {
                                    "line": 26,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 26,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "flushes",
                                "range": [
                                  1850,
                                  1857
                                ],
                                "loc": {
                                  "start": {
                                    "line": 26,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 26,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                1845,
                                1857
                              ],
                              "loc": {
                                "start": {
                                  "line": 26,
                                  "column": 8
                                },
                                "end": {
                                  "line": 26,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "flushes",
                              "range": [
                                1860,
                                1867
                              ],
                              "loc": {
                                "start": {
                                  "line": 26,
                                  "column": 23
                                },
                                "end": {
                                  "line": 26,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              1845,
                              1867
                            ],
                            "loc": {
                              "start": {
                                "line": 26,
                                "column": 8
                              },
                              "end": {
                                "line": 26,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            1845,
                            1868
                          ],
                          "loc": {
                            "start": {
                              "line": 26,
                              "column": 8
                            },
                            "end": {
                              "line": 26,
                              "column": 31
                            }
                          }
                        }
                      ],
                      "range": [
                        1795,
                        1874
                      ],
                      "loc": {
                        "start": {
                          "line": 24,
                          "column": 52
                        },
                        "end": {
                          "line": 27,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1747,
                      1874
                    ],
                    "loc": {
                      "start": {
                        "line": 24,
                        "column": 4
                      },
                      "end": {
                        "line": 27,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DistinctOperator",
                            "range": [
                              1879,
                              1895
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 4
                              },
                              "end": {
                                "line": 28,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1896,
                              1905
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 21
                              },
                              "end": {
                                "line": 28,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            1879,
                            1905
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 4
                            },
                            "end": {
                              "line": 28,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            1906,
                            1910
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 31
                            },
                            "end": {
                              "line": 28,
                              "column": 35
                            }
                          }
                        },
                        "range": [
                          1879,
                          1910
                        ],
                        "loc": {
                          "start": {
                            "line": 28,
                            "column": 4
                          },
                          "end": {
                            "line": 28,
                            "column": 35
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              1923,
                              1933
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 48
                              },
                              "end": {
                                "line": 28,
                                "column": 58
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              1935,
                              1941
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 60
                              },
                              "end": {
                                "line": 28,
                                "column": 66
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      1960,
                                      1966
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 29,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 29,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      1967,
                                      1977
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 29,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 29,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    1960,
                                    1977
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 29,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 29,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "DistinctSubscriber",
                                      "range": [
                                        1982,
                                        2000
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 29,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 29,
                                          "column": 55
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2001,
                                          2011
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 29,
                                            "column": 56
                                          },
                                          "end": {
                                            "line": 29,
                                            "column": 66
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2013,
                                            2017
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 68
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 72
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "keySelector",
                                          "range": [
                                            2018,
                                            2029
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 73
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 84
                                            }
                                          }
                                        },
                                        "range": [
                                          2013,
                                          2029
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 29,
                                            "column": 68
                                          },
                                          "end": {
                                            "line": 29,
                                            "column": 84
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2031,
                                            2035
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 86
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 90
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "flushes",
                                          "range": [
                                            2036,
                                            2043
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 91
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 98
                                            }
                                          }
                                        },
                                        "range": [
                                          2031,
                                          2043
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 29,
                                            "column": 86
                                          },
                                          "end": {
                                            "line": 29,
                                            "column": 98
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      1978,
                                      2044
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 29,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 29,
                                        "column": 99
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1960,
                                  2045
                                ],
                                "loc": {
                                  "start": {
                                    "line": 29,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 29,
                                    "column": 100
                                  }
                                }
                              },
                              "range": [
                                1953,
                                2046
                              ],
                              "loc": {
                                "start": {
                                  "line": 29,
                                  "column": 8
                                },
                                "end": {
                                  "line": 29,
                                  "column": 101
                                }
                              }
                            }
                          ],
                          "range": [
                            1943,
                            2052
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 68
                            },
                            "end": {
                              "line": 30,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1913,
                          2052
                        ],
                        "loc": {
                          "start": {
                            "line": 28,
                            "column": 38
                          },
                          "end": {
                            "line": 30,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1879,
                        2052
                      ],
                      "loc": {
                        "start": {
                          "line": 28,
                          "column": 4
                        },
                        "end": {
                          "line": 30,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1879,
                      2053
                    ],
                    "loc": {
                      "start": {
                        "line": 28,
                        "column": 4
                      },
                      "end": {
                        "line": 30,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "DistinctOperator",
                      "range": [
                        2065,
                        2081
                      ],
                      "loc": {
                        "start": {
                          "line": 31,
                          "column": 11
                        },
                        "end": {
                          "line": 31,
                          "column": 27
                        }
                      }
                    },
                    "range": [
                      2058,
                      2082
                    ],
                    "loc": {
                      "start": {
                        "line": 31,
                        "column": 4
                      },
                      "end": {
                        "line": 31,
                        "column": 28
                      }
                    }
                  }
                ],
                "range": [
                  1741,
                  2084
                ],
                "loc": {
                  "start": {
                    "line": 23,
                    "column": 36
                  },
                  "end": {
                    "line": 32,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1729,
                2084
              ],
              "loc": {
                "start": {
                  "line": 23,
                  "column": 24
                },
                "end": {
                  "line": 32,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              1729,
              2086
            ],
            "loc": {
              "start": {
                "line": 23,
                "column": 24
              },
              "end": {
                "line": 32,
                "column": 3
              }
            }
          },
          "range": [
            1709,
            2087
          ],
          "loc": {
            "start": {
              "line": 23,
              "column": 4
            },
            "end": {
              "line": 32,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1705,
        2088
      ],
      "loc": {
        "start": {
          "line": 23,
          "column": 0
        },
        "end": {
          "line": 32,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2089,
            2180
          ],
          "loc": {
            "start": {
              "line": 33,
              "column": 0
            },
            "end": {
              "line": 37,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "VariableDeclaration",
        "declarations": [
          {
            "type": "VariableDeclarator",
            "id": {
              "type": "Identifier",
              "name": "DistinctSubscriber",
              "range": [
                2192,
                2210
              ],
              "loc": {
                "start": {
                  "line": 38,
                  "column": 11
                },
                "end": {
                  "line": 38,
                  "column": 29
                }
              }
            },
            "init": {
              "type": "CallExpression",
              "callee": {
                "type": "FunctionExpression",
                "id": null,
                "params": [
                  {
                    "type": "Identifier",
                    "name": "_super",
                    "range": [
                      2224,
                      2230
                    ],
                    "loc": {
                      "start": {
                        "line": 38,
                        "column": 43
                      },
                      "end": {
                        "line": 38,
                        "column": 49
                      }
                    }
                  }
                ],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "Identifier",
                          "name": "__extends",
                          "range": [
                            2238,
                            2247
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 4
                            },
                            "end": {
                              "line": 39,
                              "column": 13
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "Identifier",
                            "name": "DistinctSubscriber",
                            "range": [
                              2248,
                              2266
                            ],
                            "loc": {
                              "start": {
                                "line": 39,
                                "column": 14
                              },
                              "end": {
                                "line": 39,
                                "column": 32
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "_super",
                            "range": [
                              2268,
                              2274
                            ],
                            "loc": {
                              "start": {
                                "line": 39,
                                "column": 34
                              },
                              "end": {
                                "line": 39,
                                "column": 40
                              }
                            }
                          }
                        ],
                        "range": [
                          2238,
                          2275
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 4
                          },
                          "end": {
                            "line": 39,
                            "column": 41
                          }
                        }
                      },
                      "range": [
                        2238,
                        2276
                      ],
                      "loc": {
                        "start": {
                          "line": 39,
                          "column": 4
                        },
                        "end": {
                          "line": 39,
                          "column": 42
                        }
                      }
                    },
                    {
                      "type": "FunctionDeclaration",
                      "id": {
                        "type": "Identifier",
                        "name": "DistinctSubscriber",
                        "range": [
                          2290,
                          2308
                        ],
                        "loc": {
                          "start": {
                            "line": 40,
                            "column": 13
                          },
                          "end": {
                            "line": 40,
                            "column": 31
                          }
                        }
                      },
                      "params": [
                        {
                          "type": "Identifier",
                          "name": "destination",
                          "range": [
                            2309,
                            2320
                          ],
                          "loc": {
                            "start": {
                              "line": 40,
                              "column": 32
                            },
                            "end": {
                              "line": 40,
                              "column": 43
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "keySelector",
                          "range": [
                            2322,
                            2333
                          ],
                          "loc": {
                            "start": {
                              "line": 40,
                              "column": 45
                            },
                            "end": {
                              "line": 40,
                              "column": 56
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "flushes",
                          "range": [
                            2335,
                            2342
                          ],
                          "loc": {
                            "start": {
                              "line": 40,
                              "column": 58
                            },
                            "end": {
                              "line": 40,
                              "column": 65
                            }
                          }
                        }
                      ],
                      "body": {
                        "type": "BlockStatement",
                        "body": [
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "CallExpression",
                              "callee": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "Identifier",
                                  "name": "_super",
                                  "range": [
                                    2354,
                                    2360
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 41,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 41,
                                      "column": 14
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "call",
                                  "range": [
                                    2361,
                                    2365
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 41,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 41,
                                      "column": 19
                                    }
                                  }
                                },
                                "range": [
                                  2354,
                                  2365
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 41,
                                    "column": 19
                                  }
                                }
                              },
                              "arguments": [
                                {
                                  "type": "ThisExpression",
                                  "range": [
                                    2366,
                                    2370
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 41,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 41,
                                      "column": 24
                                    }
                                  }
                                },
                                {
                                  "type": "Identifier",
                                  "name": "destination",
                                  "range": [
                                    2372,
                                    2383
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 41,
                                      "column": 26
                                    },
                                    "end": {
                                      "line": 41,
                                      "column": 37
                                    }
                                  }
                                }
                              ],
                              "range": [
                                2354,
                                2384
                              ],
                              "loc": {
                                "start": {
                                  "line": 41,
                                  "column": 8
                                },
                                "end": {
                                  "line": 41,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              2354,
                              2385
                            ],
                            "loc": {
                              "start": {
                                "line": 41,
                                "column": 8
                              },
                              "end": {
                                "line": 41,
                                "column": 39
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2394,
                                    2398
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 42,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 42,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "keySelector",
                                  "range": [
                                    2399,
                                    2410
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 42,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 42,
                                      "column": 24
                                    }
                                  }
                                },
                                "range": [
                                  2394,
                                  2410
                                ],
                                "loc": {
                                  "start": {
                                    "line": 42,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 42,
                                    "column": 24
                                  }
                                }
                              },
                              "right": {
                                "type": "Identifier",
                                "name": "keySelector",
                                "range": [
                                  2413,
                                  2424
                                ],
                                "loc": {
                                  "start": {
                                    "line": 42,
                                    "column": 27
                                  },
                                  "end": {
                                    "line": 42,
                                    "column": 38
                                  }
                                }
                              },
                              "range": [
                                2394,
                                2424
                              ],
                              "loc": {
                                "start": {
                                  "line": 42,
                                  "column": 8
                                },
                                "end": {
                                  "line": 42,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              2394,
                              2425
                            ],
                            "loc": {
                              "start": {
                                "line": 42,
                                "column": 8
                              },
                              "end": {
                                "line": 42,
                                "column": 39
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2434,
                                    2438
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 43,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 43,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "values",
                                  "range": [
                                    2439,
                                    2445
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 43,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 43,
                                      "column": 19
                                    }
                                  }
                                },
                                "range": [
                                  2434,
                                  2445
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 19
                                  }
                                }
                              },
                              "right": {
                                "type": "NewExpression",
                                "callee": {
                                  "type": "Identifier",
                                  "name": "Set",
                                  "range": [
                                    2452,
                                    2455
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 43,
                                      "column": 26
                                    },
                                    "end": {
                                      "line": 43,
                                      "column": 29
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  2448,
                                  2457
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 31
                                  }
                                }
                              },
                              "range": [
                                2434,
                                2457
                              ],
                              "loc": {
                                "start": {
                                  "line": 43,
                                  "column": 8
                                },
                                "end": {
                                  "line": 43,
                                  "column": 31
                                }
                              }
                            },
                            "range": [
                              2434,
                              2458
                            ],
                            "loc": {
                              "start": {
                                "line": 43,
                                "column": 8
                              },
                              "end": {
                                "line": 43,
                                "column": 32
                              }
                            }
                          },
                          {
                            "type": "IfStatement",
                            "test": {
                              "type": "Identifier",
                              "name": "flushes",
                              "range": [
                                2471,
                                2478
                              ],
                              "loc": {
                                "start": {
                                  "line": 44,
                                  "column": 12
                                },
                                "end": {
                                  "line": 44,
                                  "column": 19
                                }
                              }
                            },
                            "consequent": {
                              "type": "BlockStatement",
                              "body": [
                                {
                                  "type": "ExpressionStatement",
                                  "expression": {
                                    "type": "CallExpression",
                                    "callee": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          2494,
                                          2498
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 45,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 45,
                                            "column": 16
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "add",
                                        "range": [
                                          2499,
                                          2502
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 45,
                                            "column": 17
                                          },
                                          "end": {
                                            "line": 45,
                                            "column": 20
                                          }
                                        }
                                      },
                                      "range": [
                                        2494,
                                        2502
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 45,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 45,
                                          "column": 20
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "Identifier",
                                          "name": "subscribeToResult",
                                          "range": [
                                            2503,
                                            2520
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 45,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 45,
                                              "column": 38
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "ThisExpression",
                                            "range": [
                                              2521,
                                              2525
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 45,
                                                "column": 39
                                              },
                                              "end": {
                                                "line": 45,
                                                "column": 43
                                              }
                                            }
                                          },
                                          {
                                            "type": "Identifier",
                                            "name": "flushes",
                                            "range": [
                                              2527,
                                              2534
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 45,
                                                "column": 45
                                              },
                                              "end": {
                                                "line": 45,
                                                "column": 52
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2503,
                                          2535
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 45,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 45,
                                            "column": 53
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2494,
                                      2536
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 45,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 45,
                                        "column": 54
                                      }
                                    }
                                  },
                                  "range": [
                                    2494,
                                    2537
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 45,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 45,
                                      "column": 55
                                    }
                                  }
                                }
                              ],
                              "range": [
                                2480,
                                2547
                              ],
                              "loc": {
                                "start": {
                                  "line": 44,
                                  "column": 21
                                },
                                "end": {
                                  "line": 46,
                                  "column": 9
                                }
                              }
                            },
                            "alternate": null,
                            "range": [
                              2467,
                              2547
                            ],
                            "loc": {
                              "start": {
                                "line": 44,
                                "column": 8
                              },
                              "end": {
                                "line": 46,
                                "column": 9
                              }
                            }
                          }
                        ],
                        "range": [
                          2344,
                          2553
                        ],
                        "loc": {
                          "start": {
                            "line": 40,
                            "column": 67
                          },
                          "end": {
                            "line": 47,
                            "column": 5
                          }
                        }
                      },
                      "generator": false,
                      "expression": false,
                      "range": [
                        2281,
                        2553
                      ],
                      "loc": {
                        "start": {
                          "line": 40,
                          "column": 4
                        },
                        "end": {
                          "line": 47,
                          "column": 5
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "DistinctSubscriber",
                              "range": [
                                2558,
                                2576
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 4
                                },
                                "end": {
                                  "line": 48,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                2577,
                                2586
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 23
                                },
                                "end": {
                                  "line": 48,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              2558,
                              2586
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 4
                              },
                              "end": {
                                "line": 48,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "notifyNext",
                            "range": [
                              2587,
                              2597
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 33
                              },
                              "end": {
                                "line": 48,
                                "column": 43
                              }
                            }
                          },
                          "range": [
                            2558,
                            2597
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 4
                            },
                            "end": {
                              "line": 48,
                              "column": 43
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "outerValue",
                              "range": [
                                2610,
                                2620
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 56
                                },
                                "end": {
                                  "line": 48,
                                  "column": 66
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "innerValue",
                              "range": [
                                2622,
                                2632
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 68
                                },
                                "end": {
                                  "line": 48,
                                  "column": 78
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "outerIndex",
                              "range": [
                                2634,
                                2644
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 80
                                },
                                "end": {
                                  "line": 48,
                                  "column": 90
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "innerIndex",
                              "range": [
                                2646,
                                2656
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 92
                                },
                                "end": {
                                  "line": 48,
                                  "column": 102
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "innerSub",
                              "range": [
                                2658,
                                2666
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 104
                                },
                                "end": {
                                  "line": 48,
                                  "column": 112
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          2678,
                                          2682
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 49,
                                            "column": 8
                                          },
                                          "end": {
                                            "line": 49,
                                            "column": 12
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "values",
                                        "range": [
                                          2683,
                                          2689
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 49,
                                            "column": 13
                                          },
                                          "end": {
                                            "line": 49,
                                            "column": 19
                                          }
                                        }
                                      },
                                      "range": [
                                        2678,
                                        2689
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 49,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 49,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "clear",
                                      "range": [
                                        2690,
                                        2695
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 49,
                                          "column": 20
                                        },
                                        "end": {
                                          "line": 49,
                                          "column": 25
                                        }
                                      }
                                    },
                                    "range": [
                                      2678,
                                      2695
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 49,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 49,
                                        "column": 25
                                      }
                                    }
                                  },
                                  "arguments": [],
                                  "range": [
                                    2678,
                                    2697
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 49,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 49,
                                      "column": 27
                                    }
                                  }
                                },
                                "range": [
                                  2678,
                                  2698
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 28
                                  }
                                }
                              }
                            ],
                            "range": [
                              2668,
                              2704
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 114
                              },
                              "end": {
                                "line": 50,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            2600,
                            2704
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 46
                            },
                            "end": {
                              "line": 50,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          2558,
                          2704
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 4
                          },
                          "end": {
                            "line": 50,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2558,
                        2705
                      ],
                      "loc": {
                        "start": {
                          "line": 48,
                          "column": 4
                        },
                        "end": {
                          "line": 50,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "DistinctSubscriber",
                              "range": [
                                2710,
                                2728
                              ],
                              "loc": {
                                "start": {
                                  "line": 51,
                                  "column": 4
                                },
                                "end": {
                                  "line": 51,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                2729,
                                2738
                              ],
                              "loc": {
                                "start": {
                                  "line": 51,
                                  "column": 23
                                },
                                "end": {
                                  "line": 51,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              2710,
                              2738
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 4
                              },
                              "end": {
                                "line": 51,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "notifyError",
                            "range": [
                              2739,
                              2750
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 33
                              },
                              "end": {
                                "line": 51,
                                "column": 44
                              }
                            }
                          },
                          "range": [
                            2710,
                            2750
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 4
                            },
                            "end": {
                              "line": 51,
                              "column": 44
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "error",
                              "range": [
                                2763,
                                2768
                              ],
                              "loc": {
                                "start": {
                                  "line": 51,
                                  "column": 57
                                },
                                "end": {
                                  "line": 51,
                                  "column": 62
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "innerSub",
                              "range": [
                                2770,
                                2778
                              ],
                              "loc": {
                                "start": {
                                  "line": 51,
                                  "column": 64
                                },
                                "end": {
                                  "line": 51,
                                  "column": 72
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2790,
                                        2794
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 52,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 52,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "_error",
                                      "range": [
                                        2795,
                                        2801
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 52,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 52,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      2790,
                                      2801
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "arguments": [
                                    {
                                      "type": "Identifier",
                                      "name": "error",
                                      "range": [
                                        2802,
                                        2807
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 52,
                                          "column": 20
                                        },
                                        "end": {
                                          "line": 52,
                                          "column": 25
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    2790,
                                    2808
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 52,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 52,
                                      "column": 26
                                    }
                                  }
                                },
                                "range": [
                                  2790,
                                  2809
                                ],
                                "loc": {
                                  "start": {
                                    "line": 52,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 52,
                                    "column": 27
                                  }
                                }
                              }
                            ],
                            "range": [
                              2780,
                              2815
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 74
                              },
                              "end": {
                                "line": 53,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            2753,
                            2815
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 47
                            },
                            "end": {
                              "line": 53,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          2710,
                          2815
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 4
                          },
                          "end": {
                            "line": 53,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2710,
                        2816
                      ],
                      "loc": {
                        "start": {
                          "line": 51,
                          "column": 4
                        },
                        "end": {
                          "line": 53,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "DistinctSubscriber",
                              "range": [
                                2821,
                                2839
                              ],
                              "loc": {
                                "start": {
                                  "line": 54,
                                  "column": 4
                                },
                                "end": {
                                  "line": 54,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                2840,
                                2849
                              ],
                              "loc": {
                                "start": {
                                  "line": 54,
                                  "column": 23
                                },
                                "end": {
                                  "line": 54,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              2821,
                              2849
                            ],
                            "loc": {
                              "start": {
                                "line": 54,
                                "column": 4
                              },
                              "end": {
                                "line": 54,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_next",
                            "range": [
                              2850,
                              2855
                            ],
                            "loc": {
                              "start": {
                                "line": 54,
                                "column": 33
                              },
                              "end": {
                                "line": 54,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2821,
                            2855
                          ],
                          "loc": {
                            "start": {
                              "line": 54,
                              "column": 4
                            },
                            "end": {
                              "line": 54,
                              "column": 38
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "value",
                              "range": [
                                2868,
                                2873
                              ],
                              "loc": {
                                "start": {
                                  "line": 54,
                                  "column": 51
                                },
                                "end": {
                                  "line": 54,
                                  "column": 56
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "IfStatement",
                                "test": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2889,
                                      2893
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 55,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 55,
                                        "column": 16
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "keySelector",
                                    "range": [
                                      2894,
                                      2905
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 55,
                                        "column": 17
                                      },
                                      "end": {
                                        "line": 55,
                                        "column": 28
                                      }
                                    }
                                  },
                                  "range": [
                                    2889,
                                    2905
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 55,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 55,
                                      "column": 28
                                    }
                                  }
                                },
                                "consequent": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2921,
                                              2925
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 56,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 56,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "_useKeySelector",
                                            "range": [
                                              2926,
                                              2941
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 56,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 56,
                                                "column": 32
                                              }
                                            }
                                          },
                                          "range": [
                                            2921,
                                            2941
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 56,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 56,
                                              "column": 32
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              2942,
                                              2947
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 56,
                                                "column": 33
                                              },
                                              "end": {
                                                "line": 56,
                                                "column": 38
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2921,
                                          2948
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 56,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 56,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "range": [
                                        2921,
                                        2949
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 56,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 56,
                                          "column": 40
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    2907,
                                    2959
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 55,
                                      "column": 30
                                    },
                                    "end": {
                                      "line": 57,
                                      "column": 9
                                    }
                                  }
                                },
                                "alternate": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2987,
                                              2991
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 59,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 59,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "_finalizeNext",
                                            "range": [
                                              2992,
                                              3005
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 59,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 59,
                                                "column": 30
                                              }
                                            }
                                          },
                                          "range": [
                                            2987,
                                            3005
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 59,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 59,
                                              "column": 30
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              3006,
                                              3011
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 59,
                                                "column": 31
                                              },
                                              "end": {
                                                "line": 59,
                                                "column": 36
                                              }
                                            }
                                          },
                                          {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              3013,
                                              3018
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 59,
                                                "column": 38
                                              },
                                              "end": {
                                                "line": 59,
                                                "column": 43
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2987,
                                          3019
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 59,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 59,
                                            "column": 44
                                          }
                                        }
                                      },
                                      "range": [
                                        2987,
                                        3020
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 59,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 59,
                                          "column": 45
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    2973,
                                    3030
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 58,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 60,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  2885,
                                  3030
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 60,
                                    "column": 9
                                  }
                                }
                              }
                            ],
                            "range": [
                              2875,
                              3036
                            ],
                            "loc": {
                              "start": {
                                "line": 54,
                                "column": 58
                              },
                              "end": {
                                "line": 61,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            2858,
                            3036
                          ],
                          "loc": {
                            "start": {
                              "line": 54,
                              "column": 41
                            },
                            "end": {
                              "line": 61,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          2821,
                          3036
                        ],
                        "loc": {
                          "start": {
                            "line": 54,
                            "column": 4
                          },
                          "end": {
                            "line": 61,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2821,
                        3037
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 4
                        },
                        "end": {
                          "line": 61,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "DistinctSubscriber",
                              "range": [
                                3042,
                                3060
                              ],
                              "loc": {
                                "start": {
                                  "line": 62,
                                  "column": 4
                                },
                                "end": {
                                  "line": 62,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                3061,
                                3070
                              ],
                              "loc": {
                                "start": {
                                  "line": 62,
                                  "column": 23
                                },
                                "end": {
                                  "line": 62,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              3042,
                              3070
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 4
                              },
                              "end": {
                                "line": 62,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_useKeySelector",
                            "range": [
                              3071,
                              3086
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 33
                              },
                              "end": {
                                "line": 62,
                                "column": 48
                              }
                            }
                          },
                          "range": [
                            3042,
                            3086
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 4
                            },
                            "end": {
                              "line": 62,
                              "column": 48
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "value",
                              "range": [
                                3099,
                                3104
                              ],
                              "loc": {
                                "start": {
                                  "line": 62,
                                  "column": 61
                                },
                                "end": {
                                  "line": 62,
                                  "column": 66
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "VariableDeclaration",
                                "declarations": [
                                  {
                                    "type": "VariableDeclarator",
                                    "id": {
                                      "type": "Identifier",
                                      "name": "key",
                                      "range": [
                                        3120,
                                        3123
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 63,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 63,
                                          "column": 15
                                        }
                                      }
                                    },
                                    "init": null,
                                    "range": [
                                      3120,
                                      3123
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 63,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 63,
                                        "column": 15
                                      }
                                    }
                                  }
                                ],
                                "kind": "var",
                                "range": [
                                  3116,
                                  3124
                                ],
                                "loc": {
                                  "start": {
                                    "line": 63,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 63,
                                    "column": 16
                                  }
                                }
                              },
                              {
                                "type": "VariableDeclaration",
                                "declarations": [
                                  {
                                    "type": "VariableDeclarator",
                                    "id": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3137,
                                        3148
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 64,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 64,
                                          "column": 23
                                        }
                                      }
                                    },
                                    "init": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3151,
                                          3155
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 64,
                                            "column": 26
                                          },
                                          "end": {
                                            "line": 64,
                                            "column": 30
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "destination",
                                        "range": [
                                          3156,
                                          3167
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 64,
                                            "column": 31
                                          },
                                          "end": {
                                            "line": 64,
                                            "column": 42
                                          }
                                        }
                                      },
                                      "range": [
                                        3151,
                                        3167
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 64,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 64,
                                          "column": 42
                                        }
                                      }
                                    },
                                    "range": [
                                      3137,
                                      3167
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 64,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 64,
                                        "column": 42
                                      }
                                    }
                                  }
                                ],
                                "kind": "var",
                                "range": [
                                  3133,
                                  3168
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 43
                                  }
                                }
                              },
                              {
                                "type": "TryStatement",
                                "block": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "AssignmentExpression",
                                        "operator": "=",
                                        "left": {
                                          "type": "Identifier",
                                          "name": "key",
                                          "range": [
                                            3195,
                                            3198
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 66,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 66,
                                              "column": 15
                                            }
                                          }
                                        },
                                        "right": {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                3201,
                                                3205
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 66,
                                                  "column": 18
                                                },
                                                "end": {
                                                  "line": 66,
                                                  "column": 22
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "keySelector",
                                              "range": [
                                                3206,
                                                3217
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 66,
                                                  "column": 23
                                                },
                                                "end": {
                                                  "line": 66,
                                                  "column": 34
                                                }
                                              }
                                            },
                                            "range": [
                                              3201,
                                              3217
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 66,
                                                "column": 18
                                              },
                                              "end": {
                                                "line": 66,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "arguments": [
                                            {
                                              "type": "Identifier",
                                              "name": "value",
                                              "range": [
                                                3218,
                                                3223
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 66,
                                                  "column": 35
                                                },
                                                "end": {
                                                  "line": 66,
                                                  "column": 40
                                                }
                                              }
                                            }
                                          ],
                                          "range": [
                                            3201,
                                            3224
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 66,
                                              "column": 18
                                            },
                                            "end": {
                                              "line": 66,
                                              "column": 41
                                            }
                                          }
                                        },
                                        "range": [
                                          3195,
                                          3224
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 66,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 66,
                                            "column": 41
                                          }
                                        }
                                      },
                                      "range": [
                                        3195,
                                        3225
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 66,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 66,
                                          "column": 42
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3181,
                                    3235
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 65,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 67,
                                      "column": 9
                                    }
                                  }
                                },
                                "handler": {
                                  "type": "CatchClause",
                                  "param": {
                                    "type": "Identifier",
                                    "name": "err",
                                    "range": [
                                      3251,
                                      3254
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 68,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 68,
                                        "column": 18
                                      }
                                    }
                                  },
                                  "body": {
                                    "type": "BlockStatement",
                                    "body": [
                                      {
                                        "type": "ExpressionStatement",
                                        "expression": {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                3270,
                                                3281
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 23
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "error",
                                              "range": [
                                                3282,
                                                3287
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 24
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 29
                                                }
                                              }
                                            },
                                            "range": [
                                              3270,
                                              3287
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 69,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 69,
                                                "column": 29
                                              }
                                            }
                                          },
                                          "arguments": [
                                            {
                                              "type": "Identifier",
                                              "name": "err",
                                              "range": [
                                                3288,
                                                3291
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 30
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 33
                                                }
                                              }
                                            }
                                          ],
                                          "range": [
                                            3270,
                                            3292
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 69,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 69,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "range": [
                                          3270,
                                          3293
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 69,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 69,
                                            "column": 35
                                          }
                                        }
                                      },
                                      {
                                        "type": "ReturnStatement",
                                        "argument": null,
                                        "range": [
                                          3306,
                                          3313
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 70,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 70,
                                            "column": 19
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      3256,
                                      3323
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 68,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 71,
                                        "column": 9
                                      }
                                    }
                                  },
                                  "range": [
                                    3244,
                                    3323
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 68,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 71,
                                      "column": 9
                                    }
                                  }
                                },
                                "finalizer": null,
                                "range": [
                                  3177,
                                  3323
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 9
                                  }
                                }
                              },
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3332,
                                        3336
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 72,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 72,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "_finalizeNext",
                                      "range": [
                                        3337,
                                        3350
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 72,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 72,
                                          "column": 26
                                        }
                                      }
                                    },
                                    "range": [
                                      3332,
                                      3350
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 72,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 72,
                                        "column": 26
                                      }
                                    }
                                  },
                                  "arguments": [
                                    {
                                      "type": "Identifier",
                                      "name": "key",
                                      "range": [
                                        3351,
                                        3354
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 72,
                                          "column": 27
                                        },
                                        "end": {
                                          "line": 72,
                                          "column": 30
                                        }
                                      }
                                    },
                                    {
                                      "type": "Identifier",
                                      "name": "value",
                                      "range": [
                                        3356,
                                        3361
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 72,
                                          "column": 32
                                        },
                                        "end": {
                                          "line": 72,
                                          "column": 37
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3332,
                                    3362
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 72,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 72,
                                      "column": 38
                                    }
                                  }
                                },
                                "range": [
                                  3332,
                                  3363
                                ],
                                "loc": {
                                  "start": {
                                    "line": 72,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 39
                                  }
                                }
                              }
                            ],
                            "range": [
                              3106,
                              3369
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 68
                              },
                              "end": {
                                "line": 73,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            3089,
                            3369
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 51
                            },
                            "end": {
                              "line": 73,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          3042,
                          3369
                        ],
                        "loc": {
                          "start": {
                            "line": 62,
                            "column": 4
                          },
                          "end": {
                            "line": 73,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3042,
                        3370
                      ],
                      "loc": {
                        "start": {
                          "line": 62,
                          "column": 4
                        },
                        "end": {
                          "line": 73,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "DistinctSubscriber",
                              "range": [
                                3375,
                                3393
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 4
                                },
                                "end": {
                                  "line": 74,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                3394,
                                3403
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 23
                                },
                                "end": {
                                  "line": 74,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              3375,
                              3403
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 4
                              },
                              "end": {
                                "line": 74,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_finalizeNext",
                            "range": [
                              3404,
                              3417
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 33
                              },
                              "end": {
                                "line": 74,
                                "column": 46
                              }
                            }
                          },
                          "range": [
                            3375,
                            3417
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 4
                            },
                            "end": {
                              "line": 74,
                              "column": 46
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "key",
                              "range": [
                                3430,
                                3433
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 59
                                },
                                "end": {
                                  "line": 74,
                                  "column": 62
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "value",
                              "range": [
                                3435,
                                3440
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 64
                                },
                                "end": {
                                  "line": 74,
                                  "column": 69
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "VariableDeclaration",
                                "declarations": [
                                  {
                                    "type": "VariableDeclarator",
                                    "id": {
                                      "type": "Identifier",
                                      "name": "values",
                                      "range": [
                                        3456,
                                        3462
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 18
                                        }
                                      }
                                    },
                                    "init": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3465,
                                          3469
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 75,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 75,
                                            "column": 25
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "values",
                                        "range": [
                                          3470,
                                          3476
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 75,
                                            "column": 26
                                          },
                                          "end": {
                                            "line": 75,
                                            "column": 32
                                          }
                                        }
                                      },
                                      "range": [
                                        3465,
                                        3476
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 21
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 32
                                        }
                                      }
                                    },
                                    "range": [
                                      3456,
                                      3476
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 32
                                      }
                                    }
                                  }
                                ],
                                "kind": "var",
                                "range": [
                                  3452,
                                  3477
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 75,
                                    "column": 33
                                  }
                                }
                              },
                              {
                                "type": "IfStatement",
                                "test": {
                                  "type": "UnaryExpression",
                                  "operator": "!",
                                  "argument": {
                                    "type": "CallExpression",
                                    "callee": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "Identifier",
                                        "name": "values",
                                        "range": [
                                          3491,
                                          3497
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 76,
                                            "column": 13
                                          },
                                          "end": {
                                            "line": 76,
                                            "column": 19
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "has",
                                        "range": [
                                          3498,
                                          3501
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 76,
                                            "column": 20
                                          },
                                          "end": {
                                            "line": 76,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "range": [
                                        3491,
                                        3501
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 76,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 76,
                                          "column": 23
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "key",
                                        "range": [
                                          3502,
                                          3505
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 76,
                                            "column": 24
                                          },
                                          "end": {
                                            "line": 76,
                                            "column": 27
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      3491,
                                      3506
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 76,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 76,
                                        "column": 28
                                      }
                                    }
                                  },
                                  "prefix": true,
                                  "range": [
                                    3490,
                                    3506
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 76,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 76,
                                      "column": 28
                                    }
                                  }
                                },
                                "consequent": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "Identifier",
                                            "name": "values",
                                            "range": [
                                              3522,
                                              3528
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 18
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "add",
                                            "range": [
                                              3529,
                                              3532
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 19
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 22
                                              }
                                            }
                                          },
                                          "range": [
                                            3522,
                                            3532
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 77,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 77,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "key",
                                            "range": [
                                              3533,
                                              3536
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 23
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 26
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          3522,
                                          3537
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 77,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 77,
                                            "column": 27
                                          }
                                        }
                                      },
                                      "range": [
                                        3522,
                                        3538
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 77,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 77,
                                          "column": 28
                                        }
                                      }
                                    },
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                3551,
                                                3555
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 78,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 78,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                3556,
                                                3567
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 78,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 78,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              3551,
                                              3567
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "next",
                                            "range": [
                                              3568,
                                              3572
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 33
                                              }
                                            }
                                          },
                                          "range": [
                                            3551,
                                            3572
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 78,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 78,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              3573,
                                              3578
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 34
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 39
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          3551,
                                          3579
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 78,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 78,
                                            "column": 40
                                          }
                                        }
                                      },
                                      "range": [
                                        3551,
                                        3580
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 78,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 78,
                                          "column": 41
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3508,
                                    3590
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 76,
                                      "column": 30
                                    },
                                    "end": {
                                      "line": 79,
                                      "column": 9
                                    }
                                  }
                                },
                                "alternate": null,
                                "range": [
                                  3486,
                                  3590
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 79,
                                    "column": 9
                                  }
                                }
                              }
                            ],
                            "range": [
                              3442,
                              3596
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 71
                              },
                              "end": {
                                "line": 80,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            3420,
                            3596
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 49
                            },
                            "end": {
                              "line": 80,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          3375,
                          3596
                        ],
                        "loc": {
                          "start": {
                            "line": 74,
                            "column": 4
                          },
                          "end": {
                            "line": 80,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3375,
                        3597
                      ],
                      "loc": {
                        "start": {
                          "line": 74,
                          "column": 4
                        },
                        "end": {
                          "line": 80,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "Identifier",
                        "name": "DistinctSubscriber",
                        "range": [
                          3609,
                          3627
                        ],
                        "loc": {
                          "start": {
                            "line": 81,
                            "column": 11
                          },
                          "end": {
                            "line": 81,
                            "column": 29
                          }
                        }
                      },
                      "range": [
                        3602,
                        3628
                      ],
                      "loc": {
                        "start": {
                          "line": 81,
                          "column": 4
                        },
                        "end": {
                          "line": 81,
                          "column": 30
                        }
                      }
                    }
                  ],
                  "range": [
                    2232,
                    3630
                  ],
                  "loc": {
                    "start": {
                      "line": 38,
                      "column": 51
                    },
                    "end": {
                      "line": 82,
                      "column": 1
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  2214,
                  3630
                ],
                "loc": {
                  "start": {
                    "line": 38,
                    "column": 33
                  },
                  "end": {
                    "line": 82,
                    "column": 1
                  }
                }
              },
              "arguments": [
                {
                  "type": "Identifier",
                  "name": "OuterSubscriber",
                  "range": [
                    3631,
                    3646
                  ],
                  "loc": {
                    "start": {
                      "line": 82,
                      "column": 2
                    },
                    "end": {
                      "line": 82,
                      "column": 17
                    }
                  }
                }
              ],
              "range": [
                2214,
                3647
              ],
              "loc": {
                "start": {
                  "line": 38,
                  "column": 33
                },
                "end": {
                  "line": 82,
                  "column": 18
                }
              }
            },
            "range": [
              2192,
              3648
            ],
            "loc": {
              "start": {
                "line": 38,
                "column": 11
              },
              "end": {
                "line": 82,
                "column": 19
              }
            }
          }
        ],
        "kind": "var",
        "range": [
          2188,
          3649
        ],
        "loc": {
          "start": {
            "line": 38,
            "column": 7
          },
          "end": {
            "line": 82,
            "column": 20
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
            "range": [
              2089,
              2180
            ],
            "loc": {
              "start": {
                "line": 33,
                "column": 0
              },
              "end": {
                "line": 37,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": [
          {
            "type": "Line",
            "value": "# sourceMappingURL=distinct.js.map",
            "range": [
              3650,
              3686
            ],
            "loc": {
              "start": {
                "line": 83,
                "column": 0
              },
              "end": {
                "line": 83,
                "column": 36
              }
            }
          }
        ]
      },
      "specifiers": [],
      "source": null,
      "range": [
        2181,
        3649
      ],
      "loc": {
        "start": {
          "line": 38,
          "column": 0
        },
        "end": {
          "line": 82,
          "column": 20
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2089,
            2180
          ],
          "loc": {
            "start": {
              "line": 33,
              "column": 0
            },
            "end": {
              "line": 37,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=distinct.js.map",
          "range": [
            3650,
            3686
          ],
          "loc": {
            "start": {
              "line": 83,
              "column": 0
            },
            "end": {
              "line": 83,
              "column": 36
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    3649
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 82,
      "column": 20
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from previous items.\n * If a keySelector function is provided, then it will project each value from the source observable into a new value that it will\n * check for equality with previously projected values. If a keySelector function is not provided, it will use each value from the\n * source observable directly with an equality check against previous values.\n * In JavaScript runtimes that support `Set`, this operator will use a `Set` to improve performance of the distinct value checking.\n * In other runtimes, this operator will use a minimal implementation of `Set` that relies on an `Array` and `indexOf` under the\n * hood, so performance will degrade as more values are checked for distinction. Even in newer browsers, a long-running `distinct`\n * use might result in memory leaks. To help alleviate this in some scenarios, an optional `flushes` parameter is also provided so\n * that the internal `Set` can be \"flushed\", basically clearing it of values.\n * @param {function} [keySelector] optional function to select which value you want to check as distinct.\n * @param {Observable} [flushes] optional Observable for flushing the internal HashSet of the operator.\n * @return {Observable} an Observable that emits items from the source Observable with distinct values.\n * @method distinct\n * @owner Observable\n ",
      "range": [
        152,
        1587
      ],
      "loc": {
        "start": {
          "line": 4,
          "column": 0
        },
        "end": {
          "line": 19,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2089,
        2180
      ],
      "loc": {
        "start": {
          "line": 33,
          "column": 0
        },
        "end": {
          "line": 37,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=distinct.js.map",
      "range": [
        3650,
        3686
      ],
      "loc": {
        "start": {
          "line": 83,
          "column": 0
        },
        "end": {
          "line": 83,
          "column": 36
        }
      }
    }
  ]
}