{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "range": [
            9,
            19
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 19
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../Subscriber",
        "raw": "'../Subscriber'",
        "range": [
          27,
          42
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 27
          },
          "end": {
            "line": 1,
            "column": 42
          }
        }
      },
      "range": [
        0,
        43
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 43
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": " tslint:disable:max-line-length ",
          "range": [
            44,
            80
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 2,
              "column": 36
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "scan",
          "range": [
            97,
            101
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 16
            },
            "end": {
              "line": 3,
              "column": 20
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "accumulator",
            "range": [
              102,
              113
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 21
              },
              "end": {
                "line": 3,
                "column": 32
              }
            }
          },
          {
            "type": "Identifier",
            "name": "seed",
            "range": [
              115,
              119
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 34
              },
              "end": {
                "line": 3,
                "column": 38
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "VariableDeclaration",
              "declarations": [
                {
                  "type": "VariableDeclarator",
                  "id": {
                    "type": "Identifier",
                    "name": "hasSeed",
                    "range": [
                      131,
                      138
                    ],
                    "loc": {
                      "start": {
                        "line": 4,
                        "column": 8
                      },
                      "end": {
                        "line": 4,
                        "column": 15
                      }
                    }
                  },
                  "init": {
                    "type": "Literal",
                    "value": false,
                    "raw": "false",
                    "range": [
                      141,
                      146
                    ],
                    "loc": {
                      "start": {
                        "line": 4,
                        "column": 18
                      },
                      "end": {
                        "line": 4,
                        "column": 23
                      }
                    }
                  },
                  "range": [
                    131,
                    146
                  ],
                  "loc": {
                    "start": {
                      "line": 4,
                      "column": 8
                    },
                    "end": {
                      "line": 4,
                      "column": 23
                    }
                  }
                }
              ],
              "kind": "var",
              "range": [
                127,
                147
              ],
              "loc": {
                "start": {
                  "line": 4,
                  "column": 4
                },
                "end": {
                  "line": 4,
                  "column": 24
                }
              },
              "trailingComments": [
                {
                  "type": "Line",
                  "value": " providing a seed of `undefined` *should* be valid and trigger",
                  "range": [
                    152,
                    216
                  ],
                  "loc": {
                    "start": {
                      "line": 5,
                      "column": 4
                    },
                    "end": {
                      "line": 5,
                      "column": 68
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " hasSeed! so don't use `seed !== undefined` checks!",
                  "range": [
                    221,
                    274
                  ],
                  "loc": {
                    "start": {
                      "line": 6,
                      "column": 4
                    },
                    "end": {
                      "line": 6,
                      "column": 57
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " For this reason, we have to check it here at the original call site",
                  "range": [
                    279,
                    349
                  ],
                  "loc": {
                    "start": {
                      "line": 7,
                      "column": 4
                    },
                    "end": {
                      "line": 7,
                      "column": 74
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " otherwise inside Operator/Subscriber we won't know if `undefined`",
                  "range": [
                    354,
                    422
                  ],
                  "loc": {
                    "start": {
                      "line": 8,
                      "column": 4
                    },
                    "end": {
                      "line": 8,
                      "column": 72
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " means they didn't provide anything or if they literally provided `undefined`",
                  "range": [
                    427,
                    506
                  ],
                  "loc": {
                    "start": {
                      "line": 9,
                      "column": 4
                    },
                    "end": {
                      "line": 9,
                      "column": 83
                    }
                  }
                }
              ]
            },
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": ">=",
                "left": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "Identifier",
                    "name": "arguments",
                    "range": [
                      515,
                      524
                    ],
                    "loc": {
                      "start": {
                        "line": 10,
                        "column": 8
                      },
                      "end": {
                        "line": 10,
                        "column": 17
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "length",
                    "range": [
                      525,
                      531
                    ],
                    "loc": {
                      "start": {
                        "line": 10,
                        "column": 18
                      },
                      "end": {
                        "line": 10,
                        "column": 24
                      }
                    }
                  },
                  "range": [
                    515,
                    531
                  ],
                  "loc": {
                    "start": {
                      "line": 10,
                      "column": 8
                    },
                    "end": {
                      "line": 10,
                      "column": 24
                    }
                  }
                },
                "right": {
                  "type": "Literal",
                  "value": 2,
                  "raw": "2",
                  "range": [
                    535,
                    536
                  ],
                  "loc": {
                    "start": {
                      "line": 10,
                      "column": 28
                    },
                    "end": {
                      "line": 10,
                      "column": 29
                    }
                  }
                },
                "range": [
                  515,
                  536
                ],
                "loc": {
                  "start": {
                    "line": 10,
                    "column": 8
                  },
                  "end": {
                    "line": 10,
                    "column": 29
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "Identifier",
                        "name": "hasSeed",
                        "range": [
                          548,
                          555
                        ],
                        "loc": {
                          "start": {
                            "line": 11,
                            "column": 8
                          },
                          "end": {
                            "line": 11,
                            "column": 15
                          }
                        }
                      },
                      "right": {
                        "type": "Literal",
                        "value": true,
                        "raw": "true",
                        "range": [
                          558,
                          562
                        ],
                        "loc": {
                          "start": {
                            "line": 11,
                            "column": 18
                          },
                          "end": {
                            "line": 11,
                            "column": 22
                          }
                        }
                      },
                      "range": [
                        548,
                        562
                      ],
                      "loc": {
                        "start": {
                          "line": 11,
                          "column": 8
                        },
                        "end": {
                          "line": 11,
                          "column": 22
                        }
                      }
                    },
                    "range": [
                      548,
                      563
                    ],
                    "loc": {
                      "start": {
                        "line": 11,
                        "column": 8
                      },
                      "end": {
                        "line": 11,
                        "column": 23
                      }
                    }
                  }
                ],
                "range": [
                  538,
                  569
                ],
                "loc": {
                  "start": {
                    "line": 10,
                    "column": 31
                  },
                  "end": {
                    "line": 12,
                    "column": 5
                  }
                }
              },
              "alternate": null,
              "range": [
                511,
                569
              ],
              "loc": {
                "start": {
                  "line": 10,
                  "column": 4
                },
                "end": {
                  "line": 12,
                  "column": 5
                }
              },
              "leadingComments": [
                {
                  "type": "Line",
                  "value": " providing a seed of `undefined` *should* be valid and trigger",
                  "range": [
                    152,
                    216
                  ],
                  "loc": {
                    "start": {
                      "line": 5,
                      "column": 4
                    },
                    "end": {
                      "line": 5,
                      "column": 68
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " hasSeed! so don't use `seed !== undefined` checks!",
                  "range": [
                    221,
                    274
                  ],
                  "loc": {
                    "start": {
                      "line": 6,
                      "column": 4
                    },
                    "end": {
                      "line": 6,
                      "column": 57
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " For this reason, we have to check it here at the original call site",
                  "range": [
                    279,
                    349
                  ],
                  "loc": {
                    "start": {
                      "line": 7,
                      "column": 4
                    },
                    "end": {
                      "line": 7,
                      "column": 74
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " otherwise inside Operator/Subscriber we won't know if `undefined`",
                  "range": [
                    354,
                    422
                  ],
                  "loc": {
                    "start": {
                      "line": 8,
                      "column": 4
                    },
                    "end": {
                      "line": 8,
                      "column": 72
                    }
                  }
                },
                {
                  "type": "Line",
                  "value": " means they didn't provide anything or if they literally provided `undefined`",
                  "range": [
                    427,
                    506
                  ],
                  "loc": {
                    "start": {
                      "line": 9,
                      "column": 4
                    },
                    "end": {
                      "line": 9,
                      "column": 83
                    }
                  }
                }
              ]
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      581,
                      585
                    ],
                    "loc": {
                      "start": {
                        "line": 13,
                        "column": 11
                      },
                      "end": {
                        "line": 13,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      586,
                      590
                    ],
                    "loc": {
                      "start": {
                        "line": 13,
                        "column": 16
                      },
                      "end": {
                        "line": 13,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    581,
                    590
                  ],
                  "loc": {
                    "start": {
                      "line": 13,
                      "column": 11
                    },
                    "end": {
                      "line": 13,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "ScanOperator",
                      "range": [
                        595,
                        607
                      ],
                      "loc": {
                        "start": {
                          "line": 13,
                          "column": 25
                        },
                        "end": {
                          "line": 13,
                          "column": 37
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "accumulator",
                        "range": [
                          608,
                          619
                        ],
                        "loc": {
                          "start": {
                            "line": 13,
                            "column": 38
                          },
                          "end": {
                            "line": 13,
                            "column": 49
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "seed",
                        "range": [
                          621,
                          625
                        ],
                        "loc": {
                          "start": {
                            "line": 13,
                            "column": 51
                          },
                          "end": {
                            "line": 13,
                            "column": 55
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "hasSeed",
                        "range": [
                          627,
                          634
                        ],
                        "loc": {
                          "start": {
                            "line": 13,
                            "column": 57
                          },
                          "end": {
                            "line": 13,
                            "column": 64
                          }
                        }
                      }
                    ],
                    "range": [
                      591,
                      635
                    ],
                    "loc": {
                      "start": {
                        "line": 13,
                        "column": 21
                      },
                      "end": {
                        "line": 13,
                        "column": 65
                      }
                    }
                  }
                ],
                "range": [
                  581,
                  636
                ],
                "loc": {
                  "start": {
                    "line": 13,
                    "column": 11
                  },
                  "end": {
                    "line": 13,
                    "column": 66
                  }
                }
              },
              "range": [
                574,
                637
              ],
              "loc": {
                "start": {
                  "line": 13,
                  "column": 4
                },
                "end": {
                  "line": 13,
                  "column": 67
                }
              }
            }
          ],
          "range": [
            121,
            639
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 40
            },
            "end": {
              "line": 14,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          88,
          639
        ],
        "loc": {
          "start": {
            "line": 3,
            "column": 7
          },
          "end": {
            "line": 14,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": " tslint:disable:max-line-length ",
            "range": [
              44,
              80
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 0
              },
              "end": {
                "line": 2,
                "column": 36
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        81,
        639
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 14,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": " tslint:disable:max-line-length ",
          "range": [
            44,
            80
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 2,
              "column": 36
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "ScanOperator",
            "range": [
              644,
              656
            ],
            "loc": {
              "start": {
                "line": 15,
                "column": 4
              },
              "end": {
                "line": 15,
                "column": 16
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "ScanOperator",
                      "range": [
                        687,
                        699
                      ],
                      "loc": {
                        "start": {
                          "line": 16,
                          "column": 13
                        },
                        "end": {
                          "line": 16,
                          "column": 25
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "accumulator",
                        "range": [
                          700,
                          711
                        ],
                        "loc": {
                          "start": {
                            "line": 16,
                            "column": 26
                          },
                          "end": {
                            "line": 16,
                            "column": 37
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "seed",
                        "range": [
                          713,
                          717
                        ],
                        "loc": {
                          "start": {
                            "line": 16,
                            "column": 39
                          },
                          "end": {
                            "line": 16,
                            "column": 43
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "hasSeed",
                        "range": [
                          719,
                          726
                        ],
                        "loc": {
                          "start": {
                            "line": 16,
                            "column": 45
                          },
                          "end": {
                            "line": 16,
                            "column": 52
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "IfStatement",
                          "test": {
                            "type": "BinaryExpression",
                            "operator": "===",
                            "left": {
                              "type": "Identifier",
                              "name": "hasSeed",
                              "range": [
                                742,
                                749
                              ],
                              "loc": {
                                "start": {
                                  "line": 17,
                                  "column": 12
                                },
                                "end": {
                                  "line": 17,
                                  "column": 19
                                }
                              }
                            },
                            "right": {
                              "type": "UnaryExpression",
                              "operator": "void",
                              "argument": {
                                "type": "Literal",
                                "value": 0,
                                "raw": "0",
                                "range": [
                                  759,
                                  760
                                ],
                                "loc": {
                                  "start": {
                                    "line": 17,
                                    "column": 29
                                  },
                                  "end": {
                                    "line": 17,
                                    "column": 30
                                  }
                                }
                              },
                              "prefix": true,
                              "range": [
                                754,
                                760
                              ],
                              "loc": {
                                "start": {
                                  "line": 17,
                                  "column": 24
                                },
                                "end": {
                                  "line": 17,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              742,
                              760
                            ],
                            "loc": {
                              "start": {
                                "line": 17,
                                "column": 12
                              },
                              "end": {
                                "line": 17,
                                "column": 30
                              }
                            }
                          },
                          "consequent": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "AssignmentExpression",
                                  "operator": "=",
                                  "left": {
                                    "type": "Identifier",
                                    "name": "hasSeed",
                                    "range": [
                                      764,
                                      771
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 17,
                                        "column": 34
                                      },
                                      "end": {
                                        "line": 17,
                                        "column": 41
                                      }
                                    }
                                  },
                                  "right": {
                                    "type": "Literal",
                                    "value": false,
                                    "raw": "false",
                                    "range": [
                                      774,
                                      779
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 17,
                                        "column": 44
                                      },
                                      "end": {
                                        "line": 17,
                                        "column": 49
                                      }
                                    }
                                  },
                                  "range": [
                                    764,
                                    779
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 17,
                                      "column": 34
                                    },
                                    "end": {
                                      "line": 17,
                                      "column": 49
                                    }
                                  }
                                },
                                "range": [
                                  764,
                                  780
                                ],
                                "loc": {
                                  "start": {
                                    "line": 17,
                                    "column": 34
                                  },
                                  "end": {
                                    "line": 17,
                                    "column": 50
                                  }
                                }
                              }
                            ],
                            "range": [
                              762,
                              782
                            ],
                            "loc": {
                              "start": {
                                "line": 17,
                                "column": 32
                              },
                              "end": {
                                "line": 17,
                                "column": 52
                              }
                            }
                          },
                          "alternate": null,
                          "range": [
                            738,
                            782
                          ],
                          "loc": {
                            "start": {
                              "line": 17,
                              "column": 8
                            },
                            "end": {
                              "line": 17,
                              "column": 52
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  791,
                                  795
                                ],
                                "loc": {
                                  "start": {
                                    "line": 18,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 18,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "accumulator",
                                "range": [
                                  796,
                                  807
                                ],
                                "loc": {
                                  "start": {
                                    "line": 18,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 18,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                791,
                                807
                              ],
                              "loc": {
                                "start": {
                                  "line": 18,
                                  "column": 8
                                },
                                "end": {
                                  "line": 18,
                                  "column": 24
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "accumulator",
                              "range": [
                                810,
                                821
                              ],
                              "loc": {
                                "start": {
                                  "line": 18,
                                  "column": 27
                                },
                                "end": {
                                  "line": 18,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              791,
                              821
                            ],
                            "loc": {
                              "start": {
                                "line": 18,
                                "column": 8
                              },
                              "end": {
                                "line": 18,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            791,
                            822
                          ],
                          "loc": {
                            "start": {
                              "line": 18,
                              "column": 8
                            },
                            "end": {
                              "line": 18,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  831,
                                  835
                                ],
                                "loc": {
                                  "start": {
                                    "line": 19,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 19,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "seed",
                                "range": [
                                  836,
                                  840
                                ],
                                "loc": {
                                  "start": {
                                    "line": 19,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 19,
                                    "column": 17
                                  }
                                }
                              },
                              "range": [
                                831,
                                840
                              ],
                              "loc": {
                                "start": {
                                  "line": 19,
                                  "column": 8
                                },
                                "end": {
                                  "line": 19,
                                  "column": 17
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "seed",
                              "range": [
                                843,
                                847
                              ],
                              "loc": {
                                "start": {
                                  "line": 19,
                                  "column": 20
                                },
                                "end": {
                                  "line": 19,
                                  "column": 24
                                }
                              }
                            },
                            "range": [
                              831,
                              847
                            ],
                            "loc": {
                              "start": {
                                "line": 19,
                                "column": 8
                              },
                              "end": {
                                "line": 19,
                                "column": 24
                              }
                            }
                          },
                          "range": [
                            831,
                            848
                          ],
                          "loc": {
                            "start": {
                              "line": 19,
                              "column": 8
                            },
                            "end": {
                              "line": 19,
                              "column": 25
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  857,
                                  861
                                ],
                                "loc": {
                                  "start": {
                                    "line": 20,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 20,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "hasSeed",
                                "range": [
                                  862,
                                  869
                                ],
                                "loc": {
                                  "start": {
                                    "line": 20,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 20,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                857,
                                869
                              ],
                              "loc": {
                                "start": {
                                  "line": 20,
                                  "column": 8
                                },
                                "end": {
                                  "line": 20,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "hasSeed",
                              "range": [
                                872,
                                879
                              ],
                              "loc": {
                                "start": {
                                  "line": 20,
                                  "column": 23
                                },
                                "end": {
                                  "line": 20,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              857,
                              879
                            ],
                            "loc": {
                              "start": {
                                "line": 20,
                                "column": 8
                              },
                              "end": {
                                "line": 20,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            857,
                            880
                          ],
                          "loc": {
                            "start": {
                              "line": 20,
                              "column": 8
                            },
                            "end": {
                              "line": 20,
                              "column": 31
                            }
                          }
                        }
                      ],
                      "range": [
                        728,
                        886
                      ],
                      "loc": {
                        "start": {
                          "line": 16,
                          "column": 54
                        },
                        "end": {
                          "line": 21,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      678,
                      886
                    ],
                    "loc": {
                      "start": {
                        "line": 16,
                        "column": 4
                      },
                      "end": {
                        "line": 21,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ScanOperator",
                            "range": [
                              891,
                              903
                            ],
                            "loc": {
                              "start": {
                                "line": 22,
                                "column": 4
                              },
                              "end": {
                                "line": 22,
                                "column": 16
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              904,
                              913
                            ],
                            "loc": {
                              "start": {
                                "line": 22,
                                "column": 17
                              },
                              "end": {
                                "line": 22,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            891,
                            913
                          ],
                          "loc": {
                            "start": {
                              "line": 22,
                              "column": 4
                            },
                            "end": {
                              "line": 22,
                              "column": 26
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            914,
                            918
                          ],
                          "loc": {
                            "start": {
                              "line": 22,
                              "column": 27
                            },
                            "end": {
                              "line": 22,
                              "column": 31
                            }
                          }
                        },
                        "range": [
                          891,
                          918
                        ],
                        "loc": {
                          "start": {
                            "line": 22,
                            "column": 4
                          },
                          "end": {
                            "line": 22,
                            "column": 31
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              931,
                              941
                            ],
                            "loc": {
                              "start": {
                                "line": 22,
                                "column": 44
                              },
                              "end": {
                                "line": 22,
                                "column": 54
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              943,
                              949
                            ],
                            "loc": {
                              "start": {
                                "line": 22,
                                "column": 56
                              },
                              "end": {
                                "line": 22,
                                "column": 62
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      968,
                                      974
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 23,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 23,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      975,
                                      985
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 23,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 23,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    968,
                                    985
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 23,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 23,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "ScanSubscriber",
                                      "range": [
                                        990,
                                        1004
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 23,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 23,
                                          "column": 51
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          1005,
                                          1015
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 23,
                                            "column": 52
                                          },
                                          "end": {
                                            "line": 23,
                                            "column": 62
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1017,
                                            1021
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 23,
                                              "column": 64
                                            },
                                            "end": {
                                              "line": 23,
                                              "column": 68
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "accumulator",
                                          "range": [
                                            1022,
                                            1033
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 23,
                                              "column": 69
                                            },
                                            "end": {
                                              "line": 23,
                                              "column": 80
                                            }
                                          }
                                        },
                                        "range": [
                                          1017,
                                          1033
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 23,
                                            "column": 64
                                          },
                                          "end": {
                                            "line": 23,
                                            "column": 80
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1035,
                                            1039
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 23,
                                              "column": 82
                                            },
                                            "end": {
                                              "line": 23,
                                              "column": 86
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "seed",
                                          "range": [
                                            1040,
                                            1044
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 23,
                                              "column": 87
                                            },
                                            "end": {
                                              "line": 23,
                                              "column": 91
                                            }
                                          }
                                        },
                                        "range": [
                                          1035,
                                          1044
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 23,
                                            "column": 82
                                          },
                                          "end": {
                                            "line": 23,
                                            "column": 91
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1046,
                                            1050
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 23,
                                              "column": 93
                                            },
                                            "end": {
                                              "line": 23,
                                              "column": 97
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "hasSeed",
                                          "range": [
                                            1051,
                                            1058
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 23,
                                              "column": 98
                                            },
                                            "end": {
                                              "line": 23,
                                              "column": 105
                                            }
                                          }
                                        },
                                        "range": [
                                          1046,
                                          1058
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 23,
                                            "column": 93
                                          },
                                          "end": {
                                            "line": 23,
                                            "column": 105
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      986,
                                      1059
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 23,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 23,
                                        "column": 106
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  968,
                                  1060
                                ],
                                "loc": {
                                  "start": {
                                    "line": 23,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 23,
                                    "column": 107
                                  }
                                }
                              },
                              "range": [
                                961,
                                1061
                              ],
                              "loc": {
                                "start": {
                                  "line": 23,
                                  "column": 8
                                },
                                "end": {
                                  "line": 23,
                                  "column": 108
                                }
                              }
                            }
                          ],
                          "range": [
                            951,
                            1067
                          ],
                          "loc": {
                            "start": {
                              "line": 22,
                              "column": 64
                            },
                            "end": {
                              "line": 24,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          921,
                          1067
                        ],
                        "loc": {
                          "start": {
                            "line": 22,
                            "column": 34
                          },
                          "end": {
                            "line": 24,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        891,
                        1067
                      ],
                      "loc": {
                        "start": {
                          "line": 22,
                          "column": 4
                        },
                        "end": {
                          "line": 24,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      891,
                      1068
                    ],
                    "loc": {
                      "start": {
                        "line": 22,
                        "column": 4
                      },
                      "end": {
                        "line": 24,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "ScanOperator",
                      "range": [
                        1080,
                        1092
                      ],
                      "loc": {
                        "start": {
                          "line": 25,
                          "column": 11
                        },
                        "end": {
                          "line": 25,
                          "column": 23
                        }
                      }
                    },
                    "range": [
                      1073,
                      1093
                    ],
                    "loc": {
                      "start": {
                        "line": 25,
                        "column": 4
                      },
                      "end": {
                        "line": 25,
                        "column": 24
                      }
                    }
                  }
                ],
                "range": [
                  672,
                  1095
                ],
                "loc": {
                  "start": {
                    "line": 15,
                    "column": 32
                  },
                  "end": {
                    "line": 26,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                660,
                1095
              ],
              "loc": {
                "start": {
                  "line": 15,
                  "column": 20
                },
                "end": {
                  "line": 26,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              660,
              1097
            ],
            "loc": {
              "start": {
                "line": 15,
                "column": 20
              },
              "end": {
                "line": 26,
                "column": 3
              }
            }
          },
          "range": [
            644,
            1098
          ],
          "loc": {
            "start": {
              "line": 15,
              "column": 4
            },
            "end": {
              "line": 26,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        640,
        1099
      ],
      "loc": {
        "start": {
          "line": 15,
          "column": 0
        },
        "end": {
          "line": 26,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1100,
            1191
          ],
          "loc": {
            "start": {
              "line": 27,
              "column": 0
            },
            "end": {
              "line": 31,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "ScanSubscriber",
            "range": [
              1196,
              1210
            ],
            "loc": {
              "start": {
                "line": 32,
                "column": 4
              },
              "end": {
                "line": 32,
                "column": 18
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    1224,
                    1230
                  ],
                  "loc": {
                    "start": {
                      "line": 32,
                      "column": 32
                    },
                    "end": {
                      "line": 32,
                      "column": 38
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          1238,
                          1247
                        ],
                        "loc": {
                          "start": {
                            "line": 33,
                            "column": 4
                          },
                          "end": {
                            "line": 33,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "ScanSubscriber",
                          "range": [
                            1248,
                            1262
                          ],
                          "loc": {
                            "start": {
                              "line": 33,
                              "column": 14
                            },
                            "end": {
                              "line": 33,
                              "column": 28
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            1264,
                            1270
                          ],
                          "loc": {
                            "start": {
                              "line": 33,
                              "column": 30
                            },
                            "end": {
                              "line": 33,
                              "column": 36
                            }
                          }
                        }
                      ],
                      "range": [
                        1238,
                        1271
                      ],
                      "loc": {
                        "start": {
                          "line": 33,
                          "column": 4
                        },
                        "end": {
                          "line": 33,
                          "column": 37
                        }
                      }
                    },
                    "range": [
                      1238,
                      1272
                    ],
                    "loc": {
                      "start": {
                        "line": 33,
                        "column": 4
                      },
                      "end": {
                        "line": 33,
                        "column": 38
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "ScanSubscriber",
                      "range": [
                        1286,
                        1300
                      ],
                      "loc": {
                        "start": {
                          "line": 34,
                          "column": 13
                        },
                        "end": {
                          "line": 34,
                          "column": 27
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          1301,
                          1312
                        ],
                        "loc": {
                          "start": {
                            "line": 34,
                            "column": 28
                          },
                          "end": {
                            "line": 34,
                            "column": 39
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "accumulator",
                        "range": [
                          1314,
                          1325
                        ],
                        "loc": {
                          "start": {
                            "line": 34,
                            "column": 41
                          },
                          "end": {
                            "line": 34,
                            "column": 52
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "_seed",
                        "range": [
                          1327,
                          1332
                        ],
                        "loc": {
                          "start": {
                            "line": 34,
                            "column": 54
                          },
                          "end": {
                            "line": 34,
                            "column": 59
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "hasSeed",
                        "range": [
                          1334,
                          1341
                        ],
                        "loc": {
                          "start": {
                            "line": 34,
                            "column": 61
                          },
                          "end": {
                            "line": 34,
                            "column": 68
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  1353,
                                  1359
                                ],
                                "loc": {
                                  "start": {
                                    "line": 35,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 35,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  1360,
                                  1364
                                ],
                                "loc": {
                                  "start": {
                                    "line": 35,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 35,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                1353,
                                1364
                              ],
                              "loc": {
                                "start": {
                                  "line": 35,
                                  "column": 8
                                },
                                "end": {
                                  "line": 35,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  1365,
                                  1369
                                ],
                                "loc": {
                                  "start": {
                                    "line": 35,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 35,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  1371,
                                  1382
                                ],
                                "loc": {
                                  "start": {
                                    "line": 35,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 35,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              1353,
                              1383
                            ],
                            "loc": {
                              "start": {
                                "line": 35,
                                "column": 8
                              },
                              "end": {
                                "line": 35,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            1353,
                            1384
                          ],
                          "loc": {
                            "start": {
                              "line": 35,
                              "column": 8
                            },
                            "end": {
                              "line": 35,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1393,
                                  1397
                                ],
                                "loc": {
                                  "start": {
                                    "line": 36,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 36,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "accumulator",
                                "range": [
                                  1398,
                                  1409
                                ],
                                "loc": {
                                  "start": {
                                    "line": 36,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 36,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                1393,
                                1409
                              ],
                              "loc": {
                                "start": {
                                  "line": 36,
                                  "column": 8
                                },
                                "end": {
                                  "line": 36,
                                  "column": 24
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "accumulator",
                              "range": [
                                1412,
                                1423
                              ],
                              "loc": {
                                "start": {
                                  "line": 36,
                                  "column": 27
                                },
                                "end": {
                                  "line": 36,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              1393,
                              1423
                            ],
                            "loc": {
                              "start": {
                                "line": 36,
                                "column": 8
                              },
                              "end": {
                                "line": 36,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            1393,
                            1424
                          ],
                          "loc": {
                            "start": {
                              "line": 36,
                              "column": 8
                            },
                            "end": {
                              "line": 36,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1433,
                                  1437
                                ],
                                "loc": {
                                  "start": {
                                    "line": 37,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 37,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "_seed",
                                "range": [
                                  1438,
                                  1443
                                ],
                                "loc": {
                                  "start": {
                                    "line": 37,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 37,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                1433,
                                1443
                              ],
                              "loc": {
                                "start": {
                                  "line": 37,
                                  "column": 8
                                },
                                "end": {
                                  "line": 37,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "_seed",
                              "range": [
                                1446,
                                1451
                              ],
                              "loc": {
                                "start": {
                                  "line": 37,
                                  "column": 21
                                },
                                "end": {
                                  "line": 37,
                                  "column": 26
                                }
                              }
                            },
                            "range": [
                              1433,
                              1451
                            ],
                            "loc": {
                              "start": {
                                "line": 37,
                                "column": 8
                              },
                              "end": {
                                "line": 37,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            1433,
                            1452
                          ],
                          "loc": {
                            "start": {
                              "line": 37,
                              "column": 8
                            },
                            "end": {
                              "line": 37,
                              "column": 27
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1461,
                                  1465
                                ],
                                "loc": {
                                  "start": {
                                    "line": 38,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 38,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "hasSeed",
                                "range": [
                                  1466,
                                  1473
                                ],
                                "loc": {
                                  "start": {
                                    "line": 38,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 38,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                1461,
                                1473
                              ],
                              "loc": {
                                "start": {
                                  "line": 38,
                                  "column": 8
                                },
                                "end": {
                                  "line": 38,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "hasSeed",
                              "range": [
                                1476,
                                1483
                              ],
                              "loc": {
                                "start": {
                                  "line": 38,
                                  "column": 23
                                },
                                "end": {
                                  "line": 38,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              1461,
                              1483
                            ],
                            "loc": {
                              "start": {
                                "line": 38,
                                "column": 8
                              },
                              "end": {
                                "line": 38,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            1461,
                            1484
                          ],
                          "loc": {
                            "start": {
                              "line": 38,
                              "column": 8
                            },
                            "end": {
                              "line": 38,
                              "column": 31
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1493,
                                  1497
                                ],
                                "loc": {
                                  "start": {
                                    "line": 39,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 39,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "index",
                                "range": [
                                  1498,
                                  1503
                                ],
                                "loc": {
                                  "start": {
                                    "line": 39,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 39,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                1493,
                                1503
                              ],
                              "loc": {
                                "start": {
                                  "line": 39,
                                  "column": 8
                                },
                                "end": {
                                  "line": 39,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": 0,
                              "raw": "0",
                              "range": [
                                1506,
                                1507
                              ],
                              "loc": {
                                "start": {
                                  "line": 39,
                                  "column": 21
                                },
                                "end": {
                                  "line": 39,
                                  "column": 22
                                }
                              }
                            },
                            "range": [
                              1493,
                              1507
                            ],
                            "loc": {
                              "start": {
                                "line": 39,
                                "column": 8
                              },
                              "end": {
                                "line": 39,
                                "column": 22
                              }
                            }
                          },
                          "range": [
                            1493,
                            1508
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 8
                            },
                            "end": {
                              "line": 39,
                              "column": 23
                            }
                          }
                        }
                      ],
                      "range": [
                        1343,
                        1514
                      ],
                      "loc": {
                        "start": {
                          "line": 34,
                          "column": 70
                        },
                        "end": {
                          "line": 40,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1277,
                      1514
                    ],
                    "loc": {
                      "start": {
                        "line": 34,
                        "column": 4
                      },
                      "end": {
                        "line": 40,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "Identifier",
                          "name": "Object",
                          "range": [
                            1519,
                            1525
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 4
                            },
                            "end": {
                              "line": 41,
                              "column": 10
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "defineProperty",
                          "range": [
                            1526,
                            1540
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 11
                            },
                            "end": {
                              "line": 41,
                              "column": 25
                            }
                          }
                        },
                        "range": [
                          1519,
                          1540
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 4
                          },
                          "end": {
                            "line": 41,
                            "column": 25
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ScanSubscriber",
                            "range": [
                              1541,
                              1555
                            ],
                            "loc": {
                              "start": {
                                "line": 41,
                                "column": 26
                              },
                              "end": {
                                "line": 41,
                                "column": 40
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1556,
                              1565
                            ],
                            "loc": {
                              "start": {
                                "line": 41,
                                "column": 41
                              },
                              "end": {
                                "line": 41,
                                "column": 50
                              }
                            }
                          },
                          "range": [
                            1541,
                            1565
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 26
                            },
                            "end": {
                              "line": 41,
                              "column": 50
                            }
                          }
                        },
                        {
                          "type": "Literal",
                          "value": "seed",
                          "raw": "\"seed\"",
                          "range": [
                            1567,
                            1573
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 52
                            },
                            "end": {
                              "line": 41,
                              "column": 58
                            }
                          }
                        },
                        {
                          "type": "ObjectExpression",
                          "properties": [
                            {
                              "type": "Property",
                              "key": {
                                "type": "Identifier",
                                "name": "get",
                                "range": [
                                  1585,
                                  1588
                                ],
                                "loc": {
                                  "start": {
                                    "line": 42,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 42,
                                    "column": 11
                                  }
                                }
                              },
                              "value": {
                                "type": "FunctionExpression",
                                "id": null,
                                "params": [],
                                "body": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ReturnStatement",
                                      "argument": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1623,
                                            1627
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 43,
                                              "column": 19
                                            },
                                            "end": {
                                              "line": 43,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "_seed",
                                          "range": [
                                            1628,
                                            1633
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 43,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 43,
                                              "column": 29
                                            }
                                          }
                                        },
                                        "range": [
                                          1623,
                                          1633
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 43,
                                            "column": 19
                                          },
                                          "end": {
                                            "line": 43,
                                            "column": 29
                                          }
                                        }
                                      },
                                      "range": [
                                        1616,
                                        1634
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 43,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 43,
                                          "column": 30
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    1602,
                                    1644
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 42,
                                      "column": 25
                                    },
                                    "end": {
                                      "line": 44,
                                      "column": 9
                                    }
                                  }
                                },
                                "generator": false,
                                "expression": false,
                                "range": [
                                  1590,
                                  1644
                                ],
                                "loc": {
                                  "start": {
                                    "line": 42,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 44,
                                    "column": 9
                                  }
                                }
                              },
                              "kind": "init",
                              "method": false,
                              "shorthand": false,
                              "computed": false,
                              "range": [
                                1585,
                                1644
                              ],
                              "loc": {
                                "start": {
                                  "line": 42,
                                  "column": 8
                                },
                                "end": {
                                  "line": 44,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "Property",
                              "key": {
                                "type": "Identifier",
                                "name": "set",
                                "range": [
                                  1654,
                                  1657
                                ],
                                "loc": {
                                  "start": {
                                    "line": 45,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 45,
                                    "column": 11
                                  }
                                }
                              },
                              "value": {
                                "type": "FunctionExpression",
                                "id": null,
                                "params": [
                                  {
                                    "type": "Identifier",
                                    "name": "value",
                                    "range": [
                                      1669,
                                      1674
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 45,
                                        "column": 23
                                      },
                                      "end": {
                                        "line": 45,
                                        "column": 28
                                      }
                                    }
                                  }
                                ],
                                "body": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "AssignmentExpression",
                                        "operator": "=",
                                        "left": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              1690,
                                              1694
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 46,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 46,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "hasSeed",
                                            "range": [
                                              1695,
                                              1702
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 46,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 46,
                                                "column": 24
                                              }
                                            }
                                          },
                                          "range": [
                                            1690,
                                            1702
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 46,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 46,
                                              "column": 24
                                            }
                                          }
                                        },
                                        "right": {
                                          "type": "Literal",
                                          "value": true,
                                          "raw": "true",
                                          "range": [
                                            1705,
                                            1709
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 46,
                                              "column": 27
                                            },
                                            "end": {
                                              "line": 46,
                                              "column": 31
                                            }
                                          }
                                        },
                                        "range": [
                                          1690,
                                          1709
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 46,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 46,
                                            "column": 31
                                          }
                                        }
                                      },
                                      "range": [
                                        1690,
                                        1710
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 46,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 46,
                                          "column": 32
                                        }
                                      }
                                    },
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "AssignmentExpression",
                                        "operator": "=",
                                        "left": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              1723,
                                              1727
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "_seed",
                                            "range": [
                                              1728,
                                              1733
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 22
                                              }
                                            }
                                          },
                                          "range": [
                                            1723,
                                            1733
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "right": {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            1736,
                                            1741
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 30
                                            }
                                          }
                                        },
                                        "range": [
                                          1723,
                                          1741
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 47,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 47,
                                            "column": 30
                                          }
                                        }
                                      },
                                      "range": [
                                        1723,
                                        1742
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 47,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 47,
                                          "column": 31
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    1676,
                                    1752
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 45,
                                      "column": 30
                                    },
                                    "end": {
                                      "line": 48,
                                      "column": 9
                                    }
                                  }
                                },
                                "generator": false,
                                "expression": false,
                                "range": [
                                  1659,
                                  1752
                                ],
                                "loc": {
                                  "start": {
                                    "line": 45,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 48,
                                    "column": 9
                                  }
                                }
                              },
                              "kind": "init",
                              "method": false,
                              "shorthand": false,
                              "computed": false,
                              "range": [
                                1654,
                                1752
                              ],
                              "loc": {
                                "start": {
                                  "line": 45,
                                  "column": 8
                                },
                                "end": {
                                  "line": 48,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "Property",
                              "key": {
                                "type": "Identifier",
                                "name": "enumerable",
                                "range": [
                                  1762,
                                  1772
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 18
                                  }
                                }
                              },
                              "value": {
                                "type": "Literal",
                                "value": true,
                                "raw": "true",
                                "range": [
                                  1774,
                                  1778
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 24
                                  }
                                }
                              },
                              "kind": "init",
                              "method": false,
                              "shorthand": false,
                              "computed": false,
                              "range": [
                                1762,
                                1778
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 8
                                },
                                "end": {
                                  "line": 49,
                                  "column": 24
                                }
                              }
                            },
                            {
                              "type": "Property",
                              "key": {
                                "type": "Identifier",
                                "name": "configurable",
                                "range": [
                                  1788,
                                  1800
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 20
                                  }
                                }
                              },
                              "value": {
                                "type": "Literal",
                                "value": true,
                                "raw": "true",
                                "range": [
                                  1802,
                                  1806
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 26
                                  }
                                }
                              },
                              "kind": "init",
                              "method": false,
                              "shorthand": false,
                              "computed": false,
                              "range": [
                                1788,
                                1806
                              ],
                              "loc": {
                                "start": {
                                  "line": 50,
                                  "column": 8
                                },
                                "end": {
                                  "line": 50,
                                  "column": 26
                                }
                              }
                            }
                          ],
                          "range": [
                            1575,
                            1812
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 60
                            },
                            "end": {
                              "line": 51,
                              "column": 5
                            }
                          }
                        }
                      ],
                      "range": [
                        1519,
                        1813
                      ],
                      "loc": {
                        "start": {
                          "line": 41,
                          "column": 4
                        },
                        "end": {
                          "line": 51,
                          "column": 6
                        }
                      }
                    },
                    "range": [
                      1519,
                      1814
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 4
                      },
                      "end": {
                        "line": 51,
                        "column": 7
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ScanSubscriber",
                            "range": [
                              1819,
                              1833
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 4
                              },
                              "end": {
                                "line": 52,
                                "column": 18
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1834,
                              1843
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 19
                              },
                              "end": {
                                "line": 52,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            1819,
                            1843
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 4
                            },
                            "end": {
                              "line": 52,
                              "column": 28
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            1844,
                            1849
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 29
                            },
                            "end": {
                              "line": 52,
                              "column": 34
                            }
                          }
                        },
                        "range": [
                          1819,
                          1849
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 4
                          },
                          "end": {
                            "line": 52,
                            "column": 34
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              1862,
                              1867
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 47
                              },
                              "end": {
                                "line": 52,
                                "column": 52
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "UnaryExpression",
                                "operator": "!",
                                "argument": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      1884,
                                      1888
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "hasSeed",
                                    "range": [
                                      1889,
                                      1896
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 18
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 25
                                      }
                                    }
                                  },
                                  "range": [
                                    1884,
                                    1896
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 53,
                                      "column": 25
                                    }
                                  }
                                },
                                "prefix": true,
                                "range": [
                                  1883,
                                  1896
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 53,
                                    "column": 25
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1912,
                                            1916
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 54,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 54,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "seed",
                                          "range": [
                                            1917,
                                            1921
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 54,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 54,
                                              "column": 21
                                            }
                                          }
                                        },
                                        "range": [
                                          1912,
                                          1921
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 54,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 54,
                                            "column": 21
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Identifier",
                                        "name": "value",
                                        "range": [
                                          1924,
                                          1929
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 54,
                                            "column": 24
                                          },
                                          "end": {
                                            "line": 54,
                                            "column": 29
                                          }
                                        }
                                      },
                                      "range": [
                                        1912,
                                        1929
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 54,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 54,
                                          "column": 29
                                        }
                                      }
                                    },
                                    "range": [
                                      1912,
                                      1930
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 54,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 54,
                                        "column": 30
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              1943,
                                              1947
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 55,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 55,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "destination",
                                            "range": [
                                              1948,
                                              1959
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 55,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 55,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "range": [
                                            1943,
                                            1959
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 55,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 55,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "next",
                                          "range": [
                                            1960,
                                            1964
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 55,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 55,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "range": [
                                          1943,
                                          1964
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 55,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 55,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            1965,
                                            1970
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 55,
                                              "column": 34
                                            },
                                            "end": {
                                              "line": 55,
                                              "column": 39
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        1943,
                                        1971
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 55,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 55,
                                          "column": 40
                                        }
                                      }
                                    },
                                    "range": [
                                      1943,
                                      1972
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 55,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 55,
                                        "column": 41
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1898,
                                  1982
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 27
                                  },
                                  "end": {
                                    "line": 56,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ReturnStatement",
                                    "argument": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2017,
                                            2021
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 58,
                                              "column": 19
                                            },
                                            "end": {
                                              "line": 58,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "_tryNext",
                                          "range": [
                                            2022,
                                            2030
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 58,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 58,
                                              "column": 32
                                            }
                                          }
                                        },
                                        "range": [
                                          2017,
                                          2030
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 58,
                                            "column": 19
                                          },
                                          "end": {
                                            "line": 58,
                                            "column": 32
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            2031,
                                            2036
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 58,
                                              "column": 33
                                            },
                                            "end": {
                                              "line": 58,
                                              "column": 38
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2017,
                                        2037
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 58,
                                          "column": 19
                                        },
                                        "end": {
                                          "line": 58,
                                          "column": 39
                                        }
                                      }
                                    },
                                    "range": [
                                      2010,
                                      2038
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 58,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 58,
                                        "column": 40
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1996,
                                  2048
                                ],
                                "loc": {
                                  "start": {
                                    "line": 57,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 59,
                                    "column": 9
                                  }
                                }
                              },
                              "range": [
                                1879,
                                2048
                              ],
                              "loc": {
                                "start": {
                                  "line": 53,
                                  "column": 8
                                },
                                "end": {
                                  "line": 59,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            1869,
                            2054
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 54
                            },
                            "end": {
                              "line": 60,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1852,
                          2054
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 37
                          },
                          "end": {
                            "line": 60,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1819,
                        2054
                      ],
                      "loc": {
                        "start": {
                          "line": 52,
                          "column": 4
                        },
                        "end": {
                          "line": 60,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1819,
                      2055
                    ],
                    "loc": {
                      "start": {
                        "line": 52,
                        "column": 4
                      },
                      "end": {
                        "line": 60,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ScanSubscriber",
                            "range": [
                              2060,
                              2074
                            ],
                            "loc": {
                              "start": {
                                "line": 61,
                                "column": 4
                              },
                              "end": {
                                "line": 61,
                                "column": 18
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2075,
                              2084
                            ],
                            "loc": {
                              "start": {
                                "line": 61,
                                "column": 19
                              },
                              "end": {
                                "line": 61,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            2060,
                            2084
                          ],
                          "loc": {
                            "start": {
                              "line": 61,
                              "column": 4
                            },
                            "end": {
                              "line": 61,
                              "column": 28
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_tryNext",
                          "range": [
                            2085,
                            2093
                          ],
                          "loc": {
                            "start": {
                              "line": 61,
                              "column": 29
                            },
                            "end": {
                              "line": 61,
                              "column": 37
                            }
                          }
                        },
                        "range": [
                          2060,
                          2093
                        ],
                        "loc": {
                          "start": {
                            "line": 61,
                            "column": 4
                          },
                          "end": {
                            "line": 61,
                            "column": 37
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              2106,
                              2111
                            ],
                            "loc": {
                              "start": {
                                "line": 61,
                                "column": 50
                              },
                              "end": {
                                "line": 61,
                                "column": 55
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "index",
                                    "range": [
                                      2127,
                                      2132
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 62,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 62,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "UpdateExpression",
                                    "operator": "++",
                                    "argument": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          2135,
                                          2139
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 62,
                                            "column": 20
                                          },
                                          "end": {
                                            "line": 62,
                                            "column": 24
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "index",
                                        "range": [
                                          2140,
                                          2145
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 62,
                                            "column": 25
                                          },
                                          "end": {
                                            "line": 62,
                                            "column": 30
                                          }
                                        }
                                      },
                                      "range": [
                                        2135,
                                        2145
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 62,
                                          "column": 20
                                        },
                                        "end": {
                                          "line": 62,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "prefix": false,
                                    "range": [
                                      2135,
                                      2147
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 62,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 62,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2127,
                                    2147
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 62,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 62,
                                      "column": 32
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2123,
                                2148
                              ],
                              "loc": {
                                "start": {
                                  "line": 62,
                                  "column": 8
                                },
                                "end": {
                                  "line": 62,
                                  "column": 33
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "result",
                                    "range": [
                                      2161,
                                      2167
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 63,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 63,
                                        "column": 18
                                      }
                                    }
                                  },
                                  "init": null,
                                  "range": [
                                    2161,
                                    2167
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 63,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 63,
                                      "column": 18
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2157,
                                2168
                              ],
                              "loc": {
                                "start": {
                                  "line": 63,
                                  "column": 8
                                },
                                "end": {
                                  "line": 63,
                                  "column": 19
                                }
                              }
                            },
                            {
                              "type": "TryStatement",
                              "block": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "Identifier",
                                        "name": "result",
                                        "range": [
                                          2195,
                                          2201
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 65,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 65,
                                            "column": 18
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2204,
                                              2208
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 65,
                                                "column": 21
                                              },
                                              "end": {
                                                "line": 65,
                                                "column": 25
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "accumulator",
                                            "range": [
                                              2209,
                                              2220
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 65,
                                                "column": 26
                                              },
                                              "end": {
                                                "line": 65,
                                                "column": 37
                                              }
                                            }
                                          },
                                          "range": [
                                            2204,
                                            2220
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 65,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 65,
                                              "column": 37
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                2221,
                                                2225
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 65,
                                                  "column": 38
                                                },
                                                "end": {
                                                  "line": 65,
                                                  "column": 42
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "seed",
                                              "range": [
                                                2226,
                                                2230
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 65,
                                                  "column": 43
                                                },
                                                "end": {
                                                  "line": 65,
                                                  "column": 47
                                                }
                                              }
                                            },
                                            "range": [
                                              2221,
                                              2230
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 65,
                                                "column": 38
                                              },
                                              "end": {
                                                "line": 65,
                                                "column": 47
                                              }
                                            }
                                          },
                                          {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              2232,
                                              2237
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 65,
                                                "column": 49
                                              },
                                              "end": {
                                                "line": 65,
                                                "column": 54
                                              }
                                            }
                                          },
                                          {
                                            "type": "Identifier",
                                            "name": "index",
                                            "range": [
                                              2239,
                                              2244
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 65,
                                                "column": 56
                                              },
                                              "end": {
                                                "line": 65,
                                                "column": 61
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2204,
                                          2245
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 65,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 65,
                                            "column": 62
                                          }
                                        }
                                      },
                                      "range": [
                                        2195,
                                        2245
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 65,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 65,
                                          "column": 62
                                        }
                                      }
                                    },
                                    "range": [
                                      2195,
                                      2246
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 65,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 65,
                                        "column": 63
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2181,
                                  2256
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 9
                                  }
                                }
                              },
                              "handler": {
                                "type": "CatchClause",
                                "param": {
                                  "type": "Identifier",
                                  "name": "err",
                                  "range": [
                                    2272,
                                    2275
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 67,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 67,
                                      "column": 18
                                    }
                                  }
                                },
                                "body": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                2291,
                                                2295
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 68,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 68,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                2296,
                                                2307
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 68,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 68,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              2291,
                                              2307
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 68,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 68,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "error",
                                            "range": [
                                              2308,
                                              2313
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 68,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 68,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            2291,
                                            2313
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 68,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 68,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "err",
                                            "range": [
                                              2314,
                                              2317
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 68,
                                                "column": 35
                                              },
                                              "end": {
                                                "line": 68,
                                                "column": 38
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2291,
                                          2318
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 68,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 68,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "range": [
                                        2291,
                                        2319
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 68,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 68,
                                          "column": 40
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    2277,
                                    2329
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 67,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 69,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  2265,
                                  2329
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 9
                                  }
                                }
                              },
                              "finalizer": null,
                              "range": [
                                2177,
                                2329
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 8
                                },
                                "end": {
                                  "line": 69,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2338,
                                      2342
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 70,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 70,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "seed",
                                    "range": [
                                      2343,
                                      2347
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 70,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 70,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "range": [
                                    2338,
                                    2347
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 70,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 70,
                                      "column": 17
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Identifier",
                                  "name": "result",
                                  "range": [
                                    2350,
                                    2356
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 70,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 70,
                                      "column": 26
                                    }
                                  }
                                },
                                "range": [
                                  2338,
                                  2356
                                ],
                                "loc": {
                                  "start": {
                                    "line": 70,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 70,
                                    "column": 26
                                  }
                                }
                              },
                              "range": [
                                2338,
                                2357
                              ],
                              "loc": {
                                "start": {
                                  "line": 70,
                                  "column": 8
                                },
                                "end": {
                                  "line": 70,
                                  "column": 27
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2366,
                                        2370
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 71,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 71,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        2371,
                                        2382
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 71,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 71,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      2366,
                                      2382
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 71,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 71,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "next",
                                    "range": [
                                      2383,
                                      2387
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 71,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 71,
                                        "column": 29
                                      }
                                    }
                                  },
                                  "range": [
                                    2366,
                                    2387
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 71,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 71,
                                      "column": 29
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "result",
                                    "range": [
                                      2388,
                                      2394
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 71,
                                        "column": 30
                                      },
                                      "end": {
                                        "line": 71,
                                        "column": 36
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2366,
                                  2395
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 37
                                  }
                                }
                              },
                              "range": [
                                2366,
                                2396
                              ],
                              "loc": {
                                "start": {
                                  "line": 71,
                                  "column": 8
                                },
                                "end": {
                                  "line": 71,
                                  "column": 38
                                }
                              }
                            }
                          ],
                          "range": [
                            2113,
                            2402
                          ],
                          "loc": {
                            "start": {
                              "line": 61,
                              "column": 57
                            },
                            "end": {
                              "line": 72,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2096,
                          2402
                        ],
                        "loc": {
                          "start": {
                            "line": 61,
                            "column": 40
                          },
                          "end": {
                            "line": 72,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2060,
                        2402
                      ],
                      "loc": {
                        "start": {
                          "line": 61,
                          "column": 4
                        },
                        "end": {
                          "line": 72,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2060,
                      2403
                    ],
                    "loc": {
                      "start": {
                        "line": 61,
                        "column": 4
                      },
                      "end": {
                        "line": 72,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "ScanSubscriber",
                      "range": [
                        2415,
                        2429
                      ],
                      "loc": {
                        "start": {
                          "line": 73,
                          "column": 11
                        },
                        "end": {
                          "line": 73,
                          "column": 25
                        }
                      }
                    },
                    "range": [
                      2408,
                      2430
                    ],
                    "loc": {
                      "start": {
                        "line": 73,
                        "column": 4
                      },
                      "end": {
                        "line": 73,
                        "column": 26
                      }
                    }
                  }
                ],
                "range": [
                  1232,
                  2432
                ],
                "loc": {
                  "start": {
                    "line": 32,
                    "column": 40
                  },
                  "end": {
                    "line": 74,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1214,
                2432
              ],
              "loc": {
                "start": {
                  "line": 32,
                  "column": 22
                },
                "end": {
                  "line": 74,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  2433,
                  2443
                ],
                "loc": {
                  "start": {
                    "line": 74,
                    "column": 2
                  },
                  "end": {
                    "line": 74,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              1214,
              2444
            ],
            "loc": {
              "start": {
                "line": 32,
                "column": 22
              },
              "end": {
                "line": 74,
                "column": 13
              }
            }
          },
          "range": [
            1196,
            2445
          ],
          "loc": {
            "start": {
              "line": 32,
              "column": 4
            },
            "end": {
              "line": 74,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1192,
        2446
      ],
      "loc": {
        "start": {
          "line": 32,
          "column": 0
        },
        "end": {
          "line": 74,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1100,
            1191
          ],
          "loc": {
            "start": {
              "line": 27,
              "column": 0
            },
            "end": {
              "line": 31,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=scan.js.map",
          "range": [
            2447,
            2479
          ],
          "loc": {
            "start": {
              "line": 75,
              "column": 0
            },
            "end": {
              "line": 75,
              "column": 32
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    2446
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 74,
      "column": 15
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": " tslint:disable:max-line-length ",
      "range": [
        44,
        80
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 36
        }
      }
    },
    {
      "type": "Line",
      "value": " providing a seed of `undefined` *should* be valid and trigger",
      "range": [
        152,
        216
      ],
      "loc": {
        "start": {
          "line": 5,
          "column": 4
        },
        "end": {
          "line": 5,
          "column": 68
        }
      }
    },
    {
      "type": "Line",
      "value": " hasSeed! so don't use `seed !== undefined` checks!",
      "range": [
        221,
        274
      ],
      "loc": {
        "start": {
          "line": 6,
          "column": 4
        },
        "end": {
          "line": 6,
          "column": 57
        }
      }
    },
    {
      "type": "Line",
      "value": " For this reason, we have to check it here at the original call site",
      "range": [
        279,
        349
      ],
      "loc": {
        "start": {
          "line": 7,
          "column": 4
        },
        "end": {
          "line": 7,
          "column": 74
        }
      }
    },
    {
      "type": "Line",
      "value": " otherwise inside Operator/Subscriber we won't know if `undefined`",
      "range": [
        354,
        422
      ],
      "loc": {
        "start": {
          "line": 8,
          "column": 4
        },
        "end": {
          "line": 8,
          "column": 72
        }
      }
    },
    {
      "type": "Line",
      "value": " means they didn't provide anything or if they literally provided `undefined`",
      "range": [
        427,
        506
      ],
      "loc": {
        "start": {
          "line": 9,
          "column": 4
        },
        "end": {
          "line": 9,
          "column": 83
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        1100,
        1191
      ],
      "loc": {
        "start": {
          "line": 27,
          "column": 0
        },
        "end": {
          "line": 31,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=scan.js.map",
      "range": [
        2447,
        2479
      ],
      "loc": {
        "start": {
          "line": 75,
          "column": 0
        },
        "end": {
          "line": 75,
          "column": 32
        }
      }
    }
  ]
}