/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.jar /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.jar # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty termination of the given Bare JBC problem could be proven: (0) Bare JBC problem (1) BareJBCToJBCProof [EQUIVALENT, 96 ms] (2) JBC problem (3) JBCToGraph [EQUIVALENT, 3317 ms] (4) JBCTerminationGraph (5) TerminationGraphToSCCProof [SOUND, 0 ms] (6) AND (7) JBCTerminationSCC (8) SCCToIRSProof [SOUND, 231 ms] (9) IRSwT (10) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (11) IRSwT (12) IRSwTTerminationDigraphProof [EQUIVALENT, 55 ms] (13) IRSwT (14) IntTRSCompressionProof [EQUIVALENT, 0 ms] (15) IRSwT (16) TempFilterProof [SOUND, 997 ms] (17) IRSwT (18) IRSwTTerminationDigraphProof [EQUIVALENT, 0 ms] (19) IRSwT (20) IntTRSUnneededArgumentFilterProof [EQUIVALENT, 0 ms] (21) IRSwT (22) TempFilterProof [SOUND, 1 ms] (23) IRSwT (24) IRSwTToQDPProof [SOUND, 0 ms] (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] (27) YES (28) JBCTerminationSCC (29) SCCToIRSProof [SOUND, 184 ms] (30) IRSwT (31) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (32) IRSwT (33) IRSwTTerminationDigraphProof [EQUIVALENT, 55 ms] (34) IRSwT (35) IntTRSCompressionProof [EQUIVALENT, 0 ms] (36) IRSwT (37) TempFilterProof [SOUND, 25 ms] (38) IRSwT (39) IRSwTToQDPProof [SOUND, 0 ms] (40) QDP (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] (42) YES (43) JBCTerminationSCC (44) SCCToIRSProof [SOUND, 201 ms] (45) IRSwT (46) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (47) IRSwT (48) IRSwTTerminationDigraphProof [EQUIVALENT, 45 ms] (49) IRSwT (50) IntTRSCompressionProof [EQUIVALENT, 3 ms] (51) IRSwT (52) TempFilterProof [SOUND, 2 ms] (53) IRSwT (54) IRSwTToQDPProof [SOUND, 0 ms] (55) QDP (56) QDPSizeChangeProof [EQUIVALENT, 0 ms] (57) YES (58) JBCTerminationSCC (59) SCCToIRSProof [SOUND, 812 ms] (60) IRSwT (61) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (62) IRSwT (63) IRSwTTerminationDigraphProof [EQUIVALENT, 0 ms] (64) IRSwT (65) IntTRSCompressionProof [EQUIVALENT, 0 ms] (66) IRSwT (67) TempFilterProof [SOUND, 11 ms] (68) IntTRS (69) RankingReductionPairProof [EQUIVALENT, 5 ms] (70) YES ---------------------------------------- (0) Obligation: need to prove termination of the following program: /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * This class provides a skeletal implementation of the Collection * interface, to minimize the effort required to implement this interface.

* * To implement an unmodifiable collection, the programmer needs only to * extend this class and provide implementations for the iterator and * size methods. (The iterator returned by the iterator * method must implement hasNext and next.)

* * To implement a modifiable collection, the programmer must additionally * override this class's add method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by the * iterator method must additionally implement its remove * method.

* * The programmer should generally provide a void (no argument) and * Collection constructor, as per the recommendation in the * Collection interface specification.

* * The documentation for each non-abstract method in this class describes its * implementation in detail. Each of these methods may be overridden if * the collection being implemented admits a more efficient implementation.

* * This class is a member of the * * Java Collections Framework. * * @author Josh Bloch * @author Neal Gafter * @see Collection * @since 1.2 */ public abstract class AbstractCollection implements Collection { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractCollection() { } // Query Operations /** * Returns an iterator over the elements contained in this collection. * * @return an iterator over the elements contained in this collection */ public abstract Iterator iterator(); public abstract int size(); /** * {@inheritDoc} * *

This implementation returns size() == 0. */ public boolean isEmpty() { return size() == 0; } /** * {@inheritDoc} * *

This implementation iterates over the elements in the collection, * checking each element in turn for equality with the specified element. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean contains(Object o) { Iterator e = iterator(); if (o==null) { while (e.hasNext()) if (e.next()==null) return true; } else { while (e.hasNext()) if (o.equals(e.next())) return true; } return false; } // Modification Operations /** * {@inheritDoc} * *

This implementation always throws an * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ public boolean add(E e) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * *

This implementation iterates over the collection looking for the * specified element. If it finds the element, it removes the element * from the collection using the iterator's remove method. * *

Note that this implementation throws an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the remove * method and this collection contains the specified object. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean remove(Object o) { Iterator e = iterator(); if (o==null) { while (e.hasNext()) { if (e.next()==null) { e.remove(); return true; } } } else { while (e.hasNext()) { if (o.equals(e.next())) { e.remove(); return true; } } } return false; } // Bulk Operations /** * {@inheritDoc} * *

This implementation iterates over the specified collection, * checking each element returned by the iterator in turn to see * if it's contained in this collection. If all elements are so * contained true is returned, otherwise false. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @see #contains(Object) */ public boolean containsAll(Collection c) { Iterator e = c.iterator(); while (e.hasNext()) if (!contains(e.next())) return false; return true; } /** * {@inheritDoc} * *

This implementation iterates over the specified collection, and adds * each object returned by the iterator to this collection, in turn. * *

Note that this implementation will throw an * UnsupportedOperationException unless add is * overridden (assuming the specified collection is non-empty). * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} * * @see #add(Object) */ public boolean addAll(Collection c) { boolean modified = false; Iterator e = c.iterator(); while (e.hasNext()) { if (add(e.next())) modified = true; } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, checking each * element returned by the iterator in turn to see if it's contained * in the specified collection. If it's so contained, it's removed from * this collection with the iterator's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method * and this collection contains one or more elements in common with the * specified collection. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * * @see #remove(Object) * @see #contains(Object) */ public boolean removeAll(Collection c) { boolean modified = false; Iterator e = iterator(); while (e.hasNext()) { if (c.contains(e.next())) { e.remove(); modified = true; } } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, checking each * element returned by the iterator in turn to see if it's contained * in the specified collection. If it's not so contained, it's removed * from this collection with the iterator's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method * and this collection contains one or more elements not present in the * specified collection. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * * @see #remove(Object) * @see #contains(Object) */ public boolean retainAll(Collection c) { boolean modified = false; Iterator e = iterator(); while (e.hasNext()) { if (!c.contains(e.next())) { e.remove(); modified = true; } } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, removing each * element using the Iterator.remove operation. Most * implementations will probably choose to override this method for * efficiency. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the * remove method and this collection is non-empty. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { Iterator e = iterator(); while (e.hasNext()) { e.next(); e.remove(); } } // String conversion /** * Returns a string representation of this collection. The string * representation consists of a list of the collection's elements in the * order they are returned by its iterator, enclosed in square brackets * ("[]"). Adjacent elements are separated by the characters * ", " (comma and space). Elements are converted to strings as * by {@link String#valueOf(Object)}. * * @return a string representation of this collection */ public String toString() { Iterator i = iterator(); if (! i.hasNext()) return "[]"; String sb = ""; sb = sb + "["; for (;;) { E e = i.next(); sb = sb + (e == this ? "(this Collection)" : e); if (! i.hasNext()) { sb = sb + "]"; return sb; } sb = sb + ", "; } } } /* * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; import javaUtilEx.Map.Entry; /** * This class provides a skeletal implementation of the Map * interface, to minimize the effort required to implement this interface. * *

To implement an unmodifiable map, the programmer needs only to extend this * class and provide an implementation for the entrySet method, which * returns a set-view of the map's mappings. Typically, the returned set * will, in turn, be implemented atop AbstractSet. This set should * not support the add or remove methods, and its iterator * should not support the remove method. * *

To implement a modifiable map, the programmer must additionally override * this class's put method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by * entrySet().iterator() must additionally implement its * remove method. * *

The programmer should generally provide a void (no argument) and map * constructor, as per the recommendation in the Map interface * specification. * *

The documentation for each non-abstract method in this class describes its * implementation in detail. Each of these methods may be overridden if the * map being implemented admits a more efficient implementation. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @author Neal Gafter * @see Map * @see Collection * @since 1.2 */ public abstract class AbstractMap implements Map { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractMap() { } // Query Operations /** * {@inheritDoc} * *

This implementation returns entrySet().size(). */ public int size() { return entrySet().size(); } /** * {@inheritDoc} * *

This implementation returns size() == 0. */ public boolean isEmpty() { return size() == 0; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified value. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsValue(Object value) { Iterator> i = entrySet().iterator(); if (value==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getValue()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (value.equals(e.getValue())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsKey(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * the entry's value is returned. If the iteration terminates without * finding such an entry, null is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V get(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return e.getValue(); } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return e.getValue(); } } return null; } // Modification Operations /** * {@inheritDoc} * *

This implementation always throws an * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public V put(K key, V value) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching for an * entry with the specified key. If such an entry is found, its value is * obtained with its getValue operation, the entry is removed * from the collection (and the backing map) with the iterator's * remove operation, and the saved value is returned. If the * iteration terminates without finding such an entry, null is * returned. Note that this implementation requires linear time in the * size of the map; many implementations will override this method. * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * iterator does not support the remove method and this map * contains a mapping for the specified key. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V remove(Object key) { Iterator> i = entrySet().iterator(); Entry correctEntry = null; if (key==null) { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) correctEntry = e; } } else { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) correctEntry = e; } } V oldValue = null; if (correctEntry !=null) { oldValue = correctEntry.getValue(); i.remove(); } return oldValue; } // Bulk Operations /** * {@inheritDoc} * *

This implementation iterates over the specified map's * entrySet() collection, and calls this map's put * operation once for each entry returned by the iteration. * *

Note that this implementation throws an * UnsupportedOperationException if this map does not support * the put operation and the specified map is nonempty. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public void putAll(Map m) { Iterator it = m.entrySet().iterator(); while (it.hasNext()) { Map.Entry e = (Map.Entry) it.next(); put((K) e.getKey(), (V) e.getValue()); } } /** * {@inheritDoc} * *

This implementation calls entrySet().clear(). * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * does not support the clear operation. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { entrySet().clear(); } // Views /** * Each of these fields are initialized to contain an instance of the * appropriate view the first time this view is requested. The views are * stateless, so there's no reason to create more than one of each. */ transient volatile Set keySet = null; transient volatile Collection values = null; /** * {@inheritDoc} * *

This implementation returns a set that subclasses {@link AbstractSet}. * The subclass's iterator method returns a "wrapper object" over this * map's entrySet() iterator. The size method * delegates to this map's size method and the * contains method delegates to this map's * containsKey method. * *

The set is created the first time this method is called, * and returned in response to all subsequent calls. No synchronization * is performed, so there is a slight chance that multiple calls to this * method will not all return the same set. */ public Set keySet() { if (keySet == null) { keySet = new AbstractSet() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public K next() { return i.next().getKey(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object k) { return AbstractMap.this.containsKey(k); } public Object[] toArray() { Object[] res = new Object[AbstractMap.this.size()]; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), AbstractMap.this.size()); Object[] res = a; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return a; } }; } return keySet; } /** * {@inheritDoc} * *

This implementation returns a collection that subclasses {@link * AbstractCollection}. The subclass's iterator method returns a * "wrapper object" over this map's entrySet() iterator. * The size method delegates to this map's size * method and the contains method delegates to this map's * containsValue method. * *

The collection is created the first time this method is called, and * returned in response to all subsequent calls. No synchronization is * performed, so there is a slight chance that multiple calls to this * method will not all return the same collection. */ public Collection values() { if (values == null) { values = new AbstractCollection() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public V next() { return i.next().getValue(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object v) { return AbstractMap.this.containsValue(v); } }; } return values; } public abstract Set> entrySet(); // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * *

This implementation first checks if the specified object is this map; * if so it returns true. Then, it checks if the specified * object is a map whose size is identical to the size of this map; if * not, it returns false. If so, it iterates over this map's * entrySet collection, and checks that the specified map * contains each mapping that this map contains. If the specified map * fails to contain such a mapping, false is returned. If the * iteration completes, true is returned. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Map)) return false; Map m = (Map) o; if (m.size() != size()) return false; try { Iterator> i = entrySet().iterator(); while (i.hasNext()) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); if (value == null) { if (!(m.get(key)==null && m.containsKey(key))) return false; } else { if (!value.equals(m.get(key))) return false; } } } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } return true; } /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over entrySet(), calling * {@link Map.Entry#hashCode hashCode()} on each element (entry) in the * set, and adding up the results. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator> i = entrySet().iterator(); while (i.hasNext()) h += i.next().hashCode(); return h; } /** * Returns a string representation of this map. The string representation * consists of a list of key-value mappings in the order returned by the * map's entrySet view's iterator, enclosed in braces * ("{}"). Adjacent mappings are separated by the characters * ", " (comma and space). Each key-value mapping is rendered as * the key followed by an equals sign ("=") followed by the * associated value. Keys and values are converted to strings as by * {@link String#valueOf(Object)}. * * @return a string representation of this map */ public String toString() { Iterator> i = entrySet().iterator(); if (! i.hasNext()) return "{}"; StringBuilder sb = new StringBuilder(); sb.append('{'); for (;;) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); sb.append(key == this ? "(this Map)" : key); sb.append('='); sb.append(value == this ? "(this Map)" : value); if (! i.hasNext()) return sb.append('}').toString(); sb.append(", "); } } /** * Returns a shallow copy of this AbstractMap instance: the keys * and values themselves are not cloned. * * @return a shallow copy of this map */ protected Object clone() throws CloneNotSupportedException { AbstractMap result = (AbstractMap)super.clone(); result.keySet = null; result.values = null; return result; } /** * Utility method for SimpleEntry and SimpleImmutableEntry. * Test for equality, checking for nulls. */ private static boolean eq(Object o1, Object o2) { return o1 == null ? o2 == null : o1.equals(o2); } // Implementation Note: SimpleEntry and SimpleImmutableEntry // are distinct unrelated classes, even though they share // some code. Since you can't add or subtract final-ness // of a field in a subclass, they can't share representations, // and the amount of duplicated code is too small to warrant // exposing a common abstract class. /** * An Entry maintaining a key and a value. The value may be * changed using the setValue method. This class * facilitates the process of building custom map * implementations. For example, it may be convenient to return * arrays of SimpleEntry instances in method * Map.entrySet().toArray. * * @since 1.6 */ public static class SimpleEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = -8499721149061103585L; private final K key; private V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value. * * @param value new value to be stored in this entry * @return the old value corresponding to the entry */ public V setValue(V value) { V oldValue = this.value; this.value = value; return oldValue; } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if

         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } /** * An Entry maintaining an immutable key and value. This class * does not support method setValue. This class may be * convenient in methods that return thread-safe snapshots of * key-value mappings. * * @since 1.6 */ public static class SimpleImmutableEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = 7138329143949025153L; private final K key; private final V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleImmutableEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleImmutableEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value (optional operation). This implementation simply throws * UnsupportedOperationException, as this class implements * an immutable map entry. * * @param value new value to be stored in this entry * @return (Does not return) * @throws UnsupportedOperationException always */ public V setValue(V value) { throw new UnsupportedOperationException(); } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if
         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * This class provides a skeletal implementation of the Set * interface to minimize the effort required to implement this * interface.

* * The process of implementing a set by extending this class is identical * to that of implementing a Collection by extending AbstractCollection, * except that all of the methods and constructors in subclasses of this * class must obey the additional constraints imposed by the Set * interface (for instance, the add method must not permit addition of * multiple instances of an object to a set).

* * Note that this class does not override any of the implementations from * the AbstractCollection class. It merely adds implementations * for equals and hashCode.

* * This class is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see AbstractCollection * @see Set * @since 1.2 */ public abstract class AbstractSet extends AbstractCollection implements Set { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractSet() { } // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the given object is also a set, the two sets have * the same size, and every member of the given set is contained in * this set. This ensures that the equals method works * properly across different implementations of the Set * interface.

* * This implementation first checks if the specified object is this * set; if so it returns true. Then, it checks if the * specified object is a set whose size is identical to the size of * this set; if not, it returns false. If so, it returns * containsAll((Collection) o). * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Set)) return false; Collection c = (Collection) o; if (c.size() != size()) return false; try { return containsAll(c); } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } } /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over the set, calling the * hashCode method on each element in the set, and adding up * the results. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator i = iterator(); while (i.hasNext()) { E obj = i.next(); if (obj != null) h += obj.hashCode(); } return h; } /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * *

This implementation determines which is the smaller of this set * and the specified collection, by invoking the size * method on each. If this set has fewer elements, then the * implementation iterates over this set, checking each element * returned by the iterator in turn to see if it is contained in * the specified collection. If it is so contained, it is removed * from this set with the iterator's remove method. If * the specified collection has fewer elements, then the * implementation iterates over the specified collection, removing * from this set each element returned by the iterator, using this * set's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ public boolean removeAll(Collection c) { boolean modified = false; if (size() > c.size()) { for (Iterator i = c.iterator(); i.hasNext(); ) modified |= remove(i.next()); } else { for (Iterator i = iterator(); i.hasNext(); ) { if (c.contains(i.next())) { i.remove(); modified = true; } } } return modified; } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * The root interface in the collection hierarchy. A collection * represents a group of objects, known as its elements. Some * collections allow duplicate elements and others do not. Some are ordered * and others unordered. The JDK does not provide any direct * implementations of this interface: it provides implementations of more * specific subinterfaces like Set and List. This interface * is typically used to pass collections around and manipulate them where * maximum generality is desired. * *

Bags or multisets (unordered collections that may contain * duplicate elements) should implement this interface directly. * *

All general-purpose Collection implementation classes (which * typically implement Collection indirectly through one of its * subinterfaces) should provide two "standard" constructors: a void (no * arguments) constructor, which creates an empty collection, and a * constructor with a single argument of type Collection, which * creates a new collection with the same elements as its argument. In * effect, the latter constructor allows the user to copy any collection, * producing an equivalent collection of the desired implementation type. * There is no way to enforce this convention (as interfaces cannot contain * constructors) but all of the general-purpose Collection * implementations in the Java platform libraries comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the collection on which they operate, are specified to * throw UnsupportedOperationException if this collection does not * support the operation. If this is the case, these methods may, but are not * required to, throw an UnsupportedOperationException if the * invocation would have no effect on the collection. For example, invoking * the {@link #addAll(Collection)} method on an unmodifiable collection may, * but is not required to, throw the exception if the collection to be added * is empty. * *

Some collection implementations have restrictions on the elements that * they may contain. For example, some implementations prohibit null elements, * and some have restrictions on the types of their elements. Attempting to * add an ineligible element throws an unchecked exception, typically * NullPointerException or ClassCastException. Attempting * to query the presence of an ineligible element may throw an exception, * or it may simply return false; some implementations will exhibit the former * behavior and some will exhibit the latter. More generally, attempting an * operation on an ineligible element whose completion would not result in * the insertion of an ineligible element into the collection may throw an * exception or it may succeed, at the option of the implementation. * Such exceptions are marked as "optional" in the specification for this * interface. * *

It is up to each collection to determine its own synchronization * policy. In the absence of a stronger guarantee by the * implementation, undefined behavior may result from the invocation * of any method on a collection that is being mutated by another * thread; this includes direct invocations, passing the collection to * a method that might perform invocations, and using an existing * iterator to examine the collection. * *

Many methods in Collections Framework interfaces are defined in * terms of the {@link Object#equals(Object) equals} method. For example, * the specification for the {@link #contains(Object) contains(Object o)} * method says: "returns true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e))." This specification should * not be construed to imply that invoking Collection.contains * with a non-null argument o will cause o.equals(e) to be * invoked for any element e. Implementations are free to implement * optimizations whereby the equals invocation is avoided, for * example, by first comparing the hash codes of the two elements. (The * {@link Object#hashCode()} specification guarantees that two objects with * unequal hash codes cannot be equal.) More generally, implementations of * the various Collections Framework interfaces are free to take advantage of * the specified behavior of underlying {@link Object} methods wherever the * implementor deems it appropriate. * *

This interface is a member of the * * Java Collections Framework. * * @author Josh Bloch * @author Neal Gafter * @see Set * @see List * @see Map * @see SortedSet * @see SortedMap * @see HashSet * @see TreeSet * @see ArrayList * @see LinkedList * @see Vector * @see Collections * @see Arrays * @see AbstractCollection * @since 1.2 */ public interface Collection { // Query Operations /** * Returns the number of elements in this collection. If this collection * contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this collection */ int size(); /** * Returns true if this collection contains no elements. * * @return true if this collection contains no elements */ boolean isEmpty(); /** * Returns true if this collection contains the specified element. * More formally, returns true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this collection is to be tested * @return true if this collection contains the specified * element * @throws ClassCastException if the type of the specified element * is incompatible with this collection (optional) * @throws NullPointerException if the specified element is null and this * collection does not permit null elements (optional) */ boolean contains(Object o); /** * Returns an iterator over the elements in this collection. There are no * guarantees concerning the order in which the elements are returned * (unless this collection is an instance of some class that provides a * guarantee). * * @return an Iterator over the elements in this collection */ Iterator iterator(); // Modification Operations /** * Ensures that this collection contains the specified element (optional * operation). Returns true if this collection changed as a * result of the call. (Returns false if this collection does * not permit duplicates and already contains the specified element.)

* * Collections that support this operation may place limitations on what * elements may be added to this collection. In particular, some * collections will refuse to add null elements, and others will * impose restrictions on the type of elements that may be added. * Collection classes should clearly specify in their documentation any * restrictions on what elements may be added.

* * If a collection refuses to add a particular element for any reason * other than that it already contains the element, it must throw * an exception (rather than returning false). This preserves * the invariant that a collection always contains the specified element * after this call returns. * * @param e element whose presence in this collection is to be ensured * @return true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the add operation * is not supported by this collection * @throws ClassCastException if the class of the specified element * prevents it from being added to this collection * @throws NullPointerException if the specified element is null and this * collection does not permit null elements * @throws IllegalArgumentException if some property of the element * prevents it from being added to this collection * @throws IllegalStateException if the element cannot be added at this * time due to insertion restrictions */ boolean add(E e); /** * Removes a single instance of the specified element from this * collection, if it is present (optional operation). More formally, * removes an element e such that * (o==null ? e==null : o.equals(e)), if * this collection contains one or more such elements. Returns * true if this collection contained the specified element (or * equivalently, if this collection changed as a result of the call). * * @param o element to be removed from this collection, if present * @return true if an element was removed as a result of this call * @throws ClassCastException if the type of the specified element * is incompatible with this collection (optional) * @throws NullPointerException if the specified element is null and this * collection does not permit null elements (optional) * @throws UnsupportedOperationException if the remove operation * is not supported by this collection */ boolean remove(Object o); // Bulk Operations /** * Returns true if this collection contains all of the elements * in the specified collection. * * @param c collection to be checked for containment in this collection * @return true if this collection contains all of the elements * in the specified collection * @throws ClassCastException if the types of one or more elements * in the specified collection are incompatible with this * collection (optional) * @throws NullPointerException if the specified collection contains one * or more null elements and this collection does not permit null * elements (optional), or if the specified collection is null * @see #contains(Object) */ boolean containsAll(Collection c); /** * Adds all of the elements in the specified collection to this collection * (optional operation). The behavior of this operation is undefined if * the specified collection is modified while the operation is in progress. * (This implies that the behavior of this call is undefined if the * specified collection is this collection, and this collection is * nonempty.) * * @param c collection containing elements to be added to this collection * @return true if this collection changed as a result of the call * @throws UnsupportedOperationException if the addAll operation * is not supported by this collection * @throws ClassCastException if the class of an element of the specified * collection prevents it from being added to this collection * @throws NullPointerException if the specified collection contains a * null element and this collection does not permit null elements, * or if the specified collection is null * @throws IllegalArgumentException if some property of an element of the * specified collection prevents it from being added to this * collection * @throws IllegalStateException if not all the elements can be added at * this time due to insertion restrictions * @see #add(Object) */ boolean addAll(Collection c); /** * Removes all of this collection's elements that are also contained in the * specified collection (optional operation). After this call returns, * this collection will contain no elements in common with the specified * collection. * * @param c collection containing elements to be removed from this collection * @return true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the removeAll method * is not supported by this collection * @throws ClassCastException if the types of one or more elements * in this collection are incompatible with the specified * collection (optional) * @throws NullPointerException if this collection contains one or more * null elements and the specified collection does not support * null elements (optional), or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ boolean removeAll(Collection c); /** * Retains only the elements in this collection that are contained in the * specified collection (optional operation). In other words, removes from * this collection all of its elements that are not contained in the * specified collection. * * @param c collection containing elements to be retained in this collection * @return true if this collection changed as a result of the call * @throws UnsupportedOperationException if the retainAll operation * is not supported by this collection * @throws ClassCastException if the types of one or more elements * in this collection are incompatible with the specified * collection (optional) * @throws NullPointerException if this collection contains one or more * null elements and the specified collection does not permit null * elements (optional), or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ boolean retainAll(Collection c); /** * Removes all of the elements from this collection (optional operation). * The collection will be empty after this method returns. * * @throws UnsupportedOperationException if the clear operation * is not supported by this collection */ void clear(); // Comparison and hashing /** * Compares the specified object with this collection for equality.

* * While the Collection interface adds no stipulations to the * general contract for the Object.equals, programmers who * implement the Collection interface "directly" (in other words, * create a class that is a Collection but is not a Set * or a List) must exercise care if they choose to override the * Object.equals. It is not necessary to do so, and the simplest * course of action is to rely on Object's implementation, but * the implementor may wish to implement a "value comparison" in place of * the default "reference comparison." (The List and * Set interfaces mandate such value comparisons.)

* * The general contract for the Object.equals method states that * equals must be symmetric (in other words, a.equals(b) if and * only if b.equals(a)). The contracts for List.equals * and Set.equals state that lists are only equal to other lists, * and sets to other sets. Thus, a custom equals method for a * collection class that implements neither the List nor * Set interface must return false when this collection * is compared to any list or set. (By the same logic, it is not possible * to write a class that correctly implements both the Set and * List interfaces.) * * @param o object to be compared for equality with this collection * @return true if the specified object is equal to this * collection * * @see Object#equals(Object) * @see Set#equals(Object) * @see List#equals(Object) */ boolean equals(Object o); /** * Returns the hash code value for this collection. While the * Collection interface adds no stipulations to the general * contract for the Object.hashCode method, programmers should * take note that any class that overrides the Object.equals * method must also override the Object.hashCode method in order * to satisfy the general contract for the Object.hashCodemethod. * In particular, c1.equals(c2) implies that * c1.hashCode()==c2.hashCode(). * * @return the hash code value for this collection * * @see Object#hashCode() * @see Object#equals(Object) */ int hashCode(); } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * This exception may be thrown by methods that have detected concurrent * modification of an object when such modification is not permissible. *

* For example, it is not generally permissible for one thread to modify a Collection * while another thread is iterating over it. In general, the results of the * iteration are undefined under these circumstances. Some Iterator * implementations (including those of all the general purpose collection implementations * provided by the JRE) may choose to throw this exception if this behavior is * detected. Iterators that do this are known as fail-fast iterators, * as they fail quickly and cleanly, rather that risking arbitrary, * non-deterministic behavior at an undetermined time in the future. *

* Note that this exception does not always indicate that an object has * been concurrently modified by a different thread. If a single * thread issues a sequence of method invocations that violates the * contract of an object, the object may throw this exception. For * example, if a thread modifies a collection directly while it is * iterating over the collection with a fail-fast iterator, the iterator * will throw this exception. * *

Note that fail-fast behavior cannot be guaranteed as it is, generally * speaking, impossible to make any hard guarantees in the presence of * unsynchronized concurrent modification. Fail-fast operations * throw ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: ConcurrentModificationException * should be used only to detect bugs. * * @author Josh Bloch * @see Collection * @see Iterator * @see ListIterator * @see Vector * @see LinkedList * @see HashSet * @see Hashtable * @see TreeMap * @see AbstractList * @since 1.2 */ public class ConcurrentModificationException extends RuntimeException { /** * Constructs a ConcurrentModificationException with no * detail message. */ public ConcurrentModificationException() { } /** * Constructs a ConcurrentModificationException with the * specified detail message. * * @param message the detail message pertaining to this exception. */ public ConcurrentModificationException(String message) { super(message); } } /* * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Hash table based implementation of the Map interface. This * implementation provides all of the optional map operations, and permits * null values and the null key. (The HashMap * class is roughly equivalent to Hashtable, except that it is * unsynchronized and permits nulls.) This class makes no guarantees as to * the order of the map; in particular, it does not guarantee that the order * will remain constant over time. * *

This implementation provides constant-time performance for the basic * operations (get and put), assuming the hash function * disperses the elements properly among the buckets. Iteration over * collection views requires time proportional to the "capacity" of the * HashMap instance (the number of buckets) plus its size (the number * of key-value mappings). Thus, it's very important not to set the initial * capacity too high (or the load factor too low) if iteration performance is * important. * *

An instance of HashMap has two parameters that affect its * performance: initial capacity and load factor. The * capacity is the number of buckets in the hash table, and the initial * capacity is simply the capacity at the time the hash table is created. The * load factor is a measure of how full the hash table is allowed to * get before its capacity is automatically increased. When the number of * entries in the hash table exceeds the product of the load factor and the * current capacity, the hash table is rehashed (that is, internal data * structures are rebuilt) so that the hash table has approximately twice the * number of buckets. * *

As a general rule, the default load factor (.75) offers a good tradeoff * between time and space costs. Higher values decrease the space overhead * but increase the lookup cost (reflected in most of the operations of the * HashMap class, including get and put). The * expected number of entries in the map and its load factor should be taken * into account when setting its initial capacity, so as to minimize the * number of rehash operations. If the initial capacity is greater * than the maximum number of entries divided by the load factor, no * rehash operations will ever occur. * *

If many mappings are to be stored in a HashMap instance, * creating it with a sufficiently large capacity will allow the mappings to * be stored more efficiently than letting it perform automatic rehashing as * needed to grow the table. * *

Note that this implementation is not synchronized. * If multiple threads access a hash map concurrently, and at least one of * the threads modifies the map structurally, it must be * synchronized externally. (A structural modification is any operation * that adds or deletes one or more mappings; merely changing the value * associated with a key that an instance already contains is not a * structural modification.) This is typically accomplished by * synchronizing on some object that naturally encapsulates the map. * * If no such object exists, the map should be "wrapped" using the * {@link Collections#synchronizedMap Collections.synchronizedMap} * method. This is best done at creation time, to prevent accidental * unsynchronized access to the map:

 *   Map m = Collections.synchronizedMap(new HashMap(...));
* *

The iterators returned by all of this class's "collection view methods" * are fail-fast: if the map is structurally modified at any time after * the iterator is created, in any way except through the iterator's own * remove method, the iterator will throw a * {@link ConcurrentModificationException}. Thus, in the face of concurrent * modification, the iterator fails quickly and cleanly, rather than risking * arbitrary, non-deterministic behavior at an undetermined time in the * future. * *

Note that the fail-fast behavior of an iterator cannot be guaranteed * as it is, generally speaking, impossible to make any hard guarantees in the * presence of unsynchronized concurrent modification. Fail-fast iterators * throw ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: the fail-fast behavior of iterators * should be used only to detect bugs. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Doug Lea * @author Josh Bloch * @author Arthur van Hoff * @author Neal Gafter * @see Object#hashCode() * @see Collection * @see Map * @see TreeMap * @see Hashtable * @since 1.2 */ public class HashMap extends AbstractMap implements Map, Cloneable { /** * The default initial capacity - MUST be a power of two. */ static final int DEFAULT_INITIAL_CAPACITY = 16; /** * The maximum capacity, used if a higher value is implicitly specified * by either of the constructors with arguments. * MUST be a power of two <= 1<<30. */ static final int MAXIMUM_CAPACITY = 1 << 30; /** * The load factor used when none specified in constructor. */ static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * The table, resized as necessary. Length MUST Always be a power of two. */ transient Entry[] table; /** * The number of key-value mappings contained in this map. */ transient int size; /** * The next size value at which to resize (capacity * load factor). * @serial */ int threshold; /** * The load factor for the hash table. * * @serial */ final float loadFactor; /** * The number of times this HashMap has been structurally modified * Structural modifications are those that change the number of mappings in * the HashMap or otherwise modify its internal structure (e.g., * rehash). This field is used to make iterators on Collection-views of * the HashMap fail-fast. (See ConcurrentModificationException). */ transient volatile int modCount; /** * Constructs an empty HashMap with the specified initial * capacity and load factor. * * @param initialCapacity the initial capacity * @param loadFactor the load factor * @throws IllegalArgumentException if the initial capacity is negative * or the load factor is nonpositive */ public HashMap(int initialCapacity, float loadFactor) { if (initialCapacity < 0) throw new IllegalArgumentException("Illegal initial capacity: " + initialCapacity); if (initialCapacity > MAXIMUM_CAPACITY) initialCapacity = MAXIMUM_CAPACITY; if (loadFactor <= 0 || Float.isNaN(loadFactor)) throw new IllegalArgumentException("Illegal load factor: " + loadFactor); // Find a power of 2 >= initialCapacity int capacity = 1; while (capacity < initialCapacity) capacity <<= 1; this.loadFactor = loadFactor; threshold = (int)(capacity * loadFactor); table = new Entry[capacity]; init(); } /** * Constructs an empty HashMap with the specified initial * capacity and the default load factor (0.75). * * @param initialCapacity the initial capacity. * @throws IllegalArgumentException if the initial capacity is negative. */ public HashMap(int initialCapacity) { this(initialCapacity, DEFAULT_LOAD_FACTOR); } /** * Constructs an empty HashMap with the default initial capacity * (16) and the default load factor (0.75). */ public HashMap() { this.loadFactor = DEFAULT_LOAD_FACTOR; threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR); table = new Entry[DEFAULT_INITIAL_CAPACITY]; init(); } /** * Constructs a new HashMap with the same mappings as the * specified Map. The HashMap is created with * default load factor (0.75) and an initial capacity sufficient to * hold the mappings in the specified Map. * * @param m the map whose mappings are to be placed in this map * @throws NullPointerException if the specified map is null */ public HashMap(Map m) { this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1, DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR); putAllForCreate(m); } // internal utilities /** * Initialization hook for subclasses. This method is called * in all constructors and pseudo-constructors (clone, readObject) * after HashMap has been initialized but before any entries have * been inserted. (In the absence of this method, readObject would * require explicit knowledge of subclasses.) */ void init() { } /** * Applies a supplemental hash function to a given hashCode, which * defends against poor quality hash functions. This is critical * because HashMap uses power-of-two length hash tables, that * otherwise encounter collisions for hashCodes that do not differ * in lower bits. Note: Null keys always map to hash 0, thus index 0. */ static int hash(int h) { // This function ensures that hashCodes that differ only by // constant multiples at each bit position have a bounded // number of collisions (approximately 8 at default load factor). h ^= (h >>> 20) ^ (h >>> 12); return h ^ (h >>> 7) ^ (h >>> 4); } /** * Returns index for hash code h. */ static int indexFor(int h, int length) { return h & (length-1); } /** * Returns the number of key-value mappings in this map. * * @return the number of key-value mappings in this map */ public int size() { return size; } /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ public boolean isEmpty() { return size == 0; } /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

A return value of {@code null} does not necessarily * indicate that the map contains no mapping for the key; it's also * possible that the map explicitly maps the key to {@code null}. * The {@link #containsKey containsKey} operation may be used to * distinguish these two cases. * * @see #put(Object, Object) */ public V get(Object key) { if (key == null) return getForNullKey(); int hash = hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) return e.value; } return null; } /** * Offloaded version of get() to look up null keys. Null keys map * to index 0. This null case is split out into separate methods * for the sake of performance in the two most commonly used * operations (get and put), but incorporated with conditionals in * others. */ private V getForNullKey() { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) return e.value; } return null; } /** * Returns true if this map contains a mapping for the * specified key. * * @param key The key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key. */ public boolean containsKey(Object key) { return getEntry(key) != null; } /** * Returns the entry associated with the specified key in the * HashMap. Returns null if the HashMap contains no mapping * for the key. */ final Entry getEntry(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) return e; } return null; } /** * Associates the specified value with the specified key in this map. * If the map previously contained a mapping for the key, the old * value is replaced. * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V put(K key, V value) { if (key == null) return putForNullKey(value); int hash = hash(key.hashCode()); int i = indexFor(hash, table.length); for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(hash, key, value, i); return null; } /** * Offloaded version of put for null keys */ private V putForNullKey(V value) { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(0, null, value, 0); return null; } /** * This method is used instead of put by constructors and * pseudoconstructors (clone, readObject). It does not resize the table, * check for comodification, etc. It calls createEntry rather than * addEntry. */ private void putForCreate(K key, V value) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); /** * Look for preexisting entry for key. This will never happen for * clone or deserialize. It will only happen for construction if the * input Map is a sorted map whose ordering is inconsistent w/ equals. */ for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { e.value = value; return; } } createEntry(hash, key, value, i); } private void putAllForCreate(Map m) { for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); putForCreate(e.getKey(), e.getValue()); } } /** * Rehashes the contents of this map into a new array with a * larger capacity. This method is called automatically when the * number of keys in this map reaches its threshold. * * If current capacity is MAXIMUM_CAPACITY, this method does not * resize the map, but sets threshold to Integer.MAX_VALUE. * This has the effect of preventing future calls. * * @param newCapacity the new capacity, MUST be a power of two; * must be greater than current capacity unless current * capacity is MAXIMUM_CAPACITY (in which case value * is irrelevant). */ void resize(int newCapacity) { Entry[] oldTable = table; int oldCapacity = oldTable.length; if (oldCapacity == MAXIMUM_CAPACITY) { threshold = Integer.MAX_VALUE; return; } Entry[] newTable = new Entry[newCapacity]; transfer(newTable); table = newTable; threshold = (int)(newCapacity * loadFactor); } /** * Transfers all entries from current table to newTable. */ void transfer(Entry[] newTable) { Entry[] src = table; int newCapacity = newTable.length; for (int j = 0; j < src.length; j++) { Entry e = src[j]; if (e != null) { src[j] = null; do { Entry next = e.next; int i = indexFor(e.hash, newCapacity); e.next = newTable[i]; newTable[i] = e; e = next; } while (e != null); } } } /** * Copies all of the mappings from the specified map to this map. * These mappings will replace any mappings that this map had for * any of the keys currently in the specified map. * * @param m mappings to be stored in this map * @throws NullPointerException if the specified map is null */ public void putAll(Map m) { int numKeysToBeAdded = m.size(); if (numKeysToBeAdded == 0) return; /* * Expand the map if the map if the number of mappings to be added * is greater than or equal to threshold. This is conservative; the * obvious condition is (m.size() + size) >= threshold, but this * condition could result in a map with twice the appropriate capacity, * if the keys to be added overlap with the keys already in this map. * By using the conservative calculation, we subject ourself * to at most one extra resize. */ if (numKeysToBeAdded > threshold) { int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1); if (targetCapacity > MAXIMUM_CAPACITY) targetCapacity = MAXIMUM_CAPACITY; int newCapacity = table.length; while (newCapacity < targetCapacity) newCapacity <<= 1; if (newCapacity > table.length) resize(newCapacity); } for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); put(e.getKey(), e.getValue()); } } /** * Removes the mapping for the specified key from this map if present. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V remove(Object key) { Entry e = removeEntryForKey(key); return (e == null ? null : e.value); } /** * Removes and returns the entry associated with the specified key * in the HashMap. Returns null if the HashMap contains no mapping * for this key. */ final Entry removeEntryForKey(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Special version of remove for EntrySet. */ final Entry removeMapping(Object o) { if (!(o instanceof Map.Entry)) return null; Map.Entry entry = (Map.Entry) o; Object key = entry.getKey(); int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; if (e.hash == hash && e.equals(entry)) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Removes all of the mappings from this map. * The map will be empty after this call returns. */ public void clear() { modCount++; Entry[] tab = table; for (int i = 0; i < tab.length; i++) tab[i] = null; size = 0; } /** * Returns true if this map maps one or more keys to the * specified value. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value */ public boolean containsValue(Object value) { if (value == null) return containsNullValue(); Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (value.equals(e.value)) return true; return false; } /** * Special-case code for containsValue with null argument */ private boolean containsNullValue() { Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (e.value == null) return true; return false; } /** * Returns a shallow copy of this HashMap instance: the keys and * values themselves are not cloned. * * @return a shallow copy of this map */ public Object clone() { HashMap result = null; try { result = (HashMap)super.clone(); } catch (CloneNotSupportedException e) { // assert false; } result.table = new Entry[table.length]; result.entrySet = null; result.modCount = 0; result.size = 0; result.init(); result.putAllForCreate(this); return result; } static class Entry implements Map.Entry { final K key; V value; Entry next; final int hash; /** * Creates new entry. */ Entry(int h, K k, V v, Entry n) { value = v; next = n; key = k; hash = h; } public final K getKey() { return key; } public final V getValue() { return value; } public final V setValue(V newValue) { V oldValue = value; value = newValue; return oldValue; } public final boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; Object k1 = getKey(); Object k2 = e.getKey(); if (k1 == k2 || (k1 != null && k1.equals(k2))) { Object v1 = getValue(); Object v2 = e.getValue(); if (v1 == v2 || (v1 != null && v1.equals(v2))) return true; } return false; } public final int hashCode() { return (key==null ? 0 : key.hashCode()) ^ (value==null ? 0 : value.hashCode()); } public final String toString() { return getKey() + "=" + getValue(); } /** * This method is invoked whenever the value in an entry is * overwritten by an invocation of put(k,v) for a key k that's already * in the HashMap. */ void recordAccess(HashMap m) { } /** * This method is invoked whenever the entry is * removed from the table. */ void recordRemoval(HashMap m) { } } /** * Adds a new entry with the specified key, value and hash code to * the specified bucket. It is the responsibility of this * method to resize the table if appropriate. * * Subclass overrides this to alter the behavior of put method. */ void addEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); if (size++ >= threshold) resize(2 * table.length); } /** * Like addEntry except that this version is used when creating entries * as part of Map construction or "pseudo-construction" (cloning, * deserialization). This version needn't worry about resizing the table. * * Subclass overrides this to alter the behavior of HashMap(Map), * clone, and readObject. */ void createEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); size++; } private abstract class HashIterator implements Iterator { Entry next; // next entry to return int expectedModCount; // For fast-fail int index; // current slot Entry current; // current entry HashIterator() { expectedModCount = modCount; if (size > 0) { // advance to first entry Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } } public final boolean hasNext() { return next != null; } final Entry nextEntry() { if (modCount != expectedModCount) throw new ConcurrentModificationException(); Entry e = next; if (e == null) throw new NoSuchElementException(); if ((next = e.next) == null) { Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } current = e; return e; } public void remove() { if (current == null) throw new IllegalStateException(); if (modCount != expectedModCount) throw new ConcurrentModificationException(); Object k = current.key; current = null; HashMap.this.removeEntryForKey(k); expectedModCount = modCount; } } private final class ValueIterator extends HashIterator { public V next() { return nextEntry().value; } } private final class KeyIterator extends HashIterator { public K next() { return nextEntry().getKey(); } } private final class EntryIterator extends HashIterator> { public Map.Entry next() { return nextEntry(); } } // Subclass overrides these to alter behavior of views' iterator() method Iterator newKeyIterator() { return new KeyIterator(); } Iterator newValueIterator() { return new ValueIterator(); } Iterator> newEntryIterator() { return new EntryIterator(); } // Views private transient Set> entrySet = null; /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. */ public Set keySet() { Set ks = keySet; return (ks != null ? ks : (keySet = new KeySet())); } private final class KeySet extends AbstractSet { public Iterator iterator() { return newKeyIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsKey(o); } public boolean remove(Object o) { return HashMap.this.removeEntryForKey(o) != null; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. */ public Collection values() { Collection vs = values; return (vs != null ? vs : (values = new Values())); } private final class Values extends AbstractCollection { public Iterator iterator() { return newValueIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsValue(o); } public void clear() { HashMap.this.clear(); } } /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ public Set> entrySet() { return entrySet0(); } private Set> entrySet0() { Set> es = entrySet; return es != null ? es : (entrySet = new EntrySet()); } private final class EntrySet extends AbstractSet> { public Iterator> iterator() { return newEntryIterator(); } public boolean contains(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry) o; Entry candidate = getEntry(e.getKey()); return candidate != null && candidate.equals(e); } public boolean remove(Object o) { return removeMapping(o) != null; } public int size() { return size; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } private static final long serialVersionUID = 362498820763181265L; } /* * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Thrown to indicate that a method has been passed an illegal or * inappropriate argument. * * @author unascribed * @see java.lang.Thread#setPriority(int) * @since JDK1.0 */ public class IllegalArgumentException extends RuntimeException { /** * Constructs an IllegalArgumentException with no * detail message. */ public IllegalArgumentException() { super(); } /** * Constructs an IllegalArgumentException with the * specified detail message. * * @param s the detail message. */ public IllegalArgumentException(String s) { super(s); } /** * Constructs a new exception with the specified detail message and * cause. * *

Note that the detail message associated with cause is * not automatically incorporated in this exception's detail * message. * * @param message the detail message (which is saved for later retrieval * by the {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalArgumentException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail * message of (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * This constructor is useful for exceptions that are little more than * wrappers for other throwables (for example, {@link * java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalArgumentException(Throwable cause) { super(cause); } private static final long serialVersionUID = -5365630128856068164L; } /* * Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Signals that a method has been invoked at an illegal or * inappropriate time. In other words, the Java environment or * Java application is not in an appropriate state for the requested * operation. * * @author Jonni Kanerva * @since JDK1.1 */ public class IllegalStateException extends RuntimeException { /** * Constructs an IllegalStateException with no detail message. * A detail message is a String that describes this particular exception. */ public IllegalStateException() { super(); } /** * Constructs an IllegalStateException with the specified detail * message. A detail message is a String that describes this particular * exception. * * @param s the String that contains a detailed message */ public IllegalStateException(String s) { super(s); } /** * Constructs a new exception with the specified detail message and * cause. * *

Note that the detail message associated with cause is * not automatically incorporated in this exception's detail * message. * * @param message the detail message (which is saved for later retrieval * by the {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalStateException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail * message of (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * This constructor is useful for exceptions that are little more than * wrappers for other throwables (for example, {@link * java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalStateException(Throwable cause) { super(cause); } static final long serialVersionUID = -1848914673093119416L; } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * An iterator over a collection. {@code Iterator} takes the place of * {@link Enumeration} in the Java Collections Framework. Iterators * differ from enumerations in two ways: * *

* *

This interface is a member of the * * Java Collections Framework. * * @author Josh Bloch * @see Collection * @see ListIterator * @see Iterable * @since 1.2 */ public interface Iterator { /** * Returns {@code true} if the iteration has more elements. * (In other words, returns {@code true} if {@link #next} would * return an element rather than throwing an exception.) * * @return {@code true} if the iteration has more elements */ boolean hasNext(); /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the iteration has no more elements */ E next(); /** * Removes from the underlying collection the last element returned * by this iterator (optional operation). This method can be called * only once per call to {@link #next}. The behavior of an iterator * is unspecified if the underlying collection is modified while the * iteration is in progress in any way other than by calling this * method. * * @throws UnsupportedOperationException if the {@code remove} * operation is not supported by this iterator * * @throws IllegalStateException if the {@code next} method has not * yet been called, or the {@code remove} method has already * been called after the last call to the {@code next} * method */ void remove(); } package javaUtilEx; public class juHashMapCreateRemove { public static void main(String[] args) { Random.args = args; HashMap m = createMap(Random.random()); m.remove(new Content(Random.random())); } public static HashMap createMap(int n) { HashMap m = new HashMap(); while (n > 0) { Content key = new Content(Random.random()); Content val = new Content(Random.random()); m.put(key, val); n--; } return m; } } final class Content { int val; public Content(int v) { this.val = v; } public int hashCode() { return val^31; } public boolean equals(Object o) { if (o instanceof Content) { return this.val == ((Content) o).val; } return false; } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * An object that maps keys to values. A map cannot contain duplicate keys; * each key can map to at most one value. * *

This interface takes the place of the Dictionary class, which * was a totally abstract class rather than an interface. * *

The Map interface provides three collection views, which * allow a map's contents to be viewed as a set of keys, collection of values, * or set of key-value mappings. The order of a map is defined as * the order in which the iterators on the map's collection views return their * elements. Some map implementations, like the TreeMap class, make * specific guarantees as to their order; others, like the HashMap * class, do not. * *

Note: great care must be exercised if mutable objects are used as map * keys. The behavior of a map is not specified if the value of an object is * changed in a manner that affects equals comparisons while the * object is a key in the map. A special case of this prohibition is that it * is not permissible for a map to contain itself as a key. While it is * permissible for a map to contain itself as a value, extreme caution is * advised: the equals and hashCode methods are no longer * well defined on such a map. * *

All general-purpose map implementation classes should provide two * "standard" constructors: a void (no arguments) constructor which creates an * empty map, and a constructor with a single argument of type Map, * which creates a new map with the same key-value mappings as its argument. * In effect, the latter constructor allows the user to copy any map, * producing an equivalent map of the desired class. There is no way to * enforce this recommendation (as interfaces cannot contain constructors) but * all of the general-purpose map implementations in the JDK comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the map on which they operate, are specified to throw * UnsupportedOperationException if this map does not support the * operation. If this is the case, these methods may, but are not required * to, throw an UnsupportedOperationException if the invocation would * have no effect on the map. For example, invoking the {@link #putAll(Map)} * method on an unmodifiable map may, but is not required to, throw the * exception if the map whose mappings are to be "superimposed" is empty. * *

Some map implementations have restrictions on the keys and values they * may contain. For example, some implementations prohibit null keys and * values, and some have restrictions on the types of their keys. Attempting * to insert an ineligible key or value throws an unchecked exception, * typically NullPointerException or ClassCastException. * Attempting to query the presence of an ineligible key or value may throw an * exception, or it may simply return false; some implementations will exhibit * the former behavior and some will exhibit the latter. More generally, * attempting an operation on an ineligible key or value whose completion * would not result in the insertion of an ineligible element into the map may * throw an exception or it may succeed, at the option of the implementation. * Such exceptions are marked as "optional" in the specification for this * interface. * *

This interface is a member of the * * Java Collections Framework. * *

Many methods in Collections Framework interfaces are defined * in terms of the {@link Object#equals(Object) equals} method. For * example, the specification for the {@link #containsKey(Object) * containsKey(Object key)} method says: "returns true if and * only if this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k))." This specification should * not be construed to imply that invoking Map.containsKey * with a non-null argument key will cause key.equals(k) to * be invoked for any key k. Implementations are free to * implement optimizations whereby the equals invocation is avoided, * for example, by first comparing the hash codes of the two keys. (The * {@link Object#hashCode()} specification guarantees that two objects with * unequal hash codes cannot be equal.) More generally, implementations of * the various Collections Framework interfaces are free to take advantage of * the specified behavior of underlying {@link Object} methods wherever the * implementor deems it appropriate. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @see HashMap * @see TreeMap * @see Hashtable * @see SortedMap * @see Collection * @see Set * @since 1.2 */ public interface Map { // Query Operations /** * Returns the number of key-value mappings in this map. If the * map contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of key-value mappings in this map */ int size(); /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ boolean isEmpty(); /** * Returns true if this map contains a mapping for the specified * key. More formally, returns true if and only if * this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k)). (There can be * at most one such mapping.) * * @param key key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ boolean containsKey(Object key); /** * Returns true if this map maps one or more keys to the * specified value. More formally, returns true if and only if * this map contains at least one mapping to a value v such that * (value==null ? v==null : value.equals(v)). This operation * will probably require time linear in the map size for most * implementations of the Map interface. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value * @throws ClassCastException if the value is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified value is null and this * map does not permit null values (optional) */ boolean containsValue(Object value); /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

If this map permits null values, then a return value of * {@code null} does not necessarily indicate that the map * contains no mapping for the key; it's also possible that the map * explicitly maps the key to {@code null}. The {@link #containsKey * containsKey} operation may be used to distinguish these two cases. * * @param key the key whose associated value is to be returned * @return the value to which the specified key is mapped, or * {@code null} if this map contains no mapping for the key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ V get(Object key); // Modification Operations /** * Associates the specified value with the specified key in this map * (optional operation). If the map previously contained a mapping for * the key, the old value is replaced by the specified value. (A map * m is said to contain a mapping for a key k if and only * if {@link #containsKey(Object) m.containsKey(k)} would return * true.) * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key, * if the implementation supports null values.) * @throws UnsupportedOperationException if the put operation * is not supported by this map * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this map * @throws NullPointerException if the specified key or value is null * and this map does not permit null keys or values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this map */ V put(K key, V value); /** * Removes the mapping for a key from this map if it is present * (optional operation). More formally, if this map contains a mapping * from key k to value v such that * (key==null ? k==null : key.equals(k)), that mapping * is removed. (The map can contain at most one such mapping.) * *

Returns the value to which this map previously associated the key, * or null if the map contained no mapping for the key. * *

If this map permits null values, then a return value of * null does not necessarily indicate that the map * contained no mapping for the key; it's also possible that the map * explicitly mapped the key to null. * *

The map will not contain a mapping for the specified key once the * call returns. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * @throws UnsupportedOperationException if the remove operation * is not supported by this map * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this * map does not permit null keys (optional) */ V remove(Object key); // Bulk Operations /** * Copies all of the mappings from the specified map to this map * (optional operation). The effect of this call is equivalent to that * of calling {@link #put(Object,Object) put(k, v)} on this map once * for each mapping from key k to value v in the * specified map. The behavior of this operation is undefined if the * specified map is modified while the operation is in progress. * * @param m mappings to be stored in this map * @throws UnsupportedOperationException if the putAll operation * is not supported by this map * @throws ClassCastException if the class of a key or value in the * specified map prevents it from being stored in this map * @throws NullPointerException if the specified map is null, or if * this map does not permit null keys or values, and the * specified map contains null keys or values * @throws IllegalArgumentException if some property of a key or value in * the specified map prevents it from being stored in this map */ void putAll(Map m); /** * Removes all of the mappings from this map (optional operation). * The map will be empty after this call returns. * * @throws UnsupportedOperationException if the clear operation * is not supported by this map */ void clear(); // Views /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. * * @return a set view of the keys contained in this map */ Set keySet(); /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. * * @return a collection view of the values contained in this map */ Collection values(); /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ Set> entrySet(); /** * A map entry (key-value pair). The Map.entrySet method returns * a collection-view of the map, whose elements are of this class. The * only way to obtain a reference to a map entry is from the * iterator of this collection-view. These Map.Entry objects are * valid only for the duration of the iteration; more formally, * the behavior of a map entry is undefined if the backing map has been * modified after the entry was returned by the iterator, except through * the setValue operation on the map entry. * * @see Map#entrySet() * @since 1.2 */ interface Entry { /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ K getKey(); /** * Returns the value corresponding to this entry. If the mapping * has been removed from the backing map (by the iterator's * remove operation), the results of this call are undefined. * * @return the value corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V getValue(); /** * Replaces the value corresponding to this entry with the specified * value (optional operation). (Writes through to the map.) The * behavior of this call is undefined if the mapping has already been * removed from the map (by the iterator's remove operation). * * @param value new value to be stored in this entry * @return old value corresponding to the entry * @throws UnsupportedOperationException if the put operation * is not supported by the backing map * @throws ClassCastException if the class of the specified value * prevents it from being stored in the backing map * @throws NullPointerException if the backing map does not permit * null values, and the specified value is null * @throws IllegalArgumentException if some property of this value * prevents it from being stored in the backing map * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V setValue(V value); /** * Compares the specified object with this entry for equality. * Returns true if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries e1 and e2 represent the same mapping * if

         *     (e1.getKey()==null ?
         *      e2.getKey()==null : e1.getKey().equals(e2.getKey()))  &&
         *     (e1.getValue()==null ?
         *      e2.getValue()==null : e1.getValue().equals(e2.getValue()))
         * 
* This ensures that the equals method works properly across * different implementations of the Map.Entry interface. * * @param o object to be compared for equality with this map entry * @return true if the specified object is equal to this map * entry */ boolean equals(Object o); /** * Returns the hash code value for this map entry. The hash code * of a map entry e is defined to be:
         *     (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *     (e.getValue()==null ? 0 : e.getValue().hashCode())
         * 
* This ensures that e1.equals(e2) implies that * e1.hashCode()==e2.hashCode() for any two Entries * e1 and e2, as required by the general * contract of Object.hashCode. * * @return the hash code value for this map entry * @see Object#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ boolean equals(Object o); /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } /* * Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Thrown by the nextElement method of an * Enumeration to indicate that there are no more * elements in the enumeration. * * @author unascribed * @see java.util.Enumeration * @see java.util.Enumeration#nextElement() * @since JDK1.0 */ public class NoSuchElementException extends RuntimeException { /** * Constructs a NoSuchElementException with null * as its error message string. */ public NoSuchElementException() { super(); } /** * Constructs a NoSuchElementException, saving a reference * to the error message string s for later retrieval by the * getMessage method. * * @param s the detail message. */ public NoSuchElementException(String s) { super(s); } } package javaUtilEx; public class Random { static String[] args; static int index = 0; public static int random() { String string = args[index]; index++; return string.length(); } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * A collection that contains no duplicate elements. More formally, sets * contain no pair of elements e1 and e2 such that * e1.equals(e2), and at most one null element. As implied by * its name, this interface models the mathematical set abstraction. * *

The Set interface places additional stipulations, beyond those * inherited from the Collection interface, on the contracts of all * constructors and on the contracts of the add, equals and * hashCode methods. Declarations for other inherited methods are * also included here for convenience. (The specifications accompanying these * declarations have been tailored to the Set interface, but they do * not contain any additional stipulations.) * *

The additional stipulation on constructors is, not surprisingly, * that all constructors must create a set that contains no duplicate elements * (as defined above). * *

Note: Great care must be exercised if mutable objects are used as set * elements. The behavior of a set is not specified if the value of an object * is changed in a manner that affects equals comparisons while the * object is an element in the set. A special case of this prohibition is * that it is not permissible for a set to contain itself as an element. * *

Some set implementations have restrictions on the elements that * they may contain. For example, some implementations prohibit null elements, * and some have restrictions on the types of their elements. Attempting to * add an ineligible element throws an unchecked exception, typically * NullPointerException or ClassCastException. Attempting * to query the presence of an ineligible element may throw an exception, * or it may simply return false; some implementations will exhibit the former * behavior and some will exhibit the latter. More generally, attempting an * operation on an ineligible element whose completion would not result in * the insertion of an ineligible element into the set may throw an * exception or it may succeed, at the option of the implementation. * Such exceptions are marked as "optional" in the specification for this * interface. * *

This interface is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see List * @see SortedSet * @see HashSet * @see TreeSet * @see AbstractSet * @see Collections#singleton(java.lang.Object) * @see Collections#EMPTY_SET * @since 1.2 */ public interface Set extends Collection { // Query Operations /** * Returns the number of elements in this set (its cardinality). If this * set contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this set (its cardinality) */ int size(); /** * Returns true if this set contains no elements. * * @return true if this set contains no elements */ boolean isEmpty(); /** * Returns true if this set contains the specified element. * More formally, returns true if and only if this set * contains an element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this set is to be tested * @return true if this set contains the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) */ boolean contains(Object o); /** * Returns an iterator over the elements in this set. The elements are * returned in no particular order (unless this set is an instance of some * class that provides a guarantee). * * @return an iterator over the elements in this set */ Iterator iterator(); /** * Returns an array containing all of the elements in this set. * If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the * elements in the same order. * *

The returned array will be "safe" in that no references to it * are maintained by this set. (In other words, this method must * allocate a new array even if this set is backed by an array). * The caller is thus free to modify the returned array. * *

This method acts as bridge between array-based and collection-based * APIs. * * @return an array containing all the elements in this set */ Object[] toArray(); /** * Returns an array containing all of the elements in this set; the * runtime type of the returned array is that of the specified array. * If the set fits in the specified array, it is returned therein. * Otherwise, a new array is allocated with the runtime type of the * specified array and the size of this set. * *

If this set fits in the specified array with room to spare * (i.e., the array has more elements than this set), the element in * the array immediately following the end of the set is set to * null. (This is useful in determining the length of this * set only if the caller knows that this set does not contain * any null elements.) * *

If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the elements * in the same order. * *

Like the {@link #toArray()} method, this method acts as bridge between * array-based and collection-based APIs. Further, this method allows * precise control over the runtime type of the output array, and may, * under certain circumstances, be used to save allocation costs. * *

Suppose x is a set known to contain only strings. * The following code can be used to dump the set into a newly allocated * array of String: * *

     *     String[] y = x.toArray(new String[0]);
* * Note that toArray(new Object[0]) is identical in function to * toArray(). * * @param a the array into which the elements of this set are to be * stored, if it is big enough; otherwise, a new array of the same * runtime type is allocated for this purpose. * @return an array containing all the elements in this set * @throws ArrayStoreException if the runtime type of the specified array * is not a supertype of the runtime type of every element in this * set * @throws NullPointerException if the specified array is null */ T[] toArray(T[] a); // Modification Operations /** * Adds the specified element to this set if it is not already present * (optional operation). More formally, adds the specified element * e to this set if the set contains no element e2 * such that * (e==null ? e2==null : e.equals(e2)). * If this set already contains the element, the call leaves the set * unchanged and returns false. In combination with the * restriction on constructors, this ensures that sets never contain * duplicate elements. * *

The stipulation above does not imply that sets must accept all * elements; sets may refuse to add any particular element, including * null, and throw an exception, as described in the * specification for {@link Collection#add Collection.add}. * Individual set implementations should clearly document any * restrictions on the elements that they may contain. * * @param e element to be added to this set * @return true if this set did not already contain the specified * element * @throws UnsupportedOperationException if the add operation * is not supported by this set * @throws ClassCastException if the class of the specified element * prevents it from being added to this set * @throws NullPointerException if the specified element is null and this * set does not permit null elements * @throws IllegalArgumentException if some property of the specified element * prevents it from being added to this set */ boolean add(E e); /** * Removes the specified element from this set if it is present * (optional operation). More formally, removes an element e * such that * (o==null ? e==null : o.equals(e)), if * this set contains such an element. Returns true if this set * contained the element (or equivalently, if this set changed as a * result of the call). (This set will not contain the element once the * call returns.) * * @param o object to be removed from this set, if present * @return true if this set contained the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) * @throws UnsupportedOperationException if the remove operation * is not supported by this set */ boolean remove(Object o); // Bulk Operations /** * Returns true if this set contains all of the elements of the * specified collection. If the specified collection is also a set, this * method returns true if it is a subset of this set. * * @param c collection to be checked for containment in this set * @return true if this set contains all of the elements of the * specified collection * @throws ClassCastException if the types of one or more elements * in the specified collection are incompatible with this * set (optional) * @throws NullPointerException if the specified collection contains one * or more null elements and this set does not permit null * elements (optional), or if the specified collection is null * @see #contains(Object) */ boolean containsAll(Collection c); /** * Adds all of the elements in the specified collection to this set if * they're not already present (optional operation). If the specified * collection is also a set, the addAll operation effectively * modifies this set so that its value is the union of the two * sets. The behavior of this operation is undefined if the specified * collection is modified while the operation is in progress. * * @param c collection containing elements to be added to this set * @return true if this set changed as a result of the call * * @throws UnsupportedOperationException if the addAll operation * is not supported by this set * @throws ClassCastException if the class of an element of the * specified collection prevents it from being added to this set * @throws NullPointerException if the specified collection contains one * or more null elements and this set does not permit null * elements, or if the specified collection is null * @throws IllegalArgumentException if some property of an element of the * specified collection prevents it from being added to this set * @see #add(Object) */ boolean addAll(Collection c); /** * Retains only the elements in this set that are contained in the * specified collection (optional operation). In other words, removes * from this set all of its elements that are not contained in the * specified collection. If the specified collection is also a set, this * operation effectively modifies this set so that its value is the * intersection of the two sets. * * @param c collection containing elements to be retained in this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the retainAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) */ boolean retainAll(Collection c); /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ boolean removeAll(Collection c); /** * Removes all of the elements from this set (optional operation). * The set will be empty after this call returns. * * @throws UnsupportedOperationException if the clear method * is not supported by this set */ void clear(); // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the specified object is also a set, the two sets * have the same size, and every member of the specified set is * contained in this set (or equivalently, every member of this set is * contained in the specified set). This definition ensures that the * equals method works properly across different implementations of the * set interface. * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ boolean equals(Object o); /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#equals(Object) */ int hashCode(); } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Thrown to indicate that the requested operation is not supported.

* * This class is a member of the * * Java Collections Framework. * * @author Josh Bloch * @since 1.2 */ public class UnsupportedOperationException extends RuntimeException { /** * Constructs an UnsupportedOperationException with no detail message. */ public UnsupportedOperationException() { } /** * Constructs an UnsupportedOperationException with the specified * detail message. * * @param message the detail message */ public UnsupportedOperationException(String message) { super(message); } /** * Constructs a new exception with the specified detail message and * cause. * *

Note that the detail message associated with cause is * not automatically incorporated in this exception's detail * message. * * @param message the detail message (which is saved for later retrieval * by the {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public UnsupportedOperationException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail * message of (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * This constructor is useful for exceptions that are little more than * wrappers for other throwables (for example, {@link * java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public UnsupportedOperationException(Throwable cause) { super(cause); } static final long serialVersionUID = -1242599979055084673L; } ---------------------------------------- (1) BareJBCToJBCProof (EQUIVALENT) initialized classpath ---------------------------------------- (2) Obligation: need to prove termination of the following program: /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * This class provides a skeletal implementation of the Collection * interface, to minimize the effort required to implement this interface.

* * To implement an unmodifiable collection, the programmer needs only to * extend this class and provide implementations for the iterator and * size methods. (The iterator returned by the iterator * method must implement hasNext and next.)

* * To implement a modifiable collection, the programmer must additionally * override this class's add method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by the * iterator method must additionally implement its remove * method.

* * The programmer should generally provide a void (no argument) and * Collection constructor, as per the recommendation in the * Collection interface specification.

* * The documentation for each non-abstract method in this class describes its * implementation in detail. Each of these methods may be overridden if * the collection being implemented admits a more efficient implementation.

* * This class is a member of the * * Java Collections Framework. * * @author Josh Bloch * @author Neal Gafter * @see Collection * @since 1.2 */ public abstract class AbstractCollection implements Collection { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractCollection() { } // Query Operations /** * Returns an iterator over the elements contained in this collection. * * @return an iterator over the elements contained in this collection */ public abstract Iterator iterator(); public abstract int size(); /** * {@inheritDoc} * *

This implementation returns size() == 0. */ public boolean isEmpty() { return size() == 0; } /** * {@inheritDoc} * *

This implementation iterates over the elements in the collection, * checking each element in turn for equality with the specified element. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean contains(Object o) { Iterator e = iterator(); if (o==null) { while (e.hasNext()) if (e.next()==null) return true; } else { while (e.hasNext()) if (o.equals(e.next())) return true; } return false; } // Modification Operations /** * {@inheritDoc} * *

This implementation always throws an * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ public boolean add(E e) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * *

This implementation iterates over the collection looking for the * specified element. If it finds the element, it removes the element * from the collection using the iterator's remove method. * *

Note that this implementation throws an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the remove * method and this collection contains the specified object. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean remove(Object o) { Iterator e = iterator(); if (o==null) { while (e.hasNext()) { if (e.next()==null) { e.remove(); return true; } } } else { while (e.hasNext()) { if (o.equals(e.next())) { e.remove(); return true; } } } return false; } // Bulk Operations /** * {@inheritDoc} * *

This implementation iterates over the specified collection, * checking each element returned by the iterator in turn to see * if it's contained in this collection. If all elements are so * contained true is returned, otherwise false. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @see #contains(Object) */ public boolean containsAll(Collection c) { Iterator e = c.iterator(); while (e.hasNext()) if (!contains(e.next())) return false; return true; } /** * {@inheritDoc} * *

This implementation iterates over the specified collection, and adds * each object returned by the iterator to this collection, in turn. * *

Note that this implementation will throw an * UnsupportedOperationException unless add is * overridden (assuming the specified collection is non-empty). * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} * * @see #add(Object) */ public boolean addAll(Collection c) { boolean modified = false; Iterator e = c.iterator(); while (e.hasNext()) { if (add(e.next())) modified = true; } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, checking each * element returned by the iterator in turn to see if it's contained * in the specified collection. If it's so contained, it's removed from * this collection with the iterator's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method * and this collection contains one or more elements in common with the * specified collection. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * * @see #remove(Object) * @see #contains(Object) */ public boolean removeAll(Collection c) { boolean modified = false; Iterator e = iterator(); while (e.hasNext()) { if (c.contains(e.next())) { e.remove(); modified = true; } } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, checking each * element returned by the iterator in turn to see if it's contained * in the specified collection. If it's not so contained, it's removed * from this collection with the iterator's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method * and this collection contains one or more elements not present in the * specified collection. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * * @see #remove(Object) * @see #contains(Object) */ public boolean retainAll(Collection c) { boolean modified = false; Iterator e = iterator(); while (e.hasNext()) { if (!c.contains(e.next())) { e.remove(); modified = true; } } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, removing each * element using the Iterator.remove operation. Most * implementations will probably choose to override this method for * efficiency. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the * remove method and this collection is non-empty. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { Iterator e = iterator(); while (e.hasNext()) { e.next(); e.remove(); } } // String conversion /** * Returns a string representation of this collection. The string * representation consists of a list of the collection's elements in the * order they are returned by its iterator, enclosed in square brackets * ("[]"). Adjacent elements are separated by the characters * ", " (comma and space). Elements are converted to strings as * by {@link String#valueOf(Object)}. * * @return a string representation of this collection */ public String toString() { Iterator i = iterator(); if (! i.hasNext()) return "[]"; String sb = ""; sb = sb + "["; for (;;) { E e = i.next(); sb = sb + (e == this ? "(this Collection)" : e); if (! i.hasNext()) { sb = sb + "]"; return sb; } sb = sb + ", "; } } } /* * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; import javaUtilEx.Map.Entry; /** * This class provides a skeletal implementation of the Map * interface, to minimize the effort required to implement this interface. * *

To implement an unmodifiable map, the programmer needs only to extend this * class and provide an implementation for the entrySet method, which * returns a set-view of the map's mappings. Typically, the returned set * will, in turn, be implemented atop AbstractSet. This set should * not support the add or remove methods, and its iterator * should not support the remove method. * *

To implement a modifiable map, the programmer must additionally override * this class's put method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by * entrySet().iterator() must additionally implement its * remove method. * *

The programmer should generally provide a void (no argument) and map * constructor, as per the recommendation in the Map interface * specification. * *

The documentation for each non-abstract method in this class describes its * implementation in detail. Each of these methods may be overridden if the * map being implemented admits a more efficient implementation. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @author Neal Gafter * @see Map * @see Collection * @since 1.2 */ public abstract class AbstractMap implements Map { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractMap() { } // Query Operations /** * {@inheritDoc} * *

This implementation returns entrySet().size(). */ public int size() { return entrySet().size(); } /** * {@inheritDoc} * *

This implementation returns size() == 0. */ public boolean isEmpty() { return size() == 0; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified value. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsValue(Object value) { Iterator> i = entrySet().iterator(); if (value==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getValue()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (value.equals(e.getValue())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsKey(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * the entry's value is returned. If the iteration terminates without * finding such an entry, null is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V get(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return e.getValue(); } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return e.getValue(); } } return null; } // Modification Operations /** * {@inheritDoc} * *

This implementation always throws an * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public V put(K key, V value) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching for an * entry with the specified key. If such an entry is found, its value is * obtained with its getValue operation, the entry is removed * from the collection (and the backing map) with the iterator's * remove operation, and the saved value is returned. If the * iteration terminates without finding such an entry, null is * returned. Note that this implementation requires linear time in the * size of the map; many implementations will override this method. * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * iterator does not support the remove method and this map * contains a mapping for the specified key. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V remove(Object key) { Iterator> i = entrySet().iterator(); Entry correctEntry = null; if (key==null) { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) correctEntry = e; } } else { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) correctEntry = e; } } V oldValue = null; if (correctEntry !=null) { oldValue = correctEntry.getValue(); i.remove(); } return oldValue; } // Bulk Operations /** * {@inheritDoc} * *

This implementation iterates over the specified map's * entrySet() collection, and calls this map's put * operation once for each entry returned by the iteration. * *

Note that this implementation throws an * UnsupportedOperationException if this map does not support * the put operation and the specified map is nonempty. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public void putAll(Map m) { Iterator it = m.entrySet().iterator(); while (it.hasNext()) { Map.Entry e = (Map.Entry) it.next(); put((K) e.getKey(), (V) e.getValue()); } } /** * {@inheritDoc} * *

This implementation calls entrySet().clear(). * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * does not support the clear operation. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { entrySet().clear(); } // Views /** * Each of these fields are initialized to contain an instance of the * appropriate view the first time this view is requested. The views are * stateless, so there's no reason to create more than one of each. */ transient volatile Set keySet = null; transient volatile Collection values = null; /** * {@inheritDoc} * *

This implementation returns a set that subclasses {@link AbstractSet}. * The subclass's iterator method returns a "wrapper object" over this * map's entrySet() iterator. The size method * delegates to this map's size method and the * contains method delegates to this map's * containsKey method. * *

The set is created the first time this method is called, * and returned in response to all subsequent calls. No synchronization * is performed, so there is a slight chance that multiple calls to this * method will not all return the same set. */ public Set keySet() { if (keySet == null) { keySet = new AbstractSet() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public K next() { return i.next().getKey(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object k) { return AbstractMap.this.containsKey(k); } public Object[] toArray() { Object[] res = new Object[AbstractMap.this.size()]; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), AbstractMap.this.size()); Object[] res = a; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return a; } }; } return keySet; } /** * {@inheritDoc} * *

This implementation returns a collection that subclasses {@link * AbstractCollection}. The subclass's iterator method returns a * "wrapper object" over this map's entrySet() iterator. * The size method delegates to this map's size * method and the contains method delegates to this map's * containsValue method. * *

The collection is created the first time this method is called, and * returned in response to all subsequent calls. No synchronization is * performed, so there is a slight chance that multiple calls to this * method will not all return the same collection. */ public Collection values() { if (values == null) { values = new AbstractCollection() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public V next() { return i.next().getValue(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object v) { return AbstractMap.this.containsValue(v); } }; } return values; } public abstract Set> entrySet(); // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * *

This implementation first checks if the specified object is this map; * if so it returns true. Then, it checks if the specified * object is a map whose size is identical to the size of this map; if * not, it returns false. If so, it iterates over this map's * entrySet collection, and checks that the specified map * contains each mapping that this map contains. If the specified map * fails to contain such a mapping, false is returned. If the * iteration completes, true is returned. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Map)) return false; Map m = (Map) o; if (m.size() != size()) return false; try { Iterator> i = entrySet().iterator(); while (i.hasNext()) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); if (value == null) { if (!(m.get(key)==null && m.containsKey(key))) return false; } else { if (!value.equals(m.get(key))) return false; } } } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } return true; } /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over entrySet(), calling * {@link Map.Entry#hashCode hashCode()} on each element (entry) in the * set, and adding up the results. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator> i = entrySet().iterator(); while (i.hasNext()) h += i.next().hashCode(); return h; } /** * Returns a string representation of this map. The string representation * consists of a list of key-value mappings in the order returned by the * map's entrySet view's iterator, enclosed in braces * ("{}"). Adjacent mappings are separated by the characters * ", " (comma and space). Each key-value mapping is rendered as * the key followed by an equals sign ("=") followed by the * associated value. Keys and values are converted to strings as by * {@link String#valueOf(Object)}. * * @return a string representation of this map */ public String toString() { Iterator> i = entrySet().iterator(); if (! i.hasNext()) return "{}"; StringBuilder sb = new StringBuilder(); sb.append('{'); for (;;) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); sb.append(key == this ? "(this Map)" : key); sb.append('='); sb.append(value == this ? "(this Map)" : value); if (! i.hasNext()) return sb.append('}').toString(); sb.append(", "); } } /** * Returns a shallow copy of this AbstractMap instance: the keys * and values themselves are not cloned. * * @return a shallow copy of this map */ protected Object clone() throws CloneNotSupportedException { AbstractMap result = (AbstractMap)super.clone(); result.keySet = null; result.values = null; return result; } /** * Utility method for SimpleEntry and SimpleImmutableEntry. * Test for equality, checking for nulls. */ private static boolean eq(Object o1, Object o2) { return o1 == null ? o2 == null : o1.equals(o2); } // Implementation Note: SimpleEntry and SimpleImmutableEntry // are distinct unrelated classes, even though they share // some code. Since you can't add or subtract final-ness // of a field in a subclass, they can't share representations, // and the amount of duplicated code is too small to warrant // exposing a common abstract class. /** * An Entry maintaining a key and a value. The value may be * changed using the setValue method. This class * facilitates the process of building custom map * implementations. For example, it may be convenient to return * arrays of SimpleEntry instances in method * Map.entrySet().toArray. * * @since 1.6 */ public static class SimpleEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = -8499721149061103585L; private final K key; private V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value. * * @param value new value to be stored in this entry * @return the old value corresponding to the entry */ public V setValue(V value) { V oldValue = this.value; this.value = value; return oldValue; } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if

         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } /** * An Entry maintaining an immutable key and value. This class * does not support method setValue. This class may be * convenient in methods that return thread-safe snapshots of * key-value mappings. * * @since 1.6 */ public static class SimpleImmutableEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = 7138329143949025153L; private final K key; private final V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleImmutableEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleImmutableEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value (optional operation). This implementation simply throws * UnsupportedOperationException, as this class implements * an immutable map entry. * * @param value new value to be stored in this entry * @return (Does not return) * @throws UnsupportedOperationException always */ public V setValue(V value) { throw new UnsupportedOperationException(); } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if
         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * This class provides a skeletal implementation of the Set * interface to minimize the effort required to implement this * interface.

* * The process of implementing a set by extending this class is identical * to that of implementing a Collection by extending AbstractCollection, * except that all of the methods and constructors in subclasses of this * class must obey the additional constraints imposed by the Set * interface (for instance, the add method must not permit addition of * multiple instances of an object to a set).

* * Note that this class does not override any of the implementations from * the AbstractCollection class. It merely adds implementations * for equals and hashCode.

* * This class is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see AbstractCollection * @see Set * @since 1.2 */ public abstract class AbstractSet extends AbstractCollection implements Set { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractSet() { } // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the given object is also a set, the two sets have * the same size, and every member of the given set is contained in * this set. This ensures that the equals method works * properly across different implementations of the Set * interface.

* * This implementation first checks if the specified object is this * set; if so it returns true. Then, it checks if the * specified object is a set whose size is identical to the size of * this set; if not, it returns false. If so, it returns * containsAll((Collection) o). * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Set)) return false; Collection c = (Collection) o; if (c.size() != size()) return false; try { return containsAll(c); } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } } /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over the set, calling the * hashCode method on each element in the set, and adding up * the results. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator i = iterator(); while (i.hasNext()) { E obj = i.next(); if (obj != null) h += obj.hashCode(); } return h; } /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * *

This implementation determines which is the smaller of this set * and the specified collection, by invoking the size * method on each. If this set has fewer elements, then the * implementation iterates over this set, checking each element * returned by the iterator in turn to see if it is contained in * the specified collection. If it is so contained, it is removed * from this set with the iterator's remove method. If * the specified collection has fewer elements, then the * implementation iterates over the specified collection, removing * from this set each element returned by the iterator, using this * set's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ public boolean removeAll(Collection c) { boolean modified = false; if (size() > c.size()) { for (Iterator i = c.iterator(); i.hasNext(); ) modified |= remove(i.next()); } else { for (Iterator i = iterator(); i.hasNext(); ) { if (c.contains(i.next())) { i.remove(); modified = true; } } } return modified; } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * The root interface in the collection hierarchy. A collection * represents a group of objects, known as its elements. Some * collections allow duplicate elements and others do not. Some are ordered * and others unordered. The JDK does not provide any direct * implementations of this interface: it provides implementations of more * specific subinterfaces like Set and List. This interface * is typically used to pass collections around and manipulate them where * maximum generality is desired. * *

Bags or multisets (unordered collections that may contain * duplicate elements) should implement this interface directly. * *

All general-purpose Collection implementation classes (which * typically implement Collection indirectly through one of its * subinterfaces) should provide two "standard" constructors: a void (no * arguments) constructor, which creates an empty collection, and a * constructor with a single argument of type Collection, which * creates a new collection with the same elements as its argument. In * effect, the latter constructor allows the user to copy any collection, * producing an equivalent collection of the desired implementation type. * There is no way to enforce this convention (as interfaces cannot contain * constructors) but all of the general-purpose Collection * implementations in the Java platform libraries comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the collection on which they operate, are specified to * throw UnsupportedOperationException if this collection does not * support the operation. If this is the case, these methods may, but are not * required to, throw an UnsupportedOperationException if the * invocation would have no effect on the collection. For example, invoking * the {@link #addAll(Collection)} method on an unmodifiable collection may, * but is not required to, throw the exception if the collection to be added * is empty. * *

Some collection implementations have restrictions on the elements that * they may contain. For example, some implementations prohibit null elements, * and some have restrictions on the types of their elements. Attempting to * add an ineligible element throws an unchecked exception, typically * NullPointerException or ClassCastException. Attempting * to query the presence of an ineligible element may throw an exception, * or it may simply return false; some implementations will exhibit the former * behavior and some will exhibit the latter. More generally, attempting an * operation on an ineligible element whose completion would not result in * the insertion of an ineligible element into the collection may throw an * exception or it may succeed, at the option of the implementation. * Such exceptions are marked as "optional" in the specification for this * interface. * *

It is up to each collection to determine its own synchronization * policy. In the absence of a stronger guarantee by the * implementation, undefined behavior may result from the invocation * of any method on a collection that is being mutated by another * thread; this includes direct invocations, passing the collection to * a method that might perform invocations, and using an existing * iterator to examine the collection. * *

Many methods in Collections Framework interfaces are defined in * terms of the {@link Object#equals(Object) equals} method. For example, * the specification for the {@link #contains(Object) contains(Object o)} * method says: "returns true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e))." This specification should * not be construed to imply that invoking Collection.contains * with a non-null argument o will cause o.equals(e) to be * invoked for any element e. Implementations are free to implement * optimizations whereby the equals invocation is avoided, for * example, by first comparing the hash codes of the two elements. (The * {@link Object#hashCode()} specification guarantees that two objects with * unequal hash codes cannot be equal.) More generally, implementations of * the various Collections Framework interfaces are free to take advantage of * the specified behavior of underlying {@link Object} methods wherever the * implementor deems it appropriate. * *

This interface is a member of the * * Java Collections Framework. * * @author Josh Bloch * @author Neal Gafter * @see Set * @see List * @see Map * @see SortedSet * @see SortedMap * @see HashSet * @see TreeSet * @see ArrayList * @see LinkedList * @see Vector * @see Collections * @see Arrays * @see AbstractCollection * @since 1.2 */ public interface Collection { // Query Operations /** * Returns the number of elements in this collection. If this collection * contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this collection */ int size(); /** * Returns true if this collection contains no elements. * * @return true if this collection contains no elements */ boolean isEmpty(); /** * Returns true if this collection contains the specified element. * More formally, returns true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this collection is to be tested * @return true if this collection contains the specified * element * @throws ClassCastException if the type of the specified element * is incompatible with this collection (optional) * @throws NullPointerException if the specified element is null and this * collection does not permit null elements (optional) */ boolean contains(Object o); /** * Returns an iterator over the elements in this collection. There are no * guarantees concerning the order in which the elements are returned * (unless this collection is an instance of some class that provides a * guarantee). * * @return an Iterator over the elements in this collection */ Iterator iterator(); // Modification Operations /** * Ensures that this collection contains the specified element (optional * operation). Returns true if this collection changed as a * result of the call. (Returns false if this collection does * not permit duplicates and already contains the specified element.)

* * Collections that support this operation may place limitations on what * elements may be added to this collection. In particular, some * collections will refuse to add null elements, and others will * impose restrictions on the type of elements that may be added. * Collection classes should clearly specify in their documentation any * restrictions on what elements may be added.

* * If a collection refuses to add a particular element for any reason * other than that it already contains the element, it must throw * an exception (rather than returning false). This preserves * the invariant that a collection always contains the specified element * after this call returns. * * @param e element whose presence in this collection is to be ensured * @return true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the add operation * is not supported by this collection * @throws ClassCastException if the class of the specified element * prevents it from being added to this collection * @throws NullPointerException if the specified element is null and this * collection does not permit null elements * @throws IllegalArgumentException if some property of the element * prevents it from being added to this collection * @throws IllegalStateException if the element cannot be added at this * time due to insertion restrictions */ boolean add(E e); /** * Removes a single instance of the specified element from this * collection, if it is present (optional operation). More formally, * removes an element e such that * (o==null ? e==null : o.equals(e)), if * this collection contains one or more such elements. Returns * true if this collection contained the specified element (or * equivalently, if this collection changed as a result of the call). * * @param o element to be removed from this collection, if present * @return true if an element was removed as a result of this call * @throws ClassCastException if the type of the specified element * is incompatible with this collection (optional) * @throws NullPointerException if the specified element is null and this * collection does not permit null elements (optional) * @throws UnsupportedOperationException if the remove operation * is not supported by this collection */ boolean remove(Object o); // Bulk Operations /** * Returns true if this collection contains all of the elements * in the specified collection. * * @param c collection to be checked for containment in this collection * @return true if this collection contains all of the elements * in the specified collection * @throws ClassCastException if the types of one or more elements * in the specified collection are incompatible with this * collection (optional) * @throws NullPointerException if the specified collection contains one * or more null elements and this collection does not permit null * elements (optional), or if the specified collection is null * @see #contains(Object) */ boolean containsAll(Collection c); /** * Adds all of the elements in the specified collection to this collection * (optional operation). The behavior of this operation is undefined if * the specified collection is modified while the operation is in progress. * (This implies that the behavior of this call is undefined if the * specified collection is this collection, and this collection is * nonempty.) * * @param c collection containing elements to be added to this collection * @return true if this collection changed as a result of the call * @throws UnsupportedOperationException if the addAll operation * is not supported by this collection * @throws ClassCastException if the class of an element of the specified * collection prevents it from being added to this collection * @throws NullPointerException if the specified collection contains a * null element and this collection does not permit null elements, * or if the specified collection is null * @throws IllegalArgumentException if some property of an element of the * specified collection prevents it from being added to this * collection * @throws IllegalStateException if not all the elements can be added at * this time due to insertion restrictions * @see #add(Object) */ boolean addAll(Collection c); /** * Removes all of this collection's elements that are also contained in the * specified collection (optional operation). After this call returns, * this collection will contain no elements in common with the specified * collection. * * @param c collection containing elements to be removed from this collection * @return true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the removeAll method * is not supported by this collection * @throws ClassCastException if the types of one or more elements * in this collection are incompatible with the specified * collection (optional) * @throws NullPointerException if this collection contains one or more * null elements and the specified collection does not support * null elements (optional), or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ boolean removeAll(Collection c); /** * Retains only the elements in this collection that are contained in the * specified collection (optional operation). In other words, removes from * this collection all of its elements that are not contained in the * specified collection. * * @param c collection containing elements to be retained in this collection * @return true if this collection changed as a result of the call * @throws UnsupportedOperationException if the retainAll operation * is not supported by this collection * @throws ClassCastException if the types of one or more elements * in this collection are incompatible with the specified * collection (optional) * @throws NullPointerException if this collection contains one or more * null elements and the specified collection does not permit null * elements (optional), or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ boolean retainAll(Collection c); /** * Removes all of the elements from this collection (optional operation). * The collection will be empty after this method returns. * * @throws UnsupportedOperationException if the clear operation * is not supported by this collection */ void clear(); // Comparison and hashing /** * Compares the specified object with this collection for equality.

* * While the Collection interface adds no stipulations to the * general contract for the Object.equals, programmers who * implement the Collection interface "directly" (in other words, * create a class that is a Collection but is not a Set * or a List) must exercise care if they choose to override the * Object.equals. It is not necessary to do so, and the simplest * course of action is to rely on Object's implementation, but * the implementor may wish to implement a "value comparison" in place of * the default "reference comparison." (The List and * Set interfaces mandate such value comparisons.)

* * The general contract for the Object.equals method states that * equals must be symmetric (in other words, a.equals(b) if and * only if b.equals(a)). The contracts for List.equals * and Set.equals state that lists are only equal to other lists, * and sets to other sets. Thus, a custom equals method for a * collection class that implements neither the List nor * Set interface must return false when this collection * is compared to any list or set. (By the same logic, it is not possible * to write a class that correctly implements both the Set and * List interfaces.) * * @param o object to be compared for equality with this collection * @return true if the specified object is equal to this * collection * * @see Object#equals(Object) * @see Set#equals(Object) * @see List#equals(Object) */ boolean equals(Object o); /** * Returns the hash code value for this collection. While the * Collection interface adds no stipulations to the general * contract for the Object.hashCode method, programmers should * take note that any class that overrides the Object.equals * method must also override the Object.hashCode method in order * to satisfy the general contract for the Object.hashCodemethod. * In particular, c1.equals(c2) implies that * c1.hashCode()==c2.hashCode(). * * @return the hash code value for this collection * * @see Object#hashCode() * @see Object#equals(Object) */ int hashCode(); } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * This exception may be thrown by methods that have detected concurrent * modification of an object when such modification is not permissible. *

* For example, it is not generally permissible for one thread to modify a Collection * while another thread is iterating over it. In general, the results of the * iteration are undefined under these circumstances. Some Iterator * implementations (including those of all the general purpose collection implementations * provided by the JRE) may choose to throw this exception if this behavior is * detected. Iterators that do this are known as fail-fast iterators, * as they fail quickly and cleanly, rather that risking arbitrary, * non-deterministic behavior at an undetermined time in the future. *

* Note that this exception does not always indicate that an object has * been concurrently modified by a different thread. If a single * thread issues a sequence of method invocations that violates the * contract of an object, the object may throw this exception. For * example, if a thread modifies a collection directly while it is * iterating over the collection with a fail-fast iterator, the iterator * will throw this exception. * *

Note that fail-fast behavior cannot be guaranteed as it is, generally * speaking, impossible to make any hard guarantees in the presence of * unsynchronized concurrent modification. Fail-fast operations * throw ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: ConcurrentModificationException * should be used only to detect bugs. * * @author Josh Bloch * @see Collection * @see Iterator * @see ListIterator * @see Vector * @see LinkedList * @see HashSet * @see Hashtable * @see TreeMap * @see AbstractList * @since 1.2 */ public class ConcurrentModificationException extends RuntimeException { /** * Constructs a ConcurrentModificationException with no * detail message. */ public ConcurrentModificationException() { } /** * Constructs a ConcurrentModificationException with the * specified detail message. * * @param message the detail message pertaining to this exception. */ public ConcurrentModificationException(String message) { super(message); } } /* * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Hash table based implementation of the Map interface. This * implementation provides all of the optional map operations, and permits * null values and the null key. (The HashMap * class is roughly equivalent to Hashtable, except that it is * unsynchronized and permits nulls.) This class makes no guarantees as to * the order of the map; in particular, it does not guarantee that the order * will remain constant over time. * *

This implementation provides constant-time performance for the basic * operations (get and put), assuming the hash function * disperses the elements properly among the buckets. Iteration over * collection views requires time proportional to the "capacity" of the * HashMap instance (the number of buckets) plus its size (the number * of key-value mappings). Thus, it's very important not to set the initial * capacity too high (or the load factor too low) if iteration performance is * important. * *

An instance of HashMap has two parameters that affect its * performance: initial capacity and load factor. The * capacity is the number of buckets in the hash table, and the initial * capacity is simply the capacity at the time the hash table is created. The * load factor is a measure of how full the hash table is allowed to * get before its capacity is automatically increased. When the number of * entries in the hash table exceeds the product of the load factor and the * current capacity, the hash table is rehashed (that is, internal data * structures are rebuilt) so that the hash table has approximately twice the * number of buckets. * *

As a general rule, the default load factor (.75) offers a good tradeoff * between time and space costs. Higher values decrease the space overhead * but increase the lookup cost (reflected in most of the operations of the * HashMap class, including get and put). The * expected number of entries in the map and its load factor should be taken * into account when setting its initial capacity, so as to minimize the * number of rehash operations. If the initial capacity is greater * than the maximum number of entries divided by the load factor, no * rehash operations will ever occur. * *

If many mappings are to be stored in a HashMap instance, * creating it with a sufficiently large capacity will allow the mappings to * be stored more efficiently than letting it perform automatic rehashing as * needed to grow the table. * *

Note that this implementation is not synchronized. * If multiple threads access a hash map concurrently, and at least one of * the threads modifies the map structurally, it must be * synchronized externally. (A structural modification is any operation * that adds or deletes one or more mappings; merely changing the value * associated with a key that an instance already contains is not a * structural modification.) This is typically accomplished by * synchronizing on some object that naturally encapsulates the map. * * If no such object exists, the map should be "wrapped" using the * {@link Collections#synchronizedMap Collections.synchronizedMap} * method. This is best done at creation time, to prevent accidental * unsynchronized access to the map:

 *   Map m = Collections.synchronizedMap(new HashMap(...));
* *

The iterators returned by all of this class's "collection view methods" * are fail-fast: if the map is structurally modified at any time after * the iterator is created, in any way except through the iterator's own * remove method, the iterator will throw a * {@link ConcurrentModificationException}. Thus, in the face of concurrent * modification, the iterator fails quickly and cleanly, rather than risking * arbitrary, non-deterministic behavior at an undetermined time in the * future. * *

Note that the fail-fast behavior of an iterator cannot be guaranteed * as it is, generally speaking, impossible to make any hard guarantees in the * presence of unsynchronized concurrent modification. Fail-fast iterators * throw ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: the fail-fast behavior of iterators * should be used only to detect bugs. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Doug Lea * @author Josh Bloch * @author Arthur van Hoff * @author Neal Gafter * @see Object#hashCode() * @see Collection * @see Map * @see TreeMap * @see Hashtable * @since 1.2 */ public class HashMap extends AbstractMap implements Map, Cloneable { /** * The default initial capacity - MUST be a power of two. */ static final int DEFAULT_INITIAL_CAPACITY = 16; /** * The maximum capacity, used if a higher value is implicitly specified * by either of the constructors with arguments. * MUST be a power of two <= 1<<30. */ static final int MAXIMUM_CAPACITY = 1 << 30; /** * The load factor used when none specified in constructor. */ static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * The table, resized as necessary. Length MUST Always be a power of two. */ transient Entry[] table; /** * The number of key-value mappings contained in this map. */ transient int size; /** * The next size value at which to resize (capacity * load factor). * @serial */ int threshold; /** * The load factor for the hash table. * * @serial */ final float loadFactor; /** * The number of times this HashMap has been structurally modified * Structural modifications are those that change the number of mappings in * the HashMap or otherwise modify its internal structure (e.g., * rehash). This field is used to make iterators on Collection-views of * the HashMap fail-fast. (See ConcurrentModificationException). */ transient volatile int modCount; /** * Constructs an empty HashMap with the specified initial * capacity and load factor. * * @param initialCapacity the initial capacity * @param loadFactor the load factor * @throws IllegalArgumentException if the initial capacity is negative * or the load factor is nonpositive */ public HashMap(int initialCapacity, float loadFactor) { if (initialCapacity < 0) throw new IllegalArgumentException("Illegal initial capacity: " + initialCapacity); if (initialCapacity > MAXIMUM_CAPACITY) initialCapacity = MAXIMUM_CAPACITY; if (loadFactor <= 0 || Float.isNaN(loadFactor)) throw new IllegalArgumentException("Illegal load factor: " + loadFactor); // Find a power of 2 >= initialCapacity int capacity = 1; while (capacity < initialCapacity) capacity <<= 1; this.loadFactor = loadFactor; threshold = (int)(capacity * loadFactor); table = new Entry[capacity]; init(); } /** * Constructs an empty HashMap with the specified initial * capacity and the default load factor (0.75). * * @param initialCapacity the initial capacity. * @throws IllegalArgumentException if the initial capacity is negative. */ public HashMap(int initialCapacity) { this(initialCapacity, DEFAULT_LOAD_FACTOR); } /** * Constructs an empty HashMap with the default initial capacity * (16) and the default load factor (0.75). */ public HashMap() { this.loadFactor = DEFAULT_LOAD_FACTOR; threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR); table = new Entry[DEFAULT_INITIAL_CAPACITY]; init(); } /** * Constructs a new HashMap with the same mappings as the * specified Map. The HashMap is created with * default load factor (0.75) and an initial capacity sufficient to * hold the mappings in the specified Map. * * @param m the map whose mappings are to be placed in this map * @throws NullPointerException if the specified map is null */ public HashMap(Map m) { this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1, DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR); putAllForCreate(m); } // internal utilities /** * Initialization hook for subclasses. This method is called * in all constructors and pseudo-constructors (clone, readObject) * after HashMap has been initialized but before any entries have * been inserted. (In the absence of this method, readObject would * require explicit knowledge of subclasses.) */ void init() { } /** * Applies a supplemental hash function to a given hashCode, which * defends against poor quality hash functions. This is critical * because HashMap uses power-of-two length hash tables, that * otherwise encounter collisions for hashCodes that do not differ * in lower bits. Note: Null keys always map to hash 0, thus index 0. */ static int hash(int h) { // This function ensures that hashCodes that differ only by // constant multiples at each bit position have a bounded // number of collisions (approximately 8 at default load factor). h ^= (h >>> 20) ^ (h >>> 12); return h ^ (h >>> 7) ^ (h >>> 4); } /** * Returns index for hash code h. */ static int indexFor(int h, int length) { return h & (length-1); } /** * Returns the number of key-value mappings in this map. * * @return the number of key-value mappings in this map */ public int size() { return size; } /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ public boolean isEmpty() { return size == 0; } /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

A return value of {@code null} does not necessarily * indicate that the map contains no mapping for the key; it's also * possible that the map explicitly maps the key to {@code null}. * The {@link #containsKey containsKey} operation may be used to * distinguish these two cases. * * @see #put(Object, Object) */ public V get(Object key) { if (key == null) return getForNullKey(); int hash = hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) return e.value; } return null; } /** * Offloaded version of get() to look up null keys. Null keys map * to index 0. This null case is split out into separate methods * for the sake of performance in the two most commonly used * operations (get and put), but incorporated with conditionals in * others. */ private V getForNullKey() { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) return e.value; } return null; } /** * Returns true if this map contains a mapping for the * specified key. * * @param key The key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key. */ public boolean containsKey(Object key) { return getEntry(key) != null; } /** * Returns the entry associated with the specified key in the * HashMap. Returns null if the HashMap contains no mapping * for the key. */ final Entry getEntry(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) return e; } return null; } /** * Associates the specified value with the specified key in this map. * If the map previously contained a mapping for the key, the old * value is replaced. * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V put(K key, V value) { if (key == null) return putForNullKey(value); int hash = hash(key.hashCode()); int i = indexFor(hash, table.length); for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(hash, key, value, i); return null; } /** * Offloaded version of put for null keys */ private V putForNullKey(V value) { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(0, null, value, 0); return null; } /** * This method is used instead of put by constructors and * pseudoconstructors (clone, readObject). It does not resize the table, * check for comodification, etc. It calls createEntry rather than * addEntry. */ private void putForCreate(K key, V value) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); /** * Look for preexisting entry for key. This will never happen for * clone or deserialize. It will only happen for construction if the * input Map is a sorted map whose ordering is inconsistent w/ equals. */ for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { e.value = value; return; } } createEntry(hash, key, value, i); } private void putAllForCreate(Map m) { for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); putForCreate(e.getKey(), e.getValue()); } } /** * Rehashes the contents of this map into a new array with a * larger capacity. This method is called automatically when the * number of keys in this map reaches its threshold. * * If current capacity is MAXIMUM_CAPACITY, this method does not * resize the map, but sets threshold to Integer.MAX_VALUE. * This has the effect of preventing future calls. * * @param newCapacity the new capacity, MUST be a power of two; * must be greater than current capacity unless current * capacity is MAXIMUM_CAPACITY (in which case value * is irrelevant). */ void resize(int newCapacity) { Entry[] oldTable = table; int oldCapacity = oldTable.length; if (oldCapacity == MAXIMUM_CAPACITY) { threshold = Integer.MAX_VALUE; return; } Entry[] newTable = new Entry[newCapacity]; transfer(newTable); table = newTable; threshold = (int)(newCapacity * loadFactor); } /** * Transfers all entries from current table to newTable. */ void transfer(Entry[] newTable) { Entry[] src = table; int newCapacity = newTable.length; for (int j = 0; j < src.length; j++) { Entry e = src[j]; if (e != null) { src[j] = null; do { Entry next = e.next; int i = indexFor(e.hash, newCapacity); e.next = newTable[i]; newTable[i] = e; e = next; } while (e != null); } } } /** * Copies all of the mappings from the specified map to this map. * These mappings will replace any mappings that this map had for * any of the keys currently in the specified map. * * @param m mappings to be stored in this map * @throws NullPointerException if the specified map is null */ public void putAll(Map m) { int numKeysToBeAdded = m.size(); if (numKeysToBeAdded == 0) return; /* * Expand the map if the map if the number of mappings to be added * is greater than or equal to threshold. This is conservative; the * obvious condition is (m.size() + size) >= threshold, but this * condition could result in a map with twice the appropriate capacity, * if the keys to be added overlap with the keys already in this map. * By using the conservative calculation, we subject ourself * to at most one extra resize. */ if (numKeysToBeAdded > threshold) { int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1); if (targetCapacity > MAXIMUM_CAPACITY) targetCapacity = MAXIMUM_CAPACITY; int newCapacity = table.length; while (newCapacity < targetCapacity) newCapacity <<= 1; if (newCapacity > table.length) resize(newCapacity); } for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); put(e.getKey(), e.getValue()); } } /** * Removes the mapping for the specified key from this map if present. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V remove(Object key) { Entry e = removeEntryForKey(key); return (e == null ? null : e.value); } /** * Removes and returns the entry associated with the specified key * in the HashMap. Returns null if the HashMap contains no mapping * for this key. */ final Entry removeEntryForKey(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Special version of remove for EntrySet. */ final Entry removeMapping(Object o) { if (!(o instanceof Map.Entry)) return null; Map.Entry entry = (Map.Entry) o; Object key = entry.getKey(); int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; if (e.hash == hash && e.equals(entry)) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Removes all of the mappings from this map. * The map will be empty after this call returns. */ public void clear() { modCount++; Entry[] tab = table; for (int i = 0; i < tab.length; i++) tab[i] = null; size = 0; } /** * Returns true if this map maps one or more keys to the * specified value. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value */ public boolean containsValue(Object value) { if (value == null) return containsNullValue(); Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (value.equals(e.value)) return true; return false; } /** * Special-case code for containsValue with null argument */ private boolean containsNullValue() { Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (e.value == null) return true; return false; } /** * Returns a shallow copy of this HashMap instance: the keys and * values themselves are not cloned. * * @return a shallow copy of this map */ public Object clone() { HashMap result = null; try { result = (HashMap)super.clone(); } catch (CloneNotSupportedException e) { // assert false; } result.table = new Entry[table.length]; result.entrySet = null; result.modCount = 0; result.size = 0; result.init(); result.putAllForCreate(this); return result; } static class Entry implements Map.Entry { final K key; V value; Entry next; final int hash; /** * Creates new entry. */ Entry(int h, K k, V v, Entry n) { value = v; next = n; key = k; hash = h; } public final K getKey() { return key; } public final V getValue() { return value; } public final V setValue(V newValue) { V oldValue = value; value = newValue; return oldValue; } public final boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; Object k1 = getKey(); Object k2 = e.getKey(); if (k1 == k2 || (k1 != null && k1.equals(k2))) { Object v1 = getValue(); Object v2 = e.getValue(); if (v1 == v2 || (v1 != null && v1.equals(v2))) return true; } return false; } public final int hashCode() { return (key==null ? 0 : key.hashCode()) ^ (value==null ? 0 : value.hashCode()); } public final String toString() { return getKey() + "=" + getValue(); } /** * This method is invoked whenever the value in an entry is * overwritten by an invocation of put(k,v) for a key k that's already * in the HashMap. */ void recordAccess(HashMap m) { } /** * This method is invoked whenever the entry is * removed from the table. */ void recordRemoval(HashMap m) { } } /** * Adds a new entry with the specified key, value and hash code to * the specified bucket. It is the responsibility of this * method to resize the table if appropriate. * * Subclass overrides this to alter the behavior of put method. */ void addEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); if (size++ >= threshold) resize(2 * table.length); } /** * Like addEntry except that this version is used when creating entries * as part of Map construction or "pseudo-construction" (cloning, * deserialization). This version needn't worry about resizing the table. * * Subclass overrides this to alter the behavior of HashMap(Map), * clone, and readObject. */ void createEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); size++; } private abstract class HashIterator implements Iterator { Entry next; // next entry to return int expectedModCount; // For fast-fail int index; // current slot Entry current; // current entry HashIterator() { expectedModCount = modCount; if (size > 0) { // advance to first entry Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } } public final boolean hasNext() { return next != null; } final Entry nextEntry() { if (modCount != expectedModCount) throw new ConcurrentModificationException(); Entry e = next; if (e == null) throw new NoSuchElementException(); if ((next = e.next) == null) { Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } current = e; return e; } public void remove() { if (current == null) throw new IllegalStateException(); if (modCount != expectedModCount) throw new ConcurrentModificationException(); Object k = current.key; current = null; HashMap.this.removeEntryForKey(k); expectedModCount = modCount; } } private final class ValueIterator extends HashIterator { public V next() { return nextEntry().value; } } private final class KeyIterator extends HashIterator { public K next() { return nextEntry().getKey(); } } private final class EntryIterator extends HashIterator> { public Map.Entry next() { return nextEntry(); } } // Subclass overrides these to alter behavior of views' iterator() method Iterator newKeyIterator() { return new KeyIterator(); } Iterator newValueIterator() { return new ValueIterator(); } Iterator> newEntryIterator() { return new EntryIterator(); } // Views private transient Set> entrySet = null; /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. */ public Set keySet() { Set ks = keySet; return (ks != null ? ks : (keySet = new KeySet())); } private final class KeySet extends AbstractSet { public Iterator iterator() { return newKeyIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsKey(o); } public boolean remove(Object o) { return HashMap.this.removeEntryForKey(o) != null; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. */ public Collection values() { Collection vs = values; return (vs != null ? vs : (values = new Values())); } private final class Values extends AbstractCollection { public Iterator iterator() { return newValueIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsValue(o); } public void clear() { HashMap.this.clear(); } } /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ public Set> entrySet() { return entrySet0(); } private Set> entrySet0() { Set> es = entrySet; return es != null ? es : (entrySet = new EntrySet()); } private final class EntrySet extends AbstractSet> { public Iterator> iterator() { return newEntryIterator(); } public boolean contains(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry) o; Entry candidate = getEntry(e.getKey()); return candidate != null && candidate.equals(e); } public boolean remove(Object o) { return removeMapping(o) != null; } public int size() { return size; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } private static final long serialVersionUID = 362498820763181265L; } /* * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Thrown to indicate that a method has been passed an illegal or * inappropriate argument. * * @author unascribed * @see java.lang.Thread#setPriority(int) * @since JDK1.0 */ public class IllegalArgumentException extends RuntimeException { /** * Constructs an IllegalArgumentException with no * detail message. */ public IllegalArgumentException() { super(); } /** * Constructs an IllegalArgumentException with the * specified detail message. * * @param s the detail message. */ public IllegalArgumentException(String s) { super(s); } /** * Constructs a new exception with the specified detail message and * cause. * *

Note that the detail message associated with cause is * not automatically incorporated in this exception's detail * message. * * @param message the detail message (which is saved for later retrieval * by the {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalArgumentException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail * message of (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * This constructor is useful for exceptions that are little more than * wrappers for other throwables (for example, {@link * java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalArgumentException(Throwable cause) { super(cause); } private static final long serialVersionUID = -5365630128856068164L; } /* * Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Signals that a method has been invoked at an illegal or * inappropriate time. In other words, the Java environment or * Java application is not in an appropriate state for the requested * operation. * * @author Jonni Kanerva * @since JDK1.1 */ public class IllegalStateException extends RuntimeException { /** * Constructs an IllegalStateException with no detail message. * A detail message is a String that describes this particular exception. */ public IllegalStateException() { super(); } /** * Constructs an IllegalStateException with the specified detail * message. A detail message is a String that describes this particular * exception. * * @param s the String that contains a detailed message */ public IllegalStateException(String s) { super(s); } /** * Constructs a new exception with the specified detail message and * cause. * *

Note that the detail message associated with cause is * not automatically incorporated in this exception's detail * message. * * @param message the detail message (which is saved for later retrieval * by the {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalStateException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail * message of (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * This constructor is useful for exceptions that are little more than * wrappers for other throwables (for example, {@link * java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public IllegalStateException(Throwable cause) { super(cause); } static final long serialVersionUID = -1848914673093119416L; } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * An iterator over a collection. {@code Iterator} takes the place of * {@link Enumeration} in the Java Collections Framework. Iterators * differ from enumerations in two ways: * *

    *
  • Iterators allow the caller to remove elements from the * underlying collection during the iteration with well-defined * semantics. *
  • Method names have been improved. *
* *

This interface is a member of the * * Java Collections Framework. * * @author Josh Bloch * @see Collection * @see ListIterator * @see Iterable * @since 1.2 */ public interface Iterator { /** * Returns {@code true} if the iteration has more elements. * (In other words, returns {@code true} if {@link #next} would * return an element rather than throwing an exception.) * * @return {@code true} if the iteration has more elements */ boolean hasNext(); /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the iteration has no more elements */ E next(); /** * Removes from the underlying collection the last element returned * by this iterator (optional operation). This method can be called * only once per call to {@link #next}. The behavior of an iterator * is unspecified if the underlying collection is modified while the * iteration is in progress in any way other than by calling this * method. * * @throws UnsupportedOperationException if the {@code remove} * operation is not supported by this iterator * * @throws IllegalStateException if the {@code next} method has not * yet been called, or the {@code remove} method has already * been called after the last call to the {@code next} * method */ void remove(); } package javaUtilEx; public class juHashMapCreateRemove { public static void main(String[] args) { Random.args = args; HashMap m = createMap(Random.random()); m.remove(new Content(Random.random())); } public static HashMap createMap(int n) { HashMap m = new HashMap(); while (n > 0) { Content key = new Content(Random.random()); Content val = new Content(Random.random()); m.put(key, val); n--; } return m; } } final class Content { int val; public Content(int v) { this.val = v; } public int hashCode() { return val^31; } public boolean equals(Object o) { if (o instanceof Content) { return this.val == ((Content) o).val; } return false; } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * An object that maps keys to values. A map cannot contain duplicate keys; * each key can map to at most one value. * *

This interface takes the place of the Dictionary class, which * was a totally abstract class rather than an interface. * *

The Map interface provides three collection views, which * allow a map's contents to be viewed as a set of keys, collection of values, * or set of key-value mappings. The order of a map is defined as * the order in which the iterators on the map's collection views return their * elements. Some map implementations, like the TreeMap class, make * specific guarantees as to their order; others, like the HashMap * class, do not. * *

Note: great care must be exercised if mutable objects are used as map * keys. The behavior of a map is not specified if the value of an object is * changed in a manner that affects equals comparisons while the * object is a key in the map. A special case of this prohibition is that it * is not permissible for a map to contain itself as a key. While it is * permissible for a map to contain itself as a value, extreme caution is * advised: the equals and hashCode methods are no longer * well defined on such a map. * *

All general-purpose map implementation classes should provide two * "standard" constructors: a void (no arguments) constructor which creates an * empty map, and a constructor with a single argument of type Map, * which creates a new map with the same key-value mappings as its argument. * In effect, the latter constructor allows the user to copy any map, * producing an equivalent map of the desired class. There is no way to * enforce this recommendation (as interfaces cannot contain constructors) but * all of the general-purpose map implementations in the JDK comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the map on which they operate, are specified to throw * UnsupportedOperationException if this map does not support the * operation. If this is the case, these methods may, but are not required * to, throw an UnsupportedOperationException if the invocation would * have no effect on the map. For example, invoking the {@link #putAll(Map)} * method on an unmodifiable map may, but is not required to, throw the * exception if the map whose mappings are to be "superimposed" is empty. * *

Some map implementations have restrictions on the keys and values they * may contain. For example, some implementations prohibit null keys and * values, and some have restrictions on the types of their keys. Attempting * to insert an ineligible key or value throws an unchecked exception, * typically NullPointerException or ClassCastException. * Attempting to query the presence of an ineligible key or value may throw an * exception, or it may simply return false; some implementations will exhibit * the former behavior and some will exhibit the latter. More generally, * attempting an operation on an ineligible key or value whose completion * would not result in the insertion of an ineligible element into the map may * throw an exception or it may succeed, at the option of the implementation. * Such exceptions are marked as "optional" in the specification for this * interface. * *

This interface is a member of the * * Java Collections Framework. * *

Many methods in Collections Framework interfaces are defined * in terms of the {@link Object#equals(Object) equals} method. For * example, the specification for the {@link #containsKey(Object) * containsKey(Object key)} method says: "returns true if and * only if this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k))." This specification should * not be construed to imply that invoking Map.containsKey * with a non-null argument key will cause key.equals(k) to * be invoked for any key k. Implementations are free to * implement optimizations whereby the equals invocation is avoided, * for example, by first comparing the hash codes of the two keys. (The * {@link Object#hashCode()} specification guarantees that two objects with * unequal hash codes cannot be equal.) More generally, implementations of * the various Collections Framework interfaces are free to take advantage of * the specified behavior of underlying {@link Object} methods wherever the * implementor deems it appropriate. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @see HashMap * @see TreeMap * @see Hashtable * @see SortedMap * @see Collection * @see Set * @since 1.2 */ public interface Map { // Query Operations /** * Returns the number of key-value mappings in this map. If the * map contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of key-value mappings in this map */ int size(); /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ boolean isEmpty(); /** * Returns true if this map contains a mapping for the specified * key. More formally, returns true if and only if * this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k)). (There can be * at most one such mapping.) * * @param key key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ boolean containsKey(Object key); /** * Returns true if this map maps one or more keys to the * specified value. More formally, returns true if and only if * this map contains at least one mapping to a value v such that * (value==null ? v==null : value.equals(v)). This operation * will probably require time linear in the map size for most * implementations of the Map interface. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value * @throws ClassCastException if the value is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified value is null and this * map does not permit null values (optional) */ boolean containsValue(Object value); /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

If this map permits null values, then a return value of * {@code null} does not necessarily indicate that the map * contains no mapping for the key; it's also possible that the map * explicitly maps the key to {@code null}. The {@link #containsKey * containsKey} operation may be used to distinguish these two cases. * * @param key the key whose associated value is to be returned * @return the value to which the specified key is mapped, or * {@code null} if this map contains no mapping for the key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ V get(Object key); // Modification Operations /** * Associates the specified value with the specified key in this map * (optional operation). If the map previously contained a mapping for * the key, the old value is replaced by the specified value. (A map * m is said to contain a mapping for a key k if and only * if {@link #containsKey(Object) m.containsKey(k)} would return * true.) * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key, * if the implementation supports null values.) * @throws UnsupportedOperationException if the put operation * is not supported by this map * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this map * @throws NullPointerException if the specified key or value is null * and this map does not permit null keys or values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this map */ V put(K key, V value); /** * Removes the mapping for a key from this map if it is present * (optional operation). More formally, if this map contains a mapping * from key k to value v such that * (key==null ? k==null : key.equals(k)), that mapping * is removed. (The map can contain at most one such mapping.) * *

Returns the value to which this map previously associated the key, * or null if the map contained no mapping for the key. * *

If this map permits null values, then a return value of * null does not necessarily indicate that the map * contained no mapping for the key; it's also possible that the map * explicitly mapped the key to null. * *

The map will not contain a mapping for the specified key once the * call returns. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * @throws UnsupportedOperationException if the remove operation * is not supported by this map * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this * map does not permit null keys (optional) */ V remove(Object key); // Bulk Operations /** * Copies all of the mappings from the specified map to this map * (optional operation). The effect of this call is equivalent to that * of calling {@link #put(Object,Object) put(k, v)} on this map once * for each mapping from key k to value v in the * specified map. The behavior of this operation is undefined if the * specified map is modified while the operation is in progress. * * @param m mappings to be stored in this map * @throws UnsupportedOperationException if the putAll operation * is not supported by this map * @throws ClassCastException if the class of a key or value in the * specified map prevents it from being stored in this map * @throws NullPointerException if the specified map is null, or if * this map does not permit null keys or values, and the * specified map contains null keys or values * @throws IllegalArgumentException if some property of a key or value in * the specified map prevents it from being stored in this map */ void putAll(Map m); /** * Removes all of the mappings from this map (optional operation). * The map will be empty after this call returns. * * @throws UnsupportedOperationException if the clear operation * is not supported by this map */ void clear(); // Views /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. * * @return a set view of the keys contained in this map */ Set keySet(); /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. * * @return a collection view of the values contained in this map */ Collection values(); /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ Set> entrySet(); /** * A map entry (key-value pair). The Map.entrySet method returns * a collection-view of the map, whose elements are of this class. The * only way to obtain a reference to a map entry is from the * iterator of this collection-view. These Map.Entry objects are * valid only for the duration of the iteration; more formally, * the behavior of a map entry is undefined if the backing map has been * modified after the entry was returned by the iterator, except through * the setValue operation on the map entry. * * @see Map#entrySet() * @since 1.2 */ interface Entry { /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ K getKey(); /** * Returns the value corresponding to this entry. If the mapping * has been removed from the backing map (by the iterator's * remove operation), the results of this call are undefined. * * @return the value corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V getValue(); /** * Replaces the value corresponding to this entry with the specified * value (optional operation). (Writes through to the map.) The * behavior of this call is undefined if the mapping has already been * removed from the map (by the iterator's remove operation). * * @param value new value to be stored in this entry * @return old value corresponding to the entry * @throws UnsupportedOperationException if the put operation * is not supported by the backing map * @throws ClassCastException if the class of the specified value * prevents it from being stored in the backing map * @throws NullPointerException if the backing map does not permit * null values, and the specified value is null * @throws IllegalArgumentException if some property of this value * prevents it from being stored in the backing map * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V setValue(V value); /** * Compares the specified object with this entry for equality. * Returns true if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries e1 and e2 represent the same mapping * if

         *     (e1.getKey()==null ?
         *      e2.getKey()==null : e1.getKey().equals(e2.getKey()))  &&
         *     (e1.getValue()==null ?
         *      e2.getValue()==null : e1.getValue().equals(e2.getValue()))
         * 
* This ensures that the equals method works properly across * different implementations of the Map.Entry interface. * * @param o object to be compared for equality with this map entry * @return true if the specified object is equal to this map * entry */ boolean equals(Object o); /** * Returns the hash code value for this map entry. The hash code * of a map entry e is defined to be:
         *     (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *     (e.getValue()==null ? 0 : e.getValue().hashCode())
         * 
* This ensures that e1.equals(e2) implies that * e1.hashCode()==e2.hashCode() for any two Entries * e1 and e2, as required by the general * contract of Object.hashCode. * * @return the hash code value for this map entry * @see Object#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ boolean equals(Object o); /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } /* * Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Thrown by the nextElement method of an * Enumeration to indicate that there are no more * elements in the enumeration. * * @author unascribed * @see java.util.Enumeration * @see java.util.Enumeration#nextElement() * @since JDK1.0 */ public class NoSuchElementException extends RuntimeException { /** * Constructs a NoSuchElementException with null * as its error message string. */ public NoSuchElementException() { super(); } /** * Constructs a NoSuchElementException, saving a reference * to the error message string s for later retrieval by the * getMessage method. * * @param s the detail message. */ public NoSuchElementException(String s) { super(s); } } package javaUtilEx; public class Random { static String[] args; static int index = 0; public static int random() { String string = args[index]; index++; return string.length(); } } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * A collection that contains no duplicate elements. More formally, sets * contain no pair of elements e1 and e2 such that * e1.equals(e2), and at most one null element. As implied by * its name, this interface models the mathematical set abstraction. * *

The Set interface places additional stipulations, beyond those * inherited from the Collection interface, on the contracts of all * constructors and on the contracts of the add, equals and * hashCode methods. Declarations for other inherited methods are * also included here for convenience. (The specifications accompanying these * declarations have been tailored to the Set interface, but they do * not contain any additional stipulations.) * *

The additional stipulation on constructors is, not surprisingly, * that all constructors must create a set that contains no duplicate elements * (as defined above). * *

Note: Great care must be exercised if mutable objects are used as set * elements. The behavior of a set is not specified if the value of an object * is changed in a manner that affects equals comparisons while the * object is an element in the set. A special case of this prohibition is * that it is not permissible for a set to contain itself as an element. * *

Some set implementations have restrictions on the elements that * they may contain. For example, some implementations prohibit null elements, * and some have restrictions on the types of their elements. Attempting to * add an ineligible element throws an unchecked exception, typically * NullPointerException or ClassCastException. Attempting * to query the presence of an ineligible element may throw an exception, * or it may simply return false; some implementations will exhibit the former * behavior and some will exhibit the latter. More generally, attempting an * operation on an ineligible element whose completion would not result in * the insertion of an ineligible element into the set may throw an * exception or it may succeed, at the option of the implementation. * Such exceptions are marked as "optional" in the specification for this * interface. * *

This interface is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see List * @see SortedSet * @see HashSet * @see TreeSet * @see AbstractSet * @see Collections#singleton(java.lang.Object) * @see Collections#EMPTY_SET * @since 1.2 */ public interface Set extends Collection { // Query Operations /** * Returns the number of elements in this set (its cardinality). If this * set contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this set (its cardinality) */ int size(); /** * Returns true if this set contains no elements. * * @return true if this set contains no elements */ boolean isEmpty(); /** * Returns true if this set contains the specified element. * More formally, returns true if and only if this set * contains an element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this set is to be tested * @return true if this set contains the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) */ boolean contains(Object o); /** * Returns an iterator over the elements in this set. The elements are * returned in no particular order (unless this set is an instance of some * class that provides a guarantee). * * @return an iterator over the elements in this set */ Iterator iterator(); /** * Returns an array containing all of the elements in this set. * If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the * elements in the same order. * *

The returned array will be "safe" in that no references to it * are maintained by this set. (In other words, this method must * allocate a new array even if this set is backed by an array). * The caller is thus free to modify the returned array. * *

This method acts as bridge between array-based and collection-based * APIs. * * @return an array containing all the elements in this set */ Object[] toArray(); /** * Returns an array containing all of the elements in this set; the * runtime type of the returned array is that of the specified array. * If the set fits in the specified array, it is returned therein. * Otherwise, a new array is allocated with the runtime type of the * specified array and the size of this set. * *

If this set fits in the specified array with room to spare * (i.e., the array has more elements than this set), the element in * the array immediately following the end of the set is set to * null. (This is useful in determining the length of this * set only if the caller knows that this set does not contain * any null elements.) * *

If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the elements * in the same order. * *

Like the {@link #toArray()} method, this method acts as bridge between * array-based and collection-based APIs. Further, this method allows * precise control over the runtime type of the output array, and may, * under certain circumstances, be used to save allocation costs. * *

Suppose x is a set known to contain only strings. * The following code can be used to dump the set into a newly allocated * array of String: * *

     *     String[] y = x.toArray(new String[0]);
* * Note that toArray(new Object[0]) is identical in function to * toArray(). * * @param a the array into which the elements of this set are to be * stored, if it is big enough; otherwise, a new array of the same * runtime type is allocated for this purpose. * @return an array containing all the elements in this set * @throws ArrayStoreException if the runtime type of the specified array * is not a supertype of the runtime type of every element in this * set * @throws NullPointerException if the specified array is null */ T[] toArray(T[] a); // Modification Operations /** * Adds the specified element to this set if it is not already present * (optional operation). More formally, adds the specified element * e to this set if the set contains no element e2 * such that * (e==null ? e2==null : e.equals(e2)). * If this set already contains the element, the call leaves the set * unchanged and returns false. In combination with the * restriction on constructors, this ensures that sets never contain * duplicate elements. * *

The stipulation above does not imply that sets must accept all * elements; sets may refuse to add any particular element, including * null, and throw an exception, as described in the * specification for {@link Collection#add Collection.add}. * Individual set implementations should clearly document any * restrictions on the elements that they may contain. * * @param e element to be added to this set * @return true if this set did not already contain the specified * element * @throws UnsupportedOperationException if the add operation * is not supported by this set * @throws ClassCastException if the class of the specified element * prevents it from being added to this set * @throws NullPointerException if the specified element is null and this * set does not permit null elements * @throws IllegalArgumentException if some property of the specified element * prevents it from being added to this set */ boolean add(E e); /** * Removes the specified element from this set if it is present * (optional operation). More formally, removes an element e * such that * (o==null ? e==null : o.equals(e)), if * this set contains such an element. Returns true if this set * contained the element (or equivalently, if this set changed as a * result of the call). (This set will not contain the element once the * call returns.) * * @param o object to be removed from this set, if present * @return true if this set contained the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) * @throws UnsupportedOperationException if the remove operation * is not supported by this set */ boolean remove(Object o); // Bulk Operations /** * Returns true if this set contains all of the elements of the * specified collection. If the specified collection is also a set, this * method returns true if it is a subset of this set. * * @param c collection to be checked for containment in this set * @return true if this set contains all of the elements of the * specified collection * @throws ClassCastException if the types of one or more elements * in the specified collection are incompatible with this * set (optional) * @throws NullPointerException if the specified collection contains one * or more null elements and this set does not permit null * elements (optional), or if the specified collection is null * @see #contains(Object) */ boolean containsAll(Collection c); /** * Adds all of the elements in the specified collection to this set if * they're not already present (optional operation). If the specified * collection is also a set, the addAll operation effectively * modifies this set so that its value is the union of the two * sets. The behavior of this operation is undefined if the specified * collection is modified while the operation is in progress. * * @param c collection containing elements to be added to this set * @return true if this set changed as a result of the call * * @throws UnsupportedOperationException if the addAll operation * is not supported by this set * @throws ClassCastException if the class of an element of the * specified collection prevents it from being added to this set * @throws NullPointerException if the specified collection contains one * or more null elements and this set does not permit null * elements, or if the specified collection is null * @throws IllegalArgumentException if some property of an element of the * specified collection prevents it from being added to this set * @see #add(Object) */ boolean addAll(Collection c); /** * Retains only the elements in this set that are contained in the * specified collection (optional operation). In other words, removes * from this set all of its elements that are not contained in the * specified collection. If the specified collection is also a set, this * operation effectively modifies this set so that its value is the * intersection of the two sets. * * @param c collection containing elements to be retained in this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the retainAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) */ boolean retainAll(Collection c); /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) * @see #contains(Object) */ boolean removeAll(Collection c); /** * Removes all of the elements from this set (optional operation). * The set will be empty after this call returns. * * @throws UnsupportedOperationException if the clear method * is not supported by this set */ void clear(); // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the specified object is also a set, the two sets * have the same size, and every member of the specified set is * contained in this set (or equivalently, every member of this set is * contained in the specified set). This definition ensures that the * equals method works properly across different implementations of the * set interface. * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ boolean equals(Object o); /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#equals(Object) */ int hashCode(); } /* * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javaUtilEx; /** * Thrown to indicate that the requested operation is not supported.

* * This class is a member of the * * Java Collections Framework. * * @author Josh Bloch * @since 1.2 */ public class UnsupportedOperationException extends RuntimeException { /** * Constructs an UnsupportedOperationException with no detail message. */ public UnsupportedOperationException() { } /** * Constructs an UnsupportedOperationException with the specified * detail message. * * @param message the detail message */ public UnsupportedOperationException(String message) { super(message); } /** * Constructs a new exception with the specified detail message and * cause. * *

Note that the detail message associated with cause is * not automatically incorporated in this exception's detail * message. * * @param message the detail message (which is saved for later retrieval * by the {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public UnsupportedOperationException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail * message of (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * This constructor is useful for exceptions that are little more than * wrappers for other throwables (for example, {@link * java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public UnsupportedOperationException(Throwable cause) { super(cause); } static final long serialVersionUID = -1242599979055084673L; } ---------------------------------------- (3) JBCToGraph (EQUIVALENT) Constructed TerminationGraph. ---------------------------------------- (4) Obligation: Termination Graph based on JBC Program: javaUtilEx.juHashMapCreateRemove.main([Ljava/lang/String;)V: Graph of 258 nodes with 0 SCCs. javaUtilEx.juHashMapCreateRemove.createMap(I)LjavaUtilEx/HashMap;: Graph of 248 nodes with 1 SCC. javaUtilEx.HashMap.removeEntryForKey(Ljava/lang/Object;)LjavaUtilEx/HashMap$Entry;: Graph of 204 nodes with 1 SCC. javaUtilEx.Content.hashCode()I: Graph of 6 nodes with 0 SCCs. javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;: Graph of 494 nodes with 2 SCCs. javaUtilEx.Content.equals(Ljava/lang/Object;)Z: Graph of 31 nodes with 0 SCCs. ---------------------------------------- (5) TerminationGraphToSCCProof (SOUND) Splitted TerminationGraph to 4 SCCss. ---------------------------------------- (6) Complex Obligation (AND) ---------------------------------------- (7) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; SCC calls the following helper methods: Performed SCC analyses: *Used field analysis yielded the following read fields: *javaUtilEx.HashMap$Entry: [next, hash] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (8) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 58 IRulesP rules: f11722_0_transfer_Load(EOS(STATIC_11722), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327) -> f11723_0_transfer_ArrayLength(EOS(STATIC_11723), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327, java.lang.Object(ARRAY(i5326))) :|: TRUE f11723_0_transfer_ArrayLength(EOS(STATIC_11723), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327, java.lang.Object(ARRAY(i5326))) -> f11724_0_transfer_GE(EOS(STATIC_11724), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327, i5326) :|: i5326 >= 0 f11724_0_transfer_GE(EOS(STATIC_11724), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327, i5326) -> f11726_0_transfer_GE(EOS(STATIC_11726), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327, i5326) :|: i5327 < i5326 f11726_0_transfer_GE(EOS(STATIC_11726), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327, i5326) -> f11728_0_transfer_Load(EOS(STATIC_11728), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) :|: i5327 < i5326 f11728_0_transfer_Load(EOS(STATIC_11728), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) -> f11730_0_transfer_Load(EOS(STATIC_11730), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(ARRAY(i5326))) :|: TRUE f11730_0_transfer_Load(EOS(STATIC_11730), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(ARRAY(i5326))) -> f11732_0_transfer_ArrayAccess(EOS(STATIC_11732), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(ARRAY(i5326)), i5327) :|: TRUE f11732_0_transfer_ArrayAccess(EOS(STATIC_11732), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(ARRAY(i5326)), i5327) -> f11734_0_transfer_ArrayAccess(EOS(STATIC_11734), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(ARRAY(i5326)), i5327) :|: TRUE f11734_0_transfer_ArrayAccess(EOS(STATIC_11734), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(ARRAY(i5326)), i5327) -> f11737_0_transfer_Store(EOS(STATIC_11737), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8429) :|: i5327 < i5326 f11737_0_transfer_Store(EOS(STATIC_11737), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8429) -> f11740_0_transfer_Load(EOS(STATIC_11740), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8429) :|: TRUE f11740_0_transfer_Load(EOS(STATIC_11740), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8429) -> f11742_0_transfer_NULL(EOS(STATIC_11742), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8429, o8429) :|: TRUE f11742_0_transfer_NULL(EOS(STATIC_11742), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(o8431sub)) -> f11745_0_transfer_NULL(EOS(STATIC_11745), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(o8431sub)) :|: TRUE f11742_0_transfer_NULL(EOS(STATIC_11742), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, NULL, NULL) -> f11746_0_transfer_NULL(EOS(STATIC_11746), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, NULL, NULL) :|: TRUE f11745_0_transfer_NULL(EOS(STATIC_11745), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(o8431sub)) -> f11749_0_transfer_Load(EOS(STATIC_11749), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub)) :|: TRUE f11749_0_transfer_Load(EOS(STATIC_11749), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub)) -> f11752_0_transfer_Load(EOS(STATIC_11752), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326))) :|: TRUE f11752_0_transfer_Load(EOS(STATIC_11752), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326))) -> f11756_0_transfer_ConstantStackPush(EOS(STATIC_11756), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326)), i5327) :|: TRUE f11756_0_transfer_ConstantStackPush(EOS(STATIC_11756), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326)), i5327) -> f11760_0_transfer_ArrayAccess(EOS(STATIC_11760), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326)), i5327, NULL) :|: TRUE f11760_0_transfer_ArrayAccess(EOS(STATIC_11760), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326)), i5327, NULL) -> f11762_0_transfer_ArrayAccess(EOS(STATIC_11762), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326)), i5327, NULL) :|: TRUE f11762_0_transfer_ArrayAccess(EOS(STATIC_11762), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(ARRAY(i5326)), i5327, NULL) -> f11766_0_transfer_Load(EOS(STATIC_11766), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431put)) :|: i5327 < i5326 f11766_0_transfer_Load(EOS(STATIC_11766), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub)) -> f11770_0_transfer_FieldAccess(EOS(STATIC_11770), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8431sub), java.lang.Object(o8431sub)) :|: TRUE f11770_0_transfer_FieldAccess(EOS(STATIC_11770), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) -> f11772_0_transfer_FieldAccess(EOS(STATIC_11772), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) :|: TRUE f11772_0_transfer_FieldAccess(EOS(STATIC_11772), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) -> f11776_0_transfer_Store(EOS(STATIC_11776), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443) :|: TRUE f11776_0_transfer_Store(EOS(STATIC_11776), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443) -> f11779_0_transfer_Load(EOS(STATIC_11779), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443) :|: TRUE f11779_0_transfer_Load(EOS(STATIC_11779), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443) -> f11781_0_transfer_FieldAccess(EOS(STATIC_11781), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) :|: TRUE f11781_0_transfer_FieldAccess(EOS(STATIC_11781), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) -> f11784_0_transfer_Load(EOS(STATIC_11784), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338) :|: TRUE f11784_0_transfer_Load(EOS(STATIC_11784), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338) -> f11787_0_transfer_InvokeMethod(EOS(STATIC_11787), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168) :|: TRUE f11787_0_transfer_InvokeMethod(EOS(STATIC_11787), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168) -> f11789_0_indexFor_Load(EOS(STATIC_11789), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168) :|: TRUE f11789_0_indexFor_Load(EOS(STATIC_11789), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168) -> f11794_0_indexFor_Load(EOS(STATIC_11794), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5168, i5338) :|: TRUE f11794_0_indexFor_Load(EOS(STATIC_11794), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5168, i5338) -> f11796_0_indexFor_ConstantStackPush(EOS(STATIC_11796), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168) :|: TRUE f11796_0_indexFor_ConstantStackPush(EOS(STATIC_11796), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168) -> f11799_0_indexFor_IntArithmetic(EOS(STATIC_11799), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168, 1) :|: TRUE f11799_0_indexFor_IntArithmetic(EOS(STATIC_11799), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168, matching1) -> f11802_0_indexFor_IntArithmetic(EOS(STATIC_11802), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5168 - 1) :|: i5168 >= 0 && matching1 = 1 f11802_0_indexFor_IntArithmetic(EOS(STATIC_11802), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5338, i5355) -> f11804_0_indexFor_Return(EOS(STATIC_11804), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356) :|: TRUE f11804_0_indexFor_Return(EOS(STATIC_11804), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356) -> f11807_0_transfer_Store(EOS(STATIC_11807), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356) :|: TRUE f11807_0_transfer_Store(EOS(STATIC_11807), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356) -> f11810_0_transfer_Load(EOS(STATIC_11810), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356) :|: TRUE f11810_0_transfer_Load(EOS(STATIC_11810), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356) -> f11813_0_transfer_Load(EOS(STATIC_11813), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) :|: TRUE f11813_0_transfer_Load(EOS(STATIC_11813), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338))) -> f11816_0_transfer_Load(EOS(STATIC_11816), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(ARRAY(i5168))) :|: TRUE f11816_0_transfer_Load(EOS(STATIC_11816), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(ARRAY(i5168))) -> f11819_0_transfer_ArrayAccess(EOS(STATIC_11819), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(ARRAY(i5168)), i5356) :|: TRUE f11819_0_transfer_ArrayAccess(EOS(STATIC_11819), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(ARRAY(i5168)), i5356) -> f11822_0_transfer_ArrayAccess(EOS(STATIC_11822), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(ARRAY(i5168)), i5356) :|: TRUE f11822_0_transfer_ArrayAccess(EOS(STATIC_11822), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), java.lang.Object(ARRAY(i5168)), i5356) -> f11826_0_transfer_FieldAccess(EOS(STATIC_11826), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8463) :|: i5356 < i5168 f11826_0_transfer_FieldAccess(EOS(STATIC_11826), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8443, i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443, i5338)), o8463) -> f11830_0_transfer_Load(EOS(STATIC_11830), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338)), o8443, i5356) :|: TRUE f11830_0_transfer_Load(EOS(STATIC_11830), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338)), o8443, i5356) -> f11832_0_transfer_Load(EOS(STATIC_11832), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338)), o8443, i5356, java.lang.Object(ARRAY(i5168))) :|: TRUE f11832_0_transfer_Load(EOS(STATIC_11832), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338)), o8443, i5356, java.lang.Object(ARRAY(i5168))) -> f11836_0_transfer_Load(EOS(STATIC_11836), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338)), o8443, java.lang.Object(ARRAY(i5168)), i5356) :|: TRUE f11836_0_transfer_Load(EOS(STATIC_11836), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338)), o8443, java.lang.Object(ARRAY(i5168)), i5356) -> f11839_0_transfer_ArrayAccess(EOS(STATIC_11839), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443, java.lang.Object(ARRAY(i5168)), i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338))) :|: TRUE f11839_0_transfer_ArrayAccess(EOS(STATIC_11839), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443, java.lang.Object(ARRAY(i5168)), i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338))) -> f11841_0_transfer_ArrayAccess(EOS(STATIC_11841), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443, java.lang.Object(ARRAY(i5168)), i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338))) :|: TRUE f11841_0_transfer_ArrayAccess(EOS(STATIC_11841), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443, java.lang.Object(ARRAY(i5168)), i5356, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8463, i5338))) -> f11845_0_transfer_Load(EOS(STATIC_11845), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443) :|: i5356 < i5168 f11845_0_transfer_Load(EOS(STATIC_11845), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443) -> f11849_0_transfer_Store(EOS(STATIC_11849), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443) :|: TRUE f11849_0_transfer_Store(EOS(STATIC_11849), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443) -> f11850_0_transfer_Load(EOS(STATIC_11850), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443) :|: TRUE f11850_0_transfer_Load(EOS(STATIC_11850), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443) -> f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, o8443, o8443) :|: TRUE f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8486sub), java.lang.Object(o8486sub)) -> f11856_0_transfer_NONNULL(EOS(STATIC_11856), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8486sub), java.lang.Object(o8486sub)) :|: TRUE f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, NULL, NULL) -> f11857_0_transfer_NONNULL(EOS(STATIC_11857), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, NULL, NULL) :|: TRUE f11856_0_transfer_NONNULL(EOS(STATIC_11856), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8486sub), java.lang.Object(o8486sub)) -> f11858_0_transfer_Load(EOS(STATIC_11858), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8486sub)) :|: TRUE f11858_0_transfer_Load(EOS(STATIC_11858), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8486sub)) -> f11766_0_transfer_Load(EOS(STATIC_11766), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, java.lang.Object(o8486sub)) :|: TRUE f11857_0_transfer_NONNULL(EOS(STATIC_11857), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, NULL, NULL) -> f11859_0_transfer_Inc(EOS(STATIC_11859), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) :|: TRUE f11859_0_transfer_Inc(EOS(STATIC_11859), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) -> f11862_0_transfer_JMP(EOS(STATIC_11862), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327 + 1) :|: TRUE f11862_0_transfer_JMP(EOS(STATIC_11862), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5374) -> f11865_0_transfer_Load(EOS(STATIC_11865), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5374) :|: TRUE f11865_0_transfer_Load(EOS(STATIC_11865), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5374) -> f11721_0_transfer_Load(EOS(STATIC_11721), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5374) :|: TRUE f11721_0_transfer_Load(EOS(STATIC_11721), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) -> f11722_0_transfer_Load(EOS(STATIC_11722), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, i5327) :|: TRUE f11746_0_transfer_NULL(EOS(STATIC_11746), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327, NULL, NULL) -> f11750_0_transfer_Inc(EOS(STATIC_11750), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) :|: TRUE f11750_0_transfer_Inc(EOS(STATIC_11750), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) -> f11859_0_transfer_Inc(EOS(STATIC_11859), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168, java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5168)), java.lang.Object(ARRAY(i5326)), i5168, i5327) :|: TRUE Combined rules. Obtained 4 IRulesP rules: f11722_0_transfer_Load(EOS(STATIC_11722), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0, i5327:0) -> f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0, o8443:0, o8443:0) :|: i5326:0 > -1 && i5327:0 < i5326:0 && i5168:0 > -1 && i5356:0 < i5168:0 f11722_0_transfer_Load(EOS(STATIC_11722), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0, i5327:0) -> f11722_0_transfer_Load(EOS(STATIC_11722), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0 + 1, i5327:0 + 1) :|: i5326:0 > -1 && i5327:0 < i5326:0 f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443:0, i5338:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o8443:0, i5338:0))) -> f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0, o8443:0, o8443:0) :|: i5168:0 > -1 && i5356:0 < i5168:0 f11853_0_transfer_NONNULL(EOS(STATIC_11853), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0, NULL, NULL) -> f11722_0_transfer_Load(EOS(STATIC_11722), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i5168:0, java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5168:0, i5327:0 + 1, i5327:0 + 1) :|: TRUE Filtered constant ground arguments: f11722_0_transfer_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) -> f11722_0_transfer_Load(x4, x5, x6, x7, x8, x9, x10) f11853_0_transfer_NONNULL(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) -> f11853_0_transfer_NONNULL(x4, x5, x6, x7, x8, x9, x10, x11) javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.HashMap$Entry(x1, x2, x3) -> javaUtilEx.HashMap$Entry(x2, x3) javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f11722_0_transfer_Load(x1, x2, x3, x4, x5, x6, x7) -> f11722_0_transfer_Load(x3, x4, x7) f11853_0_transfer_NONNULL(x1, x2, x3, x4, x5, x6, x7, x8) -> f11853_0_transfer_NONNULL(x3, x4, x6, x8) Filtered unneeded arguments: javaUtilEx.HashMap$Entry(x1, x2) -> javaUtilEx.HashMap$Entry(x1) Finished conversion. Obtained 4 rules.P rules: f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, i5168:0, i5326:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, o8443:0, i5168:0, i5326:0) :|: i5327:0 < i5326:0 && i5326:0 > -1 && i5356:0 < i5168:0 && i5168:0 > -1 f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, i5168:0, i5326:0) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0 + 1, i5168:0, i5326:0) :|: i5326:0 > -1 && i5327:0 < i5326:0 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, java.lang.Object(javaUtilEx.HashMap$Entry(o8443:0)), i5168:0, i5326:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, o8443:0, i5168:0, i5326:0) :|: i5168:0 > -1 && i5356:0 < i5168:0 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, NULL, i5168:0, i5326:0) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0 + 1, i5168:0, i5326:0) :|: TRUE ---------------------------------------- (9) Obligation: Rules: f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, i5168:0, i5326:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, o8443:0, i5168:0, i5326:0) :|: i5327:0 < i5326:0 && i5326:0 > -1 && i5356:0 < i5168:0 && i5168:0 > -1 f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2, x, x1) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2 + 1, x, x1) :|: x1 > -1 && x2 < x1 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, NULL, x8, x9) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10 + 1, x8, x9) :|: TRUE ---------------------------------------- (10) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (11) Obligation: Rules: f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, i5168:0, i5326:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, o8443:0, i5168:0, i5326:0) :|: i5327:0 < i5326:0 && i5326:0 > -1 && i5356:0 < i5168:0 && i5168:0 > -1 f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2, x, x1) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), arith, x, x1) :|: x1 > -1 && x2 < x1 && arith = x2 + 1 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x11)), java.lang.Object(ARRAY(x12)), x13, NULL, x11, x12) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x11)), java.lang.Object(ARRAY(x12)), x14, x11, x12) :|: TRUE && x14 = x13 + 1 ---------------------------------------- (12) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, i5168:0, i5326:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, o8443:0, i5168:0, i5326:0) :|: i5327:0 < i5326:0 && i5326:0 > -1 && i5356:0 < i5168:0 && i5168:0 > -1 (2) f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2, x, x1) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), arith, x, x1) :|: x1 > -1 && x2 < x1 && arith = x2 + 1 (3) f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 (4) f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x11)), java.lang.Object(ARRAY(x12)), x13, NULL, x11, x12) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x11)), java.lang.Object(ARRAY(x12)), x14, x11, x12) :|: TRUE && x14 = x13 + 1 Arcs: (1) -> (3), (4) (2) -> (1), (2) (3) -> (3), (4) (4) -> (1), (2) This digraph is fully evaluated! ---------------------------------------- (13) Obligation: Termination digraph: Nodes: (1) f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, i5168:0, i5326:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0)), java.lang.Object(ARRAY(i5326:0)), i5327:0, o8443:0, i5168:0, i5326:0) :|: i5327:0 < i5326:0 && i5326:0 > -1 && i5356:0 < i5168:0 && i5168:0 > -1 (2) f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2, x, x1) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), arith, x, x1) :|: x1 > -1 && x2 < x1 && arith = x2 + 1 (3) f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x11)), java.lang.Object(ARRAY(x12)), x13, NULL, x11, x12) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x11)), java.lang.Object(ARRAY(x12)), x14, x11, x12) :|: TRUE && x14 = x13 + 1 (4) f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 Arcs: (1) -> (3), (4) (2) -> (1), (2) (3) -> (1), (2) (4) -> (3), (4) This digraph is fully evaluated! ---------------------------------------- (14) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (15) Obligation: Rules: f11722_0_transfer_Load(java.lang.Object(ARRAY(x:0)), java.lang.Object(ARRAY(x1:0)), x2:0, x:0, x1:0) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x:0)), java.lang.Object(ARRAY(x1:0)), x2:0 + 1, x:0, x1:0) :|: x1:0 > -1 && x2:0 < x1:0 f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x11:0)), java.lang.Object(ARRAY(x12:0)), x13:0, NULL, x11:0, x12:0) -> f11722_0_transfer_Load(java.lang.Object(ARRAY(x11:0)), java.lang.Object(ARRAY(x12:0)), x13:0 + 1, x11:0, x12:0) :|: TRUE f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 f11722_0_transfer_Load(java.lang.Object(ARRAY(i5168:0:0)), java.lang.Object(ARRAY(i5326:0:0)), i5327:0:0, i5168:0:0, i5326:0:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(i5168:0:0)), java.lang.Object(ARRAY(i5326:0:0)), i5327:0:0, o8443:0:0, i5168:0:0, i5326:0:0) :|: i5356:0:0 < i5168:0:0 && i5168:0:0 > -1 && i5326:0:0 > -1 && i5327:0:0 < i5326:0:0 ---------------------------------------- (16) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f11722_0_transfer_Load(VARIABLE, VARIABLE, INTEGER, VARIABLE, VARIABLE) java.lang.Object(VARIABLE) ARRAY(VARIABLE) f11853_0_transfer_NONNULL(VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE) NULL() javaUtilEx.HashMap$Entry(VARIABLE) Replaced non-predefined constructor symbols by 0.The following proof was generated: # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty Termination of the given IntTRS could not be shown: - IntTRS - PolynomialOrderProcessor Rules: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) f11853_0_transfer_NONNULL(c5, c6, x13:0, c7, x11:0, x12:0) -> f11722_0_transfer_Load(c8, c9, c10, x11:0, x12:0) :|: c10 = x13:0 + 1 && (c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0)))) && TRUE f11853_0_transfer_NONNULL(c11, c12, x5:0, c13, x3:0, x4:0) -> f11853_0_transfer_NONNULL(c14, c15, x5:0, x6:0, x3:0, x4:0) :|: c15 = 0 && (c14 = 0 && (c13 = 0 && (c12 = 0 && c11 = 0))) && (x3:0 > -1 && x7:0 < x3:0) f11722_0_transfer_Load(c16, c17, i5327:0:0, i5168:0:0, i5326:0:0) -> f11853_0_transfer_NONNULL(c18, c19, i5327:0:0, o8443:0:0, i5168:0:0, i5326:0:0) :|: c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0)) && (i5356:0:0 < i5168:0:0 && i5168:0:0 > -1 && i5326:0:0 > -1 && i5327:0:0 < i5326:0:0) Found the following polynomial interpretation: [f11722_0_transfer_Load(x, x1, x2, x3, x4)] = c*x + c1*x1 - x2 + x3 + x4 [f11853_0_transfer_NONNULL(x5, x6, x7, x8, x9, x10)] = -1 + x10 + c5*x5 + c6*x6 - x7 + x9 The following rules are decreasing: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) f11722_0_transfer_Load(c16, c17, i5327:0:0, i5168:0:0, i5326:0:0) -> f11853_0_transfer_NONNULL(c18, c19, i5327:0:0, o8443:0:0, i5168:0:0, i5326:0:0) :|: c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0)) && (i5356:0:0 < i5168:0:0 && i5168:0:0 > -1 && i5326:0:0 > -1 && i5327:0:0 < i5326:0:0) The following rules are bounded: f11722_0_transfer_Load(c16, c17, i5327:0:0, i5168:0:0, i5326:0:0) -> f11853_0_transfer_NONNULL(c18, c19, i5327:0:0, o8443:0:0, i5168:0:0, i5326:0:0) :|: c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0)) && (i5356:0:0 < i5168:0:0 && i5168:0:0 > -1 && i5326:0:0 > -1 && i5327:0:0 < i5326:0:0) - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof Rules: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) f11853_0_transfer_NONNULL(c5, c6, x13:0, c7, x11:0, x12:0) -> f11722_0_transfer_Load(c8, c9, c10, x11:0, x12:0) :|: c10 = x13:0 + 1 && (c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0)))) && TRUE f11853_0_transfer_NONNULL(c11, c12, x5:0, c13, x3:0, x4:0) -> f11853_0_transfer_NONNULL(c14, c15, x5:0, x6:0, x3:0, x4:0) :|: c15 = 0 && (c14 = 0 && (c13 = 0 && (c12 = 0 && c11 = 0))) && (x3:0 > -1 && x7:0 < x3:0) Interpretation: [ f11722_0_transfer_Load ] = -1 [ f11853_0_transfer_NONNULL ] = 0 The following rules are decreasing: f11853_0_transfer_NONNULL(c5, c6, x13:0, c7, x11:0, x12:0) -> f11722_0_transfer_Load(c8, c9, c10, x11:0, x12:0) :|: c10 = x13:0 + 1 && (c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0)))) && TRUE The following rules are bounded: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) f11853_0_transfer_NONNULL(c5, c6, x13:0, c7, x11:0, x12:0) -> f11722_0_transfer_Load(c8, c9, c10, x11:0, x12:0) :|: c10 = x13:0 + 1 && (c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0)))) && TRUE f11853_0_transfer_NONNULL(c11, c12, x5:0, c13, x3:0, x4:0) -> f11853_0_transfer_NONNULL(c14, c15, x5:0, x6:0, x3:0, x4:0) :|: c15 = 0 && (c14 = 0 && (c13 = 0 && (c12 = 0 && c11 = 0))) && (x3:0 > -1 && x7:0 < x3:0) - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof - IntTRS - RankingReductionPairProof Rules: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) f11853_0_transfer_NONNULL(c11, c12, x5:0, c13, x3:0, x4:0) -> f11853_0_transfer_NONNULL(c14, c15, x5:0, x6:0, x3:0, x4:0) :|: c15 = 0 && (c14 = 0 && (c13 = 0 && (c12 = 0 && c11 = 0))) && (x3:0 > -1 && x7:0 < x3:0) Interpretation: [ f11722_0_transfer_Load ] = f11722_0_transfer_Load_5 + -1*f11722_0_transfer_Load_3 [ f11853_0_transfer_NONNULL ] = 0 The following rules are decreasing: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) The following rules are bounded: f11722_0_transfer_Load(c, c1, x2:0, x:0, x1:0) -> f11722_0_transfer_Load(c2, c3, c4, x:0, x1:0) :|: c4 = x2:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x1:0 > -1 && x2:0 < x1:0) f11853_0_transfer_NONNULL(c11, c12, x5:0, c13, x3:0, x4:0) -> f11853_0_transfer_NONNULL(c14, c15, x5:0, x6:0, x3:0, x4:0) :|: c15 = 0 && (c14 = 0 && (c13 = 0 && (c12 = 0 && c11 = 0))) && (x3:0 > -1 && x7:0 < x3:0) - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof - IntTRS - RankingReductionPairProof - IntTRS Rules: f11853_0_transfer_NONNULL(c11, c12, x5:0, c13, x3:0, x4:0) -> f11853_0_transfer_NONNULL(c14, c15, x5:0, x6:0, x3:0, x4:0) :|: c15 = 0 && (c14 = 0 && (c13 = 0 && (c12 = 0 && c11 = 0))) && (x3:0 > -1 && x7:0 < x3:0) ---------------------------------------- (17) Obligation: Rules: f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 ---------------------------------------- (18) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (19) Obligation: Termination digraph: Nodes: (1) f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (20) IntTRSUnneededArgumentFilterProof (EQUIVALENT) Some arguments are removed because they cannot influence termination. We removed arguments according to the following replacements: f11853_0_transfer_NONNULL(x1, x2, x3, x4, x5, x6) -> f11853_0_transfer_NONNULL(x1, x2, x4, x5, x6) ---------------------------------------- (21) Obligation: Rules: f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 ---------------------------------------- (22) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f11853_0_transfer_NONNULL(VARIABLE, VARIABLE, VARIABLE, INTEGER, VARIABLE) java.lang.Object(VARIABLE) ARRAY(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE) Removed predefined arithmetic. ---------------------------------------- (23) Obligation: Rules: f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x4:0) ---------------------------------------- (24) IRSwTToQDPProof (SOUND) Removed the integers and created a QDP-Problem. ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x4:0) R is empty. Q is empty. We have to consider all (P,Q,R)-chains. ---------------------------------------- (26) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x4:0) -> f11853_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x4:0) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 2 > 4, 4 >= 4 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; SCC calls the following helper methods: javaUtilEx.Content.equals(Ljava/lang/Object;)Z Performed SCC analyses: *Used field analysis yielded the following read fields: *javaUtilEx.HashMap$Entry: [hash, next, key] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (29) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 57 IRulesP rules: f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(o7443sub), java.lang.Object(o7443sub)) -> f11002_0_put_NULL(EOS(STATIC_11002), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(o7443sub), java.lang.Object(o7443sub)) :|: TRUE f11002_0_put_NULL(EOS(STATIC_11002), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(o7443sub), java.lang.Object(o7443sub)) -> f11006_0_put_Load(EOS(STATIC_11006), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(o7443sub)) :|: TRUE f11006_0_put_Load(EOS(STATIC_11006), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(o7443sub)) -> f11011_0_put_FieldAccess(EOS(STATIC_11011), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(o7443sub), java.lang.Object(o7443sub)) :|: TRUE f11011_0_put_FieldAccess(EOS(STATIC_11011), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) -> f11015_0_put_FieldAccess(EOS(STATIC_11015), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) :|: TRUE f11015_0_put_FieldAccess(EOS(STATIC_11015), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) -> f11019_0_put_Load(EOS(STATIC_11019), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), i4762) :|: TRUE f11019_0_put_Load(EOS(STATIC_11019), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), i4762) -> f11023_0_put_NE(EOS(STATIC_11023), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), i4762, i4733) :|: TRUE f11023_0_put_NE(EOS(STATIC_11023), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), i4762, i4733) -> f11028_0_put_NE(EOS(STATIC_11028), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), i4762, i4733) :|: !(i4762 = i4733) f11023_0_put_NE(EOS(STATIC_11023), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), i4733, i4733) -> f11029_0_put_NE(EOS(STATIC_11029), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), i4733, i4733) :|: i4762 = i4733 f11028_0_put_NE(EOS(STATIC_11028), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447)), i4762, i4733) -> f11034_0_put_Load(EOS(STATIC_11034), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) :|: !(i4762 = i4733) f11034_0_put_Load(EOS(STATIC_11034), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) -> f11040_0_put_FieldAccess(EOS(STATIC_11040), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) :|: TRUE f11040_0_put_FieldAccess(EOS(STATIC_11040), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762, o7449, o7447))) -> f11046_0_put_Store(EOS(STATIC_11046), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11046_0_put_Store(EOS(STATIC_11046), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) -> f11052_0_put_JMP(EOS(STATIC_11052), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11052_0_put_JMP(EOS(STATIC_11052), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) -> f11058_0_put_Load(EOS(STATIC_11058), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11058_0_put_Load(EOS(STATIC_11058), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) -> f10994_0_put_Load(EOS(STATIC_10994), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f10994_0_put_Load(EOS(STATIC_10994), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7428) -> f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7428, o7428) :|: TRUE f11029_0_put_NE(EOS(STATIC_11029), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), i4733, i4733) -> f11035_0_put_Load(EOS(STATIC_11035), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447))) :|: TRUE f11035_0_put_Load(EOS(STATIC_11035), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447))) -> f11041_0_put_FieldAccess(EOS(STATIC_11041), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447))) :|: TRUE f11041_0_put_FieldAccess(EOS(STATIC_11041), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447))) -> f11047_0_put_Duplicate(EOS(STATIC_11047), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447) :|: TRUE f11047_0_put_Duplicate(EOS(STATIC_11047), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447) -> f11053_0_put_Store(EOS(STATIC_11053), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447, o7447) :|: TRUE f11053_0_put_Store(EOS(STATIC_11053), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447, o7447) -> f11059_0_put_Load(EOS(STATIC_11059), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447, o7447) :|: TRUE f11059_0_put_Load(EOS(STATIC_11059), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447, o7447) -> f11064_0_put_EQ(EOS(STATIC_11064), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, o7447)), o7447, o7447, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11064_0_put_EQ(EOS(STATIC_11064), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11068_0_put_EQ(EOS(STATIC_11068), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11064_0_put_EQ(EOS(STATIC_11064), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11069_0_put_EQ(EOS(STATIC_11069), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11068_0_put_EQ(EOS(STATIC_11068), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11074_0_put_Load(EOS(STATIC_11074), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub)) :|: TRUE f11074_0_put_Load(EOS(STATIC_11074), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub)) -> f11079_0_put_Load(EOS(STATIC_11079), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11079_0_put_Load(EOS(STATIC_11079), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11085_0_put_InvokeMethod(EOS(STATIC_11085), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) :|: TRUE f11085_0_put_InvokeMethod(EOS(STATIC_11085), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) -> f11090_0_equals_Load(EOS(STATIC_11090), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) :|: TRUE f11085_0_put_InvokeMethod(EOS(STATIC_11085), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) -> f11090_1_equals_Load(EOS(STATIC_11090), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) :|: TRUE f11090_0_equals_Load(EOS(STATIC_11090), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) -> f12069_0_equals_Load(EOS(STATIC_12069), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7471sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub)) :|: TRUE f11116_0_equals_Return(EOS(STATIC_11116), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub))), matching1) -> f11127_0_put_EQ(EOS(STATIC_11127), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub))), 0) :|: TRUE && matching1 = 0 f11127_0_put_EQ(EOS(STATIC_11127), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub))), matching1) -> f11142_0_put_Load(EOS(STATIC_11142), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub)))) :|: TRUE && matching1 = 0 f11142_0_put_Load(EOS(STATIC_11142), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub)))) -> f11151_0_put_FieldAccess(EOS(STATIC_11151), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub)))) :|: TRUE f11151_0_put_FieldAccess(EOS(STATIC_11151), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub)))) -> f11161_0_put_Store(EOS(STATIC_11161), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11161_0_put_Store(EOS(STATIC_11161), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) -> f11046_0_put_Store(EOS(STATIC_11046), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11117_0_equals_Return(EOS(STATIC_11117), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f11119_0_equals_Return(EOS(STATIC_11119), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), 0) :|: TRUE && matching1 = 0 f11119_0_equals_Return(EOS(STATIC_11119), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC)))), i4883) -> f11128_0_put_EQ(EOS(STATIC_11128), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC)))), i4883) :|: TRUE f11128_0_put_EQ(EOS(STATIC_11128), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f11144_0_put_EQ(EOS(STATIC_11144), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC)))), 0) :|: TRUE && matching1 = 0 f11144_0_put_EQ(EOS(STATIC_11144), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f11153_0_put_Load(EOS(STATIC_11153), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC))))) :|: TRUE && matching1 = 0 f11153_0_put_Load(EOS(STATIC_11153), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC))))) -> f11163_0_put_FieldAccess(EOS(STATIC_11163), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC))))) :|: TRUE f11163_0_put_FieldAccess(EOS(STATIC_11163), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7670, java.lang.Object(javaUtilEx.Content(EOC))))) -> f11171_0_put_Store(EOS(STATIC_11171), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7670) :|: TRUE f11171_0_put_Store(EOS(STATIC_11171), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7670) -> f11046_0_put_Store(EOS(STATIC_11046), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7670) :|: TRUE f11118_0_equals_Return(EOS(STATIC_11118), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f11119_0_equals_Return(EOS(STATIC_11119), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), 1) :|: TRUE && matching1 = 1 f11069_0_put_EQ(EOS(STATIC_11069), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11075_0_put_Load(EOS(STATIC_11075), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL) :|: TRUE f11075_0_put_Load(EOS(STATIC_11075), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL) -> f11080_0_put_Load(EOS(STATIC_11080), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11080_0_put_Load(EOS(STATIC_11080), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11086_0_put_InvokeMethod(EOS(STATIC_11086), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11086_0_put_InvokeMethod(EOS(STATIC_11086), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11091_0_equals_Load(EOS(STATIC_11091), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11086_0_put_InvokeMethod(EOS(STATIC_11086), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11091_1_equals_Load(EOS(STATIC_11091), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11091_0_equals_Load(EOS(STATIC_11091), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f12125_0_equals_Load(EOS(STATIC_12125), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11121_0_equals_Return(EOS(STATIC_11121), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), matching1) -> f11129_0_put_EQ(EOS(STATIC_11129), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), 0) :|: TRUE && matching1 = 0 f11129_0_put_EQ(EOS(STATIC_11129), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), matching1) -> f11145_0_put_Load(EOS(STATIC_11145), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL))) :|: TRUE && matching1 = 0 f11145_0_put_Load(EOS(STATIC_11145), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL))) -> f11154_0_put_FieldAccess(EOS(STATIC_11154), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL))) :|: TRUE f11154_0_put_FieldAccess(EOS(STATIC_11154), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL))) -> f11164_0_put_Store(EOS(STATIC_11164), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11164_0_put_Store(EOS(STATIC_11164), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) -> f11046_0_put_Store(EOS(STATIC_11046), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, o7449) :|: TRUE f11090_1_equals_Load(EOS(STATIC_11090), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7590sub)) -> f11116_0_equals_Return(EOS(STATIC_11116), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(o7590sub))), 0) :|: TRUE f11090_1_equals_Load(EOS(STATIC_11090), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11117_0_equals_Return(EOS(STATIC_11117), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), 0) :|: TRUE f11090_1_equals_Load(EOS(STATIC_11090), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11118_0_equals_Return(EOS(STATIC_11118), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, java.lang.Object(javaUtilEx.Content(EOC)))), 1) :|: TRUE f11091_1_equals_Load(EOS(STATIC_11091), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11121_0_equals_Return(EOS(STATIC_11121), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733, o7449, NULL)), 0) :|: TRUE Combined rules. Obtained 7 IRulesP rules: f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, NULL)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, NULL))) -> f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, o7449:0, o7449:0) :|: TRUE f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762:0, o7449:0, o7447:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762:0, o7449:0, o7447:0))) -> f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, o7449:0, o7449:0) :|: i4762:0 < i4733:0 f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762:0, o7449:0, o7447:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4762:0, o7449:0, o7447:0))) -> f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, o7449:0, o7449:0) :|: i4762:0 > i4733:0 f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(javaUtilEx.Content(EOC))))) -> f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, o7449:0, o7449:0) :|: TRUE f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(o7471sub:0))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(o7471sub:0)))) -> f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, o7449:0, o7449:0) :|: TRUE Removed following non-SCC rules: f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, NULL)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, NULL))) -> f12125_0_equals_Load(EOS(STATIC_12125), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f10998_0_put_NULL(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(o7471sub:0))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(o7471sub:0)))) -> f12069_0_equals_Load(EOS(STATIC_12069), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub:0), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i4733:0, o7449:0, java.lang.Object(o7471sub:0))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7471sub:0)) :|: TRUE Filtered constant ground arguments: f10998_0_put_NULL(x1, x2, x3, x4, x5, x6, x7) -> f10998_0_put_NULL(x5, x6, x7) EOS(x1) -> EOS javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.Content(x1) -> javaUtilEx.Content javaUtilEx.HashMap$Entry(x1, x2, x3, x4) -> javaUtilEx.HashMap$Entry(x2, x3, x4) javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f10998_0_put_NULL(x1, x2, x3) -> f10998_0_put_NULL(x1, x3) Finished conversion. Obtained 5 rules.P rules: f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, NULL))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4762:0, o7449:0, o7447:0))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: i4762:0 < i4733:0 f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4762:0, o7449:0, o7447:0))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: i4762:0 > i4733:0 f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, java.lang.Object(o7471sub:0)))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE ---------------------------------------- (30) Obligation: Rules: f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, NULL))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE f10998_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10998_0_put_NULL(x, x2) :|: x1 < x f10998_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10998_0_put_NULL(x4, x6) :|: x5 > x4 f10998_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8, x9) :|: TRUE f10998_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10998_0_put_NULL(x10, x11) :|: TRUE ---------------------------------------- (31) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (32) Obligation: Rules: f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, NULL))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE f10998_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10998_0_put_NULL(x, x2) :|: x1 < x f10998_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10998_0_put_NULL(x4, x6) :|: x5 > x4 f10998_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8, x9) :|: TRUE f10998_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10998_0_put_NULL(x10, x11) :|: TRUE ---------------------------------------- (33) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, NULL))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE (2) f10998_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10998_0_put_NULL(x, x2) :|: x1 < x (3) f10998_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10998_0_put_NULL(x4, x6) :|: x5 > x4 (4) f10998_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8, x9) :|: TRUE (5) f10998_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10998_0_put_NULL(x10, x11) :|: TRUE Arcs: (1) -> (1), (2), (3), (4), (5) (2) -> (1), (2), (3), (4), (5) (3) -> (1), (2), (3), (4), (5) (4) -> (1), (2), (3), (4), (5) (5) -> (1), (2), (3), (4), (5) This digraph is fully evaluated! ---------------------------------------- (34) Obligation: Termination digraph: Nodes: (1) f10998_0_put_NULL(i4733:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0, o7449:0, NULL))) -> f10998_0_put_NULL(i4733:0, o7449:0) :|: TRUE (2) f10998_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10998_0_put_NULL(x, x2) :|: x1 < x (3) f10998_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10998_0_put_NULL(x4, x6) :|: x5 > x4 (4) f10998_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8, x9) :|: TRUE (5) f10998_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10998_0_put_NULL(x10, x11) :|: TRUE Arcs: (1) -> (1), (2), (3), (4), (5) (2) -> (1), (2), (3), (4), (5) (3) -> (1), (2), (3), (4), (5) (4) -> (1), (2), (3), (4), (5) (5) -> (1), (2), (3), (4), (5) This digraph is fully evaluated! ---------------------------------------- (35) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (36) Obligation: Rules: f10998_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8:0, x9:0) :|: TRUE f10998_0_put_NULL(x:0, java.lang.Object(javaUtilEx.HashMap$Entry(x1:0, x2:0, x3:0))) -> f10998_0_put_NULL(x:0, x2:0) :|: x:0 > x1:0 f10998_0_put_NULL(i4733:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0:0, o7449:0:0, NULL))) -> f10998_0_put_NULL(i4733:0:0, o7449:0:0) :|: TRUE f10998_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10998_0_put_NULL(x10:0, x11:0) :|: TRUE f10998_0_put_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10998_0_put_NULL(x4:0, x6:0) :|: x5:0 > x4:0 ---------------------------------------- (37) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f10998_0_put_NULL(VARIABLE, VARIABLE) java.lang.Object(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE, VARIABLE, VARIABLE) javaUtilEx.Content() NULL() Removed predefined arithmetic. ---------------------------------------- (38) Obligation: Rules: f10998_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8:0, x9:0) f10998_0_put_NULL(x:0, java.lang.Object(javaUtilEx.HashMap$Entry(x1:0, x2:0, x3:0))) -> f10998_0_put_NULL(x:0, x2:0) f10998_0_put_NULL(i4733:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0:0, o7449:0:0, NULL))) -> f10998_0_put_NULL(i4733:0:0, o7449:0:0) f10998_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10998_0_put_NULL(x10:0, x11:0) ---------------------------------------- (39) IRSwTToQDPProof (SOUND) Removed the integers and created a QDP-Problem. ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: f10998_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8:0, x9:0) f10998_0_put_NULL(x:0, java.lang.Object(javaUtilEx.HashMap$Entry(x1:0, x2:0, x3:0))) -> f10998_0_put_NULL(x:0, x2:0) f10998_0_put_NULL(i4733:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0:0, o7449:0:0, NULL))) -> f10998_0_put_NULL(i4733:0:0, o7449:0:0) f10998_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10998_0_put_NULL(x10:0, x11:0) R is empty. Q is empty. We have to consider all (P,Q,R)-chains. ---------------------------------------- (41) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *f10998_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10998_0_put_NULL(x8:0, x9:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 *f10998_0_put_NULL(x:0, java.lang.Object(javaUtilEx.HashMap$Entry(x1:0, x2:0, x3:0))) -> f10998_0_put_NULL(x:0, x2:0) The graph contains the following edges 1 >= 1, 2 > 2 *f10998_0_put_NULL(i4733:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i4733:0:0, o7449:0:0, NULL))) -> f10998_0_put_NULL(i4733:0:0, o7449:0:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 *f10998_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10998_0_put_NULL(x10:0, x11:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 ---------------------------------------- (42) YES ---------------------------------------- (43) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.HashMap.removeEntryForKey(Ljava/lang/Object;)LjavaUtilEx/HashMap$Entry; SCC calls the following helper methods: javaUtilEx.Content.equals(Ljava/lang/Object;)Z Performed SCC analyses: *Used field analysis yielded the following read fields: *javaUtilEx.HashMap$Entry: [next, hash, key] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (44) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 74 IRulesP rules: f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(o7418sub), java.lang.Object(o7418sub)) -> f10986_0_removeEntryForKey_NULL(EOS(STATIC_10986), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(o7418sub), java.lang.Object(o7418sub)) :|: TRUE f10986_0_removeEntryForKey_NULL(EOS(STATIC_10986), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(o7418sub), java.lang.Object(o7418sub)) -> f10991_0_removeEntryForKey_Load(EOS(STATIC_10991), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(o7418sub)) :|: TRUE f10991_0_removeEntryForKey_Load(EOS(STATIC_10991), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(o7418sub)) -> f10996_0_removeEntryForKey_FieldAccess(EOS(STATIC_10996), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(o7418sub), java.lang.Object(o7418sub)) :|: TRUE f10996_0_removeEntryForKey_FieldAccess(EOS(STATIC_10996), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) -> f11000_0_removeEntryForKey_FieldAccess(EOS(STATIC_11000), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) :|: TRUE f11000_0_removeEntryForKey_FieldAccess(EOS(STATIC_11000), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) -> f11005_0_removeEntryForKey_Store(EOS(STATIC_11005), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f11005_0_removeEntryForKey_Store(EOS(STATIC_11005), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f11009_0_removeEntryForKey_Load(EOS(STATIC_11009), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f11009_0_removeEntryForKey_Load(EOS(STATIC_11009), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f11014_0_removeEntryForKey_FieldAccess(EOS(STATIC_11014), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) :|: TRUE f11014_0_removeEntryForKey_FieldAccess(EOS(STATIC_11014), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) -> f11018_0_removeEntryForKey_Load(EOS(STATIC_11018), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, i4757) :|: TRUE f11018_0_removeEntryForKey_Load(EOS(STATIC_11018), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, i4757) -> f11022_0_removeEntryForKey_NE(EOS(STATIC_11022), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, i4757, i4712) :|: TRUE f11022_0_removeEntryForKey_NE(EOS(STATIC_11022), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, i4757, i4712) -> f11026_0_removeEntryForKey_NE(EOS(STATIC_11026), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, i4757, i4712) :|: !(i4757 = i4712) f11022_0_removeEntryForKey_NE(EOS(STATIC_11022), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, i4712, i4712) -> f11027_0_removeEntryForKey_NE(EOS(STATIC_11027), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, i4712, i4712) :|: i4757 = i4712 f11026_0_removeEntryForKey_NE(EOS(STATIC_11026), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442, i4757, i4712) -> f11032_0_removeEntryForKey_Load(EOS(STATIC_11032), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: !(i4757 = i4712) f11032_0_removeEntryForKey_Load(EOS(STATIC_11032), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f11038_0_removeEntryForKey_Store(EOS(STATIC_11038), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) :|: TRUE f11038_0_removeEntryForKey_Store(EOS(STATIC_11038), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440))) -> f11044_0_removeEntryForKey_Load(EOS(STATIC_11044), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f11044_0_removeEntryForKey_Load(EOS(STATIC_11044), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f11050_0_removeEntryForKey_Store(EOS(STATIC_11050), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f11050_0_removeEntryForKey_Store(EOS(STATIC_11050), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f11056_0_removeEntryForKey_JMP(EOS(STATIC_11056), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f11056_0_removeEntryForKey_JMP(EOS(STATIC_11056), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f11062_0_removeEntryForKey_Load(EOS(STATIC_11062), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f11062_0_removeEntryForKey_Load(EOS(STATIC_11062), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) -> f10976_0_removeEntryForKey_Load(EOS(STATIC_10976), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4757, o7440)), o7442) :|: TRUE f10976_0_removeEntryForKey_Load(EOS(STATIC_10976), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, o7405) -> f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, o7405, o7405) :|: TRUE f11027_0_removeEntryForKey_NE(EOS(STATIC_11027), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, i4712, i4712) -> f11033_0_removeEntryForKey_Load(EOS(STATIC_11033), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442) :|: TRUE f11033_0_removeEntryForKey_Load(EOS(STATIC_11033), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442) -> f11039_0_removeEntryForKey_FieldAccess(EOS(STATIC_11039), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440))) :|: TRUE f11039_0_removeEntryForKey_FieldAccess(EOS(STATIC_11039), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440))) -> f11045_0_removeEntryForKey_Duplicate(EOS(STATIC_11045), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440) :|: TRUE f11045_0_removeEntryForKey_Duplicate(EOS(STATIC_11045), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440) -> f11051_0_removeEntryForKey_Store(EOS(STATIC_11051), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440, o7440) :|: TRUE f11051_0_removeEntryForKey_Store(EOS(STATIC_11051), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440, o7440) -> f11057_0_removeEntryForKey_Load(EOS(STATIC_11057), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440, o7440) :|: TRUE f11057_0_removeEntryForKey_Load(EOS(STATIC_11057), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440, o7440) -> f11063_0_removeEntryForKey_EQ(EOS(STATIC_11063), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, o7440)), o7442, o7440, o7440, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11063_0_removeEntryForKey_EQ(EOS(STATIC_11063), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11066_0_removeEntryForKey_EQ(EOS(STATIC_11066), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11063_0_removeEntryForKey_EQ(EOS(STATIC_11063), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11067_0_removeEntryForKey_EQ(EOS(STATIC_11067), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11066_0_removeEntryForKey_EQ(EOS(STATIC_11066), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11072_0_removeEntryForKey_Load(EOS(STATIC_11072), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub)) :|: TRUE f11072_0_removeEntryForKey_Load(EOS(STATIC_11072), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub)) -> f11077_0_removeEntryForKey_NULL(EOS(STATIC_11077), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11077_0_removeEntryForKey_NULL(EOS(STATIC_11077), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11083_0_removeEntryForKey_Load(EOS(STATIC_11083), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub)) :|: TRUE f11083_0_removeEntryForKey_Load(EOS(STATIC_11083), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub)) -> f11088_0_removeEntryForKey_Load(EOS(STATIC_11088), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11088_0_removeEntryForKey_Load(EOS(STATIC_11088), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(o7470sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f11095_0_removeEntryForKey_InvokeMethod(EOS(STATIC_11095), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) :|: TRUE f11095_0_removeEntryForKey_InvokeMethod(EOS(STATIC_11095), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) -> f11102_0_equals_Load(EOS(STATIC_11102), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub), o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) :|: TRUE f11095_0_removeEntryForKey_InvokeMethod(EOS(STATIC_11095), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) -> f11102_1_equals_Load(EOS(STATIC_11102), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) :|: TRUE f11102_0_equals_Load(EOS(STATIC_11102), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub), o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) -> f12273_0_equals_Load(EOS(STATIC_12273), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub), o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7470sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub)) :|: TRUE f11133_0_equals_Return(EOS(STATIC_11133), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442, matching1) -> f11148_0_removeEntryForKey_EQ(EOS(STATIC_11148), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442, 0) :|: TRUE && matching1 = 0 f11148_0_removeEntryForKey_EQ(EOS(STATIC_11148), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442, matching1) -> f11157_0_removeEntryForKey_Load(EOS(STATIC_11157), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) :|: TRUE && matching1 = 0 f11157_0_removeEntryForKey_Load(EOS(STATIC_11157), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) -> f11166_0_removeEntryForKey_Store(EOS(STATIC_11166), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub)))) :|: TRUE f11166_0_removeEntryForKey_Store(EOS(STATIC_11166), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub)))) -> f11174_0_removeEntryForKey_Load(EOS(STATIC_11174), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) :|: TRUE f11174_0_removeEntryForKey_Load(EOS(STATIC_11174), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) -> f11181_0_removeEntryForKey_Store(EOS(STATIC_11181), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) :|: TRUE f11181_0_removeEntryForKey_Store(EOS(STATIC_11181), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) -> f11187_0_removeEntryForKey_JMP(EOS(STATIC_11187), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) :|: TRUE f11187_0_removeEntryForKey_JMP(EOS(STATIC_11187), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) -> f11194_0_removeEntryForKey_Load(EOS(STATIC_11194), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) :|: TRUE f11194_0_removeEntryForKey_Load(EOS(STATIC_11194), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) -> f10976_0_removeEntryForKey_Load(EOS(STATIC_10976), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442) :|: TRUE f11134_0_equals_Return(EOS(STATIC_11134), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, matching1) -> f11136_0_equals_Return(EOS(STATIC_11136), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, 0) :|: TRUE && matching1 = 0 f11136_0_equals_Return(EOS(STATIC_11136), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7836, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839, i4957) -> f11149_0_removeEntryForKey_EQ(EOS(STATIC_11149), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7836, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839, i4957) :|: TRUE f11149_0_removeEntryForKey_EQ(EOS(STATIC_11149), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7836, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839, matching1) -> f11159_0_removeEntryForKey_EQ(EOS(STATIC_11159), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7836, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839, 0) :|: TRUE && matching1 = 0 f11159_0_removeEntryForKey_EQ(EOS(STATIC_11159), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7836, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839, matching1) -> f11168_0_removeEntryForKey_Load(EOS(STATIC_11168), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) :|: TRUE && matching1 = 0 f11168_0_removeEntryForKey_Load(EOS(STATIC_11168), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) -> f11176_0_removeEntryForKey_Store(EOS(STATIC_11176), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7839, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC))))) :|: TRUE f11176_0_removeEntryForKey_Store(EOS(STATIC_11176), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7839, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC))))) -> f11183_0_removeEntryForKey_Load(EOS(STATIC_11183), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) :|: TRUE f11183_0_removeEntryForKey_Load(EOS(STATIC_11183), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) -> f11189_0_removeEntryForKey_Store(EOS(STATIC_11189), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) :|: TRUE f11189_0_removeEntryForKey_Store(EOS(STATIC_11189), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) -> f11196_0_removeEntryForKey_JMP(EOS(STATIC_11196), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) :|: TRUE f11196_0_removeEntryForKey_JMP(EOS(STATIC_11196), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) -> f11201_0_removeEntryForKey_Load(EOS(STATIC_11201), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) :|: TRUE f11201_0_removeEntryForKey_Load(EOS(STATIC_11201), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) -> f10976_0_removeEntryForKey_Load(EOS(STATIC_10976), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7839, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7839) :|: TRUE f11135_0_equals_Return(EOS(STATIC_11135), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, matching1) -> f11136_0_equals_Return(EOS(STATIC_11136), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, 1) :|: TRUE && matching1 = 1 f11067_0_removeEntryForKey_EQ(EOS(STATIC_11067), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11073_0_removeEntryForKey_Load(EOS(STATIC_11073), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL) :|: TRUE f11073_0_removeEntryForKey_Load(EOS(STATIC_11073), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL) -> f11078_0_removeEntryForKey_NULL(EOS(STATIC_11078), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11078_0_removeEntryForKey_NULL(EOS(STATIC_11078), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11084_0_removeEntryForKey_Load(EOS(STATIC_11084), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL) :|: TRUE f11084_0_removeEntryForKey_Load(EOS(STATIC_11084), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL) -> f11089_0_removeEntryForKey_Load(EOS(STATIC_11089), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11089_0_removeEntryForKey_Load(EOS(STATIC_11089), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f11096_0_removeEntryForKey_InvokeMethod(EOS(STATIC_11096), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11096_0_removeEntryForKey_InvokeMethod(EOS(STATIC_11096), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11103_0_equals_Load(EOS(STATIC_11103), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11096_0_removeEntryForKey_InvokeMethod(EOS(STATIC_11096), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11103_1_equals_Load(EOS(STATIC_11103), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11103_0_equals_Load(EOS(STATIC_11103), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f12345_0_equals_Load(EOS(STATIC_12345), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11138_0_equals_Return(EOS(STATIC_11138), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, matching1) -> f11150_0_removeEntryForKey_EQ(EOS(STATIC_11150), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, 0) :|: TRUE && matching1 = 0 f11150_0_removeEntryForKey_EQ(EOS(STATIC_11150), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, matching1) -> f11160_0_removeEntryForKey_Load(EOS(STATIC_11160), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) :|: TRUE && matching1 = 0 f11160_0_removeEntryForKey_Load(EOS(STATIC_11160), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) -> f11169_0_removeEntryForKey_Store(EOS(STATIC_11169), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL))) :|: TRUE f11169_0_removeEntryForKey_Store(EOS(STATIC_11169), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7442, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL))) -> f11177_0_removeEntryForKey_Load(EOS(STATIC_11177), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) :|: TRUE f11177_0_removeEntryForKey_Load(EOS(STATIC_11177), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) -> f11184_0_removeEntryForKey_Store(EOS(STATIC_11184), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) :|: TRUE f11184_0_removeEntryForKey_Store(EOS(STATIC_11184), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) -> f11190_0_removeEntryForKey_JMP(EOS(STATIC_11190), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) :|: TRUE f11190_0_removeEntryForKey_JMP(EOS(STATIC_11190), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) -> f11197_0_removeEntryForKey_Load(EOS(STATIC_11197), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) :|: TRUE f11197_0_removeEntryForKey_Load(EOS(STATIC_11197), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) -> f10976_0_removeEntryForKey_Load(EOS(STATIC_10976), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442) :|: TRUE f11102_1_equals_Load(EOS(STATIC_11102), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7716sub)) -> f11133_0_equals_Return(EOS(STATIC_11133), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(o7716sub))), o7442, 0) :|: TRUE f11102_1_equals_Load(EOS(STATIC_11102), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11134_0_equals_Return(EOS(STATIC_11134), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, 0) :|: TRUE f11102_1_equals_Load(EOS(STATIC_11102), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11135_0_equals_Return(EOS(STATIC_11135), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, java.lang.Object(javaUtilEx.Content(EOC)))), o7442, 1) :|: TRUE f11103_1_equals_Load(EOS(STATIC_11103), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11138_0_equals_Return(EOS(STATIC_11138), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712, o7404, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442, i4712, NULL)), o7442, 0) :|: TRUE Combined rules. Obtained 7 IRulesP rules: f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content(EOC))))) -> f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content(EOC)))), o7442:0, o7442:0) :|: TRUE f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4757:0, o7440:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4757:0, o7440:0))) -> f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4757:0, o7440:0)), o7442:0, o7442:0) :|: i4757:0 < i4712:0 f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4757:0, o7440:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4757:0, o7440:0))) -> f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4757:0, o7440:0)), o7442:0, o7442:0) :|: i4757:0 > i4712:0 f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(o7470sub:0))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(o7470sub:0)))) -> f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(o7470sub:0))), o7442:0, o7442:0) :|: TRUE f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, NULL)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, NULL))) -> f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, NULL)), o7442:0, o7442:0) :|: TRUE Removed following non-SCC rules: f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(o7470sub:0))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(o7470sub:0)))) -> f12273_0_equals_Load(EOS(STATIC_12273), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub:0), o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, java.lang.Object(o7470sub:0))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7470sub:0)) :|: TRUE f10981_0_removeEntryForKey_NULL(EOS(STATIC_10981), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4712:0, o7404:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, NULL)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7442:0, i4712:0, NULL))) -> f12345_0_equals_Load(EOS(STATIC_12345), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE Filtered constant ground arguments: f10981_0_removeEntryForKey_NULL(x1, x2, x3, x4, x5, x6, x7) -> f10981_0_removeEntryForKey_NULL(x4, x5, x6, x7) EOS(x1) -> EOS javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.Content(x1) -> javaUtilEx.Content javaUtilEx.HashMap$Entry(x1, x2, x3, x4) -> javaUtilEx.HashMap$Entry(x2, x3, x4) javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f10981_0_removeEntryForKey_NULL(x1, x2, x3, x4) -> f10981_0_removeEntryForKey_NULL(x1, x2, x4) Filtered unneeded arguments: f10981_0_removeEntryForKey_NULL(x1, x2, x3) -> f10981_0_removeEntryForKey_NULL(x1, x3) Finished conversion. Obtained 5 rules.P rules: f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4757:0, o7440:0))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: i4757:0 < i4712:0 f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4757:0, o7440:0))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: i4757:0 > i4712:0 f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, java.lang.Object(o7470sub:0)))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, NULL))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE ---------------------------------------- (45) Obligation: Rules: f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE f10981_0_removeEntryForKey_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10981_0_removeEntryForKey_NULL(x, x1) :|: x2 < x f10981_0_removeEntryForKey_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10981_0_removeEntryForKey_NULL(x4, x5) :|: x6 > x4 f10981_0_removeEntryForKey_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x9, x8, java.lang.Object(x10)))) -> f10981_0_removeEntryForKey_NULL(x8, x9) :|: TRUE f10981_0_removeEntryForKey_NULL(x11, java.lang.Object(javaUtilEx.HashMap$Entry(x12, x11, NULL))) -> f10981_0_removeEntryForKey_NULL(x11, x12) :|: TRUE ---------------------------------------- (46) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (47) Obligation: Rules: f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE f10981_0_removeEntryForKey_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10981_0_removeEntryForKey_NULL(x, x1) :|: x2 < x f10981_0_removeEntryForKey_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10981_0_removeEntryForKey_NULL(x4, x5) :|: x6 > x4 f10981_0_removeEntryForKey_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x9, x8, java.lang.Object(x10)))) -> f10981_0_removeEntryForKey_NULL(x8, x9) :|: TRUE f10981_0_removeEntryForKey_NULL(x11, java.lang.Object(javaUtilEx.HashMap$Entry(x12, x11, NULL))) -> f10981_0_removeEntryForKey_NULL(x11, x12) :|: TRUE ---------------------------------------- (48) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE (2) f10981_0_removeEntryForKey_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10981_0_removeEntryForKey_NULL(x, x1) :|: x2 < x (3) f10981_0_removeEntryForKey_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10981_0_removeEntryForKey_NULL(x4, x5) :|: x6 > x4 (4) f10981_0_removeEntryForKey_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x9, x8, java.lang.Object(x10)))) -> f10981_0_removeEntryForKey_NULL(x8, x9) :|: TRUE (5) f10981_0_removeEntryForKey_NULL(x11, java.lang.Object(javaUtilEx.HashMap$Entry(x12, x11, NULL))) -> f10981_0_removeEntryForKey_NULL(x11, x12) :|: TRUE Arcs: (1) -> (1), (2), (3), (4), (5) (2) -> (1), (2), (3), (4), (5) (3) -> (1), (2), (3), (4), (5) (4) -> (1), (2), (3), (4), (5) (5) -> (1), (2), (3), (4), (5) This digraph is fully evaluated! ---------------------------------------- (49) Obligation: Termination digraph: Nodes: (1) f10981_0_removeEntryForKey_NULL(i4712:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0, i4712:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0, o7442:0) :|: TRUE (2) f10981_0_removeEntryForKey_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10981_0_removeEntryForKey_NULL(x, x1) :|: x2 < x (3) f10981_0_removeEntryForKey_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10981_0_removeEntryForKey_NULL(x4, x5) :|: x6 > x4 (4) f10981_0_removeEntryForKey_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x9, x8, java.lang.Object(x10)))) -> f10981_0_removeEntryForKey_NULL(x8, x9) :|: TRUE (5) f10981_0_removeEntryForKey_NULL(x11, java.lang.Object(javaUtilEx.HashMap$Entry(x12, x11, NULL))) -> f10981_0_removeEntryForKey_NULL(x11, x12) :|: TRUE Arcs: (1) -> (1), (2), (3), (4), (5) (2) -> (1), (2), (3), (4), (5) (3) -> (1), (2), (3), (4), (5) (4) -> (1), (2), (3), (4), (5) (5) -> (1), (2), (3), (4), (5) This digraph is fully evaluated! ---------------------------------------- (50) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (51) Obligation: Rules: f10981_0_removeEntryForKey_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10981_0_removeEntryForKey_NULL(x4:0, x5:0) :|: x6:0 > x4:0 f10981_0_removeEntryForKey_NULL(x:0, java.lang.Object(javaUtilEx.HashMap$Entry(x1:0, x2:0, x3:0))) -> f10981_0_removeEntryForKey_NULL(x:0, x1:0) :|: x:0 > x2:0 f10981_0_removeEntryForKey_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x9:0, x8:0, java.lang.Object(x10:0)))) -> f10981_0_removeEntryForKey_NULL(x8:0, x9:0) :|: TRUE f10981_0_removeEntryForKey_NULL(i4712:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0:0, i4712:0:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0:0, o7442:0:0) :|: TRUE f10981_0_removeEntryForKey_NULL(x11:0, java.lang.Object(javaUtilEx.HashMap$Entry(x12:0, x11:0, NULL))) -> f10981_0_removeEntryForKey_NULL(x11:0, x12:0) :|: TRUE ---------------------------------------- (52) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f10981_0_removeEntryForKey_NULL(VARIABLE, VARIABLE) java.lang.Object(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE, VARIABLE, VARIABLE) javaUtilEx.Content() NULL() Removed predefined arithmetic. ---------------------------------------- (53) Obligation: Rules: f10981_0_removeEntryForKey_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10981_0_removeEntryForKey_NULL(x4:0, x5:0) f10981_0_removeEntryForKey_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x9:0, x8:0, java.lang.Object(x10:0)))) -> f10981_0_removeEntryForKey_NULL(x8:0, x9:0) f10981_0_removeEntryForKey_NULL(i4712:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0:0, i4712:0:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0:0, o7442:0:0) f10981_0_removeEntryForKey_NULL(x11:0, java.lang.Object(javaUtilEx.HashMap$Entry(x12:0, x11:0, NULL))) -> f10981_0_removeEntryForKey_NULL(x11:0, x12:0) ---------------------------------------- (54) IRSwTToQDPProof (SOUND) Removed the integers and created a QDP-Problem. ---------------------------------------- (55) Obligation: Q DP problem: The TRS P consists of the following rules: f10981_0_removeEntryForKey_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10981_0_removeEntryForKey_NULL(x4:0, x5:0) f10981_0_removeEntryForKey_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x9:0, x8:0, java.lang.Object(x10:0)))) -> f10981_0_removeEntryForKey_NULL(x8:0, x9:0) f10981_0_removeEntryForKey_NULL(i4712:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0:0, i4712:0:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0:0, o7442:0:0) f10981_0_removeEntryForKey_NULL(x11:0, java.lang.Object(javaUtilEx.HashMap$Entry(x12:0, x11:0, NULL))) -> f10981_0_removeEntryForKey_NULL(x11:0, x12:0) R is empty. Q is empty. We have to consider all (P,Q,R)-chains. ---------------------------------------- (56) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *f10981_0_removeEntryForKey_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10981_0_removeEntryForKey_NULL(x4:0, x5:0) The graph contains the following edges 1 >= 1, 2 > 2 *f10981_0_removeEntryForKey_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x9:0, x8:0, java.lang.Object(x10:0)))) -> f10981_0_removeEntryForKey_NULL(x8:0, x9:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 *f10981_0_removeEntryForKey_NULL(i4712:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7442:0:0, i4712:0:0, java.lang.Object(javaUtilEx.Content)))) -> f10981_0_removeEntryForKey_NULL(i4712:0:0, o7442:0:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 *f10981_0_removeEntryForKey_NULL(x11:0, java.lang.Object(javaUtilEx.HashMap$Entry(x12:0, x11:0, NULL))) -> f10981_0_removeEntryForKey_NULL(x11:0, x12:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 ---------------------------------------- (57) YES ---------------------------------------- (58) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.juHashMapCreateRemove.createMap(I)LjavaUtilEx/HashMap; SCC calls the following helper methods: javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;, javaUtilEx.Content.hashCode()I, javaUtilEx.Content.equals(Ljava/lang/Object;)Z Performed SCC analyses: *Used field analysis yielded the following read fields: *java.lang.String: [count] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (59) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 81 IRulesP rules: f10339_0_createMap_LE(EOS(STATIC_10339(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4373) -> f10343_0_createMap_LE(EOS(STATIC_10343(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4373) :|: TRUE f10343_0_createMap_LE(EOS(STATIC_10343(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4373) -> f10348_0_createMap_New(EOS(STATIC_10348(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: i4373 > 0 f10348_0_createMap_New(EOS(STATIC_10348(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10353_0_createMap_Duplicate(EOS(STATIC_10353(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10353_0_createMap_Duplicate(EOS(STATIC_10353(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10357_0_createMap_InvokeMethod(EOS(STATIC_10357(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10357_0_createMap_InvokeMethod(EOS(STATIC_10357(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10361_0_random_FieldAccess(EOS(STATIC_10361(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10361_0_random_FieldAccess(EOS(STATIC_10361(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10371_0_random_FieldAccess(EOS(STATIC_10371(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7046sub)) :|: TRUE f10371_0_random_FieldAccess(EOS(STATIC_10371(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7046sub)) -> f10376_0_random_ArrayAccess(EOS(STATIC_10376(java.lang.Object(o7046sub), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7046sub), i4354) :|: TRUE f10376_0_random_ArrayAccess(EOS(STATIC_10376(java.lang.Object(ARRAY(i4401)), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4354) -> f10381_0_random_ArrayAccess(EOS(STATIC_10381(java.lang.Object(ARRAY(i4401)), i4354)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4354) :|: i4401 >= 0 f10381_0_random_ArrayAccess(EOS(STATIC_10381(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4403) -> f10387_0_random_ArrayAccess(EOS(STATIC_10387(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4403) :|: TRUE f10387_0_random_ArrayAccess(EOS(STATIC_10387(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4403) -> f10394_0_random_ArrayAccess(EOS(STATIC_10394(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4403) :|: TRUE f10394_0_random_ArrayAccess(EOS(STATIC_10394(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4403) -> f10400_0_random_Store(EOS(STATIC_10400(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) :|: i4403 < i4401 f10400_0_random_Store(EOS(STATIC_10400(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) -> f10405_0_random_FieldAccess(EOS(STATIC_10405(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) :|: TRUE f10405_0_random_FieldAccess(EOS(STATIC_10405(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) -> f10411_0_random_ConstantStackPush(EOS(STATIC_10411(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078, i4403) :|: TRUE f10411_0_random_ConstantStackPush(EOS(STATIC_10411(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078, i4403) -> f10417_0_random_IntArithmetic(EOS(STATIC_10417(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078, i4403, 1) :|: TRUE f10417_0_random_IntArithmetic(EOS(STATIC_10417(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078, i4403, matching1) -> f10424_0_random_FieldAccess(EOS(STATIC_10424(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078, i4403 + 1) :|: i4403 >= 0 && matching1 = 1 f10424_0_random_FieldAccess(EOS(STATIC_10424(java.lang.Object(ARRAY(i4401)), i4403)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078, i4412) -> f10433_0_random_Load(EOS(STATIC_10433(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) :|: TRUE f10433_0_random_Load(EOS(STATIC_10433(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) -> f10441_0_random_InvokeMethod(EOS(STATIC_10441(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7078) :|: TRUE f10441_0_random_InvokeMethod(EOS(STATIC_10441(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7096sub)) -> f10447_0_random_InvokeMethod(EOS(STATIC_10447(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7096sub)) :|: TRUE f10447_0_random_InvokeMethod(EOS(STATIC_10447(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7104sub)) -> f10456_0_random_InvokeMethod(EOS(STATIC_10456(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7104sub)) :|: TRUE f10456_0_random_InvokeMethod(EOS(STATIC_10456(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7104sub)) -> f10464_0_length_Load(EOS(STATIC_10464(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7104sub)) :|: TRUE f10464_0_length_Load(EOS(STATIC_10464(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7104sub)) -> f10480_0_length_FieldAccess(EOS(STATIC_10480(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7104sub)) :|: TRUE f10480_0_length_FieldAccess(EOS(STATIC_10480(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i4432))) -> f10488_0_length_FieldAccess(EOS(STATIC_10488(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i4432))) :|: i4432 >= 0 f10488_0_length_FieldAccess(EOS(STATIC_10488(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i4432))) -> f10495_0_length_Return(EOS(STATIC_10495(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) :|: TRUE f10495_0_length_Return(EOS(STATIC_10495(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) -> f10504_0_random_Return(EOS(STATIC_10504(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) :|: TRUE f10504_0_random_Return(EOS(STATIC_10504(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) -> f10512_0_createMap_InvokeMethod(EOS(STATIC_10512(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) :|: TRUE f10512_0_createMap_InvokeMethod(EOS(STATIC_10512(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) -> f10518_0__init__Load(EOS(STATIC_10518(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) :|: TRUE f10518_0__init__Load(EOS(STATIC_10518(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) -> f10535_0__init__InvokeMethod(EOS(STATIC_10535(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10535_0__init__InvokeMethod(EOS(STATIC_10535(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432, java.lang.Object(javaUtilEx.Content(EOC))) -> f10542_0__init__Load(EOS(STATIC_10542(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) :|: TRUE f10542_0__init__Load(EOS(STATIC_10542(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) -> f10552_0__init__Load(EOS(STATIC_10552(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4432, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10552_0__init__Load(EOS(STATIC_10552(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i4432, java.lang.Object(javaUtilEx.Content(EOC))) -> f10561_0__init__FieldAccess(EOS(STATIC_10561(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) :|: TRUE f10561_0__init__FieldAccess(EOS(STATIC_10561(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4432) -> f10571_0__init__Return(EOS(STATIC_10571(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10571_0__init__Return(EOS(STATIC_10571(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10580_0_createMap_Store(EOS(STATIC_10580(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10580_0_createMap_Store(EOS(STATIC_10580(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10589_0_createMap_New(EOS(STATIC_10589(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10589_0_createMap_New(EOS(STATIC_10589(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10599_0_createMap_Duplicate(EOS(STATIC_10599(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10599_0_createMap_Duplicate(EOS(STATIC_10599(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10609_0_createMap_InvokeMethod(EOS(STATIC_10609(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10609_0_createMap_InvokeMethod(EOS(STATIC_10609(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10619_0_random_FieldAccess(EOS(STATIC_10619(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10619_0_random_FieldAccess(EOS(STATIC_10619(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10636_0_random_FieldAccess(EOS(STATIC_10636(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401))) :|: TRUE f10636_0_random_FieldAccess(EOS(STATIC_10636(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401))) -> f10644_0_random_ArrayAccess(EOS(STATIC_10644(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4412) :|: TRUE f10644_0_random_ArrayAccess(EOS(STATIC_10644(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4412) -> f10651_0_random_ArrayAccess(EOS(STATIC_10651(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4412) :|: TRUE f10651_0_random_ArrayAccess(EOS(STATIC_10651(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i4401)), i4412) -> f10659_0_random_Store(EOS(STATIC_10659(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) :|: i4412 < i4401 f10659_0_random_Store(EOS(STATIC_10659(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) -> f10667_0_random_FieldAccess(EOS(STATIC_10667(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) :|: TRUE f10667_0_random_FieldAccess(EOS(STATIC_10667(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) -> f10671_0_random_ConstantStackPush(EOS(STATIC_10671(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245, i4412) :|: TRUE f10671_0_random_ConstantStackPush(EOS(STATIC_10671(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245, i4412) -> f10676_0_random_IntArithmetic(EOS(STATIC_10676(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245, i4412, 1) :|: TRUE f10676_0_random_IntArithmetic(EOS(STATIC_10676(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245, i4412, matching1) -> f10680_0_random_FieldAccess(EOS(STATIC_10680(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245, i4412 + 1) :|: i4412 > 0 && matching1 = 1 f10680_0_random_FieldAccess(EOS(STATIC_10680(java.lang.Object(ARRAY(i4401)), i4412)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245, i4589) -> f10683_0_random_Load(EOS(STATIC_10683(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) :|: TRUE f10683_0_random_Load(EOS(STATIC_10683(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) -> f10687_0_random_InvokeMethod(EOS(STATIC_10687(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o7245) :|: TRUE f10687_0_random_InvokeMethod(EOS(STATIC_10687(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7275sub)) -> f10691_0_random_InvokeMethod(EOS(STATIC_10691(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7275sub)) :|: TRUE f10691_0_random_InvokeMethod(EOS(STATIC_10691(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7276sub)) -> f10694_0_random_InvokeMethod(EOS(STATIC_10694(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7276sub)) :|: TRUE f10694_0_random_InvokeMethod(EOS(STATIC_10694(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7276sub)) -> f10698_0_length_Load(EOS(STATIC_10698(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7276sub)) :|: TRUE f10698_0_length_Load(EOS(STATIC_10698(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7276sub)) -> f10703_0_length_FieldAccess(EOS(STATIC_10703(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o7276sub)) :|: TRUE f10703_0_length_FieldAccess(EOS(STATIC_10703(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i4614))) -> f10706_0_length_FieldAccess(EOS(STATIC_10706(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i4614))) :|: i4614 >= 0 f10706_0_length_FieldAccess(EOS(STATIC_10706(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i4614))) -> f10708_0_length_Return(EOS(STATIC_10708(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) :|: TRUE f10708_0_length_Return(EOS(STATIC_10708(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) -> f10710_0_random_Return(EOS(STATIC_10710(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) :|: TRUE f10710_0_random_Return(EOS(STATIC_10710(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) -> f10715_0_createMap_InvokeMethod(EOS(STATIC_10715(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) :|: TRUE f10715_0_createMap_InvokeMethod(EOS(STATIC_10715(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) -> f10718_0__init__Load(EOS(STATIC_10718(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) :|: TRUE f10718_0__init__Load(EOS(STATIC_10718(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) -> f10724_0__init__InvokeMethod(EOS(STATIC_10724(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10724_0__init__InvokeMethod(EOS(STATIC_10724(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614, java.lang.Object(javaUtilEx.Content(EOC))) -> f10727_0__init__Load(EOS(STATIC_10727(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) :|: TRUE f10727_0__init__Load(EOS(STATIC_10727(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) -> f10731_0__init__Load(EOS(STATIC_10731(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10731_0__init__Load(EOS(STATIC_10731(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614, java.lang.Object(javaUtilEx.Content(EOC))) -> f10735_0__init__FieldAccess(EOS(STATIC_10735(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) :|: TRUE f10735_0__init__FieldAccess(EOS(STATIC_10735(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i4614) -> f10739_0__init__Return(EOS(STATIC_10739(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10739_0__init__Return(EOS(STATIC_10739(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10743_0_createMap_Store(EOS(STATIC_10743(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10743_0_createMap_Store(EOS(STATIC_10743(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10747_0_createMap_Load(EOS(STATIC_10747(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10747_0_createMap_Load(EOS(STATIC_10747(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10751_0_createMap_Load(EOS(STATIC_10751(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f10751_0_createMap_Load(EOS(STATIC_10751(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10755_0_createMap_Load(EOS(STATIC_10755(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10755_0_createMap_Load(EOS(STATIC_10755(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10759_0_createMap_InvokeMethod(EOS(STATIC_10759(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10759_0_createMap_InvokeMethod(EOS(STATIC_10759(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10763_0_put_Load(EOS(STATIC_10763(java.lang.Object(ARRAY(i4401)), i4589)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: i4374 >= 1 && i4373 >= 1 && i4589 > 1 && i4374 >= i4373 f10759_0_createMap_InvokeMethod(EOS(STATIC_10759(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10763_1_put_Load(EOS(STATIC_10763(java.lang.Object(ARRAY(i4401)), i4589)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: i4374 >= 1 && i4373 >= 1 && i4589 > 1 && i4374 >= i4373 f10763_0_put_Load(EOS(STATIC_10763(java.lang.Object(ARRAY(i4401)), i4589)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f12565_0_put_Load(EOS(STATIC_12565(java.lang.Object(ARRAY(i4401)), i4589)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11231_0_put_Return(EOS(STATIC_11231(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11235_0_createMap_StackPop(EOS(STATIC_11235(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11235_0_createMap_StackPop(EOS(STATIC_11235(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11240_0_createMap_Inc(EOS(STATIC_11240(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11240_0_createMap_Inc(EOS(STATIC_11240(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11246_0_createMap_JMP(EOS(STATIC_11246(java.lang.Object(ARRAY(i5076)), i5078)), i4373 + -1, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11246_0_createMap_JMP(EOS(STATIC_11246(java.lang.Object(ARRAY(i5076)), i5078)), i5079, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11251_0_createMap_Load(EOS(STATIC_11251(java.lang.Object(ARRAY(i5076)), i5078)), i5079, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11251_0_createMap_Load(EOS(STATIC_11251(java.lang.Object(ARRAY(i5076)), i5078)), i5079, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10336_0_createMap_Load(EOS(STATIC_10336(java.lang.Object(ARRAY(i5076)), i5078)), i5079, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f10336_0_createMap_Load(EOS(STATIC_10336(java.lang.Object(o7046sub), i4354)), i4356, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10339_0_createMap_LE(EOS(STATIC_10339(java.lang.Object(o7046sub), i4354)), i4356, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4356) :|: TRUE f11329_0_put_Return(EOS(STATIC_11329(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) -> f11334_0_createMap_StackPop(EOS(STATIC_11334(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE f11334_0_createMap_StackPop(EOS(STATIC_11334(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) -> f11339_0_createMap_Inc(EOS(STATIC_11339(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11339_0_createMap_Inc(EOS(STATIC_11339(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11240_0_createMap_Inc(EOS(STATIC_11240(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11780_0_put_Return(EOS(STATIC_11780(java.lang.Object(ARRAY(i5346)), i5348)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) -> f11329_0_put_Return(EOS(STATIC_11329(java.lang.Object(ARRAY(i5346)), i5348)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE f10763_1_put_Load(EOS(STATIC_10763(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11231_0_put_Return(EOS(STATIC_11231(java.lang.Object(ARRAY(i5076)), i5078)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f10763_1_put_Load(EOS(STATIC_10763(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11329_0_put_Return(EOS(STATIC_11329(java.lang.Object(ARRAY(i5131)), i5133)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE f10763_1_put_Load(EOS(STATIC_10763(java.lang.Object(ARRAY(i5346)), i5348)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11780_0_put_Return(EOS(STATIC_11780(java.lang.Object(ARRAY(i5346)), i5348)), i4373, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE Combined rules. Obtained 2 IRulesP rules: f10339_0_createMap_LE(EOS(STATIC_10339(java.lang.Object(ARRAY(i4401:0)), i4354:0)), i4373:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4373:0) -> f10339_0_createMap_LE(EOS(STATIC_10339(java.lang.Object(ARRAY(i4401:0)), i4354:0 + 2)), i4373:0 - 1, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4373:0 - 1) :|: i4401:0 > i4354:0 + 1 && i4373:0 > 0 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 > 0 && i4374:0 >= i4373:0 Removed following non-SCC rules: f10339_0_createMap_LE(EOS(STATIC_10339(java.lang.Object(ARRAY(i4401:0)), i4354:0)), i4373:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4373:0) -> f12565_0_put_Load(EOS(STATIC_12565(java.lang.Object(ARRAY(i4401:0)), i4354:0 + 2)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: i4401:0 > i4354:0 + 1 && i4373:0 > 0 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 > 0 && i4374:0 >= i4373:0 Filtered constant ground arguments: f10339_0_createMap_LE(x1, x2, x3, x4) -> f10339_0_createMap_LE(x1, x2, x4) javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f10339_0_createMap_LE(x1, x2, x3) -> f10339_0_createMap_LE(x1, x3) Finished conversion. Obtained 1 rules.P rules: f10339_0_createMap_LE(i4373:0, i4401:0, i4354:0) -> f10339_0_createMap_LE(i4373:0 - 1, i4401:0, i4354:0 + 2) :|: i4373:0 > 0 && i4401:0 > i4354:0 + 1 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 >= i4373:0 && i4374:0 > 0 ---------------------------------------- (60) Obligation: Rules: f10339_0_createMap_LE(i4373:0, i4401:0, i4354:0) -> f10339_0_createMap_LE(i4373:0 - 1, i4401:0, i4354:0 + 2) :|: i4373:0 > 0 && i4401:0 > i4354:0 + 1 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 >= i4373:0 && i4374:0 > 0 ---------------------------------------- (61) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (62) Obligation: Rules: f10339_0_createMap_LE(i4373:0, i4401:0, i4354:0) -> f10339_0_createMap_LE(arith, i4401:0, arith1) :|: i4373:0 > 0 && i4401:0 > i4354:0 + 1 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 >= i4373:0 && i4374:0 > 0 && arith = i4373:0 - 1 && arith1 = i4354:0 + 2 ---------------------------------------- (63) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f10339_0_createMap_LE(i4373:0, i4401:0, i4354:0) -> f10339_0_createMap_LE(arith, i4401:0, arith1) :|: i4373:0 > 0 && i4401:0 > i4354:0 + 1 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 >= i4373:0 && i4374:0 > 0 && arith = i4373:0 - 1 && arith1 = i4354:0 + 2 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (64) Obligation: Termination digraph: Nodes: (1) f10339_0_createMap_LE(i4373:0, i4401:0, i4354:0) -> f10339_0_createMap_LE(arith, i4401:0, arith1) :|: i4373:0 > 0 && i4401:0 > i4354:0 + 1 && i4401:0 > -1 && i4354:0 > -1 && i4432:0 > -1 && i4614:0 > -1 && i4374:0 >= i4373:0 && i4374:0 > 0 && arith = i4373:0 - 1 && arith1 = i4354:0 + 2 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (65) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (66) Obligation: Rules: f10339_0_createMap_LE(i4373:0:0, i4401:0:0, i4354:0:0) -> f10339_0_createMap_LE(i4373:0:0 - 1, i4401:0:0, i4354:0:0 + 2) :|: i4374:0:0 >= i4373:0:0 && i4374:0:0 > 0 && i4614:0:0 > -1 && i4432:0:0 > -1 && i4354:0:0 > -1 && i4401:0:0 > -1 && i4401:0:0 > i4354:0:0 + 1 && i4373:0:0 > 0 ---------------------------------------- (67) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f10339_0_createMap_LE(INTEGER, INTEGER, INTEGER) Replaced non-predefined constructor symbols by 0. ---------------------------------------- (68) Obligation: Rules: f10339_0_createMap_LE(i4373:0:0, i4401:0:0, i4354:0:0) -> f10339_0_createMap_LE(c, i4401:0:0, c1) :|: c1 = i4354:0:0 + 2 && c = i4373:0:0 - 1 && (i4374:0:0 >= i4373:0:0 && i4374:0:0 > 0 && i4614:0:0 > -1 && i4432:0:0 > -1 && i4354:0:0 > -1 && i4401:0:0 > -1 && i4401:0:0 > i4354:0:0 + 1 && i4373:0:0 > 0) ---------------------------------------- (69) RankingReductionPairProof (EQUIVALENT) Interpretation: [ f10339_0_createMap_LE ] = f10339_0_createMap_LE_1 The following rules are decreasing: f10339_0_createMap_LE(i4373:0:0, i4401:0:0, i4354:0:0) -> f10339_0_createMap_LE(c, i4401:0:0, c1) :|: c1 = i4354:0:0 + 2 && c = i4373:0:0 - 1 && (i4374:0:0 >= i4373:0:0 && i4374:0:0 > 0 && i4614:0:0 > -1 && i4432:0:0 > -1 && i4354:0:0 > -1 && i4401:0:0 > -1 && i4401:0:0 > i4354:0:0 + 1 && i4373:0:0 > 0) The following rules are bounded: f10339_0_createMap_LE(i4373:0:0, i4401:0:0, i4354:0:0) -> f10339_0_createMap_LE(c, i4401:0:0, c1) :|: c1 = i4354:0:0 + 2 && c = i4373:0:0 - 1 && (i4374:0:0 >= i4373:0:0 && i4374:0:0 > 0 && i4614:0:0 > -1 && i4432:0:0 > -1 && i4354:0:0 > -1 && i4401:0:0 > -1 && i4401:0:0 > i4354:0:0 + 1 && i4373:0:0 > 0) ---------------------------------------- (70) YES