public class net.bytebuddy.implementation.auxiliary.MethodCallProxy implements net.bytebuddy.implementation.auxiliary.AuxiliaryType
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: net.bytebuddy.implementation.auxiliary.MethodCallProxy
  super_class: java.lang.Object
{
  private static final java.lang.String FIELD_NAME_PREFIX;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "argument"

  private final net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation;
    descriptor: Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final net.bytebuddy.implementation.bytecode.assign.Assigner assigner;
    descriptor: Lnet/bytebuddy/implementation/bytecode/assign/Assigner;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(net.bytebuddy.implementation.Implementation$SpecialMethodInvocation, boolean);
    descriptor: (Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.auxiliary.MethodCallProxy this
        start local 1 // net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation
        start local 2 // boolean serializableProxy
         0: .line 101
            aload 0 /* this */
            aload 1 /* specialMethodInvocation */
            iload 2 /* serializableProxy */
            getstatic net.bytebuddy.implementation.bytecode.assign.Assigner.DEFAULT:Lnet/bytebuddy/implementation/bytecode/assign/Assigner;
            invokespecial net.bytebuddy.implementation.auxiliary.MethodCallProxy.<init>:(Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;ZLnet/bytebuddy/implementation/bytecode/assign/Assigner;)V
         1: .line 102
            return
        end local 2 // boolean serializableProxy
        end local 1 // net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation
        end local 0 // net.bytebuddy.implementation.auxiliary.MethodCallProxy this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lnet/bytebuddy/implementation/auxiliary/MethodCallProxy;
            0    2     1  specialMethodInvocation  Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;
            0    2     2        serializableProxy  Z
    MethodParameters:
                         Name  Flags
      specialMethodInvocation  
      serializableProxy        

  public void <init>(net.bytebuddy.implementation.Implementation$SpecialMethodInvocation, boolean, net.bytebuddy.implementation.bytecode.assign.Assigner);
    descriptor: (Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;ZLnet/bytebuddy/implementation/bytecode/assign/Assigner;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // net.bytebuddy.implementation.auxiliary.MethodCallProxy this
        start local 1 // net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation
        start local 2 // boolean serializableProxy
        start local 3 // net.bytebuddy.implementation.bytecode.assign.Assigner assigner
         0: .line 113
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 114
            aload 0 /* this */
            aload 1 /* specialMethodInvocation */
            putfield net.bytebuddy.implementation.auxiliary.MethodCallProxy.specialMethodInvocation:Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;
         2: .line 115
            aload 0 /* this */
            iload 2 /* serializableProxy */
            putfield net.bytebuddy.implementation.auxiliary.MethodCallProxy.serializableProxy:Z
         3: .line 116
            aload 0 /* this */
            aload 3 /* assigner */
            putfield net.bytebuddy.implementation.auxiliary.MethodCallProxy.assigner:Lnet/bytebuddy/implementation/bytecode/assign/Assigner;
         4: .line 117
            return
        end local 3 // net.bytebuddy.implementation.bytecode.assign.Assigner assigner
        end local 2 // boolean serializableProxy
        end local 1 // net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation
        end local 0 // net.bytebuddy.implementation.auxiliary.MethodCallProxy this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    5     0                     this  Lnet/bytebuddy/implementation/auxiliary/MethodCallProxy;
            0    5     1  specialMethodInvocation  Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;
            0    5     2        serializableProxy  Z
            0    5     3                 assigner  Lnet/bytebuddy/implementation/bytecode/assign/Assigner;
    MethodParameters:
                         Name  Flags
      specialMethodInvocation  
      serializableProxy        
      assigner                 

  private static java.util.LinkedHashMap<java.lang.String, net.bytebuddy.description.type.TypeDescription> extractFields(net.bytebuddy.description.method.MethodDescription);
    descriptor: (Lnet/bytebuddy/description/method/MethodDescription;)Ljava/util/LinkedHashMap;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // net.bytebuddy.description.method.MethodDescription methodDescription
         0: .line 127
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            astore 1 /* typeDescriptions */
        start local 1 // java.util.LinkedHashMap typeDescriptions
         1: .line 128
            iconst_0
            istore 2 /* currentIndex */
        start local 2 // int currentIndex
         2: .line 129
            aload 0 /* methodDescription */
            invokeinterface net.bytebuddy.description.method.MethodDescription.isStatic:()Z
            ifne 4
         3: .line 130
            aload 1 /* typeDescriptions */
            iload 2 /* currentIndex */
            iinc 2 /* currentIndex */ 1
            invokestatic net.bytebuddy.implementation.auxiliary.MethodCallProxy.fieldName:(I)Ljava/lang/String;
            aload 0 /* methodDescription */
            invokeinterface net.bytebuddy.description.method.MethodDescription.getDeclaringType:()Lnet/bytebuddy/description/type/TypeDefinition;
            invokeinterface net.bytebuddy.description.type.TypeDefinition.asErasure:()Lnet/bytebuddy/description/type/TypeDescription;
            invokevirtual java.util.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 132
      StackMap locals: java.util.LinkedHashMap int
      StackMap stack:
            aload 0 /* methodDescription */
            invokeinterface net.bytebuddy.description.method.MethodDescription.getParameters:()Lnet/bytebuddy/description/method/ParameterList;
            invokeinterface net.bytebuddy.description.method.ParameterList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: net.bytebuddy.description.method.MethodDescription java.util.LinkedHashMap int top java.util.Iterator
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast net.bytebuddy.description.method.ParameterDescription
            astore 3 /* parameterDescription */
        start local 3 // net.bytebuddy.description.method.ParameterDescription parameterDescription
         6: .line 133
            aload 1 /* typeDescriptions */
            iload 2 /* currentIndex */
            iinc 2 /* currentIndex */ 1
            invokestatic net.bytebuddy.implementation.auxiliary.MethodCallProxy.fieldName:(I)Ljava/lang/String;
            aload 3 /* parameterDescription */
            invokeinterface net.bytebuddy.description.method.ParameterDescription.getType:()Lnet/bytebuddy/description/type/TypeDescription$Generic;
            invokeinterface net.bytebuddy.description.type.TypeDescription$Generic.asErasure:()Lnet/bytebuddy/description/type/TypeDescription;
            invokevirtual java.util.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // net.bytebuddy.description.method.ParameterDescription parameterDescription
         7: .line 132
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         8: .line 135
            aload 1 /* typeDescriptions */
            areturn
        end local 2 // int currentIndex
        end local 1 // java.util.LinkedHashMap typeDescriptions
        end local 0 // net.bytebuddy.description.method.MethodDescription methodDescription
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    9     0     methodDescription  Lnet/bytebuddy/description/method/MethodDescription;
            1    9     1      typeDescriptions  Ljava/util/LinkedHashMap<Ljava/lang/String;Lnet/bytebuddy/description/type/TypeDescription;>;
            2    9     2          currentIndex  I
            6    7     3  parameterDescription  Lnet/bytebuddy/description/method/ParameterDescription;
    Signature: (Lnet/bytebuddy/description/method/MethodDescription;)Ljava/util/LinkedHashMap<Ljava/lang/String;Lnet/bytebuddy/description/type/TypeDescription;>;
    MethodParameters:
                   Name  Flags
      methodDescription  

  private static java.lang.String fieldName(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int index
         0: .line 145
            new java.lang.StringBuilder
            dup
            ldc "argument"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  index  I
    MethodParameters:
       Name  Flags
      index  

  public net.bytebuddy.dynamic.DynamicType make(java.lang.String, net.bytebuddy.ClassFileVersion, net.bytebuddy.implementation.MethodAccessorFactory);
    descriptor: (Ljava/lang/String;Lnet/bytebuddy/ClassFileVersion;Lnet/bytebuddy/implementation/MethodAccessorFactory;)Lnet/bytebuddy/dynamic/DynamicType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // net.bytebuddy.implementation.auxiliary.MethodCallProxy this
        start local 1 // java.lang.String auxiliaryTypeName
        start local 2 // net.bytebuddy.ClassFileVersion classFileVersion
        start local 3 // net.bytebuddy.implementation.MethodAccessorFactory methodAccessorFactory
         0: .line 154
            aload 3 /* methodAccessorFactory */
            aload 0 /* this */
            getfield net.bytebuddy.implementation.auxiliary.MethodCallProxy.specialMethodInvocation:Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;
            getstatic net.bytebuddy.implementation.MethodAccessorFactory$AccessType.DEFAULT:Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;
            invokeinterface net.bytebuddy.implementation.MethodAccessorFactory.registerAccessorFor:(Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;)Lnet/bytebuddy/description/method/MethodDescription$InDefinedShape;
            astore 4 /* accessorMethod */
        start local 4 // net.bytebuddy.description.method.MethodDescription accessorMethod
         1: .line 155
            aload 4 /* accessorMethod */
            invokestatic net.bytebuddy.implementation.auxiliary.MethodCallProxy.extractFields:(Lnet/bytebuddy/description/method/MethodDescription;)Ljava/util/LinkedHashMap;
            astore 5 /* parameterFields */
        start local 5 // java.util.LinkedHashMap parameterFields
         2: .line 156
            new net.bytebuddy.ByteBuddy
            dup
            aload 2 /* classFileVersion */
            invokespecial net.bytebuddy.ByteBuddy.<init>:(Lnet/bytebuddy/ClassFileVersion;)V
         3: .line 157
            getstatic net.bytebuddy.dynamic.scaffold.TypeValidation.DISABLED:Lnet/bytebuddy/dynamic/scaffold/TypeValidation;
            invokevirtual net.bytebuddy.ByteBuddy.with:(Lnet/bytebuddy/dynamic/scaffold/TypeValidation;)Lnet/bytebuddy/ByteBuddy;
         4: .line 158
            getstatic net.bytebuddy.implementation.auxiliary.MethodCallProxy$PrecomputedMethodGraph.INSTANCE:Lnet/bytebuddy/implementation/auxiliary/MethodCallProxy$PrecomputedMethodGraph;
            invokevirtual net.bytebuddy.ByteBuddy.with:(Lnet/bytebuddy/dynamic/scaffold/MethodGraph$Compiler;)Lnet/bytebuddy/ByteBuddy;
         5: .line 159
            ldc Ljava/lang/Object;
            getstatic net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy$Default.NO_CONSTRUCTORS:Lnet/bytebuddy/dynamic/scaffold/subclass/ConstructorStrategy$Default;
            invokevirtual net.bytebuddy.ByteBuddy.subclass:(Ljava/lang/Class;Lnet/bytebuddy/dynamic/scaffold/subclass/ConstructorStrategy;)Lnet/bytebuddy/dynamic/DynamicType$Builder;
         6: .line 160
            aload 1 /* auxiliaryTypeName */
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder.name:(Ljava/lang/String;)Lnet/bytebuddy/dynamic/DynamicType$Builder;
         7: .line 161
            getstatic net.bytebuddy.implementation.auxiliary.MethodCallProxy.DEFAULT_TYPE_MODIFIER:[Lnet/bytebuddy/description/modifier/ModifierContributor$ForType;
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder.modifiers:([Lnet/bytebuddy/description/modifier/ModifierContributor$ForType;)Lnet/bytebuddy/dynamic/DynamicType$Builder;
            iconst_2
            anewarray java.lang.reflect.Type
            dup
            iconst_0
         8: .line 162
            ldc Ljava/lang/Runnable;
            aastore
            dup
            iconst_1
            ldc Ljava/util/concurrent/Callable;
            aastore
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder.implement:([Ljava/lang/reflect/Type;)Lnet/bytebuddy/dynamic/DynamicType$Builder$MethodDefinition$ImplementationDefinition$Optional;
            new net.bytebuddy.implementation.auxiliary.MethodCallProxy$MethodCall
            dup
            aload 4 /* accessorMethod */
            aload 0 /* this */
            getfield net.bytebuddy.implementation.auxiliary.MethodCallProxy.assigner:Lnet/bytebuddy/implementation/bytecode/assign/Assigner;
            invokespecial net.bytebuddy.implementation.auxiliary.MethodCallProxy$MethodCall.<init>:(Lnet/bytebuddy/description/method/MethodDescription;Lnet/bytebuddy/implementation/bytecode/assign/Assigner;)V
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ImplementationDefinition$Optional.intercept:(Lnet/bytebuddy/implementation/Implementation;)Lnet/bytebuddy/dynamic/DynamicType$Builder$MethodDefinition$ReceiverTypeDefinition;
         9: .line 163
            aload 0 /* this */
            getfield net.bytebuddy.implementation.auxiliary.MethodCallProxy.serializableProxy:Z
            ifeq 10
            iconst_1
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Ljava/io/Serializable;
            aastore
            goto 11
      StackMap locals: net.bytebuddy.implementation.auxiliary.MethodCallProxy java.lang.String net.bytebuddy.ClassFileVersion net.bytebuddy.implementation.MethodAccessorFactory net.bytebuddy.description.method.MethodDescription java.util.LinkedHashMap
      StackMap stack: net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ReceiverTypeDefinition
        10: iconst_0
            anewarray java.lang.Class
      StackMap locals: net.bytebuddy.implementation.auxiliary.MethodCallProxy java.lang.String net.bytebuddy.ClassFileVersion net.bytebuddy.implementation.MethodAccessorFactory net.bytebuddy.description.method.MethodDescription java.util.LinkedHashMap
      StackMap stack: net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ReceiverTypeDefinition java.lang.Class[]
        11: invokeinterface net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ReceiverTypeDefinition.implement:([Ljava/lang/reflect/Type;)Lnet/bytebuddy/dynamic/DynamicType$Builder$MethodDefinition$ImplementationDefinition$Optional;
            iconst_0
            anewarray net.bytebuddy.description.modifier.ModifierContributor$ForMethod
        12: .line 164
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ImplementationDefinition$Optional.defineConstructor:([Lnet/bytebuddy/description/modifier/ModifierContributor$ForMethod;)Lnet/bytebuddy/dynamic/DynamicType$Builder$MethodDefinition$ParameterDefinition$Initial;
            aload 5 /* parameterFields */
            invokevirtual java.util.LinkedHashMap.values:()Ljava/util/Collection;
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ParameterDefinition$Initial.withParameters:(Ljava/util/Collection;)Lnet/bytebuddy/dynamic/DynamicType$Builder$MethodDefinition$ExceptionDefinition;
        13: .line 165
            getstatic net.bytebuddy.implementation.auxiliary.MethodCallProxy$ConstructorCall.INSTANCE:Lnet/bytebuddy/implementation/auxiliary/MethodCallProxy$ConstructorCall;
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ExceptionDefinition.intercept:(Lnet/bytebuddy/implementation/Implementation;)Lnet/bytebuddy/dynamic/DynamicType$Builder$MethodDefinition$ReceiverTypeDefinition;
        14: .line 156
            astore 6 /* builder */
        start local 6 // net.bytebuddy.dynamic.DynamicType$Builder builder
        15: .line 166
            aload 5 /* parameterFields */
            invokevirtual java.util.LinkedHashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 8
            goto 18
      StackMap locals: net.bytebuddy.implementation.auxiliary.MethodCallProxy java.lang.String net.bytebuddy.ClassFileVersion net.bytebuddy.implementation.MethodAccessorFactory net.bytebuddy.description.method.MethodDescription java.util.LinkedHashMap net.bytebuddy.dynamic.DynamicType$Builder top java.util.Iterator
      StackMap stack:
        16: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 7 /* field */
        start local 7 // java.util.Map$Entry field
        17: .line 167
            aload 6 /* builder */
            aload 7 /* field */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 7 /* field */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast net.bytebuddy.description.type.TypeDefinition
            iconst_1
            anewarray net.bytebuddy.description.modifier.ModifierContributor$ForField
            dup
            iconst_0
            getstatic net.bytebuddy.description.modifier.Visibility.PRIVATE:Lnet/bytebuddy/description/modifier/Visibility;
            aastore
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder.defineField:(Ljava/lang/String;Lnet/bytebuddy/description/type/TypeDefinition;[Lnet/bytebuddy/description/modifier/ModifierContributor$ForField;)Lnet/bytebuddy/dynamic/DynamicType$Builder$FieldDefinition$Optional$Valuable;
            astore 6 /* builder */
        end local 7 // java.util.Map$Entry field
        18: .line 166
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 16
        19: .line 169
            aload 6 /* builder */
            invokeinterface net.bytebuddy.dynamic.DynamicType$Builder.make:()Lnet/bytebuddy/dynamic/DynamicType$Unloaded;
            areturn
        end local 6 // net.bytebuddy.dynamic.DynamicType$Builder builder
        end local 5 // java.util.LinkedHashMap parameterFields
        end local 4 // net.bytebuddy.description.method.MethodDescription accessorMethod
        end local 3 // net.bytebuddy.implementation.MethodAccessorFactory methodAccessorFactory
        end local 2 // net.bytebuddy.ClassFileVersion classFileVersion
        end local 1 // java.lang.String auxiliaryTypeName
        end local 0 // net.bytebuddy.implementation.auxiliary.MethodCallProxy this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   20     0                   this  Lnet/bytebuddy/implementation/auxiliary/MethodCallProxy;
            0   20     1      auxiliaryTypeName  Ljava/lang/String;
            0   20     2       classFileVersion  Lnet/bytebuddy/ClassFileVersion;
            0   20     3  methodAccessorFactory  Lnet/bytebuddy/implementation/MethodAccessorFactory;
            1   20     4         accessorMethod  Lnet/bytebuddy/description/method/MethodDescription;
            2   20     5        parameterFields  Ljava/util/LinkedHashMap<Ljava/lang/String;Lnet/bytebuddy/description/type/TypeDescription;>;
           15   20     6                builder  Lnet/bytebuddy/dynamic/DynamicType$Builder<*>;
           17   18     7                  field  Ljava/util/Map$Entry<Ljava/lang/String;Lnet/bytebuddy/description/type/TypeDescription;>;
    MethodParameters:
                       Name  Flags
      auxiliaryTypeName      
      classFileVersion       
      methodAccessorFactory  
}
SourceFile: "MethodCallProxy.java"
NestMembers:
  net.bytebuddy.implementation.auxiliary.MethodCallProxy$AssignableSignatureCall  net.bytebuddy.implementation.auxiliary.MethodCallProxy$ConstructorCall  net.bytebuddy.implementation.auxiliary.MethodCallProxy$ConstructorCall$Appender  net.bytebuddy.implementation.auxiliary.MethodCallProxy$MethodCall  net.bytebuddy.implementation.auxiliary.MethodCallProxy$MethodCall$Appender  net.bytebuddy.implementation.auxiliary.MethodCallProxy$PrecomputedMethodGraph
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  public abstract Enhance = net.bytebuddy.build.HashCodeAndEqualsPlugin$Enhance of net.bytebuddy.build.HashCodeAndEqualsPlugin
  public abstract InDefinedShape = net.bytebuddy.description.method.MethodDescription$InDefinedShape of net.bytebuddy.description.method.MethodDescription
  public abstract ForField = net.bytebuddy.description.modifier.ModifierContributor$ForField of net.bytebuddy.description.modifier.ModifierContributor
  public abstract ForMethod = net.bytebuddy.description.modifier.ModifierContributor$ForMethod of net.bytebuddy.description.modifier.ModifierContributor
  public abstract ForType = net.bytebuddy.description.modifier.ModifierContributor$ForType of net.bytebuddy.description.modifier.ModifierContributor
  public abstract Generic = net.bytebuddy.description.type.TypeDescription$Generic of net.bytebuddy.description.type.TypeDescription
  public abstract Builder = net.bytebuddy.dynamic.DynamicType$Builder of net.bytebuddy.dynamic.DynamicType
  public abstract FieldDefinition = net.bytebuddy.dynamic.DynamicType$Builder$FieldDefinition of net.bytebuddy.dynamic.DynamicType$Builder
  public abstract Optional = net.bytebuddy.dynamic.DynamicType$Builder$FieldDefinition$Optional of net.bytebuddy.dynamic.DynamicType$Builder$FieldDefinition
  public abstract Valuable = net.bytebuddy.dynamic.DynamicType$Builder$FieldDefinition$Optional$Valuable of net.bytebuddy.dynamic.DynamicType$Builder$FieldDefinition$Optional
  public abstract MethodDefinition = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition of net.bytebuddy.dynamic.DynamicType$Builder
  public abstract ExceptionDefinition = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ExceptionDefinition of net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition
  public abstract ImplementationDefinition = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ImplementationDefinition of net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition
  public abstract Optional = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ImplementationDefinition$Optional of net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ImplementationDefinition
  public abstract ParameterDefinition = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ParameterDefinition of net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition
  public abstract Initial = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ParameterDefinition$Initial of net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ParameterDefinition
  public abstract ReceiverTypeDefinition = net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition$ReceiverTypeDefinition of net.bytebuddy.dynamic.DynamicType$Builder$MethodDefinition
  public abstract Unloaded = net.bytebuddy.dynamic.DynamicType$Unloaded of net.bytebuddy.dynamic.DynamicType
  public abstract Compiler = net.bytebuddy.dynamic.scaffold.MethodGraph$Compiler of net.bytebuddy.dynamic.scaffold.MethodGraph
  public abstract Default = net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy$Default of net.bytebuddy.dynamic.scaffold.subclass.ConstructorStrategy
  public abstract SpecialMethodInvocation = net.bytebuddy.implementation.Implementation$SpecialMethodInvocation of net.bytebuddy.implementation.Implementation
  public final AccessType = net.bytebuddy.implementation.MethodAccessorFactory$AccessType of net.bytebuddy.implementation.MethodAccessorFactory
  public AssignableSignatureCall = net.bytebuddy.implementation.auxiliary.MethodCallProxy$AssignableSignatureCall of net.bytebuddy.implementation.auxiliary.MethodCallProxy
  protected final ConstructorCall = net.bytebuddy.implementation.auxiliary.MethodCallProxy$ConstructorCall of net.bytebuddy.implementation.auxiliary.MethodCallProxy
  protected MethodCall = net.bytebuddy.implementation.auxiliary.MethodCallProxy$MethodCall of net.bytebuddy.implementation.auxiliary.MethodCallProxy
  protected final PrecomputedMethodGraph = net.bytebuddy.implementation.auxiliary.MethodCallProxy$PrecomputedMethodGraph of net.bytebuddy.implementation.auxiliary.MethodCallProxy
    RuntimeVisibleAnnotations: 
      net.bytebuddy.build.HashCodeAndEqualsPlugin$Enhance()