class java.util.Base64$DecInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: java.util.Base64$DecInputStream
  super_class: java.io.InputStream
{
  private final java.io.InputStream is;
    descriptor: Ljava/io/InputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final int[] base64;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int bits;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int nextin;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int nextout;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

  private byte[] sbBuf;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.io.InputStream, int[], boolean);
    descriptor: (Ljava/io/InputStream;[IZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // java.util.Base64$DecInputStream this
        start local 1 // java.io.InputStream is
        start local 2 // int[] base64
        start local 3 // boolean isMIME
         0: .line 925
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 917
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.bits:I
         2: .line 918
            aload 0 /* this */
            bipush 18
            putfield java.util.Base64$DecInputStream.nextin:I
         3: .line 920
            aload 0 /* this */
            bipush -8
            putfield java.util.Base64$DecInputStream.nextout:I
         4: .line 922
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.eof:Z
         5: .line 923
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.closed:Z
         6: .line 931
            aload 0 /* this */
            iconst_1
            newarray 8
            putfield java.util.Base64$DecInputStream.sbBuf:[B
         7: .line 926
            aload 0 /* this */
            aload 1 /* is */
            putfield java.util.Base64$DecInputStream.is:Ljava/io/InputStream;
         8: .line 927
            aload 0 /* this */
            aload 2 /* base64 */
            putfield java.util.Base64$DecInputStream.base64:[I
         9: .line 928
            aload 0 /* this */
            iload 3 /* isMIME */
            putfield java.util.Base64$DecInputStream.isMIME:Z
        10: .line 929
            return
        end local 3 // boolean isMIME
        end local 2 // int[] base64
        end local 1 // java.io.InputStream is
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Ljava/util/Base64$DecInputStream;
            0   11     1      is  Ljava/io/InputStream;
            0   11     2  base64  [I
            0   11     3  isMIME  Z
    MethodParameters:
        Name  Flags
      is      
      base64  
      isMIME  

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.util.Base64$DecInputStream this
         0: .line 935
            aload 0 /* this */
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.sbBuf:[B
            iconst_0
            iconst_1
            invokevirtual java.util.Base64$DecInputStream.read:([BII)I
            iconst_m1
            if_icmpne 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield java.util.Base64$DecInputStream.sbBuf:[B
            iconst_0
            baload
            sipush 255
            iand
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/util/Base64$DecInputStream;
    Exceptions:
      throws java.io.IOException

  private int eof(byte[], int, int, int);
    descriptor: ([BIII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // java.util.Base64$DecInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
        start local 4 // int oldOff
         0: .line 941
            aload 0 /* this */
            iconst_1
            putfield java.util.Base64$DecInputStream.eof:Z
         1: .line 942
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            bipush 18
            if_icmpeq 11
         2: .line 943
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            bipush 12
            if_icmpne 4
         3: .line 944
            new java.io.IOException
            dup
            ldc "Base64 stream has one un-decoded dangling byte."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 947
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 16
            ishr
            i2b
            bastore
         5: .line 948
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            ifne 11
         6: .line 949
            iload 3 /* len */
            iconst_1
            if_icmpne 10
         7: .line 950
            aload 0 /* this */
            dup
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 8
            ishr
            putfield java.util.Base64$DecInputStream.bits:I
         8: .line 951
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.nextout:I
         9: .line 952
            goto 11
        10: .line 953
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 8
            ishr
            i2b
            bastore
        11: .line 957
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 4 /* oldOff */
            if_icmpne 12
            iconst_m1
            goto 13
      StackMap locals:
      StackMap stack:
        12: iload 2 /* off */
            iload 4 /* oldOff */
            isub
      StackMap locals:
      StackMap stack: int
        13: ireturn
        end local 4 // int oldOff
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Ljava/util/Base64$DecInputStream;
            0   14     1       b  [B
            0   14     2     off  I
            0   14     3     len  I
            0   14     4  oldOff  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      b       
      off     
      len     
      oldOff  

  private int padding(byte[], int, int, int);
    descriptor: ([BIII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // java.util.Base64$DecInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
        start local 4 // int oldOff
         0: .line 967
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            bipush 18
            if_icmpeq 2
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            bipush 12
            if_icmpeq 2
         1: .line 968
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            bipush 6
            if_icmpne 3
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.is:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            bipush 61
            if_icmpeq 3
         2: .line 969
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal base64 ending sequence:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 971
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 16
            ishr
            i2b
            bastore
         4: .line 972
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            ifne 10
         5: .line 973
            iload 3 /* len */
            iconst_1
            if_icmpne 9
         6: .line 974
            aload 0 /* this */
            dup
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 8
            ishr
            putfield java.util.Base64$DecInputStream.bits:I
         7: .line 975
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.nextout:I
         8: .line 976
            goto 10
         9: .line 977
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 8
            ishr
            i2b
            bastore
        10: .line 980
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.util.Base64$DecInputStream.eof:Z
        11: .line 981
            iload 2 /* off */
            iload 4 /* oldOff */
            isub
            ireturn
        end local 4 // int oldOff
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Ljava/util/Base64$DecInputStream;
            0   12     1       b  [B
            0   12     2     off  I
            0   12     3     len  I
            0   12     4  oldOff  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      b       
      off     
      len     
      oldOff  

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // java.util.Base64$DecInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 986
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.closed:Z
            ifeq 2
         1: .line 987
            new java.io.IOException
            dup
            ldc "Stream is closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 988
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.eof:Z
            ifeq 4
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextout:I
            ifge 4
         3: .line 989
            iconst_m1
            ireturn
         4: .line 990
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 5
            iload 3 /* len */
            iflt 5
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            iload 2 /* off */
            isub
            if_icmple 6
         5: .line 991
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         6: .line 992
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            istore 4 /* oldOff */
        start local 4 // int oldOff
         7: .line 993
            goto 13
         8: .line 994
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            ifne 10
         9: .line 995
            iload 2 /* off */
            iload 4 /* oldOff */
            isub
            ireturn
        10: .line 996
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextout:I
            ishr
            i2b
            bastore
        11: .line 997
            iinc 3 /* len */ -1
        12: .line 998
            aload 0 /* this */
            dup
            getfield java.util.Base64$DecInputStream.nextout:I
            bipush 8
            isub
            putfield java.util.Base64$DecInputStream.nextout:I
        13: .line 993
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextout:I
            ifge 8
        14: .line 1000
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.bits:I
        15: .line 1001
            goto 43
        16: .line 1002
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.is:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* v */
        start local 5 // int v
        17: .line 1003
            iload 5 /* v */
            iconst_m1
            if_icmpne 19
        18: .line 1004
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            iload 4 /* oldOff */
            invokevirtual java.util.Base64$DecInputStream.eof:([BIII)I
            ireturn
        19: .line 1006
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.base64:[I
            iload 5 /* v */
            iaload
            dup
            istore 5 /* v */
            ifge 27
        20: .line 1007
            iload 5 /* v */
            bipush -2
            if_icmpne 22
        21: .line 1008
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            iload 4 /* oldOff */
            invokevirtual java.util.Base64$DecInputStream.padding:([BIII)I
            ireturn
        22: .line 1010
      StackMap locals:
      StackMap stack:
            iload 5 /* v */
            iconst_m1
            if_icmpne 27
        23: .line 1011
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.isMIME:Z
            ifne 43
        24: .line 1012
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal base64 character "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        25: .line 1013
            iload 5 /* v */
            bipush 16
            invokestatic java.lang.Integer.toString:(II)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        26: .line 1012
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        27: .line 1018
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.util.Base64$DecInputStream.bits:I
            iload 5 /* v */
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            ishl
            ior
            putfield java.util.Base64$DecInputStream.bits:I
        28: .line 1019
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.nextin:I
            ifne 42
        29: .line 1020
            aload 0 /* this */
            bipush 18
            putfield java.util.Base64$DecInputStream.nextin:I
        30: .line 1021
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 16
            ishr
            i2b
            bastore
        31: .line 1022
            iload 3 /* len */
            iconst_1
            if_icmpne 34
        32: .line 1023
            aload 0 /* this */
            bipush 8
            putfield java.util.Base64$DecInputStream.nextout:I
        33: .line 1024
            goto 44
        34: .line 1026
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            bipush 8
            ishr
            i2b
            bastore
        35: .line 1027
            iload 3 /* len */
            iconst_2
            if_icmpne 38
        36: .line 1028
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.nextout:I
        37: .line 1029
            goto 44
        38: .line 1031
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.bits:I
            i2b
            bastore
        39: .line 1032
            iinc 3 /* len */ -3
        40: .line 1033
            aload 0 /* this */
            iconst_0
            putfield java.util.Base64$DecInputStream.bits:I
        41: .line 1034
            goto 43
        42: .line 1035
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.util.Base64$DecInputStream.nextin:I
            bipush 6
            isub
            putfield java.util.Base64$DecInputStream.nextin:I
        end local 5 // int v
        43: .line 1001
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifgt 16
        44: .line 1038
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 4 /* oldOff */
            isub
            ireturn
        end local 4 // int oldOff
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   45     0    this  Ljava/util/Base64$DecInputStream;
            0   45     1       b  [B
            0   45     2     off  I
            0   45     3     len  I
            7   45     4  oldOff  I
           17   43     5       v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Base64$DecInputStream this
         0: .line 1043
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.closed:Z
            ifeq 2
         1: .line 1044
            new java.io.IOException
            dup
            ldc "Stream is closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1045
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.is:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
            ireturn
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/util/Base64$DecInputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.Base64$DecInputStream this
         0: .line 1050
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.closed:Z
            ifne 3
         1: .line 1051
            aload 0 /* this */
            iconst_1
            putfield java.util.Base64$DecInputStream.closed:Z
         2: .line 1052
            aload 0 /* this */
            getfield java.util.Base64$DecInputStream.is:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         3: .line 1054
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.Base64$DecInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/Base64$DecInputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "Base64.java"
NestHost: java.util.Base64
InnerClasses:
  private DecInputStream = java.util.Base64$DecInputStream of java.util.Base64