class com.sun.javafx.tk.quantum.ZoomGestureRecognizer implements com.sun.javafx.tk.quantum.GestureRecognizer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
  super_class: java.lang.Object
{
  private static double ZOOM_FACTOR_THRESHOLD;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static boolean ZOOM_INERTIA_ENABLED;
    descriptor: Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static double MAX_ZOOMIN_VELOCITY;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static double MAX_ZOOMOUT_VELOCITY;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static double ZOOM_INERTIA_MILLIS;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static double MAX_ZOOM_IN_FACTOR;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static double MAX_ZOOM_OUT_FACTOR;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private com.sun.javafx.tk.quantum.ViewScene scene;
    descriptor: Lcom/sun/javafx/tk/quantum/ViewScene;
    flags: (0x0002) ACC_PRIVATE

  private javafx.animation.Timeline inertiaTimeline;
    descriptor: Ljavafx/animation/Timeline;
    flags: (0x0002) ACC_PRIVATE

  private javafx.beans.property.DoubleProperty inertiaZoomVelocity;
    descriptor: Ljavafx/beans/property/DoubleProperty;
    flags: (0x0002) ACC_PRIVATE

  private double initialInertiaZoomVelocity;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double zoomStartTime;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double lastTouchEventTime;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState state;
    descriptor: Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Map<java.lang.Long, com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker> trackers;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/Long;Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$TouchPointTracker;>;

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

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

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

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

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

  private double centerX;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double centerY;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double centerAbsX;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double centerAbsY;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double currentDistance;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double distanceReference;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double zoomFactor;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double totalZoomFactor;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  double inertiaLastTime;
    descriptor: D
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 48
            ldc 0.1
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_FACTOR_THRESHOLD:D
         1: .line 49
            iconst_1
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_INERTIA_ENABLED:Z
         2: .line 50
            ldc 3.0
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOMIN_VELOCITY:D
         3: .line 51
            ldc 0.3333
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOMOUT_VELOCITY:D
         4: .line 52
            ldc 500.0
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_INERTIA_MILLIS:D
         5: .line 53
            ldc 10.0
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOM_IN_FACTOR:D
         6: .line 54
            ldc 0.1
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOM_OUT_FACTOR:D
         7: .line 57
            invokedynamic run()Ljava/security/PrivilegedAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  com/sun/javafx/tk/quantum/ZoomGestureRecognizer.lambda$0()Ljava/lang/Void; (6)
                  ()Ljava/lang/Void;
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            pop
         8: .line 68
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(com.sun.javafx.tk.quantum.ViewScene);
    descriptor: (Lcom/sun/javafx/tk/quantum/ViewScene;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // com.sun.javafx.tk.quantum.ViewScene scene
         0: .line 97
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 0 /* this */
            new javafx.animation.Timeline
            dup
            invokespecial javafx.animation.Timeline.<init>:()V
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaTimeline:Ljavafx/animation/Timeline;
         2: .line 72
            aload 0 /* this */
            new javafx.beans.property.SimpleDoubleProperty
            dup
            invokespecial javafx.beans.property.SimpleDoubleProperty.<init>:()V
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaZoomVelocity:Ljavafx/beans/property/DoubleProperty;
         3: .line 73
            aload 0 /* this */
            dconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
         4: .line 74
            aload 0 /* this */
            dconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomStartTime:D
         5: .line 75
            aload 0 /* this */
            dconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.lastTouchEventTime:D
         6: .line 77
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.IDLE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
         7: .line 79
            aload 0 /* this */
         8: .line 80
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
         9: .line 85
            aload 0 /* this */
            iconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
        10: .line 93
            aload 0 /* this */
            dconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
        11: .line 94
            aload 0 /* this */
            dconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
        12: .line 95
            aload 0 /* this */
            dconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaLastTime:D
        13: .line 98
            aload 0 /* this */
            aload 1 /* scene */
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
        14: .line 99
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaZoomVelocity:Ljavafx/beans/property/DoubleProperty;
            aload 0 /* this */
            invokedynamic invalidated(Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;)Ljavafx/beans/InvalidationListener;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljavafx/beans/Observable;)V
                  com/sun/javafx/tk/quantum/ZoomGestureRecognizer.lambda$1(Ljavafx/beans/Observable;)V (7)
                  (Ljavafx/beans/Observable;)V
            invokevirtual javafx.beans.property.DoubleProperty.addListener:(Ljavafx/beans/InvalidationListener;)V
        15: .line 110
            return
        end local 1 // com.sun.javafx.tk.quantum.ViewScene scene
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0   16     1  scene  Lcom/sun/javafx/tk/quantum/ViewScene;
    MethodParameters:
       Name  Flags
      scene  final

  public void notifyBeginTouchEvent(long, int, boolean, int);
    descriptor: (JIZI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // long time
        start local 3 // int modifiers
        start local 4 // boolean isDirect
        start local 5 // int touchEventCount
         0: .line 115
            aload 0 /* this */
            iload 3 /* modifiers */
            iload 4 /* isDirect */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.params:(IZ)V
         1: .line 116
            aload 0 /* this */
            iconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsSetChanged:Z
         2: .line 117
            aload 0 /* this */
            iconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsPressed:Z
         3: .line 118
            return
        end local 5 // int touchEventCount
        end local 4 // boolean isDirect
        end local 3 // int modifiers
        end local 1 // long time
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    4     1             time  J
            0    4     3        modifiers  I
            0    4     4         isDirect  Z
            0    4     5  touchEventCount  I
    MethodParameters:
                 Name  Flags
      time             
      modifiers        
      isDirect         
      touchEventCount  

  public void notifyNextTouchEvent(long, int, long, int, int, int, int);
    descriptor: (JIJIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=10, args_size=8
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // long time
        start local 3 // int type
        start local 4 // long touchId
        start local 6 // int x
        start local 7 // int y
        start local 8 // int xAbs
        start local 9 // int yAbs
         0: .line 123
            iload 3 /* type */
            tableswitch { // 811 - 814
                  811: 1
                  812: 6
                  813: 8
                  814: 5
              default: 11
          }
         1: .line 125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsSetChanged:Z
         2: .line 126
            aload 0 /* this */
            iconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsPressed:Z
         3: .line 127
            aload 0 /* this */
            lload 4 /* touchId */
            lload 1 /* time */
            iload 6 /* x */
            iload 7 /* y */
            iload 8 /* xAbs */
            iload 9 /* yAbs */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPressed:(JJIIII)V
         4: .line 128
            goto 14
         5: .line 130
      StackMap locals:
      StackMap stack:
            goto 14
         6: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 4 /* touchId */
            lload 1 /* time */
            iload 6 /* x */
            iload 7 /* y */
            iload 8 /* xAbs */
            iload 9 /* yAbs */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchMoved:(JJIIII)V
         7: .line 133
            goto 14
         8: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsSetChanged:Z
         9: .line 136
            aload 0 /* this */
            lload 4 /* touchId */
            lload 1 /* time */
            iload 6 /* x */
            iload 7 /* y */
            iload 8 /* xAbs */
            iload 9 /* yAbs */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchReleased:(JJIIII)V
        10: .line 137
            goto 14
        11: .line 139
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Error in Zoom gesture recognition: unknown touch state: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        12: .line 140
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 139
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 142
      StackMap locals:
      StackMap stack:
            return
        end local 9 // int yAbs
        end local 8 // int xAbs
        end local 7 // int y
        end local 6 // int x
        end local 4 // long touchId
        end local 3 // int type
        end local 1 // long time
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0   15     1     time  J
            0   15     3     type  I
            0   15     4  touchId  J
            0   15     6        x  I
            0   15     7        y  I
            0   15     8     xAbs  I
            0   15     9     yAbs  I
    MethodParameters:
         Name  Flags
      time     
      type     
      touchId  
      x        
      y        
      xAbs     
      yAbs     

  private void calculateCenter();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=11, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 145
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            ifgt 2
         1: .line 146
            new java.lang.RuntimeException
            dup
            ldc "Error in Zoom gesture recognition: touch count is zero!"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 149
      StackMap locals:
      StackMap stack:
            dconst_0
            dstore 1 /* totalX */
        start local 1 // double totalX
         3: .line 150
            dconst_0
            dstore 3 /* totalY */
        start local 3 // double totalY
         4: .line 151
            dconst_0
            dstore 5 /* totalAbsX */
        start local 5 // double totalAbsX
         5: .line 152
            dconst_0
            dstore 7 /* totalAbsY */
        start local 7 // double totalAbsY
         6: .line 153
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 10
            goto 12
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer double double double double top java.util.Iterator
      StackMap stack:
         7: aload 10
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
            astore 9 /* tracker */
        start local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         8: .line 154
            dload 1 /* totalX */
            aload 9 /* tracker */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.getX:()D
            dadd
            dstore 1 /* totalX */
         9: .line 155
            dload 3 /* totalY */
            aload 9 /* tracker */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.getY:()D
            dadd
            dstore 3 /* totalY */
        10: .line 156
            dload 5 /* totalAbsX */
            aload 9 /* tracker */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.getAbsX:()D
            dadd
            dstore 5 /* totalAbsX */
        11: .line 157
            dload 7 /* totalAbsY */
            aload 9 /* tracker */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.getAbsY:()D
            dadd
            dstore 7 /* totalAbsY */
        end local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
        12: .line 153
      StackMap locals:
      StackMap stack:
            aload 10
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        13: .line 159
            aload 0 /* this */
            dload 1 /* totalX */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            i2d
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerX:D
        14: .line 160
            aload 0 /* this */
            dload 3 /* totalY */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            i2d
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerY:D
        15: .line 161
            aload 0 /* this */
            dload 5 /* totalAbsX */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            i2d
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsX:D
        16: .line 162
            aload 0 /* this */
            dload 7 /* totalAbsY */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            i2d
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsY:D
        17: .line 163
            return
        end local 7 // double totalAbsY
        end local 5 // double totalAbsX
        end local 3 // double totalY
        end local 1 // double totalX
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            3   18     1     totalX  D
            4   18     3     totalY  D
            5   18     5  totalAbsX  D
            6   18     7  totalAbsY  D
            8   12     9    tracker  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$TouchPointTracker;

  private double calculateMaxDistance();
    descriptor: ()D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 167
            dconst_0
            dstore 1 /* maxSquareDist */
        start local 1 // double maxSquareDist
         1: .line 168
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer double top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
            astore 3 /* tracker */
        start local 3 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         3: .line 169
            aload 3 /* tracker */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.getAbsX:()D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsX:D
            dsub
            dstore 5 /* deltaX */
        start local 5 // double deltaX
         4: .line 170
            aload 3 /* tracker */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.getAbsY:()D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsY:D
            dsub
            dstore 7 /* deltaY */
        start local 7 // double deltaY
         5: .line 172
            dload 5 /* deltaX */
            dload 5 /* deltaX */
            dmul
            dload 7 /* deltaY */
            dload 7 /* deltaY */
            dmul
            dadd
            dstore 9 /* squareDist */
        start local 9 // double squareDist
         6: .line 173
            dload 9 /* squareDist */
            dload 1 /* maxSquareDist */
            dcmpl
            ifle 8
         7: .line 174
            dload 9 /* squareDist */
            dstore 1 /* maxSquareDist */
        end local 9 // double squareDist
        end local 7 // double deltaY
        end local 5 // double deltaX
        end local 3 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         8: .line 168
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 177
            dload 1 /* maxSquareDist */
            invokestatic java.lang.Math.sqrt:(D)D
            dreturn
        end local 1 // double maxSquareDist
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            1   10     1  maxSquareDist  D
            3    8     3        tracker  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$TouchPointTracker;
            4    8     5         deltaX  D
            5    8     7         deltaY  D
            6    8     9     squareDist  D

  public void notifyEndTouchEvent(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=9, args_size=2
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // long time
         0: .line 182
            aload 0 /* this */
            lload 1 /* time */
            l2d
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.lastTouchEventTime:D
         1: .line 183
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            if_icmpeq 5
         2: .line 184
            new java.lang.RuntimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Error in Zoom gesture recognition: touch count is wrong: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         3: .line 185
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 184
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            ifne 40
         6: .line 189
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.ACTIVE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 8
         7: .line 190
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.sendZoomFinishedEvent:()V
         8: .line 192
      StackMap locals:
      StackMap stack:
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_INERTIA_ENABLED:Z
            ifeq 38
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.PRE_INERTIA:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpeq 9
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.ACTIVE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 38
         9: .line 193
      StackMap locals:
      StackMap stack:
            lload 1 /* time */
            l2d
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomStartTime:D
            dsub
            ldc 1000000.0
            ddiv
            dstore 3 /* timeFromLastZoom */
        start local 3 // double timeFromLastZoom
        10: .line 194
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
            dconst_0
            dcmpl
            ifeq 36
            dload 3 /* timeFromLastZoom */
            ldc 200.0
            dcmpg
            ifge 36
        11: .line 195
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.INERTIA:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
        12: .line 197
            aload 0 /* this */
            dconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaLastTime:D
        13: .line 198
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_INERTIA_MILLIS:D
            ldc 1000.0
            ddiv
            dstore 5 /* duration */
        start local 5 // double duration
        14: .line 199
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
            dload 5 /* duration */
            dmul
            dadd
            dstore 7 /* newZoom */
        start local 7 // double newZoom
        15: .line 200
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
            dconst_0
            dcmpl
            ifle 20
        16: .line 202
            dload 7 /* newZoom */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            ddiv
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOM_IN_FACTOR:D
            dcmpl
            ifle 23
        17: .line 203
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOM_IN_FACTOR:D
            dmul
            dstore 7 /* newZoom */
        18: .line 204
            dload 7 /* newZoom */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dsub
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
            ddiv
            dstore 5 /* duration */
        19: .line 206
            goto 23
        20: .line 208
      StackMap locals: double double double
      StackMap stack:
            dload 7 /* newZoom */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            ddiv
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOM_OUT_FACTOR:D
            dcmpg
            ifge 23
        21: .line 209
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.MAX_ZOOM_OUT_FACTOR:D
            dmul
            dstore 7 /* newZoom */
        22: .line 210
            dload 7 /* newZoom */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dsub
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
            ddiv
            dstore 5 /* duration */
        23: .line 214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaTimeline:Ljavafx/animation/Timeline;
            invokevirtual javafx.animation.Timeline.getKeyFrames:()Ljavafx/collections/ObservableList;
            iconst_2
            anewarray javafx.animation.KeyFrame
            dup
            iconst_0
        24: .line 215
            new javafx.animation.KeyFrame
            dup
        25: .line 216
            dconst_0
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            iconst_1
            anewarray javafx.animation.KeyValue
            dup
            iconst_0
        26: .line 217
            new javafx.animation.KeyValue
            dup
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaZoomVelocity:Ljavafx/beans/property/DoubleProperty;
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            getstatic javafx.animation.Interpolator.LINEAR:Ljavafx/animation/Interpolator;
            invokespecial javafx.animation.KeyValue.<init>:(Ljavafx/beans/value/WritableValue;Ljava/lang/Object;Ljavafx/animation/Interpolator;)V
        27: .line 215
            aastore
            invokespecial javafx.animation.KeyFrame.<init>:(Ljavafx/util/Duration;[Ljavafx/animation/KeyValue;)V
            aastore
            dup
            iconst_1
        28: .line 218
            new javafx.animation.KeyFrame
            dup
        29: .line 220
            dload 5 /* duration */
            invokestatic javafx.util.Duration.seconds:(D)Ljavafx/util/Duration;
        30: .line 221
            aload 0 /* this */
            invokedynamic handle(Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;)Ljavafx/event/EventHandler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljavafx/event/Event;)V
                  com/sun/javafx/tk/quantum/ZoomGestureRecognizer.lambda$2(Ljavafx/event/ActionEvent;)V (7)
                  (Ljavafx/event/ActionEvent;)V
            iconst_1
            anewarray javafx.animation.KeyValue
            dup
            iconst_0
        31: .line 225
            new javafx.animation.KeyValue
            dup
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaZoomVelocity:Ljavafx/beans/property/DoubleProperty;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            getstatic javafx.animation.Interpolator.LINEAR:Ljavafx/animation/Interpolator;
            invokespecial javafx.animation.KeyValue.<init>:(Ljavafx/beans/value/WritableValue;Ljava/lang/Object;Ljavafx/animation/Interpolator;)V
        32: .line 218
            aastore
            invokespecial javafx.animation.KeyFrame.<init>:(Ljavafx/util/Duration;Ljavafx/event/EventHandler;[Ljavafx/animation/KeyValue;)V
            aastore
        33: .line 214
            invokeinterface javafx.collections.ObservableList.setAll:([Ljava/lang/Object;)Z
            pop
        34: .line 227
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaTimeline:Ljavafx/animation/Timeline;
            invokevirtual javafx.animation.Timeline.playFromStart:()V
        end local 7 // double newZoom
        end local 5 // double duration
        35: .line 228
            goto 75
        36: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.reset:()V
        end local 3 // double timeFromLastZoom
        37: .line 231
            goto 75
        38: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.reset:()V
        39: .line 234
            goto 75
        40: .line 236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsPressed:Z
            ifeq 43
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.INERTIA:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 43
        41: .line 238
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaTimeline:Ljavafx/animation/Timeline;
            invokevirtual javafx.animation.Timeline.stop:()V
        42: .line 239
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.reset:()V
        43: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            iconst_1
            if_icmpne 51
        44: .line 243
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.ACTIVE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 75
        45: .line 244
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.sendZoomFinishedEvent:()V
        46: .line 245
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_INERTIA_ENABLED:Z
            ifeq 49
        47: .line 247
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.PRE_INERTIA:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
        48: .line 248
            goto 75
        49: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.reset:()V
        50: .line 253
            goto 75
        51: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.IDLE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 54
        52: .line 256
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.TRACKING:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
        53: .line 257
            aload 0 /* this */
            lload 1 /* time */
            l2d
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomStartTime:D
        54: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.calculateCenter:()V
        55: .line 261
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.calculateMaxDistance:()D
            dstore 3 /* currentDistance */
        start local 3 // double currentDistance
        56: .line 263
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.touchPointsSetChanged:Z
            ifeq 59
        57: .line 266
            aload 0 /* this */
            dload 3 /* currentDistance */
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.distanceReference:D
        58: .line 267
            goto 75
        59: .line 268
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            dload 3 /* currentDistance */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.distanceReference:D
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
        60: .line 269
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.TRACKING:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 64
        61: .line 270
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
            dconst_1
            dsub
            invokestatic java.lang.Math.abs:(D)D
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_FACTOR_THRESHOLD:D
            dcmpl
            ifle 64
        62: .line 271
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.ACTIVE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
        63: .line 272
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.sendZoomStartedEvent:()V
        64: .line 275
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.ACTIVE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 75
        65: .line 276
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dstore 5 /* prevTotalZoomFactor */
        start local 5 // double prevTotalZoomFactor
        66: .line 277
            aload 0 /* this */
            dup
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
            dmul
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
        67: .line 278
            aload 0 /* this */
            iconst_0
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.sendZoomEvent:(Z)V
        68: .line 279
            aload 0 /* this */
            dload 3 /* currentDistance */
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.distanceReference:D
        69: .line 280
            lload 1 /* time */
            l2d
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomStartTime:D
            dsub
            ldc 1.0E9
            ddiv
            dstore 7 /* timePassed */
        start local 7 // double timePassed
        70: .line 281
            dload 7 /* timePassed */
            ldc 1.0E-4
            dcmpl
            ifle 74
        71: .line 282
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dload 5 /* prevTotalZoomFactor */
            dsub
            dload 7 /* timePassed */
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
        72: .line 283
            aload 0 /* this */
            lload 1 /* time */
            l2d
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomStartTime:D
        73: .line 284
            goto 75
        74: .line 285
      StackMap locals: double double
      StackMap stack:
            aload 0 /* this */
            dconst_0
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.initialInertiaZoomVelocity:D
        end local 7 // double timePassed
        end local 5 // double prevTotalZoomFactor
        end local 3 // double currentDistance
        75: .line 291
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long time
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   76     0                 this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0   76     1                 time  J
           10   37     3     timeFromLastZoom  D
           14   35     5             duration  D
           15   35     7              newZoom  D
           56   75     3      currentDistance  D
           66   75     5  prevTotalZoomFactor  D
           70   75     7           timePassed  D
    MethodParameters:
      Name  Flags
      time  

  private void sendZoomStartedEvent();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 294
            aload 0 /* this */
            invokedynamic run(Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;)Ljava/security/PrivilegedAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  com/sun/javafx/tk/quantum/ZoomGestureRecognizer.lambda$3()Ljava/lang/Void; (7)
                  ()Ljava/lang/Void;
         1: .line 308
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            invokevirtual com.sun.javafx.tk.quantum.ViewScene.getAccessControlContext:()Ljava/security/AccessControlContext;
         2: .line 294
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;
            pop
         3: .line 309
            return
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;

  private void sendZoomEvent(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // boolean isInertia
         0: .line 312
            aload 0 /* this */
            iload 1 /* isInertia */
            invokedynamic run(Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;Z)Ljava/security/PrivilegedAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  com/sun/javafx/tk/quantum/ZoomGestureRecognizer.lambda$4(Z)Ljava/lang/Void; (7)
                  ()Ljava/lang/Void;
         1: .line 325
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            invokevirtual com.sun.javafx.tk.quantum.ViewScene.getAccessControlContext:()Ljava/security/AccessControlContext;
         2: .line 312
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;
            pop
         3: .line 326
            return
        end local 1 // boolean isInertia
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    4     1  isInertia  Z
    MethodParameters:
           Name  Flags
      isInertia  

  private void sendZoomFinishedEvent();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 329
            aload 0 /* this */
            invokedynamic run(Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;)Ljava/security/PrivilegedAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  com/sun/javafx/tk/quantum/ZoomGestureRecognizer.lambda$5()Ljava/lang/Void; (7)
                  ()Ljava/lang/Void;
         1: .line 343
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            invokevirtual com.sun.javafx.tk.quantum.ViewScene.getAccessControlContext:()Ljava/security/AccessControlContext;
         2: .line 329
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;
            pop
         3: .line 344
            return
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;

  public void params(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // int modifiers
        start local 2 // boolean direct
         0: .line 347
            aload 0 /* this */
            iload 1 /* modifiers */
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
         1: .line 348
            aload 0 /* this */
            iload 2 /* direct */
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.direct:Z
         2: .line 349
            return
        end local 2 // boolean direct
        end local 1 // int modifiers
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    3     1  modifiers  I
            0    3     2     direct  Z
    MethodParameters:
           Name  Flags
      modifiers  
      direct     

  public void touchPressed(long, long, int, int, int, int);
    descriptor: (JJIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=10, args_size=7
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // long id
        start local 3 // long nanos
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
         0: .line 352
            aload 0 /* this */
            dup
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            iconst_1
            iadd
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
         1: .line 353
            new com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
            dup
            invokespecial com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.<init>:()V
            astore 9 /* tracker */
        start local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         2: .line 354
            aload 9 /* tracker */
            lload 3 /* nanos */
            iload 5 /* x */
            i2d
            iload 6 /* y */
            i2d
            iload 7 /* xAbs */
            i2d
            iload 8 /* yAbs */
            i2d
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.update:(JDDDD)V
         3: .line 355
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            lload 1 /* id */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aload 9 /* tracker */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 356
            return
        end local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 3 // long nanos
        end local 1 // long id
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    5     1       id  J
            0    5     3    nanos  J
            0    5     5        x  I
            0    5     6        y  I
            0    5     7     xAbs  I
            0    5     8     yAbs  I
            2    5     9  tracker  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$TouchPointTracker;
    MethodParameters:
       Name  Flags
      id     
      nanos  
      x      
      y      
      xAbs   
      yAbs   

  public void touchReleased(long, long, int, int, int, int);
    descriptor: (JJIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=10, args_size=7
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // long id
        start local 3 // long nanos
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
         0: .line 359
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.FAILURE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpeq 6
         1: .line 360
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            lload 1 /* id */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
            astore 9 /* tracker */
        start local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         2: .line 361
            aload 9 /* tracker */
            ifnonnull 5
         3: .line 363
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.FAILURE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
         4: .line 364
            new java.lang.RuntimeException
            dup
            ldc "Error in Zoom gesture recognition: released unknown touch point"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 367
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            lload 1 /* id */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         6: .line 369
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
            iconst_1
            isub
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.currentTouchCount:I
         7: .line 370
            return
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 3 // long nanos
        end local 1 // long id
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    8     1       id  J
            0    8     3    nanos  J
            0    8     5        x  I
            0    8     6        y  I
            0    8     7     xAbs  I
            0    8     8     yAbs  I
            2    6     9  tracker  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$TouchPointTracker;
    MethodParameters:
       Name  Flags
      id     
      nanos  
      x      
      y      
      xAbs   
      yAbs   

  public void touchMoved(long, long, int, int, int, int);
    descriptor: (JJIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=10, args_size=7
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // long id
        start local 3 // long nanos
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
         0: .line 373
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.FAILURE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            if_acmpne 2
         1: .line 374
            return
         2: .line 377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.trackers:Ljava/util/Map;
            lload 1 /* id */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
            astore 9 /* tracker */
        start local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
         3: .line 378
            aload 9 /* tracker */
            ifnonnull 6
         4: .line 380
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.FAILURE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
         5: .line 381
            new java.lang.RuntimeException
            dup
            ldc "Error in zoom gesture recognition: reported unknown touch point"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 384
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker
      StackMap stack:
            aload 9 /* tracker */
            lload 3 /* nanos */
            iload 5 /* x */
            i2d
            iload 6 /* y */
            i2d
            iload 7 /* xAbs */
            i2d
            iload 8 /* yAbs */
            i2d
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker.update:(JDDDD)V
         7: .line 385
            return
        end local 9 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker tracker
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 3 // long nanos
        end local 1 // long id
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    8     1       id  J
            0    8     3    nanos  J
            0    8     5        x  I
            0    8     6        y  I
            0    8     7     xAbs  I
            0    8     8     yAbs  I
            3    8     9  tracker  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$TouchPointTracker;
    MethodParameters:
       Name  Flags
      id     
      nanos  
      x      
      y      
      xAbs   
      yAbs   

  void reset();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 388
            aload 0 /* this */
            getstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState.IDLE:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.state:Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer$ZoomRecognitionState;
         1: .line 389
            aload 0 /* this */
            dconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
         2: .line 390
            aload 0 /* this */
            dconst_1
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
         3: .line 391
            return
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;

  private static java.lang.Void lambda$0();
    descriptor: ()Ljava/lang/Void;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=0
         0: .line 58
            ldc "com.sun.javafx.gestures.zoom.threshold"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 0 /* s */
        start local 0 // java.lang.String s
         1: .line 59
            aload 0 /* s */
            ifnull 3
         2: .line 60
            aload 0 /* s */
            invokestatic java.lang.Double.valueOf:(Ljava/lang/String;)Ljava/lang/Double;
            invokevirtual java.lang.Double.doubleValue:()D
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_FACTOR_THRESHOLD:D
         3: .line 62
      StackMap locals: java.lang.String
      StackMap stack:
            ldc "com.sun.javafx.gestures.zoom.inertia"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 0 /* s */
         4: .line 63
            aload 0 /* s */
            ifnull 6
         5: .line 64
            aload 0 /* s */
            invokestatic java.lang.Boolean.valueOf:(Ljava/lang/String;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putstatic com.sun.javafx.tk.quantum.ZoomGestureRecognizer.ZOOM_INERTIA_ENABLED:Z
         6: .line 66
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    7     0     s  Ljava/lang/String;

  private void lambda$1(javafx.beans.Observable);
    descriptor: (Ljavafx/beans/Observable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // javafx.beans.Observable valueModel
         0: .line 100
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaTimeline:Ljavafx/animation/Timeline;
            invokevirtual javafx.animation.Timeline.getCurrentTime:()Ljavafx/util/Duration;
            invokevirtual javafx.util.Duration.toSeconds:()D
            dstore 2 /* currentTime */
        start local 2 // double currentTime
         1: .line 101
            dload 2 /* currentTime */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaLastTime:D
            dsub
            dstore 4 /* timePassed */
        start local 4 // double timePassed
         2: .line 102
            aload 0 /* this */
            dload 2 /* currentTime */
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaLastTime:D
         3: .line 103
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dstore 6 /* prevTotalZoomFactor */
        start local 6 // double prevTotalZoomFactor
         4: .line 104
            aload 0 /* this */
            dup
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dload 4 /* timePassed */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.inertiaZoomVelocity:Ljavafx/beans/property/DoubleProperty;
            invokevirtual javafx.beans.property.DoubleProperty.get:()D
            dmul
            dadd
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
         5: .line 105
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
            dload 6 /* prevTotalZoomFactor */
            ddiv
            putfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
         6: .line 108
            aload 0 /* this */
            iconst_1
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.sendZoomEvent:(Z)V
        end local 6 // double prevTotalZoomFactor
        end local 4 // double timePassed
        end local 2 // double currentTime
         7: .line 109
            return
        end local 1 // javafx.beans.Observable valueModel
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    8     0                 this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    8     1           valueModel  Ljavafx/beans/Observable;
            1    7     2          currentTime  D
            2    7     4           timePassed  D
            4    7     6  prevTotalZoomFactor  D

  private void lambda$2(javafx.event.ActionEvent);
    descriptor: (Ljavafx/event/ActionEvent;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
        start local 1 // javafx.event.ActionEvent event
         0: .line 223
            aload 0 /* this */
            invokevirtual com.sun.javafx.tk.quantum.ZoomGestureRecognizer.reset:()V
         1: .line 224
            return
        end local 1 // javafx.event.ActionEvent event
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
            0    2     1  event  Ljavafx/event/ActionEvent;

  private java.lang.Void lambda$3();
    descriptor: ()Ljava/lang/Void;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=20, locals=1, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 295
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            getfield com.sun.javafx.tk.quantum.ViewScene.sceneListener:Lcom/sun/javafx/tk/TKSceneListener;
            ifnull 16
         1: .line 296
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            getfield com.sun.javafx.tk.quantum.ViewScene.sceneListener:Lcom/sun/javafx/tk/TKSceneListener;
            getstatic javafx.scene.input.ZoomEvent.ZOOM_STARTED:Ljavafx/event/EventType;
         2: .line 297
            dconst_1
            dconst_1
         3: .line 298
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerX:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerY:D
         4: .line 299
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsX:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsY:D
         5: .line 300
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            iconst_1
            iand
            ifeq 6
            iconst_1
            goto 7
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double
         6: iconst_0
         7: .line 301
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            iconst_4
            iand
            ifeq 8
            iconst_1
            goto 9
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int
         8: iconst_0
         9: .line 302
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            bipush 8
            iand
            ifeq 10
            iconst_1
            goto 11
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int
        10: iconst_0
        11: .line 303
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            bipush 16
            iand
            ifeq 12
            iconst_1
            goto 13
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int
        12: iconst_0
        13: .line 304
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.direct:Z
        14: .line 305
            iconst_0
        15: .line 296
            invokeinterface com.sun.javafx.tk.TKSceneListener.zoomEvent:(Ljavafx/event/EventType;DDDDDDZZZZZZ)V
        16: .line 307
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;

  private java.lang.Void lambda$4(boolean);
    descriptor: (Z)Ljava/lang/Void;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=20, locals=2, args_size=2
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 313
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            getfield com.sun.javafx.tk.quantum.ViewScene.sceneListener:Lcom/sun/javafx/tk/TKSceneListener;
            ifnull 15
         1: .line 314
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            getfield com.sun.javafx.tk.quantum.ViewScene.sceneListener:Lcom/sun/javafx/tk/TKSceneListener;
            getstatic javafx.scene.input.ZoomEvent.ZOOM:Ljavafx/event/EventType;
         2: .line 315
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.zoomFactor:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
         3: .line 316
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerX:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerY:D
         4: .line 317
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsX:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsY:D
         5: .line 318
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            iconst_1
            iand
            ifeq 6
            iconst_1
            goto 7
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double
         6: iconst_0
         7: .line 319
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            iconst_4
            iand
            ifeq 8
            iconst_1
            goto 9
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int
         8: iconst_0
         9: .line 320
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            bipush 8
            iand
            ifeq 10
            iconst_1
            goto 11
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int
        10: iconst_0
        11: .line 321
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            bipush 16
            iand
            ifeq 12
            iconst_1
            goto 13
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int
        12: iconst_0
        13: .line 322
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer int
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.direct:Z
            iload 1
        14: .line 314
            invokeinterface com.sun.javafx.tk.TKSceneListener.zoomEvent:(Ljavafx/event/EventType;DDDDDDZZZZZZ)V
        15: .line 324
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;

  private java.lang.Void lambda$5();
    descriptor: ()Ljava/lang/Void;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=20, locals=1, args_size=1
        start local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
         0: .line 330
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            getfield com.sun.javafx.tk.quantum.ViewScene.sceneListener:Lcom/sun/javafx/tk/TKSceneListener;
            ifnull 16
         1: .line 331
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.scene:Lcom/sun/javafx/tk/quantum/ViewScene;
            getfield com.sun.javafx.tk.quantum.ViewScene.sceneListener:Lcom/sun/javafx/tk/TKSceneListener;
            getstatic javafx.scene.input.ZoomEvent.ZOOM_FINISHED:Ljavafx/event/EventType;
         2: .line 332
            dconst_1
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.totalZoomFactor:D
         3: .line 333
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerX:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerY:D
         4: .line 334
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsX:D
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.centerAbsY:D
         5: .line 335
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            iconst_1
            iand
            ifeq 6
            iconst_1
            goto 7
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double
         6: iconst_0
         7: .line 336
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            iconst_4
            iand
            ifeq 8
            iconst_1
            goto 9
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int
         8: iconst_0
         9: .line 337
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            bipush 8
            iand
            ifeq 10
            iconst_1
            goto 11
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int
        10: iconst_0
        11: .line 338
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.modifiers:I
            bipush 16
            iand
            ifeq 12
            iconst_1
            goto 13
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int
        12: iconst_0
        13: .line 339
      StackMap locals: com.sun.javafx.tk.quantum.ZoomGestureRecognizer
      StackMap stack: com.sun.javafx.tk.TKSceneListener javafx.event.EventType double double double double double double int int int int
            aload 0 /* this */
            getfield com.sun.javafx.tk.quantum.ZoomGestureRecognizer.direct:Z
        14: .line 340
            iconst_0
        15: .line 331
            invokeinterface com.sun.javafx.tk.TKSceneListener.zoomEvent:(Ljavafx/event/EventType;DDDDDDZZZZZZ)V
        16: .line 342
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.sun.javafx.tk.quantum.ZoomGestureRecognizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/sun/javafx/tk/quantum/ZoomGestureRecognizer;
}
SourceFile: "ZoomGestureRecognizer.java"
NestMembers:
  com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker  com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState
InnerClasses:
  private TouchPointTracker = com.sun.javafx.tk.quantum.ZoomGestureRecognizer$TouchPointTracker of com.sun.javafx.tk.quantum.ZoomGestureRecognizer
  private final ZoomRecognitionState = com.sun.javafx.tk.quantum.ZoomGestureRecognizer$ZoomRecognitionState of com.sun.javafx.tk.quantum.ZoomGestureRecognizer
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles