public class com.googlecode.lanterna.input.MouseCharacterPattern implements com.googlecode.lanterna.input.CharacterPattern
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.googlecode.lanterna.input.MouseCharacterPattern
  super_class: java.lang.Object
{
  private static final char[] PATTERN;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 32
            iconst_3
            newarray 5
            dup
            iconst_0
            bipush 27
            castore
            dup
            iconst_1
            bipush 91
            castore
            dup
            iconst_2
            bipush 77
            castore
            putstatic com.googlecode.lanterna.input.MouseCharacterPattern.PATTERN:[C
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.googlecode.lanterna.input.MouseCharacterPattern this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.googlecode.lanterna.input.MouseCharacterPattern this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/googlecode/lanterna/input/MouseCharacterPattern;

  public com.googlecode.lanterna.input.CharacterPattern$Matching match(java.util.List<java.lang.Character>);
    descriptor: (Ljava/util/List;)Lcom/googlecode/lanterna/input/CharacterPattern$Matching;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // com.googlecode.lanterna.input.MouseCharacterPattern this
        start local 1 // java.util.List seq
         0: .line 36
            aload 1 /* seq */
            invokeinterface java.util.List.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 37
            iload 2 /* size */
            bipush 6
            if_icmple 3
         2: .line 38
            aconst_null
            areturn
         3: .line 41
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 10
         5: .line 42
      StackMap locals: int
      StackMap stack:
            iload 3 /* i */
            iload 2 /* size */
            if_icmplt 7
         6: .line 43
            getstatic com.googlecode.lanterna.input.CharacterPattern$Matching.NOT_YET:Lcom/googlecode/lanterna/input/CharacterPattern$Matching;
            areturn
         7: .line 45
      StackMap locals:
      StackMap stack:
            aload 1 /* seq */
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Character
            invokevirtual java.lang.Character.charValue:()C
            getstatic com.googlecode.lanterna.input.MouseCharacterPattern.PATTERN:[C
            iload 3 /* i */
            caload
            if_icmpeq 9
         8: .line 46
            aconst_null
            areturn
         9: .line 41
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iconst_3
            if_icmplt 5
        end local 3 // int i
        11: .line 49
            iload 2 /* size */
            bipush 6
            if_icmpge 13
        12: .line 50
            getstatic com.googlecode.lanterna.input.CharacterPattern$Matching.NOT_YET:Lcom/googlecode/lanterna/input/CharacterPattern$Matching;
            areturn
        13: .line 52
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3 /* actionType */
        start local 3 // com.googlecode.lanterna.input.MouseActionType actionType
        14: .line 53
            aload 1 /* seq */
            iconst_3
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Character
            invokevirtual java.lang.Character.charValue:()C
            iconst_3
            iand
            iconst_1
            iadd
            istore 4 /* button */
        start local 4 // int button
        15: .line 54
            iload 4 /* button */
            iconst_4
            if_icmpne 17
        16: .line 56
            iconst_0
            istore 4 /* button */
        17: .line 58
      StackMap locals: com.googlecode.lanterna.input.MouseActionType int
      StackMap stack:
            aload 1 /* seq */
            iconst_3
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Character
            invokevirtual java.lang.Character.charValue:()C
            bipush 96
            iand
            iconst_5
            ishr
            istore 5 /* actionCode */
        start local 5 // int actionCode
        18: .line 59
            iload 5 /* actionCode */
            tableswitch { // 0 - 3
                    0: 24
                    1: 19
                    2: 24
                    3: 29
              default: 35
          }
        19: .line 61
      StackMap locals: int
      StackMap stack:
            iload 4 /* button */
            ifle 22
        20: .line 62
            getstatic com.googlecode.lanterna.input.MouseActionType.CLICK_DOWN:Lcom/googlecode/lanterna/input/MouseActionType;
            astore 3 /* actionType */
        21: .line 63
            goto 35
        22: .line 65
      StackMap locals:
      StackMap stack:
            getstatic com.googlecode.lanterna.input.MouseActionType.CLICK_RELEASE:Lcom/googlecode/lanterna/input/MouseActionType;
            astore 3 /* actionType */
        23: .line 67
            goto 35
        24: .line 69
      StackMap locals:
      StackMap stack:
            iload 4 /* button */
            ifne 27
        25: .line 70
            getstatic com.googlecode.lanterna.input.MouseActionType.MOVE:Lcom/googlecode/lanterna/input/MouseActionType;
            astore 3 /* actionType */
        26: .line 71
            goto 35
        27: .line 73
      StackMap locals:
      StackMap stack:
            getstatic com.googlecode.lanterna.input.MouseActionType.DRAG:Lcom/googlecode/lanterna/input/MouseActionType;
            astore 3 /* actionType */
        28: .line 75
            goto 35
        29: .line 77
      StackMap locals:
      StackMap stack:
            iload 4 /* button */
            iconst_1
            if_icmpne 33
        30: .line 78
            getstatic com.googlecode.lanterna.input.MouseActionType.SCROLL_UP:Lcom/googlecode/lanterna/input/MouseActionType;
            astore 3 /* actionType */
        31: .line 79
            iconst_4
            istore 4 /* button */
        32: .line 80
            goto 35
        33: .line 82
      StackMap locals:
      StackMap stack:
            getstatic com.googlecode.lanterna.input.MouseActionType.SCROLL_DOWN:Lcom/googlecode/lanterna/input/MouseActionType;
            astore 3 /* actionType */
        34: .line 83
            iconst_5
            istore 4 /* button */
        35: .line 87
      StackMap locals:
      StackMap stack:
            new com.googlecode.lanterna.TerminalPosition
            dup
            aload 1 /* seq */
            iconst_4
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Character
            invokevirtual java.lang.Character.charValue:()C
            bipush 33
            isub
            aload 1 /* seq */
            iconst_5
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Character
            invokevirtual java.lang.Character.charValue:()C
            bipush 33
            isub
            invokespecial com.googlecode.lanterna.TerminalPosition.<init>:(II)V
            astore 6 /* pos */
        start local 6 // com.googlecode.lanterna.TerminalPosition pos
        36: .line 89
            new com.googlecode.lanterna.input.MouseAction
            dup
            aload 3 /* actionType */
            iload 4 /* button */
            aload 6 /* pos */
            invokespecial com.googlecode.lanterna.input.MouseAction.<init>:(Lcom/googlecode/lanterna/input/MouseActionType;ILcom/googlecode/lanterna/TerminalPosition;)V
            astore 7 /* ma */
        start local 7 // com.googlecode.lanterna.input.MouseAction ma
        37: .line 90
            new com.googlecode.lanterna.input.CharacterPattern$Matching
            dup
            aload 7 /* ma */
            invokespecial com.googlecode.lanterna.input.CharacterPattern$Matching.<init>:(Lcom/googlecode/lanterna/input/KeyStroke;)V
            areturn
        end local 7 // com.googlecode.lanterna.input.MouseAction ma
        end local 6 // com.googlecode.lanterna.TerminalPosition pos
        end local 5 // int actionCode
        end local 4 // int button
        end local 3 // com.googlecode.lanterna.input.MouseActionType actionType
        end local 2 // int size
        end local 1 // java.util.List seq
        end local 0 // com.googlecode.lanterna.input.MouseCharacterPattern this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   38     0        this  Lcom/googlecode/lanterna/input/MouseCharacterPattern;
            0   38     1         seq  Ljava/util/List<Ljava/lang/Character;>;
            1   38     2        size  I
            4   11     3           i  I
           14   38     3  actionType  Lcom/googlecode/lanterna/input/MouseActionType;
           15   38     4      button  I
           18   38     5  actionCode  I
           36   38     6         pos  Lcom/googlecode/lanterna/TerminalPosition;
           37   38     7          ma  Lcom/googlecode/lanterna/input/MouseAction;
    Signature: (Ljava/util/List<Ljava/lang/Character;>;)Lcom/googlecode/lanterna/input/CharacterPattern$Matching;
    MethodParameters:
      Name  Flags
      seq   
}
SourceFile: "MouseCharacterPattern.java"
InnerClasses:
  public Matching = com.googlecode.lanterna.input.CharacterPattern$Matching of com.googlecode.lanterna.input.CharacterPattern