abstract class com.google.common.collect.Maps$DescendingMap<K, V> extends com.google.common.collect.ForwardingMap<K, V> implements java.util.NavigableMap<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.collect.Maps$DescendingMap
  super_class: com.google.common.collect.ForwardingMap
{
  private transient java.util.Comparator<? super K> comparator;
    descriptor: Ljava/util/Comparator;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Comparator<-TK;>;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.MonotonicNonNull()

  private transient java.util.Set<java.util.Map$Entry<K, V>> entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.MonotonicNonNull()

  private transient java.util.NavigableSet<K> navigableKeySet;
    descriptor: Ljava/util/NavigableSet;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/NavigableSet<TK;>;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.MonotonicNonNull()

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4027
            aload 0 /* this */
            invokespecial com.google.common.collect.ForwardingMap.<init>:()V
            return
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;

  abstract java.util.NavigableMap<K, V> forward();
    descriptor: ()Ljava/util/NavigableMap;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Ljava/util/NavigableMap<TK;TV;>;

  protected final java.util.Map<K, V> delegate();
    descriptor: ()Ljava/util/Map;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4034
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Map<TK;TV;>;

  public java.util.Comparator<? super K> comparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4042
            aload 0 /* this */
            getfield com.google.common.collect.Maps$DescendingMap.comparator:Ljava/util/Comparator;
            astore 1 /* result */
        start local 1 // java.util.Comparator result
         1: .line 4043
            aload 1 /* result */
            ifnonnull 6
         2: .line 4044
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.comparator:()Ljava/util/Comparator;
            astore 2 /* forwardCmp */
        start local 2 // java.util.Comparator forwardCmp
         3: .line 4045
            aload 2 /* forwardCmp */
            ifnonnull 5
         4: .line 4046
            invokestatic com.google.common.collect.Ordering.natural:()Lcom/google/common/collect/Ordering;
            astore 2 /* forwardCmp */
         5: .line 4048
      StackMap locals: java.util.Comparator java.util.Comparator
      StackMap stack:
            aload 0 /* this */
            aload 2 /* forwardCmp */
            invokestatic com.google.common.collect.Maps$DescendingMap.reverse:(Ljava/util/Comparator;)Lcom/google/common/collect/Ordering;
            dup_x1
            putfield com.google.common.collect.Maps$DescendingMap.comparator:Ljava/util/Comparator;
            astore 1 /* result */
        end local 2 // java.util.Comparator forwardCmp
         6: .line 4050
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 1 // java.util.Comparator result
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            1    7     1      result  Ljava/util/Comparator<-TK;>;
            3    6     2  forwardCmp  Ljava/util/Comparator<-TK;>;
    Signature: ()Ljava/util/Comparator<-TK;>;

  private static <T> com.google.common.collect.Ordering<T> reverse(java.util.Comparator<T>);
    descriptor: (Ljava/util/Comparator;)Lcom/google/common/collect/Ordering;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Comparator forward
         0: .line 4055
            aload 0 /* forward */
            invokestatic com.google.common.collect.Ordering.from:(Ljava/util/Comparator;)Lcom/google/common/collect/Ordering;
            invokevirtual com.google.common.collect.Ordering.reverse:()Lcom/google/common/collect/Ordering;
            areturn
        end local 0 // java.util.Comparator forward
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  forward  Ljava/util/Comparator<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Comparator<TT;>;)Lcom/google/common/collect/Ordering<TT;>;
    MethodParameters:
         Name  Flags
      forward  

  public K firstKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4060
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.lastKey:()Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()TK;

  public K lastKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4065
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.firstKey:()Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()TK;

  public java.util.Map$Entry<K, V> lowerEntry(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4070
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.higherEntry:(Ljava/lang/Object;)Ljava/util/Map$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/Map$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  public K lowerKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4075
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.higherKey:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Map$Entry<K, V> floorEntry(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4080
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.ceilingEntry:(Ljava/lang/Object;)Ljava/util/Map$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/Map$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  public K floorKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4085
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.ceilingKey:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Map$Entry<K, V> ceilingEntry(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4090
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.floorEntry:(Ljava/lang/Object;)Ljava/util/Map$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/Map$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  public K ceilingKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4095
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.floorKey:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Map$Entry<K, V> higherEntry(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4100
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.lowerEntry:(Ljava/lang/Object;)Ljava/util/Map$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/Map$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  public K higherKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object key
         0: .line 4105
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* key */
            invokeinterface java.util.NavigableMap.lowerKey:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Map$Entry<K, V> firstEntry();
    descriptor: ()Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4110
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.lastEntry:()Ljava/util/Map$Entry;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Map$Entry<TK;TV;>;

  public java.util.Map$Entry<K, V> lastEntry();
    descriptor: ()Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4115
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.firstEntry:()Ljava/util/Map$Entry;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Map$Entry<TK;TV;>;

  public java.util.Map$Entry<K, V> pollFirstEntry();
    descriptor: ()Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4120
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.pollLastEntry:()Ljava/util/Map$Entry;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Map$Entry<TK;TV;>;

  public java.util.Map$Entry<K, V> pollLastEntry();
    descriptor: ()Ljava/util/Map$Entry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4125
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.pollFirstEntry:()Ljava/util/Map$Entry;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Map$Entry<TK;TV;>;

  public java.util.NavigableMap<K, V> descendingMap();
    descriptor: ()Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4130
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/NavigableMap<TK;TV;>;

  public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4137
            aload 0 /* this */
            getfield com.google.common.collect.Maps$DescendingMap.entrySet:Ljava/util/Set;
            astore 1 /* result */
        start local 1 // java.util.Set result
         1: .line 4138
            aload 1 /* result */
            ifnonnull 2
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.createEntrySet:()Ljava/util/Set;
            dup_x1
            putfield com.google.common.collect.Maps$DescendingMap.entrySet:Ljava/util/Set;
            goto 3
      StackMap locals: java.util.Set
      StackMap stack:
         2: aload 1 /* result */
      StackMap locals:
      StackMap stack: java.util.Set
         3: areturn
        end local 1 // java.util.Set result
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            1    4     1  result  Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  abstract java.util.Iterator<java.util.Map$Entry<K, V>> entryIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Ljava/util/Iterator<Ljava/util/Map$Entry<TK;TV;>;>;

  java.util.Set<java.util.Map$Entry<K, V>> createEntrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4156
            new com.google.common.collect.Maps$DescendingMap$1EntrySetImpl
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.Maps$DescendingMap$1EntrySetImpl.<init>:(Lcom/google/common/collect/Maps$DescendingMap;)V
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4161
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.navigableKeySet:()Ljava/util/NavigableSet;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Set<TK;>;

  public java.util.NavigableSet<K> navigableKeySet();
    descriptor: ()Ljava/util/NavigableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4168
            aload 0 /* this */
            getfield com.google.common.collect.Maps$DescendingMap.navigableKeySet:Ljava/util/NavigableSet;
            astore 1 /* result */
        start local 1 // java.util.NavigableSet result
         1: .line 4169
            aload 1 /* result */
            ifnonnull 2
            aload 0 /* this */
            new com.google.common.collect.Maps$NavigableKeySet
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.Maps$NavigableKeySet.<init>:(Ljava/util/NavigableMap;)V
            dup_x1
            putfield com.google.common.collect.Maps$DescendingMap.navigableKeySet:Ljava/util/NavigableSet;
            goto 3
      StackMap locals: java.util.NavigableSet
      StackMap stack:
         2: aload 1 /* result */
      StackMap locals:
      StackMap stack: java.util.NavigableSet
         3: areturn
        end local 1 // java.util.NavigableSet result
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            1    4     1  result  Ljava/util/NavigableSet<TK;>;
    Signature: ()Ljava/util/NavigableSet<TK;>;

  public java.util.NavigableSet<K> descendingKeySet();
    descriptor: ()Ljava/util/NavigableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4174
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.navigableKeySet:()Ljava/util/NavigableSet;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/NavigableSet<TK;>;

  public java.util.NavigableMap<K, V> subMap(K, boolean, K, boolean);
    descriptor: (Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object fromKey
        start local 2 // boolean fromInclusive
        start local 3 // java.lang.Object toKey
        start local 4 // boolean toInclusive
         0: .line 4180
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 3 /* toKey */
            iload 4 /* toInclusive */
            aload 1 /* fromKey */
            iload 2 /* fromInclusive */
            invokeinterface java.util.NavigableMap.subMap:(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.descendingMap:()Ljava/util/NavigableMap;
            areturn
        end local 4 // boolean toInclusive
        end local 3 // java.lang.Object toKey
        end local 2 // boolean fromInclusive
        end local 1 // java.lang.Object fromKey
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1        fromKey  TK;
            0    1     2  fromInclusive  Z
            0    1     3          toKey  TK;
            0    1     4    toInclusive  Z
    Signature: (TK;ZTK;Z)Ljava/util/NavigableMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      fromKey        
      fromInclusive  
      toKey          
      toInclusive    

  public java.util.SortedMap<K, V> subMap(K, K);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object fromKey
        start local 2 // java.lang.Object toKey
         0: .line 4185
            aload 0 /* this */
            aload 1 /* fromKey */
            iconst_1
            aload 2 /* toKey */
            iconst_0
            invokevirtual com.google.common.collect.Maps$DescendingMap.subMap:(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;
            areturn
        end local 2 // java.lang.Object toKey
        end local 1 // java.lang.Object fromKey
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1  fromKey  TK;
            0    1     2    toKey  TK;
    Signature: (TK;TK;)Ljava/util/SortedMap<TK;TV;>;
    MethodParameters:
         Name  Flags
      fromKey  
      toKey    

  public java.util.NavigableMap<K, V> headMap(K, boolean);
    descriptor: (Ljava/lang/Object;Z)Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object toKey
        start local 2 // boolean inclusive
         0: .line 4190
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* toKey */
            iload 2 /* inclusive */
            invokeinterface java.util.NavigableMap.tailMap:(Ljava/lang/Object;Z)Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.descendingMap:()Ljava/util/NavigableMap;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object toKey
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1      toKey  TK;
            0    1     2  inclusive  Z
    Signature: (TK;Z)Ljava/util/NavigableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      toKey      
      inclusive  

  public java.util.SortedMap<K, V> headMap(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/SortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object toKey
         0: .line 4195
            aload 0 /* this */
            aload 1 /* toKey */
            iconst_0
            invokevirtual com.google.common.collect.Maps$DescendingMap.headMap:(Ljava/lang/Object;Z)Ljava/util/NavigableMap;
            areturn
        end local 1 // java.lang.Object toKey
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1  toKey  TK;
    Signature: (TK;)Ljava/util/SortedMap<TK;TV;>;
    MethodParameters:
       Name  Flags
      toKey  

  public java.util.NavigableMap<K, V> tailMap(K, boolean);
    descriptor: (Ljava/lang/Object;Z)Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object fromKey
        start local 2 // boolean inclusive
         0: .line 4200
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.forward:()Ljava/util/NavigableMap;
            aload 1 /* fromKey */
            iload 2 /* inclusive */
            invokeinterface java.util.NavigableMap.headMap:(Ljava/lang/Object;Z)Ljava/util/NavigableMap;
            invokeinterface java.util.NavigableMap.descendingMap:()Ljava/util/NavigableMap;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object fromKey
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1    fromKey  TK;
            0    1     2  inclusive  Z
    Signature: (TK;Z)Ljava/util/NavigableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      fromKey    
      inclusive  

  public java.util.SortedMap<K, V> tailMap(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/SortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$DescendingMap this
        start local 1 // java.lang.Object fromKey
         0: .line 4205
            aload 0 /* this */
            aload 1 /* fromKey */
            iconst_1
            invokevirtual com.google.common.collect.Maps$DescendingMap.tailMap:(Ljava/lang/Object;Z)Ljava/util/NavigableMap;
            areturn
        end local 1 // java.lang.Object fromKey
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
            0    1     1  fromKey  TK;
    Signature: (TK;)Ljava/util/SortedMap<TK;TV;>;
    MethodParameters:
         Name  Flags
      fromKey  

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4210
            new com.google.common.collect.Maps$Values
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.Maps$Values.<init>:(Ljava/util/Map;)V
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$DescendingMap this
         0: .line 4215
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$DescendingMap.standardToString:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.collect.Maps$DescendingMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$DescendingMap<TK;TV;>;

  protected java.lang.Object delegate();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.Maps$DescendingMap.delegate:()Ljava/util/Map;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lcom/google/common/collect/ForwardingMap<TK;TV;>;Ljava/util/NavigableMap<TK;TV;>;
SourceFile: "Maps.java"
NestHost: com.google.common.collect.Maps
InnerClasses:
  abstract DescendingMap = com.google.common.collect.Maps$DescendingMap of com.google.common.collect.Maps
  EntrySetImpl = com.google.common.collect.Maps$DescendingMap$1EntrySetImpl
  NavigableKeySet = com.google.common.collect.Maps$NavigableKeySet of com.google.common.collect.Maps
  Values = com.google.common.collect.Maps$Values of com.google.common.collect.Maps
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()