public final class io.reactivex.disposables.CompositeDisposable implements io.reactivex.disposables.Disposable, io.reactivex.internal.disposables.DisposableContainer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.disposables.CompositeDisposable
  super_class: java.lang.Object
{
  io.reactivex.internal.util.OpenHashSet<io.reactivex.disposables.Disposable> resources;
    descriptor: Lio/reactivex/internal/util/OpenHashSet;
    flags: (0x0000) 
    Signature: Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;

  volatile boolean disposed;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.disposables.CompositeDisposable this
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            return
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/disposables/CompositeDisposable;

  public void <init>(io.reactivex.disposables.Disposable[]);
    descriptor: ([Lio/reactivex/disposables/Disposable;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // io.reactivex.disposables.Disposable[] disposables
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 1 /* disposables */
            ldc "disposables is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 46
            aload 0 /* this */
            new io.reactivex.internal.util.OpenHashSet
            dup
            aload 1 /* disposables */
            arraylength
            iconst_1
            iadd
            invokespecial io.reactivex.internal.util.OpenHashSet.<init>:(I)V
            putfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
         3: .line 47
            aload 1 /* disposables */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 8
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.disposables.Disposable[] top int int io.reactivex.disposables.Disposable[]
      StackMap stack:
         4: aload 5
            iload 3
            aaload
            astore 2 /* d */
        start local 2 // io.reactivex.disposables.Disposable d
         5: .line 48
            aload 2 /* d */
            ldc "A Disposable in the disposables array is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         6: .line 49
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            aload 2 /* d */
            invokevirtual io.reactivex.internal.util.OpenHashSet.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // io.reactivex.disposables.Disposable d
         7: .line 47
            iinc 3 1
      StackMap locals:
      StackMap stack:
         8: iload 3
            iload 4
            if_icmplt 4
         9: .line 51
            return
        end local 1 // io.reactivex.disposables.Disposable[] disposables
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lio/reactivex/disposables/CompositeDisposable;
            0   10     1  disposables  [Lio/reactivex/disposables/Disposable;
            5    7     2            d  Lio/reactivex/disposables/Disposable;
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
             Name  Flags
      disposables  

  public void <init>(java.lang.Iterable<? extends io.reactivex.disposables.Disposable>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // java.lang.Iterable disposables
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 1 /* disposables */
            ldc "disposables is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 60
            aload 0 /* this */
            new io.reactivex.internal.util.OpenHashSet
            dup
            invokespecial io.reactivex.internal.util.OpenHashSet.<init>:()V
            putfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
         3: .line 61
            aload 1 /* disposables */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 7
      StackMap locals: io.reactivex.disposables.CompositeDisposable java.lang.Iterable top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.reactivex.disposables.Disposable
            astore 2 /* d */
        start local 2 // io.reactivex.disposables.Disposable d
         5: .line 62
            aload 2 /* d */
            ldc "A Disposable item in the disposables sequence is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         6: .line 63
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            aload 2 /* d */
            invokevirtual io.reactivex.internal.util.OpenHashSet.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // io.reactivex.disposables.Disposable d
         7: .line 61
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 65
            return
        end local 1 // java.lang.Iterable disposables
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lio/reactivex/disposables/CompositeDisposable;
            0    9     1  disposables  Ljava/lang/Iterable<+Lio/reactivex/disposables/Disposable;>;
            5    7     2            d  Lio/reactivex/disposables/Disposable;
    Signature: (Ljava/lang/Iterable<+Lio/reactivex/disposables/Disposable;>;)V
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
             Name  Flags
      disposables  

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.reactivex.disposables.CompositeDisposable this
         0: .line 69
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 2
         1: .line 70
            return
         2: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 74
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 6
         4: .line 75
            aload 2
            monitorexit
         5: return
         6: .line 77
      StackMap locals: io.reactivex.disposables.CompositeDisposable top io.reactivex.disposables.CompositeDisposable
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.disposables.CompositeDisposable.disposed:Z
         7: .line 78
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            astore 1 /* set */
        start local 1 // io.reactivex.internal.util.OpenHashSet set
         8: .line 79
            aload 0 /* this */
            aconst_null
            putfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
         9: .line 73
            aload 2
            monitorexit
        10: goto 13
        end local 1 // io.reactivex.internal.util.OpenHashSet set
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 2
            monitorexit
        12: athrow
        start local 1 // io.reactivex.internal.util.OpenHashSet set
        13: .line 82
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet
      StackMap stack:
            aload 0 /* this */
            aload 1 /* set */
            invokevirtual io.reactivex.disposables.CompositeDisposable.dispose:(Lio/reactivex/internal/util/OpenHashSet;)V
        14: .line 83
            return
        end local 1 // io.reactivex.internal.util.OpenHashSet set
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/reactivex/disposables/CompositeDisposable;
            8   11     1   set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
           13   15     1   set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
      Exception table:
        from    to  target  type
           3     5      11  any
           6    10      11  any
          11    12      11  any

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.disposables.CompositeDisposable this
         0: .line 87
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ireturn
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/disposables/CompositeDisposable;

  public boolean add(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // io.reactivex.disposables.Disposable disposable
         0: .line 99
            aload 1 /* disposable */
            ldc "disposable is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 100
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifne 15
         2: .line 101
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 102
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifne 11
         4: .line 103
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            astore 3 /* set */
        start local 3 // io.reactivex.internal.util.OpenHashSet set
         5: .line 104
            aload 3 /* set */
            ifnonnull 8
         6: .line 105
            new io.reactivex.internal.util.OpenHashSet
            dup
            invokespecial io.reactivex.internal.util.OpenHashSet.<init>:()V
            astore 3 /* set */
         7: .line 106
            aload 0 /* this */
            aload 3 /* set */
            putfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
         8: .line 108
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet
      StackMap stack:
            aload 3 /* set */
            aload 1 /* disposable */
            invokevirtual io.reactivex.internal.util.OpenHashSet.add:(Ljava/lang/Object;)Z
            pop
         9: .line 109
            aload 2
            monitorexit
        10: iconst_1
            ireturn
        end local 3 // io.reactivex.internal.util.OpenHashSet set
        11: .line 101
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 113
      StackMap locals:
      StackMap stack:
            aload 1 /* disposable */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
        16: .line 114
            iconst_0
            ireturn
        end local 1 // io.reactivex.disposables.Disposable disposable
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lio/reactivex/disposables/CompositeDisposable;
            0   17     1  disposable  Lio/reactivex/disposables/Disposable;
            5   11     3         set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
      Exception table:
        from    to  target  type
           3    10      13  any
          11    12      13  any
          13    14      13  any
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
            Name  Flags
      disposable  

  public boolean addAll(io.reactivex.disposables.Disposable[]);
    descriptor: ([Lio/reactivex/disposables/Disposable;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // io.reactivex.disposables.Disposable[] disposables
         0: .line 125
            aload 1 /* disposables */
            ldc "disposables is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 126
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifne 20
         2: .line 127
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 128
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifne 16
         4: .line 129
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            astore 3 /* set */
        start local 3 // io.reactivex.internal.util.OpenHashSet set
         5: .line 130
            aload 3 /* set */
            ifnonnull 8
         6: .line 131
            new io.reactivex.internal.util.OpenHashSet
            dup
            aload 1 /* disposables */
            arraylength
            iconst_1
            iadd
            invokespecial io.reactivex.internal.util.OpenHashSet.<init>:(I)V
            astore 3 /* set */
         7: .line 132
            aload 0 /* this */
            aload 3 /* set */
            putfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
         8: .line 134
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet
      StackMap stack:
            aload 1 /* disposables */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.disposables.Disposable[] io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet top int int io.reactivex.disposables.Disposable[]
      StackMap stack:
         9: aload 7
            iload 5
            aaload
            astore 4 /* d */
        start local 4 // io.reactivex.disposables.Disposable d
        10: .line 135
            aload 4 /* d */
            ldc "A Disposable in the disposables array is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
        11: .line 136
            aload 3 /* set */
            aload 4 /* d */
            invokevirtual io.reactivex.internal.util.OpenHashSet.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // io.reactivex.disposables.Disposable d
        12: .line 134
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 9
        14: .line 138
            aload 2
            monitorexit
        15: iconst_1
            ireturn
        end local 3 // io.reactivex.internal.util.OpenHashSet set
        16: .line 127
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.disposables.Disposable[] io.reactivex.disposables.CompositeDisposable
      StackMap stack:
            aload 2
            monitorexit
        17: goto 20
      StackMap locals:
      StackMap stack: java.lang.Throwable
        18: aload 2
            monitorexit
        19: athrow
        20: .line 142
      StackMap locals:
      StackMap stack:
            aload 1 /* disposables */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 24
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.disposables.Disposable[] top int int io.reactivex.disposables.Disposable[]
      StackMap stack:
        21: aload 5
            iload 3
            aaload
            astore 2 /* d */
        start local 2 // io.reactivex.disposables.Disposable d
        22: .line 143
            aload 2 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
        end local 2 // io.reactivex.disposables.Disposable d
        23: .line 142
            iinc 3 1
      StackMap locals:
      StackMap stack:
        24: iload 3
            iload 4
            if_icmplt 21
        25: .line 145
            iconst_0
            ireturn
        end local 1 // io.reactivex.disposables.Disposable[] disposables
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   26     0         this  Lio/reactivex/disposables/CompositeDisposable;
            0   26     1  disposables  [Lio/reactivex/disposables/Disposable;
            5   16     3          set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
           10   12     4            d  Lio/reactivex/disposables/Disposable;
           22   23     2            d  Lio/reactivex/disposables/Disposable;
      Exception table:
        from    to  target  type
           3    15      18  any
          16    17      18  any
          18    19      18  any
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
             Name  Flags
      disposables  

  public boolean remove(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // io.reactivex.disposables.Disposable disposable
         0: .line 156
            aload 0 /* this */
            aload 1 /* disposable */
            invokevirtual io.reactivex.disposables.CompositeDisposable.delete:(Lio/reactivex/disposables/Disposable;)Z
            ifeq 3
         1: .line 157
            aload 1 /* disposable */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         2: .line 158
            iconst_1
            ireturn
         3: .line 160
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // io.reactivex.disposables.Disposable disposable
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/reactivex/disposables/CompositeDisposable;
            0    4     1  disposable  Lio/reactivex/disposables/Disposable;
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
            Name  Flags
      disposable  

  public boolean delete(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // io.reactivex.disposables.Disposable disposable
         0: .line 172
            aload 1 /* disposable */
            ldc "disposables is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 173
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 3
         2: .line 174
            iconst_0
            ireturn
         3: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         4: .line 177
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 7
         5: .line 178
            aload 2
            monitorexit
         6: iconst_0
            ireturn
         7: .line 181
      StackMap locals: io.reactivex.disposables.CompositeDisposable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            astore 3 /* set */
        start local 3 // io.reactivex.internal.util.OpenHashSet set
         8: .line 182
            aload 3 /* set */
            ifnull 9
            aload 3 /* set */
            aload 1 /* disposable */
            invokevirtual io.reactivex.internal.util.OpenHashSet.remove:(Ljava/lang/Object;)Z
            ifne 11
         9: .line 183
      StackMap locals: io.reactivex.internal.util.OpenHashSet
      StackMap stack:
            aload 2
            monitorexit
        10: iconst_0
            ireturn
        end local 3 // io.reactivex.internal.util.OpenHashSet set
        11: .line 176
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 186
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // io.reactivex.disposables.Disposable disposable
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lio/reactivex/disposables/CompositeDisposable;
            0   16     1  disposable  Lio/reactivex/disposables/Disposable;
            8   11     3         set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
      Exception table:
        from    to  target  type
           4     6      13  any
           7    10      13  any
          11    12      13  any
          13    14      13  any
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
            Name  Flags
      disposable  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.reactivex.disposables.CompositeDisposable this
         0: .line 193
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 2
         1: .line 194
            return
         2: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 198
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 6
         4: .line 199
            aload 2
            monitorexit
         5: return
         6: .line 202
      StackMap locals: io.reactivex.disposables.CompositeDisposable top io.reactivex.disposables.CompositeDisposable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            astore 1 /* set */
        start local 1 // io.reactivex.internal.util.OpenHashSet set
         7: .line 203
            aload 0 /* this */
            aconst_null
            putfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
         8: .line 197
            aload 2
            monitorexit
         9: goto 12
        end local 1 // io.reactivex.internal.util.OpenHashSet set
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 2
            monitorexit
        11: athrow
        start local 1 // io.reactivex.internal.util.OpenHashSet set
        12: .line 206
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet
      StackMap stack:
            aload 0 /* this */
            aload 1 /* set */
            invokevirtual io.reactivex.disposables.CompositeDisposable.dispose:(Lio/reactivex/internal/util/OpenHashSet;)V
        13: .line 207
            return
        end local 1 // io.reactivex.internal.util.OpenHashSet set
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/reactivex/disposables/CompositeDisposable;
            7   10     1   set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
           12   14     1   set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
      Exception table:
        from    to  target  type
           3     5      10  any
           6     9      10  any
          10    11      10  any

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.reactivex.disposables.CompositeDisposable this
         0: .line 214
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 2
         1: .line 215
            iconst_0
            ireturn
         2: .line 217
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         3: .line 218
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.disposed:Z
            ifeq 6
         4: .line 219
            aload 1
            monitorexit
         5: iconst_0
            ireturn
         6: .line 221
      StackMap locals: io.reactivex.disposables.CompositeDisposable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.disposables.CompositeDisposable.resources:Lio/reactivex/internal/util/OpenHashSet;
            astore 2 /* set */
        start local 2 // io.reactivex.internal.util.OpenHashSet set
         7: .line 222
            aload 2 /* set */
            ifnull 8
            aload 2 /* set */
            invokevirtual io.reactivex.internal.util.OpenHashSet.size:()I
            goto 9
      StackMap locals: io.reactivex.internal.util.OpenHashSet
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: aload 1
            monitorexit
        10: ireturn
        end local 2 // io.reactivex.internal.util.OpenHashSet set
        11: .line 217
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.disposables.CompositeDisposable
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        12: athrow
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/reactivex/disposables/CompositeDisposable;
            7   11     2   set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
      Exception table:
        from    to  target  type
           3     5      11  any
           6    10      11  any
          11    12      11  any

  void dispose(io.reactivex.internal.util.OpenHashSet<io.reactivex.disposables.Disposable>);
    descriptor: (Lio/reactivex/internal/util/OpenHashSet;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // io.reactivex.disposables.CompositeDisposable this
        start local 1 // io.reactivex.internal.util.OpenHashSet set
         0: .line 232
            aload 1 /* set */
            ifnonnull 2
         1: .line 233
            return
         2: .line 235
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* errors */
        start local 2 // java.util.List errors
         3: .line 236
            aload 1 /* set */
            invokevirtual io.reactivex.internal.util.OpenHashSet.keys:()[Ljava/lang/Object;
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
         4: .line 237
            aload 3 /* array */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 15
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet java.util.List java.lang.Object[] top int int java.lang.Object[]
      StackMap stack:
         5: aload 7
            iload 5
            aaload
            astore 4 /* o */
        start local 4 // java.lang.Object o
         6: .line 238
            aload 4 /* o */
            instanceof io.reactivex.disposables.Disposable
            ifeq 14
         7: .line 240
            aload 4 /* o */
            checkcast io.reactivex.disposables.Disposable
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         8: .line 241
            goto 14
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet java.util.List java.lang.Object[] java.lang.Object int int java.lang.Object[]
      StackMap stack: java.lang.Throwable
         9: astore 8 /* ex */
        start local 8 // java.lang.Throwable ex
        10: .line 242
            aload 8 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        11: .line 243
            aload 2 /* errors */
            ifnonnull 13
        12: .line 244
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* errors */
        13: .line 246
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 2 /* errors */
            aload 8 /* ex */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 8 // java.lang.Throwable ex
        end local 4 // java.lang.Object o
        14: .line 237
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet java.util.List java.lang.Object[] top int int java.lang.Object[]
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        15: iload 5
            iload 6
            if_icmplt 5
        16: .line 250
            aload 2 /* errors */
            ifnull 20
        17: .line 251
            aload 2 /* errors */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 19
        18: .line 252
            aload 2 /* errors */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Throwable
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        19: .line 254
      StackMap locals: io.reactivex.disposables.CompositeDisposable io.reactivex.internal.util.OpenHashSet java.util.List java.lang.Object[]
      StackMap stack:
            new io.reactivex.exceptions.CompositeException
            dup
            aload 2 /* errors */
            invokespecial io.reactivex.exceptions.CompositeException.<init>:(Ljava/lang/Iterable;)V
            athrow
        20: .line 256
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Object[] array
        end local 2 // java.util.List errors
        end local 1 // io.reactivex.internal.util.OpenHashSet set
        end local 0 // io.reactivex.disposables.CompositeDisposable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   21     0    this  Lio/reactivex/disposables/CompositeDisposable;
            0   21     1     set  Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;
            3   21     2  errors  Ljava/util/List<Ljava/lang/Throwable;>;
            4   21     3   array  [Ljava/lang/Object;
            6   14     4       o  Ljava/lang/Object;
           10   14     8      ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           7     8       9  Class java.lang.Throwable
    Signature: (Lio/reactivex/internal/util/OpenHashSet<Lio/reactivex/disposables/Disposable;>;)V
    MethodParameters:
      Name  Flags
      set   
}
SourceFile: "CompositeDisposable.java"