abstract class com.google.common.hash.AbstractHasher implements com.google.common.hash.Hasher
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.hash.AbstractHasher
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.hash.AbstractHasher this
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/AbstractHasher;

  public final com.google.common.hash.Hasher putBoolean(boolean);
    descriptor: (Z)Lcom/google/common/hash/Hasher;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // boolean b
         0: .line 32
            aload 0 /* this */
            iload 1 /* b */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: com.google.common.hash.AbstractHasher
         1: iconst_0
      StackMap locals: com.google.common.hash.AbstractHasher int
      StackMap stack: com.google.common.hash.AbstractHasher int
         2: invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            areturn
        end local 1 // boolean b
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/hash/AbstractHasher;
            0    3     1     b  Z
    MethodParameters:
      Name  Flags
      b     

  public final com.google.common.hash.Hasher putDouble(double);
    descriptor: (D)Lcom/google/common/hash/Hasher;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // double d
         0: .line 37
            aload 0 /* this */
            dload 1 /* d */
            invokestatic java.lang.Double.doubleToRawLongBits:(D)J
            invokevirtual com.google.common.hash.AbstractHasher.putLong:(J)Lcom/google/common/hash/Hasher;
            areturn
        end local 1 // double d
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/AbstractHasher;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public final com.google.common.hash.Hasher putFloat(float);
    descriptor: (F)Lcom/google/common/hash/Hasher;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // float f
         0: .line 42
            aload 0 /* this */
            fload 1 /* f */
            invokestatic java.lang.Float.floatToRawIntBits:(F)I
            invokevirtual com.google.common.hash.AbstractHasher.putInt:(I)Lcom/google/common/hash/Hasher;
            areturn
        end local 1 // float f
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/AbstractHasher;
            0    1     1     f  F
    MethodParameters:
      Name  Flags
      f     

  public com.google.common.hash.Hasher putUnencodedChars(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // java.lang.CharSequence charSequence
         0: .line 47
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: aload 1 /* charSequence */
            invokeinterface java.lang.CharSequence.length:()I
            istore 3 /* len */
        start local 3 // int len
         2: goto 5
         3: .line 48
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* charSequence */
            iload 2 /* i */
            invokeinterface java.lang.CharSequence.charAt:(I)C
            invokevirtual com.google.common.hash.AbstractHasher.putChar:(C)Lcom/google/common/hash/Hasher;
            pop
         4: .line 47
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            iload 3 /* len */
            if_icmplt 3
        end local 3 // int len
        end local 2 // int i
         6: .line 50
            aload 0 /* this */
            areturn
        end local 1 // java.lang.CharSequence charSequence
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lcom/google/common/hash/AbstractHasher;
            0    7     1  charSequence  Ljava/lang/CharSequence;
            1    6     2             i  I
            2    6     3           len  I
    MethodParameters:
              Name  Flags
      charSequence  

  public com.google.common.hash.Hasher putString(java.lang.CharSequence, java.nio.charset.Charset);
    descriptor: (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // java.lang.CharSequence charSequence
        start local 2 // java.nio.charset.Charset charset
         0: .line 55
            aload 0 /* this */
            aload 1 /* charSequence */
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            aload 2 /* charset */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokevirtual com.google.common.hash.AbstractHasher.putBytes:([B)Lcom/google/common/hash/Hasher;
            areturn
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.lang.CharSequence charSequence
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/google/common/hash/AbstractHasher;
            0    1     1  charSequence  Ljava/lang/CharSequence;
            0    1     2       charset  Ljava/nio/charset/Charset;
    MethodParameters:
              Name  Flags
      charSequence  
      charset       

  public com.google.common.hash.Hasher putBytes(byte[]);
    descriptor: ([B)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // byte[] bytes
         0: .line 60
            aload 0 /* this */
            aload 1 /* bytes */
            iconst_0
            aload 1 /* bytes */
            arraylength
            invokevirtual com.google.common.hash.AbstractHasher.putBytes:([BII)Lcom/google/common/hash/Hasher;
            areturn
        end local 1 // byte[] bytes
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/hash/AbstractHasher;
            0    1     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public com.google.common.hash.Hasher putBytes(byte[], int, int);
    descriptor: ([BII)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // byte[] bytes
        start local 2 // int off
        start local 3 // int len
         0: .line 65
            iload 2 /* off */
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* bytes */
            arraylength
            invokestatic com.google.common.base.Preconditions.checkPositionIndexes:(III)V
         1: .line 66
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 67
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* off */
            iload 4 /* i */
            iadd
            baload
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         4: .line 66
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            iload 3 /* len */
            if_icmplt 3
        end local 4 // int i
         6: .line 69
            aload 0 /* this */
            areturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] bytes
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/google/common/hash/AbstractHasher;
            0    7     1  bytes  [B
            0    7     2    off  I
            0    7     3    len  I
            2    6     4      i  I
    MethodParameters:
       Name  Flags
      bytes  
      off    
      len    

  public com.google.common.hash.Hasher putBytes(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // java.nio.ByteBuffer b
         0: .line 74
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 4
         1: .line 75
            aload 0 /* this */
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual com.google.common.hash.AbstractHasher.putBytes:([BII)Lcom/google/common/hash/Hasher;
            pop
         2: .line 76
            aload 1 /* b */
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 77
            goto 9
         4: .line 78
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* remaining */
        start local 2 // int remaining
         5: goto 8
         6: .line 79
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.get:()B
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         7: .line 78
            iinc 2 /* remaining */ -1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* remaining */
            ifgt 6
        end local 2 // int remaining
         9: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.nio.ByteBuffer b
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/google/common/hash/AbstractHasher;
            0   10     1          b  Ljava/nio/ByteBuffer;
            5    9     2  remaining  I
    MethodParameters:
      Name  Flags
      b     

  public com.google.common.hash.Hasher putShort(short);
    descriptor: (S)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // short s
         0: .line 87
            aload 0 /* this */
            iload 1 /* s */
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         1: .line 88
            aload 0 /* this */
            iload 1 /* s */
            bipush 8
            iushr
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         2: .line 89
            aload 0 /* this */
            areturn
        end local 1 // short s
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/hash/AbstractHasher;
            0    3     1     s  S
    MethodParameters:
      Name  Flags
      s     

  public com.google.common.hash.Hasher putInt(int);
    descriptor: (I)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // int i
         0: .line 94
            aload 0 /* this */
            iload 1 /* i */
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         1: .line 95
            aload 0 /* this */
            iload 1 /* i */
            bipush 8
            iushr
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         2: .line 96
            aload 0 /* this */
            iload 1 /* i */
            bipush 16
            iushr
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         3: .line 97
            aload 0 /* this */
            iload 1 /* i */
            bipush 24
            iushr
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         4: .line 98
            aload 0 /* this */
            areturn
        end local 1 // int i
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/google/common/hash/AbstractHasher;
            0    5     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public com.google.common.hash.Hasher putLong(long);
    descriptor: (J)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // long l
         0: .line 103
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 104
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            lload 1 /* l */
            iload 3 /* i */
            lushr
            l2i
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         3: .line 103
            iinc 3 /* i */ 8
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            bipush 64
            if_icmplt 2
        end local 3 // int i
         5: .line 106
            aload 0 /* this */
            areturn
        end local 1 // long l
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/google/common/hash/AbstractHasher;
            0    6     1     l  J
            1    5     3     i  I
    MethodParameters:
      Name  Flags
      l     

  public com.google.common.hash.Hasher putChar(char);
    descriptor: (C)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // char c
         0: .line 111
            aload 0 /* this */
            iload 1 /* c */
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         1: .line 112
            aload 0 /* this */
            iload 1 /* c */
            bipush 8
            iushr
            i2b
            invokevirtual com.google.common.hash.AbstractHasher.putByte:(B)Lcom/google/common/hash/Hasher;
            pop
         2: .line 113
            aload 0 /* this */
            areturn
        end local 1 // char c
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/hash/AbstractHasher;
            0    3     1     c  C
    MethodParameters:
      Name  Flags
      c     

  public <T> com.google.common.hash.Hasher putObject(T, com.google.common.hash.Funnel<? super T>);
    descriptor: (Ljava/lang/Object;Lcom/google/common/hash/Funnel;)Lcom/google/common/hash/Hasher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.hash.AbstractHasher this
        start local 1 // java.lang.Object instance
        start local 2 // com.google.common.hash.Funnel funnel
         0: .line 118
            aload 2 /* funnel */
            aload 1 /* instance */
            aload 0 /* this */
            invokeinterface com.google.common.hash.Funnel.funnel:(Ljava/lang/Object;Lcom/google/common/hash/PrimitiveSink;)V
         1: .line 119
            aload 0 /* this */
            areturn
        end local 2 // com.google.common.hash.Funnel funnel
        end local 1 // java.lang.Object instance
        end local 0 // com.google.common.hash.AbstractHasher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/google/common/hash/AbstractHasher;
            0    2     1  instance  TT;
            0    2     2    funnel  Lcom/google/common/hash/Funnel<-TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;Lcom/google/common/hash/Funnel<-TT;>;)Lcom/google/common/hash/Hasher;
    MethodParameters:
          Name  Flags
      instance  
      funnel    

  public com.google.common.hash.PrimitiveSink putShort(short);
    descriptor: (S)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.common.hash.AbstractHasher.putShort:(S)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putBytes(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual com.google.common.hash.AbstractHasher.putBytes:(Ljava/nio/ByteBuffer;)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putBytes(byte[], int, int);
    descriptor: ([BII)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual com.google.common.hash.AbstractHasher.putBytes:([BII)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putBytes(byte[]);
    descriptor: ([B)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual com.google.common.hash.AbstractHasher.putBytes:([B)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putInt(int);
    descriptor: (I)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.common.hash.AbstractHasher.putInt:(I)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putString(java.lang.CharSequence, java.nio.charset.Charset);
    descriptor: (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual com.google.common.hash.AbstractHasher.putString:(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putDouble(double);
    descriptor: (D)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual com.google.common.hash.AbstractHasher.putDouble:(D)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putFloat(float);
    descriptor: (F)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            fload 1
            invokevirtual com.google.common.hash.AbstractHasher.putFloat:(F)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putChar(char);
    descriptor: (C)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.common.hash.AbstractHasher.putChar:(C)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putUnencodedChars(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual com.google.common.hash.AbstractHasher.putUnencodedChars:(Ljava/lang/CharSequence;)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putLong(long);
    descriptor: (J)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual com.google.common.hash.AbstractHasher.putLong:(J)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.common.hash.PrimitiveSink putBoolean(boolean);
    descriptor: (Z)Lcom/google/common/hash/PrimitiveSink;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.common.hash.AbstractHasher.putBoolean:(Z)Lcom/google/common/hash/Hasher;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "AbstractHasher.java"
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()