public class org.hsqldb.SetFunctionValueAggregate implements org.hsqldb.SetFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hsqldb.SetFunctionValueAggregate
  super_class: java.lang.Object
{
  private org.hsqldb.lib.HashSet distinctValues;
    descriptor: Lorg/hsqldb/lib/HashSet;
    flags: (0x0002) ACC_PRIVATE

  private final boolean isDistinct;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hsqldb.Session session;
    descriptor: Lorg/hsqldb/Session;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int setType;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int typeCode;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hsqldb.types.Type type;
    descriptor: Lorg/hsqldb/types/Type;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hsqldb.types.Type returnType;
    descriptor: Lorg/hsqldb/types/Type;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hsqldb.types.TypedComparator comparator;
    descriptor: Lorg/hsqldb/types/TypedComparator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long count;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private boolean hasNull;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean every;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean some;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private long currentLong;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private double currentDouble;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private java.math.BigDecimal currentBigDecimal;
    descriptor: Ljava/math/BigDecimal;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object currentValue;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  static final java.math.BigInteger multiplier;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  long hi;
    descriptor: J
    flags: (0x0000) 

  long lo;
    descriptor: J
    flags: (0x0000) 

  private double sk;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double vk;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private long n;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private boolean initialized;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean sample;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 484
            ldc 4294967296
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
         1: .line 483
            putstatic org.hsqldb.SetFunctionValueAggregate.multiplier:Ljava/math/BigInteger;
         2: .line 484
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.hsqldb.Session, int, org.hsqldb.types.Type, org.hsqldb.types.Type, boolean);
    descriptor: (Lorg/hsqldb/Session;ILorg/hsqldb/types/Type;Lorg/hsqldb/types/Type;Z)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
        start local 1 // org.hsqldb.Session session
        start local 2 // int setType
        start local 3 // org.hsqldb.types.Type type
        start local 4 // org.hsqldb.types.Type returnType
        start local 5 // boolean isDistinct
         0: .line 91
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 84
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.SetFunctionValueAggregate.every:Z
         2: .line 85
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.SetFunctionValueAggregate.some:Z
         3: .line 94
            aload 0 /* this */
            aload 1 /* session */
            putfield org.hsqldb.SetFunctionValueAggregate.session:Lorg/hsqldb/Session;
         4: .line 95
            aload 0 /* this */
            iload 2 /* setType */
            putfield org.hsqldb.SetFunctionValueAggregate.setType:I
         5: .line 96
            aload 0 /* this */
            aload 3 /* type */
            putfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
         6: .line 97
            aload 0 /* this */
            aload 4 /* returnType */
            putfield org.hsqldb.SetFunctionValueAggregate.returnType:Lorg/hsqldb/types/Type;
         7: .line 98
            aload 0 /* this */
            iload 5 /* isDistinct */
            putfield org.hsqldb.SetFunctionValueAggregate.isDistinct:Z
         8: .line 100
            iload 5 /* isDistinct */
            ifeq 18
         9: .line 101
            aload 0 /* this */
            new org.hsqldb.lib.HashSet
            dup
            invokespecial org.hsqldb.lib.HashSet.<init>:()V
            putfield org.hsqldb.SetFunctionValueAggregate.distinctValues:Lorg/hsqldb/lib/HashSet;
        10: .line 103
            aload 3 /* type */
            invokevirtual org.hsqldb.types.Type.isRowType:()Z
            ifne 12
            aload 3 /* type */
            invokevirtual org.hsqldb.types.Type.isArrayType:()Z
            ifne 12
        11: .line 104
            aload 3 /* type */
            invokevirtual org.hsqldb.types.Type.isCharacterType:()Z
            ifeq 16
        12: .line 105
      StackMap locals: org.hsqldb.SetFunctionValueAggregate org.hsqldb.Session int org.hsqldb.types.Type org.hsqldb.types.Type int
      StackMap stack:
            aload 0 /* this */
            new org.hsqldb.types.TypedComparator
            dup
            aload 1 /* session */
            invokespecial org.hsqldb.types.TypedComparator.<init>:(Lorg/hsqldb/Session;)V
            putfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
        13: .line 107
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
            aload 3 /* type */
            aconst_null
            invokevirtual org.hsqldb.types.TypedComparator.setType:(Lorg/hsqldb/types/Type;Lorg/hsqldb/SortAndSlice;)V
        14: .line 108
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.distinctValues:Lorg/hsqldb/lib/HashSet;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
            invokevirtual org.hsqldb.lib.HashSet.setComparator:(Lorg/hsqldb/lib/ObjectComparator;)V
        15: .line 109
            goto 19
        16: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
        17: .line 112
            goto 19
        18: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
        19: .line 116
      StackMap locals:
      StackMap stack:
            iload 2 /* setType */
            tableswitch { // 82 - 84
                   82: 20
                   83: 21
                   84: 20
              default: 21
          }
        20: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.SetFunctionValueAggregate.sample:Z
        21: .line 123
      StackMap locals:
      StackMap stack:
            aload 3 /* type */
            ifnonnull 24
        22: .line 124
            aload 0 /* this */
            iconst_0
            putfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
        23: .line 125
            goto 31
        24: .line 126
      StackMap locals:
      StackMap stack:
            aload 3 /* type */
            invokevirtual org.hsqldb.types.Type.isIntervalYearMonthType:()Z
            ifeq 27
        25: .line 127
            aload 0 /* this */
            bipush 102
            putfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
        26: .line 128
            goto 31
      StackMap locals:
      StackMap stack:
        27: aload 3 /* type */
            invokevirtual org.hsqldb.types.Type.isIntervalDaySecondType:()Z
            ifeq 30
        28: .line 129
            aload 0 /* this */
            bipush 106
            putfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
        29: .line 130
            goto 31
        30: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* type */
            getfield org.hsqldb.types.Type.typeCode:I
            putfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
        31: .line 134
      StackMap locals:
      StackMap stack:
            return
        end local 5 // boolean isDistinct
        end local 4 // org.hsqldb.types.Type returnType
        end local 3 // org.hsqldb.types.Type type
        end local 2 // int setType
        end local 1 // org.hsqldb.Session session
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   32     0        this  Lorg/hsqldb/SetFunctionValueAggregate;
            0   32     1     session  Lorg/hsqldb/Session;
            0   32     2     setType  I
            0   32     3        type  Lorg/hsqldb/types/Type;
            0   32     4  returnType  Lorg/hsqldb/types/Type;
            0   32     5  isDistinct  Z
    MethodParameters:
            Name  Flags
      session     
      setType     
      type        
      returnType  
      isDistinct  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
         0: .line 136
            return
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hsqldb/SetFunctionValueAggregate;

  public void add(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
        start local 1 // java.lang.Object itemLeft
        start local 2 // java.lang.Object itemRight
         0: .line 138
            return
        end local 2 // java.lang.Object itemRight
        end local 1 // java.lang.Object itemLeft
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/hsqldb/SetFunctionValueAggregate;
            0    1     1   itemLeft  Ljava/lang/Object;
            0    1     2  itemRight  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      itemLeft   
      itemRight  

  public void add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
        start local 1 // java.lang.Object item
         0: .line 142
            aload 1 /* item */
            ifnonnull 3
         1: .line 143
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.SetFunctionValueAggregate.hasNull:Z
         2: .line 145
            return
         3: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.isDistinct:Z
            ifeq 5
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.distinctValues:Lorg/hsqldb/lib/HashSet;
            aload 1 /* item */
            invokevirtual org.hsqldb.lib.HashSet.add:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 149
            return
         5: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            lconst_1
            ladd
            putfield org.hsqldb.SetFunctionValueAggregate.count:J
         6: .line 154
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.setType:I
            tableswitch { // 74 - 98
                   74: 7
                   75: 8
                   76: 42
                   77: 48
                   78: 8
                   79: 54
                   80: 60
                   81: 66
                   82: 66
                   83: 66
                   84: 66
                   85: 70
                   86: 70
                   87: 70
                   88: 70
                   89: 70
                   90: 70
                   91: 70
                   92: 70
                   93: 70
                   94: 70
                   95: 70
                   96: 70
                   97: 70
                   98: 68
              default: 70
          }
         7: .line 157
      StackMap locals:
      StackMap stack:
            return
         8: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
            lookupswitch { // 14
                   -6: 9
                    2: 34
                    3: 34
                    4: 9
                    5: 9
                    6: 32
                    7: 32
                    8: 32
                   25: 30
                   91: 23
                   93: 23
                   95: 23
                  102: 20
                  106: 11
              default: 41
          }
         9: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            aload 1 /* item */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.intValue:()I
            i2l
            ladd
            putfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        10: .line 168
            return
        11: .line 171
      StackMap locals:
      StackMap stack:
            aload 1 /* item */
            instanceof org.hsqldb.types.IntervalSecondData
            ifeq 19
        12: .line 172
            aload 0 /* this */
            aload 1 /* item */
            checkcast org.hsqldb.types.IntervalSecondData
            invokevirtual org.hsqldb.types.IntervalSecondData.getSeconds:()J
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addLong:(J)V
        13: .line 174
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        14: .line 175
            aload 1 /* item */
            checkcast org.hsqldb.types.IntervalSecondData
            invokevirtual org.hsqldb.types.IntervalSecondData.getNanos:()I
            i2l
            ladd
        15: .line 174
            putfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        16: .line 177
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            ldc 1000000000
            lcmp
            ifle 19
        17: .line 178
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            ldc 1000000000
            ldiv
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addLong:(J)V
        18: .line 180
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            ldc 1000000000
            lrem
            putfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        19: .line 184
      StackMap locals:
      StackMap stack:
            return
        20: .line 187
      StackMap locals:
      StackMap stack:
            aload 1 /* item */
            instanceof org.hsqldb.types.IntervalMonthData
            ifeq 22
        21: .line 188
            aload 0 /* this */
            aload 1 /* item */
            checkcast org.hsqldb.types.IntervalMonthData
            getfield org.hsqldb.types.IntervalMonthData.units:I
            i2l
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addLong:(J)V
        22: .line 191
      StackMap locals:
      StackMap stack:
            return
        23: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* item */
            checkcast org.hsqldb.types.TimestampData
            invokevirtual org.hsqldb.types.TimestampData.getSeconds:()J
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addLong:(J)V
        24: .line 198
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            aload 1 /* item */
            checkcast org.hsqldb.types.TimestampData
            invokevirtual org.hsqldb.types.TimestampData.getNanos:()I
            i2l
            ladd
            putfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        25: .line 200
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            ldc 1000000000
            lcmp
            ifle 28
        26: .line 201
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            ldc 1000000000
            ldiv
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addLong:(J)V
        27: .line 203
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            ldc 1000000000
            lrem
            putfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        28: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* item */
            checkcast org.hsqldb.types.TimestampData
            invokevirtual org.hsqldb.types.TimestampData.getZone:()I
            i2d
            putfield org.hsqldb.SetFunctionValueAggregate.currentDouble:D
        29: .line 208
            return
        30: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* item */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.longValue:()J
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addLong:(J)V
        31: .line 213
            return
        32: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.currentDouble:D
            aload 1 /* item */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.doubleValue:()D
            dadd
            putfield org.hsqldb.SetFunctionValueAggregate.currentDouble:D
        33: .line 220
            return
        34: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
            ifnonnull 37
        35: .line 225
            aload 0 /* this */
            aload 1 /* item */
            checkcast java.math.BigDecimal
            putfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
        36: .line 226
            goto 40
        37: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
        38: .line 228
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
            aload 1 /* item */
            checkcast java.math.BigDecimal
            invokevirtual java.math.BigDecimal.add:(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;
        39: .line 227
            putfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
        40: .line 231
      StackMap locals:
      StackMap stack:
            return
        41: .line 234
      StackMap locals:
      StackMap stack:
            sipush 5563
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            athrow
        42: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
            ifnonnull 45
        43: .line 239
            aload 0 /* this */
            aload 1 /* item */
            putfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
        44: .line 241
            return
        45: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.session:Lorg/hsqldb/Session;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
            aload 1 /* item */
            invokevirtual org.hsqldb.types.Type.compare:(Lorg/hsqldb/Session;Ljava/lang/Object;Ljava/lang/Object;)I
            ifle 47
        46: .line 245
            aload 0 /* this */
            aload 1 /* item */
            putfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
        47: .line 248
      StackMap locals:
      StackMap stack:
            return
        48: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
            ifnonnull 51
        49: .line 252
            aload 0 /* this */
            aload 1 /* item */
            putfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
        50: .line 254
            return
        51: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.session:Lorg/hsqldb/Session;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
            aload 1 /* item */
            invokevirtual org.hsqldb.types.Type.compare:(Lorg/hsqldb/Session;Ljava/lang/Object;Ljava/lang/Object;)I
            ifge 53
        52: .line 258
            aload 0 /* this */
            aload 1 /* item */
            putfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
        53: .line 261
      StackMap locals:
      StackMap stack:
            return
        54: .line 264
      StackMap locals:
      StackMap stack:
            aload 1 /* item */
            instanceof java.lang.Boolean
            ifne 56
        55: .line 265
            sipush 5563
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            athrow
        56: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.every:Z
            ifeq 57
            aload 1 /* item */
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 57
            iconst_1
            goto 58
      StackMap locals:
      StackMap stack: org.hsqldb.SetFunctionValueAggregate
        57: iconst_0
      StackMap locals: org.hsqldb.SetFunctionValueAggregate java.lang.Object
      StackMap stack: org.hsqldb.SetFunctionValueAggregate int
        58: putfield org.hsqldb.SetFunctionValueAggregate.every:Z
        59: .line 270
            return
        60: .line 273
      StackMap locals:
      StackMap stack:
            aload 1 /* item */
            instanceof java.lang.Boolean
            ifne 62
        61: .line 274
            sipush 5563
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            athrow
        62: .line 277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.some:Z
            ifne 63
            aload 1 /* item */
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifne 63
            iconst_0
            goto 64
      StackMap locals:
      StackMap stack: org.hsqldb.SetFunctionValueAggregate
        63: iconst_1
      StackMap locals: org.hsqldb.SetFunctionValueAggregate java.lang.Object
      StackMap stack: org.hsqldb.SetFunctionValueAggregate int
        64: putfield org.hsqldb.SetFunctionValueAggregate.some:Z
        65: .line 279
            return
        66: .line 285
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* item */
            checkcast java.lang.Number
            invokevirtual org.hsqldb.SetFunctionValueAggregate.addDataPoint:(Ljava/lang/Number;)V
        67: .line 287
            return
        68: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* item */
            putfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
        69: .line 292
            return
        70: .line 295
      StackMap locals:
      StackMap stack:
            sipush 201
            ldc "SetFunction"
            invokestatic org.hsqldb.error.Error.runtimeError:(ILjava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        end local 1 // java.lang.Object item
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   71     0  this  Lorg/hsqldb/SetFunctionValueAggregate;
            0   71     1  item  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      item  

  public java.lang.Object getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=1
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
         0: .line 301
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.hasNull:Z
            ifeq 2
         1: .line 302
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.session:Lorg/hsqldb/Session;
            sipush 1003
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            invokevirtual org.hsqldb.Session.addWarning:(Lorg/hsqldb/HsqlException;)V
         2: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.setType:I
            bipush 74
            if_icmpne 12
         3: .line 308
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            lconst_1
            lcmp
            ifle 11
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.isDistinct:Z
            ifeq 11
         4: .line 309
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            invokevirtual org.hsqldb.types.Type.isRowType:()Z
            ifne 6
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            invokevirtual org.hsqldb.types.Type.isArrayType:()Z
            ifne 6
         5: .line 310
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            invokevirtual org.hsqldb.types.Type.isCharacterType:()Z
            ifeq 11
         6: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.distinctValues:Lorg/hsqldb/lib/HashSet;
            invokevirtual org.hsqldb.lib.HashSet.toArray:()[Ljava/lang/Object;
            astore 1 /* array */
        start local 1 // java.lang.Object[] array
         7: .line 313
            aload 1 /* array */
            aload 1 /* array */
            arraylength
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
            invokestatic org.hsqldb.lib.ArraySort.sort:([Ljava/lang/Object;ILjava/util/Comparator;)V
         8: .line 315
            aload 0 /* this */
            aload 1 /* array */
            aload 1 /* array */
            arraylength
         9: .line 316
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.comparator:Lorg/hsqldb/types/TypedComparator;
        10: .line 315
            invokestatic org.hsqldb.lib.ArraySort.deDuplicate:([Ljava/lang/Object;ILjava/util/Comparator;)I
            i2l
            putfield org.hsqldb.SetFunctionValueAggregate.count:J
        end local 1 // java.lang.Object[] array
        11: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokestatic org.hsqldb.map.ValuePool.getLong:(J)Ljava/lang/Long;
            areturn
        12: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            lconst_0
            lcmp
            ifne 14
        13: .line 324
            aconst_null
            areturn
        14: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.setType:I
            tableswitch { // 75 - 98
                   75: 67
                   76: 86
                   77: 86
                   78: 15
                   79: 87
                   80: 90
                   81: 93
                   82: 93
                   83: 94
                   84: 94
                   85: 96
                   86: 96
                   87: 96
                   88: 96
                   89: 96
                   90: 96
                   91: 96
                   92: 96
                   93: 96
                   94: 96
                   95: 96
                   96: 96
                   97: 96
                   98: 95
              default: 96
          }
        15: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
            lookupswitch { // 14
                   -6: 16
                    2: 29
                    3: 29
                    4: 16
                    5: 16
                    6: 28
                    7: 28
                    8: 28
                   25: 22
                   91: 56
                   93: 56
                   95: 56
                  102: 37
                  106: 37
              default: 64
          }
        16: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.returnType:Lorg/hsqldb/types/Type;
            getfield org.hsqldb.types.Type.scale:I
            ifeq 21
        17: .line 336
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.returnType:Lorg/hsqldb/types/Type;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.session:Lorg/hsqldb/Session;
        18: .line 337
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
        19: .line 338
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
        20: .line 336
            invokevirtual org.hsqldb.types.Type.divide:(Lorg/hsqldb/Session;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        21: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            ldiv
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
        22: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getLongSum:()Ljava/math/BigInteger;
        23: .line 345
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
        24: .line 344
            invokevirtual java.math.BigInteger.divide:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
        25: .line 345
            invokevirtual java.math.BigInteger.longValue:()J
        26: .line 344
            lstore 1 /* value */
        start local 1 // long value
        27: .line 347
            lload 1 /* value */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
        end local 1 // long value
        28: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentDouble:D
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            l2d
            ddiv
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        29: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.returnType:Lorg/hsqldb/types/Type;
            getfield org.hsqldb.types.Type.scale:I
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            getfield org.hsqldb.types.Type.scale:I
            if_icmpne 33
        30: .line 357
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
        31: .line 358
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokespecial java.math.BigDecimal.<init>:(J)V
            getstatic java.math.RoundingMode.DOWN:Ljava/math/RoundingMode;
        32: .line 357
            invokevirtual java.math.BigDecimal.divide:(Ljava/math/BigDecimal;Ljava/math/RoundingMode;)Ljava/math/BigDecimal;
            areturn
        33: .line 360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.returnType:Lorg/hsqldb/types/Type;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.session:Lorg/hsqldb/Session;
        34: .line 361
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
        35: .line 362
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
        36: .line 360
            invokevirtual org.hsqldb.types.Type.divide:(Lorg/hsqldb/Session;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        37: .line 366
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getLongSum:()Ljava/math/BigInteger;
        38: .line 367
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
        39: .line 366
            invokevirtual java.math.BigInteger.divideAndRemainder:(Ljava/math/BigInteger;)[Ljava/math/BigInteger;
            astore 1 /* bi */
        start local 1 // java.math.BigInteger[] bi
        40: .line 369
            aload 1 /* bi */
            iconst_0
            aaload
            invokestatic org.hsqldb.types.NumberType.compareToLongLimits:(Ljava/math/BigInteger;)I
            ifeq 42
        41: .line 370
            sipush 3435
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            athrow
        42: .line 373
      StackMap locals: java.math.BigInteger[]
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            invokevirtual org.hsqldb.types.Type.isIntervalDaySecondType:()Z
            ifeq 54
        43: .line 375
            aload 1 /* bi */
            iconst_1
            aaload
            invokevirtual java.math.BigInteger.longValue:()J
            ldc 1000000000
            lmul
        44: .line 376
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        45: .line 375
            ladd
        46: .line 376
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
        47: .line 375
            ldiv
        48: .line 374
            lstore 2 /* nanos */
        start local 2 // long nanos
        49: .line 378
            new org.hsqldb.types.IntervalSecondData
            dup
            aload 1 /* bi */
            iconst_0
            aaload
            invokevirtual java.math.BigInteger.longValue:()J
        50: .line 379
            lload 2 /* nanos */
        51: .line 380
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            checkcast org.hsqldb.types.IntervalType
        52: .line 381
            iconst_1
        53: .line 378
            invokespecial org.hsqldb.types.IntervalSecondData.<init>:(JJLorg/hsqldb/types/IntervalType;Z)V
            areturn
        end local 2 // long nanos
        54: .line 384
      StackMap locals:
      StackMap stack:
            aload 1 /* bi */
            iconst_0
            aaload
            invokevirtual java.math.BigInteger.longValue:()J
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            checkcast org.hsqldb.types.IntervalType
        55: .line 383
            invokestatic org.hsqldb.types.IntervalMonthData.newIntervalMonth:(JLorg/hsqldb/types/IntervalType;)Lorg/hsqldb/types/IntervalMonthData;
            areturn
        end local 1 // java.math.BigInteger[] bi
        56: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getLongSum:()Ljava/math/BigInteger;
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.count:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.divide:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
        57: .line 390
            astore 1 /* bi */
        start local 1 // java.math.BigInteger bi
        58: .line 393
            aload 1 /* bi */
            invokestatic org.hsqldb.types.NumberType.compareToLongLimits:(Ljava/math/BigInteger;)I
            ifeq 60
        59: .line 394
            sipush 3435
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            athrow
        60: .line 397
      StackMap locals: java.math.BigInteger
      StackMap stack:
            new org.hsqldb.types.TimestampData
            dup
            aload 1 /* bi */
            invokevirtual java.math.BigInteger.longValue:()J
        61: .line 398
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            l2i
        62: .line 399
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentDouble:D
            d2i
        63: .line 397
            invokespecial org.hsqldb.types.TimestampData.<init>:(JII)V
            areturn
        end local 1 // java.math.BigInteger bi
        64: .line 402
      StackMap locals:
      StackMap stack:
            sipush 201
        65: .line 403
            ldc "SetFunction"
        66: .line 402
            invokestatic org.hsqldb.error.Error.runtimeError:(ILjava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        67: .line 407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.typeCode:I
            lookupswitch { // 11
                   -6: 68
                    2: 71
                    3: 71
                    4: 68
                    5: 68
                    6: 70
                    7: 70
                    8: 70
                   25: 69
                  102: 72
                  106: 72
              default: 83
          }
        68: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
        69: .line 415
      StackMap locals:
      StackMap stack:
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getLongSum:()Ljava/math/BigInteger;
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;)V
            areturn
        70: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentDouble:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        71: .line 424
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentBigDecimal:Ljava/math/BigDecimal;
            areturn
        72: .line 428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getLongSum:()Ljava/math/BigInteger;
            astore 1 /* bi */
        start local 1 // java.math.BigInteger bi
        73: .line 430
            aload 1 /* bi */
            invokestatic org.hsqldb.types.NumberType.compareToLongLimits:(Ljava/math/BigInteger;)I
            ifeq 75
        74: .line 431
            sipush 3435
            invokestatic org.hsqldb.error.Error.error:(I)Lorg/hsqldb/HsqlException;
            athrow
        75: .line 434
      StackMap locals: java.math.BigInteger
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            invokevirtual org.hsqldb.types.Type.isIntervalDaySecondType:()Z
            ifeq 81
        76: .line 435
            new org.hsqldb.types.IntervalSecondData
            dup
            aload 1 /* bi */
            invokevirtual java.math.BigInteger.longValue:()J
        77: .line 436
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentLong:J
        78: .line 437
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            checkcast org.hsqldb.types.IntervalType
        79: .line 438
            iconst_1
        80: .line 435
            invokespecial org.hsqldb.types.IntervalSecondData.<init>:(JJLorg/hsqldb/types/IntervalType;Z)V
            areturn
        81: .line 441
      StackMap locals:
      StackMap stack:
            aload 1 /* bi */
            invokevirtual java.math.BigInteger.longValue:()J
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.type:Lorg/hsqldb/types/Type;
            checkcast org.hsqldb.types.IntervalType
        82: .line 440
            invokestatic org.hsqldb.types.IntervalMonthData.newIntervalMonth:(JLorg/hsqldb/types/IntervalType;)Lorg/hsqldb/types/IntervalMonthData;
            areturn
        end local 1 // java.math.BigInteger bi
        83: .line 445
      StackMap locals:
      StackMap stack:
            sipush 201
        84: .line 446
            ldc "SetFunction"
        85: .line 445
            invokestatic org.hsqldb.error.Error.runtimeError:(ILjava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        86: .line 451
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
            areturn
        87: .line 454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.every:Z
            ifeq 88
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            goto 89
        88: .line 455
      StackMap locals:
      StackMap stack:
            getstatic java.lang.Boolean.FALSE:Ljava/lang/Boolean;
        89: .line 454
      StackMap locals:
      StackMap stack: java.lang.Boolean
            areturn
        90: .line 458
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.some:Z
            ifeq 91
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            goto 92
        91: .line 459
      StackMap locals:
      StackMap stack:
            getstatic java.lang.Boolean.FALSE:Ljava/lang/Boolean;
        92: .line 458
      StackMap locals:
      StackMap stack: java.lang.Boolean
            areturn
        93: .line 463
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getStdDev:()Ljava/lang/Double;
            areturn
        94: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hsqldb.SetFunctionValueAggregate.getVariance:()Ljava/lang/Double;
            areturn
        95: .line 470
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.currentValue:Ljava/lang/Object;
            areturn
        96: .line 473
      StackMap locals:
      StackMap stack:
            sipush 201
            ldc "SetFunction"
            invokestatic org.hsqldb.error.Error.runtimeError:(ILjava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   97     0   this  Lorg/hsqldb/SetFunctionValueAggregate;
            7   11     1  array  [Ljava/lang/Object;
           27   28     1  value  J
           40   56     1     bi  [Ljava/math/BigInteger;
           49   54     2  nanos  J
           58   64     1     bi  Ljava/math/BigInteger;
           73   83     1     bi  Ljava/math/BigInteger;

  private void addLong(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
        start local 1 // long value
         0: .line 490
            lload 1 /* value */
            lconst_0
            lcmp
            ifeq 11
         1: .line 491
            lload 1 /* value */
            lconst_0
            lcmp
            ifle 5
         2: .line 492
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.hi:J
            lload 1 /* value */
            bipush 32
            lshr
            ladd
            putfield org.hsqldb.SetFunctionValueAggregate.hi:J
         3: .line 493
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.lo:J
            lload 1 /* value */
            ldc 4294967295
            land
            ladd
            putfield org.hsqldb.SetFunctionValueAggregate.lo:J
         4: .line 494
            goto 11
         5: .line 495
      StackMap locals:
      StackMap stack:
            lload 1 /* value */
            ldc -9223372036854775808
            lcmp
            ifne 8
         6: .line 496
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.hi:J
            ldc 2147483648
            lsub
            putfield org.hsqldb.SetFunctionValueAggregate.hi:J
         7: .line 497
            goto 11
         8: .line 498
      StackMap locals:
      StackMap stack:
            lload 1 /* value */
            ldc -1
            lxor
            lconst_1
            ladd
            lstore 3 /* temp */
        start local 3 // long temp
         9: .line 500
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.hi:J
            lload 3 /* temp */
            bipush 32
            lshr
            lsub
            putfield org.hsqldb.SetFunctionValueAggregate.hi:J
        10: .line 501
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.lo:J
            lload 3 /* temp */
            ldc 4294967295
            land
            lsub
            putfield org.hsqldb.SetFunctionValueAggregate.lo:J
        end local 3 // long temp
        11: .line 504
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long value
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/hsqldb/SetFunctionValueAggregate;
            0   12     1  value  J
            9   11     3   temp  J
    MethodParameters:
       Name  Flags
      value  

  private java.math.BigInteger getLongSum();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
         0: .line 508
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.lo:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            astore 1 /* biglo */
        start local 1 // java.math.BigInteger biglo
         1: .line 509
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.hi:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            astore 2 /* bighi */
        start local 2 // java.math.BigInteger bighi
         2: .line 510
            aload 2 /* bighi */
            getstatic org.hsqldb.SetFunctionValueAggregate.multiplier:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.multiply:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            aload 1 /* biglo */
            invokevirtual java.math.BigInteger.add:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 3 /* result */
        start local 3 // java.math.BigInteger result
         3: .line 517
            aload 3 /* result */
            areturn
        end local 3 // java.math.BigInteger result
        end local 2 // java.math.BigInteger bighi
        end local 1 // java.math.BigInteger biglo
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/hsqldb/SetFunctionValueAggregate;
            1    4     1   biglo  Ljava/math/BigInteger;
            2    4     2   bighi  Ljava/math/BigInteger;
            3    4     3  result  Ljava/math/BigInteger;

  private void addDataPoint(java.lang.Number);
    descriptor: (Ljava/lang/Number;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
        start local 1 // java.lang.Number x
         0: .line 535
            aload 1 /* x */
            ifnonnull 2
         1: .line 536
            return
         2: .line 539
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            invokevirtual java.lang.Number.doubleValue:()D
            dstore 2 /* xi */
        start local 2 // double xi
         3: .line 541
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.initialized:Z
            ifne 9
         4: .line 542
            aload 0 /* this */
            lconst_1
            putfield org.hsqldb.SetFunctionValueAggregate.n:J
         5: .line 543
            aload 0 /* this */
            dload 2 /* xi */
            putfield org.hsqldb.SetFunctionValueAggregate.sk:D
         6: .line 544
            aload 0 /* this */
            dconst_0
            putfield org.hsqldb.SetFunctionValueAggregate.vk:D
         7: .line 545
            aload 0 /* this */
            iconst_1
            putfield org.hsqldb.SetFunctionValueAggregate.initialized:Z
         8: .line 547
            return
         9: .line 550
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            lconst_1
            ladd
            putfield org.hsqldb.SetFunctionValueAggregate.n:J
        10: .line 552
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            lconst_1
            lsub
            lstore 6 /* nm1 */
        start local 6 // long nm1
        11: .line 553
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.sk:D
            dload 2 /* xi */
            lload 6 /* nm1 */
            l2d
            dmul
            dsub
            dstore 4 /* xsi */
        start local 4 // double xsi
        12: .line 554
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.vk:D
            dload 4 /* xsi */
            dload 4 /* xsi */
            dmul
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            l2d
            ddiv
            lload 6 /* nm1 */
            l2d
            ddiv
            dadd
            putfield org.hsqldb.SetFunctionValueAggregate.vk:D
        13: .line 555
            aload 0 /* this */
            dup
            getfield org.hsqldb.SetFunctionValueAggregate.sk:D
            dload 2 /* xi */
            dadd
            putfield org.hsqldb.SetFunctionValueAggregate.sk:D
        14: .line 556
            return
        end local 6 // long nm1
        end local 4 // double xsi
        end local 2 // double xi
        end local 1 // java.lang.Number x
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/hsqldb/SetFunctionValueAggregate;
            0   15     1     x  Ljava/lang/Number;
            3   15     2    xi  D
           12   15     4   xsi  D
           11   15     6   nm1  J
    MethodParameters:
      Name  Flags
      x     

  private java.lang.Double getVariance();
    descriptor: ()Ljava/lang/Double;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
         0: .line 560
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.initialized:Z
            ifne 2
         1: .line 561
            aconst_null
            areturn
         2: .line 564
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.sample:Z
            ifeq 4
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            lconst_1
            lcmp
            ifne 3
            aconst_null
            goto 5
         3: .line 565
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.vk:D
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            lconst_1
            lsub
            l2d
            ddiv
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            goto 5
         4: .line 566
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.vk:D
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            l2d
            ddiv
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
         5: .line 564
      StackMap locals:
      StackMap stack: java.lang.Double
            areturn
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/hsqldb/SetFunctionValueAggregate;

  private java.lang.Double getStdDev();
    descriptor: ()Ljava/lang/Double;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.hsqldb.SetFunctionValueAggregate this
         0: .line 571
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.initialized:Z
            ifne 2
         1: .line 572
            aconst_null
            areturn
         2: .line 575
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.sample:Z
            ifeq 7
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            lconst_1
            lcmp
            ifne 3
            aconst_null
            goto 8
         3: .line 576
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.vk:D
         4: .line 577
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            lconst_1
            lsub
            l2d
         5: .line 576
            ddiv
            invokestatic java.lang.Math.sqrt:(D)D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
         6: .line 577
            goto 8
         7: .line 578
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.vk:D
            aload 0 /* this */
            getfield org.hsqldb.SetFunctionValueAggregate.n:J
            l2d
            ddiv
            invokestatic java.lang.Math.sqrt:(D)D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
         8: .line 575
      StackMap locals:
      StackMap stack: java.lang.Double
            areturn
        end local 0 // org.hsqldb.SetFunctionValueAggregate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/hsqldb/SetFunctionValueAggregate;
}
SourceFile: "SetFunctionValueAggregate.java"