changeset 463:4cb1780bc385

Merge
author sundar
date Tue, 23 Jul 2013 21:51:23 +0530
parents 81cbb18d558a (current diff) ccbea9172aa5 (diff)
children 573cc6eb66ae
files src/jdk/nashorn/internal/runtime/linker/JavaAdapterGeneratorBase.java
diffstat 51 files changed, 11076 insertions(+), 425 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/exclude/exclude_list.txt	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<excludeList>
+</excludeList>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/exclude/exclude_list_cc.txt	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<excludeList>
+  <test id="JDK-8014647.js" />
+  <test id="javaclassoverrides.js" />
+</excludeList>
--- a/make/build.xml	Wed Jul 17 00:36:48 2013 -0700
+++ b/make/build.xml	Tue Jul 23 21:51:23 2013 +0530
@@ -51,6 +51,11 @@
 	<condition property="cc.enabled">
 		<istrue value="${make.code.coverage}" />
 	</condition>
+
+    <!-- exclude tests in exclude lists -->
+    <condition property="exclude.list" value="./exclude/exclude_list_cc.txt" else="./exclude/exclude_list.txt">
+      <istrue value="${make.code.coverage}" />
+    </condition>
   </target>
 
   <target name="init" depends="init-conditions, init-cc">
@@ -262,6 +267,11 @@
 grant codeBase "file:/${basedir}/test/script/basic/JDK-8010946-privileged.js" {
     permission java.util.PropertyPermission "java.security.policy", "read";
 };
+
+grant codeBase "file:/${basedir}/test/script/basic/classloader.js" {
+    permission java.lang.RuntimePermission "nashorn.JavaReflection";
+};
+
     </echo>
 
     <replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace>    <!--hack for Windows - to make URLs with normal path separators -->
@@ -316,6 +326,7 @@
         <propertyref prefix="test-sys-prop."/>
         <mapper from="test-sys-prop.*" to="*" type="glob"/>
       </propertyset>
+      <sysproperty key="test.js.excludes.file" value="${exclude.list}"/>
       <classpath>
           <pathelement path="${run.test.classpath}"/>
       </classpath>
--- a/src/jdk/nashorn/api/scripting/NashornScriptEngine.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/api/scripting/NashornScriptEngine.java	Tue Jul 23 21:51:23 2013 +0530
@@ -209,10 +209,10 @@
         }
 
         try {
-            final ScriptObject oldGlobal = getNashornGlobal();
+            final ScriptObject oldGlobal = Context.getGlobal();
             try {
                 if(oldGlobal != ctxtGlobal) {
-                    setNashornGlobal(ctxtGlobal);
+                    Context.setGlobal(ctxtGlobal);
                 }
 
                 if (! isInterfaceImplemented(clazz, realSelf)) {
@@ -221,7 +221,7 @@
                 return clazz.cast(JavaAdapterFactory.getConstructor(realSelf.getClass(), clazz).invoke(realSelf));
             } finally {
                 if(oldGlobal != ctxtGlobal) {
-                    setNashornGlobal(oldGlobal);
+                    Context.setGlobal(oldGlobal);
                 }
             }
         } catch(final RuntimeException|Error e) {
@@ -357,7 +357,7 @@
     }
 
     private Object invokeImpl(final Object selfObject, final String name, final Object... args) throws ScriptException, NoSuchMethodException {
-        final ScriptObject oldGlobal     = getNashornGlobal();
+        final ScriptObject oldGlobal     = Context.getGlobal();
         final ScriptObject ctxtGlobal    = getNashornGlobalFrom(context);
         final boolean globalChanged = (oldGlobal != ctxtGlobal);
 
@@ -365,7 +365,7 @@
 
         try {
             if (globalChanged) {
-                setNashornGlobal(ctxtGlobal);
+                Context.setGlobal(ctxtGlobal);
             }
 
             ScriptObject sobj;
@@ -398,7 +398,7 @@
             throw new NoSuchMethodException(name);
         } finally {
             if (globalChanged) {
-                setNashornGlobal(oldGlobal);
+                Context.setGlobal(oldGlobal);
             }
         }
     }
@@ -411,12 +411,12 @@
         if (script == null) {
             return null;
         }
-        final ScriptObject oldGlobal = getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final ScriptObject ctxtGlobal = getNashornGlobalFrom(ctxt);
         final boolean globalChanged = (oldGlobal != ctxtGlobal);
         try {
             if (globalChanged) {
-                setNashornGlobal(ctxtGlobal);
+                Context.setGlobal(ctxtGlobal);
             }
 
             setContextVariables(ctxt);
@@ -426,7 +426,7 @@
             throw new AssertionError("should not reach here");
         } finally {
             if (globalChanged) {
-                setNashornGlobal(oldGlobal);
+                Context.setGlobal(oldGlobal);
             }
         }
     }
@@ -469,12 +469,12 @@
     }
 
     private ScriptFunction compileImpl(final Source source, final ScriptContext ctxt) throws ScriptException {
-        final ScriptObject oldGlobal = getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final ScriptObject ctxtGlobal = getNashornGlobalFrom(ctxt);
         final boolean globalChanged = (oldGlobal != ctxtGlobal);
         try {
             if (globalChanged) {
-                setNashornGlobal(ctxtGlobal);
+                Context.setGlobal(ctxtGlobal);
             }
 
             return nashornContext.compileScript(source, ctxtGlobal);
@@ -483,7 +483,7 @@
             throw new AssertionError("should not reach here");
         } finally {
             if (globalChanged) {
-                setNashornGlobal(oldGlobal);
+                Context.setGlobal(oldGlobal);
             }
         }
     }
@@ -502,19 +502,4 @@
         }
         return true;
     }
-
-    // don't make this public!!
-    static ScriptObject getNashornGlobal() {
-        return Context.getGlobal();
-    }
-
-    static void setNashornGlobal(final ScriptObject newGlobal) {
-        AccessController.doPrivileged(new PrivilegedAction<Void>() {
-            @Override
-            public Void run() {
-               Context.setGlobal(newGlobal);
-               return null;
-            }
-        });
-    }
 }
--- a/src/jdk/nashorn/api/scripting/ScriptObjectMirror.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/api/scripting/ScriptObjectMirror.java	Tue Jul 23 21:51:23 2013 +0530
@@ -79,12 +79,12 @@
     // JSObject methods
     @Override
     public Object call(final String functionName, final Object... args) {
-        final ScriptObject oldGlobal = NashornScriptEngine.getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final boolean globalChanged = (oldGlobal != global);
 
         try {
             if (globalChanged) {
-                NashornScriptEngine.setNashornGlobal(global);
+                Context.setGlobal(global);
             }
 
             final Object val = functionName == null? sobj : sobj.get(functionName);
@@ -100,19 +100,19 @@
             throw new RuntimeException(t);
         } finally {
             if (globalChanged) {
-                NashornScriptEngine.setNashornGlobal(oldGlobal);
+                Context.setGlobal(oldGlobal);
             }
         }
     }
 
     @Override
     public Object newObject(final String functionName, final Object... args) {
-        final ScriptObject oldGlobal = NashornScriptEngine.getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final boolean globalChanged = (oldGlobal != global);
 
         try {
             if (globalChanged) {
-                NashornScriptEngine.setNashornGlobal(global);
+                Context.setGlobal(global);
             }
 
             final Object val = functionName == null? sobj : sobj.get(functionName);
@@ -128,7 +128,7 @@
             throw new RuntimeException(t);
         } finally {
             if (globalChanged) {
-                NashornScriptEngine.setNashornGlobal(oldGlobal);
+                Context.setGlobal(oldGlobal);
             }
         }
     }
@@ -272,7 +272,7 @@
 
     @Override
     public Object put(final String key, final Object value) {
-        final ScriptObject oldGlobal = NashornScriptEngine.getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final boolean globalChanged = (oldGlobal != global);
         return inGlobal(new Callable<Object>() {
             @Override public Object call() {
@@ -284,7 +284,7 @@
 
     @Override
     public void putAll(final Map<? extends String, ? extends Object> map) {
-        final ScriptObject oldGlobal = NashornScriptEngine.getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final boolean globalChanged = (oldGlobal != global);
         inGlobal(new Callable<Object>() {
             @Override public Object call() {
@@ -535,7 +535,7 @@
      * @return wrapped object
      */
     public static Object wrap(final Object obj, final ScriptObject homeGlobal) {
-        return (obj instanceof ScriptObject) ? new ScriptObjectMirror((ScriptObject)obj, homeGlobal) : obj;
+        return (obj instanceof ScriptObject && homeGlobal != null) ? new ScriptObjectMirror((ScriptObject)obj, homeGlobal) : obj;
     }
 
     /**
@@ -613,10 +613,10 @@
 
     // internals only below this.
     private <V> V inGlobal(final Callable<V> callable) {
-        final ScriptObject oldGlobal = NashornScriptEngine.getNashornGlobal();
+        final ScriptObject oldGlobal = Context.getGlobal();
         final boolean globalChanged = (oldGlobal != global);
         if (globalChanged) {
-            NashornScriptEngine.setNashornGlobal(global);
+            Context.setGlobal(global);
         }
         try {
             return callable.call();
@@ -626,7 +626,7 @@
             throw new AssertionError("Cannot happen", e);
         } finally {
             if (globalChanged) {
-                NashornScriptEngine.setNashornGlobal(oldGlobal);
+                Context.setGlobal(oldGlobal);
             }
         }
     }
--- a/src/jdk/nashorn/internal/codegen/CodeGenerator.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/codegen/CodeGenerator.java	Tue Jul 23 21:51:23 2013 +0530
@@ -1143,22 +1143,23 @@
         final Type elementType = arrayType.getElementType();
 
         if (units != null) {
-            final MethodEmitter savedMethod = method;
+            final MethodEmitter savedMethod     = method;
+            final FunctionNode  currentFunction = lc.getCurrentFunction();
 
             for (final ArrayUnit arrayUnit : units) {
                 unit = lc.pushCompileUnit(arrayUnit.getCompileUnit());
 
                 final String className = unit.getUnitClassName();
-                final String name      = lc.getCurrentFunction().uniqueName(SPLIT_PREFIX.symbolName());
-                final String signature = methodDescriptor(type, Object.class, ScriptFunction.class, ScriptObject.class, type);
+                final String name      = currentFunction.uniqueName(SPLIT_PREFIX.symbolName());
+                final String signature = methodDescriptor(type, ScriptFunction.class, Object.class, ScriptObject.class, type);
 
                 final MethodEmitter me = unit.getClassEmitter().method(EnumSet.of(Flag.PUBLIC, Flag.STATIC), name, signature);
                 method = lc.pushMethodEmitter(me);
 
-                method.setFunctionNode(lc.getCurrentFunction());
+                method.setFunctionNode(currentFunction);
                 method.begin();
 
-                fixScopeSlot();
+                fixScopeSlot(currentFunction);
 
                 method.load(arrayType, SPLIT_ARRAY_ARG.slot());
 
@@ -1171,9 +1172,9 @@
                 method = lc.popMethodEmitter(me);
 
                 assert method == savedMethod;
-                method.loadCompilerConstant(THIS);
+                method.loadCompilerConstant(CALLEE);
                 method.swap();
-                method.loadCompilerConstant(CALLEE);
+                method.loadCompilerConstant(THIS);
                 method.swap();
                 method.loadCompilerConstant(SCOPE);
                 method.swap();
@@ -1680,11 +1681,8 @@
         method = lc.pushMethodEmitter(splitEmitter);
         method.setFunctionNode(fn);
 
-        if (fn.needsCallee()) {
-            caller.loadCompilerConstant(CALLEE);
-        } else {
-            caller.loadNull();
-        }
+        assert fn.needsCallee() : "split function should require callee";
+        caller.loadCompilerConstant(CALLEE);
         caller.loadCompilerConstant(THIS);
         caller.loadCompilerConstant(SCOPE);
         if (needsArguments) {
@@ -1694,18 +1692,18 @@
         caller.storeCompilerConstant(RETURN);
 
         method.begin();
+        // Copy scope to its target slot as first thing because the original slot could be used by return symbol.
+        fixScopeSlot(fn);
 
         method.loadUndefined(fn.getReturnType());
         method.storeCompilerConstant(RETURN);
 
-        fixScopeSlot();
-
         return true;
     }
 
-    private void fixScopeSlot() {
-        if (lc.getCurrentFunction().compilerConstant(SCOPE).getSlot() != SCOPE.slot()) {
-            // TODO hack to move the scope to the expected slot (that's needed because split methods reuse the same slots as the root method)
+    private void fixScopeSlot(final FunctionNode functionNode) {
+        // TODO hack to move the scope to the expected slot (needed because split methods reuse the same slots as the root method)
+        if (functionNode.compilerConstant(SCOPE).getSlot() != SCOPE.slot()) {
             method.load(Type.typeFor(ScriptObject.class), SCOPE.slot());
             method.storeCompilerConstant(SCOPE);
         }
--- a/src/jdk/nashorn/internal/codegen/Label.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/codegen/Label.java	Tue Jul 23 21:51:23 2013 +0530
@@ -105,6 +105,18 @@
         Stack copy() {
             return new Stack(data, sp);
         }
+
+        @Override
+        public String toString() {
+            final StringBuilder builder = new StringBuilder("[");
+            for (int i = 0; i < sp; i++) {
+                builder.append(data[i]);
+                if (i < sp - 1) {
+                    builder.append(", ");
+                }
+            }
+            return builder.append("]").toString();
+        }
     }
 
     /** Name of this label */
--- a/src/jdk/nashorn/internal/codegen/Splitter.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/codegen/Splitter.java	Tue Jul 23 21:51:23 2013 +0530
@@ -96,6 +96,10 @@
         long weight = WeighNodes.weigh(functionNode);
         final boolean top = fn.isProgram(); //compiler.getFunctionNode() == outermost;
 
+        // We know that our LexicalContext is empty outside the call to functionNode.accept(this) below,
+        // so we can pass null to all methods expecting a LexicalContext parameter.
+        assert lc.isEmpty() : "LexicalContext not empty";
+
         if (weight >= SPLIT_THRESHOLD) {
             LOG.finest("Splitting '", functionNode.getName(), "' as its weight ", weight, " exceeds split threshold ", SPLIT_THRESHOLD);
             functionNode = (FunctionNode)functionNode.accept(this);
@@ -103,11 +107,12 @@
             if (functionNode.isSplit()) {
                 // Weight has changed so weigh again, this time using block weight cache
                 weight = WeighNodes.weigh(functionNode, weightCache);
-                functionNode = functionNode.setBody(lc, functionNode.getBody().setNeedsScope(lc));
+                functionNode = functionNode.setBody(null, functionNode.getBody().setNeedsScope(null));
             }
 
             if (weight >= SPLIT_THRESHOLD) {
-                functionNode = functionNode.setBody(lc, splitBlock(functionNode.getBody(), functionNode));
+                functionNode = functionNode.setBody(null, splitBlock(functionNode.getBody(), functionNode));
+                functionNode = functionNode.setFlag(null, FunctionNode.IS_SPLIT);
                 weight = WeighNodes.weigh(functionNode.getBody(), weightCache);
             }
         }
@@ -116,10 +121,10 @@
 
         if (top) {
             assert outermostCompileUnit != null : "outermost compile unit is null";
-            functionNode = functionNode.setCompileUnit(lc, outermostCompileUnit);
+            functionNode = functionNode.setCompileUnit(null, outermostCompileUnit);
             outermostCompileUnit.addWeight(weight + WeighNodes.FUNCTION_WEIGHT);
         } else {
-            functionNode = functionNode.setCompileUnit(lc, findUnit(weight));
+            functionNode = functionNode.setCompileUnit(null, findUnit(weight));
         }
 
         final Block body = functionNode.getBody();
@@ -138,11 +143,11 @@
                 return split;
             }
         });
-        functionNode = functionNode.setBody(lc, newBody);
+        functionNode = functionNode.setBody(null, newBody);
 
         assert functionNode.getCompileUnit() != null;
 
-        return functionNode.setState(lc, CompilationState.SPLIT);
+        return functionNode.setState(null, CompilationState.SPLIT);
     }
 
     private static List<FunctionNode> directChildren(final FunctionNode functionNode) {
@@ -179,7 +184,6 @@
      * @return new weight for the resulting block.
      */
     private Block splitBlock(final Block block, final FunctionNode function) {
-        lc.setFlag(lc.getCurrentFunction(), FunctionNode.IS_SPLIT);
 
         final List<Statement> splits = new ArrayList<>();
         List<Statement> statements = new ArrayList<>();
@@ -255,8 +259,10 @@
         // been split already, so weigh again before splitting.
         long weight = WeighNodes.weigh(block, weightCache);
         if (weight >= SPLIT_THRESHOLD) {
-            newBlock = splitBlock(block, lc.getFunction(block));
+            final FunctionNode currentFunction = lc.getCurrentFunction();
+            newBlock = splitBlock(block, currentFunction);
             weight   = WeighNodes.weigh(newBlock, weightCache);
+            lc.setFlag(currentFunction, FunctionNode.IS_SPLIT);
         }
         weightCache.put(newBlock, weight);
         return newBlock;
@@ -289,7 +295,7 @@
                 final Node element = value[postset];
 
                 weight = WeighNodes.weigh(element);
-                totalWeight += weight;
+                totalWeight += WeighNodes.AASTORE_WEIGHT + weight;
 
                 if (totalWeight >= SPLIT_THRESHOLD) {
                     final CompileUnit unit = compiler.findUnit(totalWeight - weight);
--- a/src/jdk/nashorn/internal/codegen/WeighNodes.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/codegen/WeighNodes.java	Tue Jul 23 21:51:23 2013 +0530
@@ -68,24 +68,25 @@
     /*
      * Weight constants.
      */
-            static final long FUNCTION_WEIGHT  = 40;
-    private static final long ACCESS_WEIGHT    = 4;
-    private static final long ADD_WEIGHT       = 10;
-    private static final long BREAK_WEIGHT     = 1;
-    private static final long CALL_WEIGHT      = 10;
-    private static final long CATCH_WEIGHT     = 10;
-    private static final long CONTINUE_WEIGHT  = 1;
-    private static final long IF_WEIGHT        = 2;
-    private static final long LITERAL_WEIGHT   = 10;
-    private static final long LOOP_WEIGHT      = 4;
-    private static final long NEW_WEIGHT       = 6;
-    private static final long FUNC_EXPR_WEIGHT = 20;
-    private static final long RETURN_WEIGHT    = 2;
-    private static final long SPLIT_WEIGHT     = 40;
-    private static final long SWITCH_WEIGHT    = 8;
-    private static final long THROW_WEIGHT     = 2;
-    private static final long VAR_WEIGHT       = 40;
-    private static final long WITH_WEIGHT      = 8;
+    static final long FUNCTION_WEIGHT  = 40;
+    static final long AASTORE_WEIGHT   = 2;
+    static final long ACCESS_WEIGHT    = 4;
+    static final long ADD_WEIGHT       = 10;
+    static final long BREAK_WEIGHT     = 1;
+    static final long CALL_WEIGHT      = 10;
+    static final long CATCH_WEIGHT     = 10;
+    static final long CONTINUE_WEIGHT  = 1;
+    static final long IF_WEIGHT        = 2;
+    static final long LITERAL_WEIGHT   = 10;
+    static final long LOOP_WEIGHT      = 4;
+    static final long NEW_WEIGHT       = 6;
+    static final long FUNC_EXPR_WEIGHT = 20;
+    static final long RETURN_WEIGHT    = 2;
+    static final long SPLIT_WEIGHT     = 40;
+    static final long SWITCH_WEIGHT    = 8;
+    static final long THROW_WEIGHT     = 2;
+    static final long VAR_WEIGHT       = 40;
+    static final long WITH_WEIGHT      = 8;
 
     /** Accumulated weight. */
     private long weight;
@@ -210,6 +211,7 @@
 
             if (units == null) {
                 for (final int postset : postsets) {
+                    weight += AASTORE_WEIGHT;
                     final Node element = value[postset];
 
                     if (element != null) {
--- a/src/jdk/nashorn/internal/ir/Block.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/ir/Block.java	Tue Jul 23 21:51:23 2013 +0530
@@ -95,7 +95,6 @@
     /**
      * Constructor
      *
-     * @param lineNumber line number
      * @param token      token
      * @param finish     finish
      * @param statements statements
--- a/src/jdk/nashorn/internal/ir/FunctionNode.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/ir/FunctionNode.java	Tue Jul 23 21:51:23 2013 +0530
@@ -540,12 +540,13 @@
     /**
      * Check if this function's generated Java method needs a {@code callee} parameter. Functions that need access to
      * their parent scope, functions that reference themselves, and non-strict functions that need an Arguments object
-     * (since it exposes {@code arguments.callee} property) will need to have a callee parameter.
+     * (since it exposes {@code arguments.callee} property) will need to have a callee parameter. We also return true
+     * for split functions to make sure symbols slots are the same in the main and split methods.
      *
      * @return true if the function's generated Java method needs a {@code callee} parameter.
      */
     public boolean needsCallee() {
-        return needsParentScope() || needsSelfSymbol() || (needsArguments() && !isStrict());
+        return needsParentScope() || needsSelfSymbol() || isSplit() || (needsArguments() && !isStrict());
     }
 
     /**
--- a/src/jdk/nashorn/internal/ir/LexicalContext.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/ir/LexicalContext.java	Tue Jul 23 21:51:23 2013 +0530
@@ -350,10 +350,12 @@
      * @return the innermost function in the context.
      */
     public FunctionNode getCurrentFunction() {
-        if (isEmpty()) {
-            return null;
+        for (int i = sp - 1; i >= 0; i--) {
+            if (stack[i] instanceof FunctionNode) {
+                return (FunctionNode) stack[i];
+            }
         }
-        return new NodeIterator<>(FunctionNode.class).next();
+        return null;
     }
 
     /**
--- a/src/jdk/nashorn/internal/ir/debug/ASTWriter.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/ir/debug/ASTWriter.java	Tue Jul 23 21:51:23 2013 +0530
@@ -102,7 +102,7 @@
             preorder.add(node);
         }
 
-        final boolean isReference = field != null && field.getAnnotation(Reference.class) != null;
+        final boolean isReference = field != null && field.isAnnotationPresent(Reference.class);
 
         Class<?> clazz = node.getClass();
         String   type  = clazz.getName();
@@ -183,7 +183,7 @@
                 append('\n');
 
             for (final Field child : children) {
-                if (child.getAnnotation(Ignore.class) != null) {
+                if (child.isAnnotationPresent(Ignore.class)) {
                     continue;
                 }
 
--- a/src/jdk/nashorn/internal/objects/Global.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/objects/Global.java	Tue Jul 23 21:51:23 2013 +0530
@@ -63,6 +63,7 @@
 import jdk.nashorn.internal.runtime.ScriptRuntime;
 import jdk.nashorn.internal.runtime.ScriptingFunctions;
 import jdk.nashorn.internal.runtime.Source;
+import jdk.nashorn.internal.runtime.linker.Bootstrap;
 import jdk.nashorn.internal.runtime.linker.InvokeByName;
 import jdk.nashorn.internal.scripts.JO;
 
@@ -411,18 +412,33 @@
     // initialized by nasgen
     private static PropertyMap $nasgenmap$;
 
+    // performs initialization checks for Global constructor and returns the
+    // PropertyMap, if everything is fine.
+    private static PropertyMap checkAndGetMap(final Context context) {
+        // security check first
+        final SecurityManager sm = System.getSecurityManager();
+        if (sm != null) {
+            sm.checkPermission(new RuntimePermission("nashorn.newGlobal"));
+        }
+
+        // null check on context
+        context.getClass();
+
+        /*
+         * Duplicate global's map and use it. This way the initial Map filled
+         * by nasgen (referenced from static field in this class) is retained
+         * 'as is' (as that one is process wide singleton.
+         */
+        return $nasgenmap$.duplicate();
+    }
+
     /**
      * Constructor
      *
      * @param context the context
      */
     public Global(final Context context) {
-        /*
-         * Duplicate global's map and use it. This way the initial Map filled
-         * by nasgen (referenced from static field in this class) is retained
-         * 'as is' (as that one is process wide singleton.
-         */
-        super($nasgenmap$.duplicate());
+        super(checkAndGetMap(context));
         this.setContext(context);
         this.setIsScope();
 
@@ -533,7 +549,8 @@
             if (hint == String.class) {
 
                 final Object toString = TO_STRING.getGetter().invokeExact(sobj);
-                if (toString instanceof ScriptFunction) {
+
+                if (Bootstrap.isCallable(toString)) {
                     final Object value = TO_STRING.getInvoker().invokeExact(toString, sobj);
                     if (JSType.isPrimitive(value)) {
                         return value;
@@ -541,7 +558,7 @@
                 }
 
                 final Object valueOf = VALUE_OF.getGetter().invokeExact(sobj);
-                if (valueOf instanceof ScriptFunction) {
+                if (Bootstrap.isCallable(valueOf)) {
                     final Object value = VALUE_OF.getInvoker().invokeExact(valueOf, sobj);
                     if (JSType.isPrimitive(value)) {
                         return value;
@@ -552,7 +569,7 @@
 
             if (hint == Number.class) {
                 final Object valueOf = VALUE_OF.getGetter().invokeExact(sobj);
-                if (valueOf instanceof ScriptFunction) {
+                if (Bootstrap.isCallable(valueOf)) {
                     final Object value = VALUE_OF.getInvoker().invokeExact(valueOf, sobj);
                     if (JSType.isPrimitive(value)) {
                         return value;
@@ -560,7 +577,7 @@
                 }
 
                 final Object toString = TO_STRING.getGetter().invokeExact(sobj);
-                if (toString instanceof ScriptFunction) {
+                if (Bootstrap.isCallable(toString)) {
                     final Object value = TO_STRING.getInvoker().invokeExact(toString, sobj);
                     if (JSType.isPrimitive(value)) {
                         return value;
--- a/src/jdk/nashorn/internal/objects/NativeArray.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/objects/NativeArray.java	Tue Jul 23 21:51:23 2013 +0530
@@ -360,7 +360,7 @@
             final ScriptObject sobj = (ScriptObject)obj;
             try {
                 final Object join = JOIN.getGetter().invokeExact(sobj);
-                if (join instanceof ScriptFunction) {
+                if (Bootstrap.isCallable(join)) {
                     return JOIN.getInvoker().invokeExact(join, sobj);
                 }
             } catch (final RuntimeException | Error e) {
@@ -396,7 +396,7 @@
                         final ScriptObject sobj           = (ScriptObject)val;
                         final Object       toLocaleString = TO_LOCALE_STRING.getGetter().invokeExact(sobj);
 
-                        if (toLocaleString instanceof ScriptFunction) {
+                        if (Bootstrap.isCallable(toLocaleString)) {
                             sb.append((String)TO_LOCALE_STRING.getInvoker().invokeExact(toLocaleString, sobj));
                         } else {
                             throw typeError("not.a.function", "toLocaleString");
--- a/src/jdk/nashorn/internal/objects/NativeDate.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/objects/NativeDate.java	Tue Jul 23 21:51:23 2013 +0530
@@ -47,6 +47,7 @@
 import jdk.nashorn.internal.runtime.ScriptFunction;
 import jdk.nashorn.internal.runtime.ScriptObject;
 import jdk.nashorn.internal.runtime.ScriptRuntime;
+import jdk.nashorn.internal.runtime.linker.Bootstrap;
 import jdk.nashorn.internal.runtime.linker.InvokeByName;
 
 /**
@@ -862,7 +863,7 @@
 
         try {
             final Object func = TO_ISO_STRING.getGetter().invokeExact(sobj);
-            if (func instanceof ScriptFunction) {
+            if (Bootstrap.isCallable(func)) {
                 return TO_ISO_STRING.getInvoker().invokeExact(func, sobj, key);
             }
             throw typeError("not.a.function", ScriptRuntime.safeToString(func));
--- a/src/jdk/nashorn/internal/objects/NativeJSON.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/objects/NativeJSON.java	Tue Jul 23 21:51:23 2013 +0530
@@ -189,7 +189,7 @@
             if (value instanceof ScriptObject) {
                 final ScriptObject svalue = (ScriptObject)value;
                 final Object toJSON = TO_JSON.getGetter().invokeExact(svalue);
-                if (toJSON instanceof ScriptFunction) {
+                if (Bootstrap.isCallable(toJSON)) {
                     value = TO_JSON.getInvoker().invokeExact(toJSON, svalue, key);
                 }
             }
--- a/src/jdk/nashorn/internal/objects/NativeObject.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/objects/NativeObject.java	Tue Jul 23 21:51:23 2013 +0530
@@ -407,7 +407,7 @@
             try {
                 final Object toString = TO_STRING.getGetter().invokeExact(sobj);
 
-                if (toString instanceof ScriptFunction) {
+                if (Bootstrap.isCallable(toString)) {
                     return TO_STRING.getInvoker().invokeExact(toString, sobj);
                 }
             } catch (final RuntimeException | Error e) {
--- a/src/jdk/nashorn/internal/parser/AbstractParser.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/parser/AbstractParser.java	Tue Jul 23 21:51:23 2013 +0530
@@ -25,6 +25,7 @@
 
 package jdk.nashorn.internal.parser;
 
+import static jdk.nashorn.internal.parser.TokenType.COMMENT;
 import static jdk.nashorn.internal.parser.TokenType.EOF;
 import static jdk.nashorn.internal.parser.TokenType.EOL;
 import static jdk.nashorn.internal.parser.TokenType.IDENT;
@@ -135,14 +136,27 @@
     }
 
     /**
-     * Seek next token that is not an EOL.
+     * Seek next token that is not an EOL or comment.
      *
      * @return tokenType of next token.
      */
     protected final TokenType next() {
         do {
             nextOrEOL();
-        } while (type == EOL);
+        } while (type == EOL || type == COMMENT);
+
+        return type;
+    }
+
+    /**
+     * Seek next token or EOL (skipping comments.)
+     *
+     * @return tokenType of next token.
+     */
+    protected final TokenType nextOrEOL() {
+        do {
+            nextToken();
+        } while (type == COMMENT);
 
         return type;
     }
@@ -152,7 +166,7 @@
      *
      * @return tokenType of next token.
      */
-    protected final TokenType nextOrEOL() {
+    private final TokenType nextToken() {
         // Capture last token tokenType.
         last = type;
         if (type != EOF) {
--- a/src/jdk/nashorn/internal/parser/Lexer.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/parser/Lexer.java	Tue Jul 23 21:51:23 2013 +0530
@@ -26,6 +26,7 @@
 package jdk.nashorn.internal.parser;
 
 import static jdk.nashorn.internal.parser.TokenType.ADD;
+import static jdk.nashorn.internal.parser.TokenType.COMMENT;
 import static jdk.nashorn.internal.parser.TokenType.DECIMAL;
 import static jdk.nashorn.internal.parser.TokenType.EOF;
 import static jdk.nashorn.internal.parser.TokenType.EOL;
@@ -83,12 +84,70 @@
     /** Type of last token added. */
     private TokenType last;
 
-    private static final String JAVASCRIPT_WHITESPACE;
-    private static final String JAVASCRIPT_WHITESPACE_EOL;
-    private static final String JAVASCRIPT_WHITESPACE_IN_REGEXP;
+    private static final String SPACETAB = " \t";  // ASCII space and tab
+    private static final String LFCR     = "\n\r"; // line feed and carriage return (ctrl-m)
+
+    private static final String JSON_WHITESPACE_EOL = LFCR;
+    private static final String JSON_WHITESPACE     = SPACETAB + LFCR;
 
-    private static final String JSON_WHITESPACE;
-    private static final String JSON_WHITESPACE_EOL;
+    private static final String JAVASCRIPT_WHITESPACE_EOL =
+        LFCR +
+        "\u2028" + // line separator
+        "\u2029"   // paragraph separator
+        ;
+    private static final String JAVASCRIPT_WHITESPACE =
+        SPACETAB +
+        JAVASCRIPT_WHITESPACE_EOL +
+        "\u000b" + // tabulation line
+        "\u000c" + // ff (ctrl-l)
+        "\u00a0" + // Latin-1 space
+        "\u1680" + // Ogham space mark
+        "\u180e" + // separator, Mongolian vowel
+        "\u2000" + // en quad
+        "\u2001" + // em quad
+        "\u2002" + // en space
+        "\u2003" + // em space
+        "\u2004" + // three-per-em space
+        "\u2005" + // four-per-em space
+        "\u2006" + // six-per-em space
+        "\u2007" + // figure space
+        "\u2008" + // punctuation space
+        "\u2009" + // thin space
+        "\u200a" + // hair space
+        "\u202f" + // narrow no-break space
+        "\u205f" + // medium mathematical space
+        "\u3000" + // ideographic space
+        "\ufeff"   // byte order mark
+        ;
+
+    private static final String JAVASCRIPT_WHITESPACE_IN_REGEXP =
+        "\\u000a" + // line feed
+        "\\u000d" + // carriage return (ctrl-m)
+        "\\u2028" + // line separator
+        "\\u2029" + // paragraph separator
+        "\\u0009" + // tab
+        "\\u0020" + // ASCII space
+        "\\u000b" + // tabulation line
+        "\\u000c" + // ff (ctrl-l)
+        "\\u00a0" + // Latin-1 space
+        "\\u1680" + // Ogham space mark
+        "\\u180e" + // separator, Mongolian vowel
+        "\\u2000" + // en quad
+        "\\u2001" + // em quad
+        "\\u2002" + // en space
+        "\\u2003" + // em space
+        "\\u2004" + // three-per-em space
+        "\\u2005" + // four-per-em space
+        "\\u2006" + // six-per-em space
+        "\\u2007" + // figure space
+        "\\u2008" + // punctuation space
+        "\\u2009" + // thin space
+        "\\u200a" + // hair space
+        "\\u202f" + // narrow no-break space
+        "\\u205f" + // medium mathematical space
+        "\\u3000" + // ideographic space
+        "\\ufeff"   // byte order mark
+        ;
 
     static String unicodeEscape(final char ch) {
         final StringBuilder sb = new StringBuilder();
@@ -104,65 +163,6 @@
         return sb.toString();
     }
 
-    static {
-        final StringBuilder ws       = new StringBuilder();
-        final StringBuilder wsEOL    = new StringBuilder();
-        final StringBuilder wsRegExp = new StringBuilder();
-        final StringBuilder jsonWs   = new StringBuilder();
-
-        jsonWs.append((char)0x000a);
-        jsonWs.append((char)0x000d);
-        JSON_WHITESPACE_EOL = jsonWs.toString();
-
-        jsonWs.append((char)0x0009);
-        jsonWs.append((char)0x0020);
-        JSON_WHITESPACE = jsonWs.toString();
-
-        for (int i = 0; i <= 0xffff; i++) {
-           switch (i) {
-            case 0x000a: // line feed
-            case 0x000d: // carriage return (ctrl-m)
-            case 0x2028: // line separator
-            case 0x2029: // paragraph separator
-                wsEOL.append((char)i);
-            case 0x0009: // tab
-            case 0x0020: // ASCII space
-            case 0x000b: // tabulation line
-            case 0x000c: // ff (ctrl-l)
-            case 0x00a0: // Latin-1 space
-            case 0x1680: // Ogham space mark
-            case 0x180e: // separator, Mongolian vowel
-            case 0x2000: // en quad
-            case 0x2001: // em quad
-            case 0x2002: // en space
-            case 0x2003: // em space
-            case 0x2004: // three-per-em space
-            case 0x2005: // four-per-em space
-            case 0x2006: // six-per-em space
-            case 0x2007: // figure space
-            case 0x2008: // punctuation space
-            case 0x2009: // thin space
-            case 0x200a: // hair space
-            case 0x202f: // narrow no-break space
-            case 0x205f: // medium mathematical space
-            case 0x3000: // ideographic space
-            case 0xfeff: // byte order mark
-                ws.append((char)i);
-
-                wsRegExp.append(Lexer.unicodeEscape((char)i));
-                break;
-
-            default:
-                break;
-            }
-        }
-
-        JAVASCRIPT_WHITESPACE = ws.toString();
-        JAVASCRIPT_WHITESPACE_EOL = wsEOL.toString();
-        JAVASCRIPT_WHITESPACE_IN_REGEXP = wsRegExp.toString();
-
-    }
-
     /**
      * Constructor
      *
@@ -427,6 +427,9 @@
      * @return True if a comment.
      */
     protected boolean skipComments() {
+        // Save the current position.
+        final int start = position;
+
         if (ch0 == '/') {
             // Is it a // comment.
             if (ch1 == '/') {
@@ -437,10 +440,9 @@
                     skip(1);
                 }
                 // Did detect a comment.
+                add(COMMENT, start);
                 return true;
             } else if (ch1 == '*') {
-                // Record beginning of comment.
-                final int start = position;
                 // Skip over /*.
                 skip(2);
                 // Scan for */.
@@ -462,11 +464,11 @@
                 }
 
                 // Did detect a comment.
+                add(COMMENT, start);
                 return true;
             }
-        }
-
-        if (scripting && ch0 == '#') {
+        } else if (ch0 == '#') {
+            assert scripting;
             // shell style comment
             // Skip over #.
             skip(1);
@@ -475,6 +477,7 @@
                 skip(1);
             }
             // Did detect a comment.
+            add(COMMENT, start);
             return true;
         }
 
@@ -563,7 +566,7 @@
      *
      * @param token the token.
      * @param startTokenType the token type.
-     * @parasm lir LineInfoReceiver that receives line info for multi-line string literals.
+     * @param lir LineInfoReceiver that receives line info for multi-line string literals.
      * @return True if a literal beginning with startToken was found and scanned.
      */
     protected boolean scanLiteral(final long token, final TokenType startTokenType, final LineInfoReceiver lir) {
@@ -1461,11 +1464,10 @@
             final State restState = saveState();
             // keep line number updated
             int lastLine = line;
-            int lastLinePosition = linePosition;
 
             skipLine(false);
             lastLine++;
-            lastLinePosition = position;
+            int lastLinePosition = position;
             restState.setLimit(position);
 
             // Record beginning of string.
--- a/src/jdk/nashorn/internal/parser/TokenType.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/parser/TokenType.java	Tue Jul 23 21:51:23 2013 +0530
@@ -44,6 +44,7 @@
     ERROR          (SPECIAL,  null),
     EOF            (SPECIAL,  null),
     EOL            (SPECIAL,  null),
+    COMMENT        (SPECIAL,  null),
 
     NOT            (UNARY,   "!",    14, false),
     NE             (BINARY,  "!=",    9, true),
--- a/src/jdk/nashorn/internal/runtime/Context.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/Context.java	Tue Jul 23 21:51:23 2013 +0530
@@ -36,6 +36,7 @@
 import java.io.PrintWriter;
 import java.lang.invoke.MethodHandle;
 import java.lang.invoke.MethodHandles;
+import java.lang.reflect.Modifier;
 import java.util.concurrent.atomic.AtomicLong;
 import java.net.MalformedURLException;
 import java.net.URL;
@@ -121,11 +122,6 @@
      * @param global the global scope
      */
     public static void setGlobal(final ScriptObject global) {
-        final SecurityManager sm = System.getSecurityManager();
-        if (sm != null) {
-            sm.checkPermission(new RuntimePermission("nashorn.setGlobal"));
-        }
-
         if (global != null && !(global instanceof Global)) {
             throw new IllegalArgumentException("global is not an instance of Global!");
         }
@@ -560,6 +556,7 @@
      * Checks that the given package can be accessed from current call stack.
      *
      * @param fullName fully qualified package name
+     * @throw SecurityException if not accessible
      */
     public static void checkPackageAccess(final String fullName) {
         final int index = fullName.lastIndexOf('.');
@@ -572,6 +569,31 @@
     }
 
     /**
+     * Checks that the given package can be accessed from current call stack.
+     *
+     * @param fullName fully qualified package name
+     * @return true if package is accessible, false otherwise
+     */
+    public static boolean isAccessiblePackage(final String fullName) {
+        try {
+            checkPackageAccess(fullName);
+            return true;
+        } catch (final SecurityException se) {
+            return false;
+        }
+    }
+
+    /**
+     * Checks that the given Class can be accessed from current call stack and is public.
+     *
+     * @param clazz Class object to check
+     * @return true if Class is accessible, false otherwise
+     */
+    public static boolean isAccessibleClass(final Class<?> clazz) {
+        return Modifier.isPublic(clazz.getModifiers()) && Context.isAccessiblePackage(clazz.getName());
+    }
+
+    /**
      * Lookup a Java class. This is used for JSR-223 stuff linking in from
      * {@code jdk.nashorn.internal.objects.NativeJava} and {@code jdk.nashorn.internal.runtime.NativeJavaPackage}
      *
@@ -645,12 +667,7 @@
      * @return the global script object
      */
     public ScriptObject newGlobal() {
-        final SecurityManager sm = System.getSecurityManager();
-        if (sm != null) {
-            sm.checkPermission(new RuntimePermission("nashorn.newGlobal"));
-        }
-
-        return newGlobalTrusted();
+        return new Global(this);
     }
 
     /**
@@ -828,10 +845,6 @@
              });
     }
 
-    private ScriptObject newGlobalTrusted() {
-        return new Global(this);
-    }
-
     private long getUniqueScriptId() {
         return uniqueScriptId.getAndIncrement();
     }
--- a/src/jdk/nashorn/internal/runtime/ListAdapter.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/ListAdapter.java	Tue Jul 23 21:51:23 2013 +0530
@@ -31,6 +31,7 @@
 import java.util.ListIterator;
 import java.util.NoSuchElementException;
 import java.util.RandomAccess;
+import jdk.nashorn.internal.runtime.linker.Bootstrap;
 import jdk.nashorn.internal.runtime.linker.InvokeByName;
 
 /**
@@ -157,7 +158,7 @@
         }
     }
     private static void checkFunction(Object fn, InvokeByName invoke) {
-        if(!(fn instanceof ScriptFunction)) {
+        if(!(Bootstrap.isCallable(fn))) {
             throw new UnsupportedOperationException("The script object doesn't have a function named " + invoke.getName());
         }
     }
--- a/src/jdk/nashorn/internal/runtime/NativeJavaPackage.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/NativeJavaPackage.java	Tue Jul 23 21:51:23 2013 +0530
@@ -84,8 +84,8 @@
      * @param proto proto
      */
     public NativeJavaPackage(final String name, final ScriptObject proto) {
+        super(proto, null);
         this.name = name;
-        this.setProto(proto);
     }
 
     @Override
--- a/src/jdk/nashorn/internal/runtime/ScriptRuntime.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/ScriptRuntime.java	Tue Jul 23 21:51:23 2013 +0530
@@ -335,9 +335,7 @@
      */
     public static Object checkAndApply(final ScriptFunction target, final Object self, final Object... args) {
         final ScriptObject global = Context.getGlobalTrusted();
-        if (! (global instanceof GlobalObject)) {
-            throw new IllegalStateException("No current global set");
-        }
+        assert (global instanceof GlobalObject): "No current global set";
 
         if (target.getContext() != global.getContext()) {
             throw new IllegalArgumentException("'target' function is not from current Context");
@@ -383,9 +381,7 @@
      */
     public static Object checkAndConstruct(final ScriptFunction target, final Object... args) {
         final ScriptObject global = Context.getGlobalTrusted();
-        if (! (global instanceof GlobalObject)) {
-            throw new IllegalStateException("No current global set");
-        }
+        assert (global instanceof GlobalObject): "No current global set";
 
         if (target.getContext() != global.getContext()) {
             throw new IllegalArgumentException("'target' function is not from current Context");
--- a/src/jdk/nashorn/internal/runtime/WithObject.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/WithObject.java	Tue Jul 23 21:51:23 2013 +0530
@@ -58,10 +58,8 @@
      * @param expression with expression
      */
     public WithObject(final ScriptObject scope, final Object expression) {
-        super();
-
+        super(scope, null);
         setIsScope();
-        setProto(scope);
         this.expression = expression;
     }
 
--- a/src/jdk/nashorn/internal/runtime/arrays/IteratorAction.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/arrays/IteratorAction.java	Tue Jul 23 21:51:23 2013 +0530
@@ -31,6 +31,7 @@
 import jdk.nashorn.internal.runtime.Context;
 import jdk.nashorn.internal.runtime.ScriptFunction;
 import jdk.nashorn.internal.runtime.ScriptRuntime;
+import jdk.nashorn.internal.runtime.linker.Bootstrap;
 
 /**
  * Helper class for the various map/apply functions in {@link jdk.nashorn.internal.objects.NativeArray}.
@@ -103,6 +104,8 @@
         } else if (callbackfn instanceof ScriptObjectMirror &&
             ((ScriptObjectMirror)callbackfn).isFunction()) {
             strict = ((ScriptObjectMirror)callbackfn).isStrictFunction();
+        } else if (Bootstrap.isDynamicMethod(callbackfn) || Bootstrap.isFunctionalInterfaceObject(callbackfn)) {
+            strict = false;
         } else {
             throw typeError("not.a.function", ScriptRuntime.safeToString(callbackfn));
         }
--- a/src/jdk/nashorn/internal/runtime/linker/Bootstrap.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/linker/Bootstrap.java	Tue Jul 23 21:51:23 2013 +0530
@@ -38,8 +38,12 @@
 import jdk.internal.dynalink.beans.BeansLinker;
 import jdk.internal.dynalink.linker.GuardedInvocation;
 import jdk.internal.dynalink.linker.LinkerServices;
+import jdk.nashorn.api.scripting.ScriptObjectMirror;
 import jdk.nashorn.internal.codegen.CompilerConstants.Call;
 import jdk.nashorn.internal.codegen.RuntimeCallSite;
+import jdk.nashorn.internal.runtime.JSType;
+import jdk.nashorn.internal.runtime.ScriptFunction;
+import jdk.nashorn.internal.runtime.ScriptRuntime;
 import jdk.nashorn.internal.runtime.options.Options;
 
 /**
@@ -68,6 +72,41 @@
     }
 
     /**
+     * Returns if the given object is a "callable"
+     * @param obj object to be checked for callability
+     * @return true if the obj is callable
+     */
+    public static boolean isCallable(final Object obj) {
+        if (obj == ScriptRuntime.UNDEFINED || obj == null) {
+            return false;
+        }
+
+        return obj instanceof ScriptFunction ||
+            ((obj instanceof ScriptObjectMirror) && ((ScriptObjectMirror)obj).isFunction()) ||
+            isDynamicMethod(obj) ||
+            isFunctionalInterfaceObject(obj);
+    }
+
+    /**
+     * Returns if the given object is a dynalink Dynamic method
+     * @param obj object to be checked
+     * @return true if the obj is a dynamic method
+     */
+    public static boolean isDynamicMethod(final Object obj) {
+        return obj instanceof BoundDynamicMethod || BeansLinker.isDynamicMethod(obj);
+    }
+
+    /**
+     * Returns if the given object is an instance of an interface annotated with
+     * java.lang.FunctionalInterface
+     * @param obj object to be checked
+     * @return true if the obj is an instance of @FunctionalInterface interface
+     */
+    public static boolean isFunctionalInterfaceObject(final Object obj) {
+        return !JSType.isPrimitive(obj) && (NashornBottomLinker.getFunctionalInterfaceMethod(obj.getClass()) != null);
+    }
+
+    /**
      * Create a call site and link it for Nashorn. This version of the method conforms to the invokedynamic bootstrap
      * method expected signature and is referenced from Nashorn generated bytecode as the bootstrap method for all
      * invokedynamic instructions.
--- a/src/jdk/nashorn/internal/runtime/linker/JavaAdapterBytecodeGenerator.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/linker/JavaAdapterBytecodeGenerator.java	Tue Jul 23 21:51:23 2013 +0530
@@ -45,6 +45,7 @@
 
 import java.lang.invoke.MethodHandle;
 import java.lang.invoke.MethodType;
+import java.lang.reflect.AccessibleObject;
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Method;
 import java.lang.reflect.Modifier;
@@ -66,6 +67,7 @@
 import jdk.nashorn.internal.runtime.Context;
 import jdk.nashorn.internal.runtime.ScriptFunction;
 import jdk.nashorn.internal.runtime.ScriptObject;
+import sun.reflect.CallerSensitive;
 
 /**
  * Generates bytecode for a Java adapter class. Used by the {@link JavaAdapterFactory}.
@@ -121,7 +123,23 @@
  * constructor's trailing position and thus provide further instance-specific overrides. The order of invocation is
  * always instance-specified method, then a class-specified method, and finally the superclass method.
  */
-final class JavaAdapterBytecodeGenerator extends JavaAdapterGeneratorBase {
+final class JavaAdapterBytecodeGenerator {
+    static final Type CONTEXT_TYPE       = Type.getType(Context.class);
+    static final Type OBJECT_TYPE        = Type.getType(Object.class);
+    static final Type SCRIPT_OBJECT_TYPE = Type.getType(ScriptObject.class);
+
+    static final String CONTEXT_TYPE_NAME = CONTEXT_TYPE.getInternalName();
+    static final String OBJECT_TYPE_NAME  = OBJECT_TYPE.getInternalName();
+
+    static final String INIT = "<init>";
+
+    static final String GLOBAL_FIELD_NAME = "global";
+
+    static final String SCRIPT_OBJECT_TYPE_DESCRIPTOR = SCRIPT_OBJECT_TYPE.getDescriptor();
+
+    static final String SET_GLOBAL_METHOD_DESCRIPTOR = Type.getMethodDescriptor(Type.VOID_TYPE, SCRIPT_OBJECT_TYPE);
+    static final String VOID_NOARG_METHOD_DESCRIPTOR = Type.getMethodDescriptor(Type.VOID_TYPE);
+
     private static final Type SCRIPT_FUNCTION_TYPE = Type.getType(ScriptFunction.class);
     private static final Type STRING_TYPE = Type.getType(String.class);
     private static final Type METHOD_TYPE_TYPE = Type.getType(MethodType.class);
@@ -151,7 +169,7 @@
     // Class name suffix used to append to the adaptee class name, when it can be defined in the adaptee's package.
     private static final String ADAPTER_CLASS_NAME_SUFFIX = "$$NashornJavaAdapter";
     private static final String JAVA_PACKAGE_PREFIX = "java/";
-    private static final int MAX_GENERATED_TYPE_NAME_LENGTH = 238; //255 - 17; 17 is the maximum possible length for the global setter inner class suffix
+    private static final int MAX_GENERATED_TYPE_NAME_LENGTH = 255;
 
     private static final String CLASS_INIT = "<clinit>";
     private static final String STATIC_GLOBAL_FIELD_NAME = "staticGlobal";
@@ -175,8 +193,6 @@
     private final String superClassName;
     // Binary name of the generated class.
     private final String generatedClassName;
-    // Binary name of the PrivilegedAction inner class that is used to
-    private final String globalSetterClassName;
     private final Set<String> usedFieldNames = new HashSet<>();
     private final Set<String> abstractMethodNames = new HashSet<>();
     private final String samName;
@@ -220,9 +236,6 @@
             l = random.nextLong();
         }
 
-        // NOTE: they way this class name is calculated affects the value of MAX_GENERATED_TYPE_NAME_LENGTH constant. If
-        // you change the calculation of globalSetterClassName, adjust the constant too.
-        globalSetterClassName = generatedClassName.concat("$" + Long.toHexString(l & Long.MAX_VALUE));
         cw.visit(Opcodes.V1_7, ACC_PUBLIC | ACC_SUPER | ACC_FINAL, generatedClassName, null, superClassName, getInternalTypeNames(interfaces));
 
         generateGlobalFields();
@@ -250,7 +263,7 @@
     }
 
     JavaAdapterClassLoader createAdapterClassLoader() {
-        return new JavaAdapterClassLoader(generatedClassName, cw.toByteArray(), globalSetterClassName);
+        return new JavaAdapterClassLoader(generatedClassName, cw.toByteArray());
     }
 
     boolean isAutoConvertibleFromFunction() {
@@ -367,7 +380,7 @@
         boolean gotCtor = false;
         for (final Constructor<?> ctor: superClass.getDeclaredConstructors()) {
             final int modifier = ctor.getModifiers();
-            if((modifier & (Modifier.PUBLIC | Modifier.PROTECTED)) != 0) {
+            if((modifier & (Modifier.PUBLIC | Modifier.PROTECTED)) != 0 && !isCallerSensitive(ctor)) {
                 generateConstructors(ctor);
                 gotCtor = true;
             }
@@ -511,8 +524,8 @@
         mv.invokestatic(CONTEXT_TYPE_NAME, "getGlobal", GET_GLOBAL_METHOD_DESCRIPTOR);
     }
 
-    private void invokeSetGlobal(final InstructionAdapter mv) {
-        mv.invokestatic(globalSetterClassName, "setGlobal", SET_GLOBAL_METHOD_DESCRIPTOR);
+    private static void invokeSetGlobal(final InstructionAdapter mv) {
+        mv.invokestatic(CONTEXT_TYPE_NAME, "setGlobal", SET_GLOBAL_METHOD_DESCRIPTOR);
     }
 
     /**
@@ -794,7 +807,7 @@
      * entry.
      * @param globalsDifferVar index of the boolean local variable that is true if the global needs to be restored.
      */
-    private void emitFinally(final InstructionAdapter mv, final int currentGlobalVar, final int globalsDifferVar) {
+    private static void emitFinally(final InstructionAdapter mv, final int currentGlobalVar, final int globalsDifferVar) {
         // Emit code to restore the previous Nashorn global if needed
         mv.visitVarInsn(ILOAD, globalsDifferVar);
         final Label skip = new Label();
@@ -832,7 +845,7 @@
                 }
                 if (Modifier.isPublic(m) || Modifier.isProtected(m)) {
                     final MethodInfo mi = new MethodInfo(typeMethod);
-                    if (Modifier.isFinal(m)) {
+                    if (Modifier.isFinal(m) || isCallerSensitive(typeMethod)) {
                         finalMethods.add(mi);
                     } else if (!finalMethods.contains(mi) && methodInfos.add(mi)) {
                         if (Modifier.isAbstract(m)) {
@@ -909,4 +922,8 @@
         final Class<?> superClass = c1.getSuperclass();
         return superClass.isAssignableFrom(c2) ? superClass : assignableSuperClass(superClass, c2);
     }
+
+    private static boolean isCallerSensitive(final AccessibleObject e) {
+        return e.isAnnotationPresent(CallerSensitive.class);
+    }
 }
--- a/src/jdk/nashorn/internal/runtime/linker/JavaAdapterClassLoader.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/linker/JavaAdapterClassLoader.java	Tue Jul 23 21:51:23 2013 +0530
@@ -25,16 +25,6 @@
 
 package jdk.nashorn.internal.runtime.linker;
 
-import static jdk.internal.org.objectweb.asm.Opcodes.ACC_FINAL;
-import static jdk.internal.org.objectweb.asm.Opcodes.ACC_PRIVATE;
-import static jdk.internal.org.objectweb.asm.Opcodes.ACC_PUBLIC;
-import static jdk.internal.org.objectweb.asm.Opcodes.ACC_STATIC;
-import static jdk.internal.org.objectweb.asm.Opcodes.ACC_SUPER;
-import static jdk.internal.org.objectweb.asm.Opcodes.ACONST_NULL;
-import static jdk.internal.org.objectweb.asm.Opcodes.ALOAD;
-import static jdk.internal.org.objectweb.asm.Opcodes.ARETURN;
-import static jdk.internal.org.objectweb.asm.Opcodes.RETURN;
-
 import java.security.AccessController;
 import java.security.AllPermission;
 import java.security.CodeSigner;
@@ -45,12 +35,6 @@
 import java.security.SecureClassLoader;
 
 import jdk.internal.dynalink.beans.StaticClass;
-import jdk.internal.org.objectweb.asm.ClassWriter;
-import jdk.internal.org.objectweb.asm.Opcodes;
-import jdk.internal.org.objectweb.asm.Type;
-import jdk.internal.org.objectweb.asm.commons.InstructionAdapter;
-import jdk.nashorn.internal.runtime.Context;
-import jdk.nashorn.internal.runtime.ScriptObject;
 
 /**
  * This class encapsulates the bytecode of the adapter class and can be used to load it into the JVM as an actual Class.
@@ -60,22 +44,15 @@
  * class are normally created by {@link JavaAdapterBytecodeGenerator}.
  */
 @SuppressWarnings("javadoc")
-class JavaAdapterClassLoader extends JavaAdapterGeneratorBase {
-    private static final Type PRIVILEGED_ACTION_TYPE = Type.getType(PrivilegedAction.class);
-
-    private static final String PRIVILEGED_ACTION_TYPE_NAME = PRIVILEGED_ACTION_TYPE.getInternalName();
-    private static final String PRIVILEGED_RUN_METHOD_DESCRIPTOR = Type.getMethodDescriptor(OBJECT_TYPE);
-
+final class JavaAdapterClassLoader {
     private static final ProtectionDomain GENERATED_PROTECTION_DOMAIN = createGeneratedProtectionDomain();
 
     private final String className;
     private final byte[] classBytes;
-    private final String globalSetterClassName;
 
-    JavaAdapterClassLoader(String className, byte[] classBytes, String globalSetterClassName) {
+    JavaAdapterClassLoader(String className, byte[] classBytes) {
         this.className = className.replace('/', '.');
         this.classBytes = classBytes;
-        this.globalSetterClassName = globalSetterClassName.replace('/', '.');
     }
 
     /**
@@ -116,7 +93,6 @@
     private ClassLoader createClassLoader(final ClassLoader parentLoader) {
         return new AdapterLoader(parentLoader) {
             private final ClassLoader myLoader = getClass().getClassLoader();
-            private final ProtectionDomain myProtectionDomain = getClass().getProtectionDomain();
 
             @Override
             public Class<?> loadClass(final String name, final boolean resolve) throws ClassNotFoundException {
@@ -138,9 +114,6 @@
             protected Class<?> findClass(final String name) throws ClassNotFoundException {
                 if(name.equals(className)) {
                     return defineClass(name, classBytes, 0, classBytes.length, GENERATED_PROTECTION_DOMAIN);
-                } else if(name.equals(globalSetterClassName)) {
-                    final byte[] bytes = generatePrivilegedActionClassBytes(globalSetterClassName.replace('.', '/'));
-                    return defineClass(name, bytes, 0, bytes.length, myProtectionDomain);
                 } else {
                     throw new ClassNotFoundException(name);
                 }
@@ -158,70 +131,4 @@
         permissions.add(new AllPermission());
         return new ProtectionDomain(new CodeSource(null, (CodeSigner[])null), permissions);
     }
-
-    /**
-     * Generates a PrivilegedAction implementation class for invoking {@link Context#setGlobal(ScriptObject)} from the
-     * adapter class.
-     */
-    private static byte[] generatePrivilegedActionClassBytes(final String className) {
-        final ClassWriter w = new ClassWriter(ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
-        // class GlobalSetter implements PrivilegedAction {
-        w.visit(Opcodes.V1_7, ACC_SUPER | ACC_FINAL, className, null, OBJECT_TYPE_NAME, new String[] {
-                PRIVILEGED_ACTION_TYPE_NAME
-        });
-
-        // private final ScriptObject global;
-        w.visitField(ACC_PRIVATE | ACC_FINAL, GLOBAL_FIELD_NAME, SCRIPT_OBJECT_TYPE_DESCRIPTOR, null, null).visitEnd();
-
-        // private GlobalSetter(ScriptObject global) {
-        InstructionAdapter mv = new InstructionAdapter(w.visitMethod(ACC_PRIVATE, INIT,
-                SET_GLOBAL_METHOD_DESCRIPTOR, null, new String[0]));
-        mv.visitCode();
-        // super();
-        mv.visitVarInsn(ALOAD, 0);
-        mv.invokespecial(OBJECT_TYPE_NAME, INIT, VOID_NOARG_METHOD_DESCRIPTOR);
-        // this.global = global;
-        mv.visitVarInsn(ALOAD, 0);
-        mv.visitVarInsn(ALOAD, 1);
-        mv.putfield(className, GLOBAL_FIELD_NAME, SCRIPT_OBJECT_TYPE_DESCRIPTOR);
-
-        mv.visitInsn(RETURN);
-        mv.visitEnd();
-        mv.visitMaxs(0, 0);
-
-        // public Object run() {
-        mv = new InstructionAdapter(w.visitMethod(ACC_PUBLIC, "run", PRIVILEGED_RUN_METHOD_DESCRIPTOR, null,
-                new String[0]));
-        mv.visitCode();
-        // Context.setGlobal(this.global);
-        mv.visitVarInsn(ALOAD, 0);
-        mv.getfield(className, GLOBAL_FIELD_NAME, SCRIPT_OBJECT_TYPE_DESCRIPTOR);
-        mv.invokestatic(CONTEXT_TYPE_NAME, "setGlobal", SET_GLOBAL_METHOD_DESCRIPTOR);
-        // return null;
-        mv.visitInsn(ACONST_NULL);
-        mv.visitInsn(ARETURN);
-
-        mv.visitEnd();
-        mv.visitMaxs(0, 0);
-
-        // static void setGlobal(ScriptObject global) {
-        mv = new InstructionAdapter(w.visitMethod(ACC_STATIC, "setGlobal", SET_GLOBAL_METHOD_DESCRIPTOR, null,
-                new String[0]));
-        mv.visitCode();
-        // new GlobalSetter(ScriptObject global)
-        mv.anew(Type.getType("L" + className + ";"));
-        mv.dup();
-        mv.visitVarInsn(ALOAD, 0);
-        mv.invokespecial(className, INIT, SET_GLOBAL_METHOD_DESCRIPTOR);
-        // AccessController.doPrivileged(...)
-        mv.invokestatic(Type.getInternalName(AccessController.class), "doPrivileged", Type.getMethodDescriptor(
-                OBJECT_TYPE, PRIVILEGED_ACTION_TYPE));
-        mv.pop();
-        mv.visitInsn(RETURN);
-
-        mv.visitEnd();
-        mv.visitMaxs(0, 0);
-
-        return w.toByteArray();
-    }
 }
--- a/src/jdk/nashorn/internal/runtime/linker/JavaAdapterGeneratorBase.java	Wed Jul 17 00:36:48 2013 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-/*
- * Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-package jdk.nashorn.internal.runtime.linker;
-
-import jdk.internal.org.objectweb.asm.Type;
-import jdk.nashorn.internal.runtime.Context;
-import jdk.nashorn.internal.runtime.ScriptObject;
-
-/**
- * Base class for both {@link JavaAdapterBytecodeGenerator} and {@link JavaAdapterClassLoader}, containing those
- * bytecode types, type names and method descriptor that are used by both.
- */
-@SuppressWarnings("javadoc")
-abstract class JavaAdapterGeneratorBase {
-    static final Type CONTEXT_TYPE       = Type.getType(Context.class);
-    static final Type OBJECT_TYPE        = Type.getType(Object.class);
-    static final Type SCRIPT_OBJECT_TYPE = Type.getType(ScriptObject.class);
-
-    static final String CONTEXT_TYPE_NAME = CONTEXT_TYPE.getInternalName();
-    static final String OBJECT_TYPE_NAME  = OBJECT_TYPE.getInternalName();
-
-    static final String INIT = "<init>";
-
-    static final String GLOBAL_FIELD_NAME = "global";
-
-    static final String SCRIPT_OBJECT_TYPE_DESCRIPTOR = SCRIPT_OBJECT_TYPE.getDescriptor();
-
-    static final String SET_GLOBAL_METHOD_DESCRIPTOR = Type.getMethodDescriptor(Type.VOID_TYPE, SCRIPT_OBJECT_TYPE);
-    static final String VOID_NOARG_METHOD_DESCRIPTOR = Type.getMethodDescriptor(Type.VOID_TYPE);
-
-    protected JavaAdapterGeneratorBase() {
-    }
-}
--- a/src/jdk/nashorn/internal/runtime/linker/NashornBottomLinker.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/linker/NashornBottomLinker.java	Tue Jul 23 21:51:23 2013 +0530
@@ -30,6 +30,9 @@
 import static jdk.nashorn.internal.lookup.Lookup.MH;
 
 import java.lang.invoke.MethodHandle;
+import java.lang.invoke.MethodType;
+import java.lang.reflect.Method;
+import java.lang.reflect.Modifier;
 import jdk.internal.dynalink.CallSiteDescriptor;
 import jdk.internal.dynalink.beans.BeansLinker;
 import jdk.internal.dynalink.linker.GuardedInvocation;
@@ -37,6 +40,7 @@
 import jdk.internal.dynalink.linker.LinkRequest;
 import jdk.internal.dynalink.linker.LinkerServices;
 import jdk.internal.dynalink.support.Guards;
+import jdk.nashorn.internal.runtime.Context;
 import jdk.nashorn.internal.runtime.ScriptRuntime;
 
 /**
@@ -73,7 +77,7 @@
     private static final MethodHandle EMPTY_ELEM_SETTER =
             MH.dropArguments(EMPTY_PROP_SETTER, 0, Object.class);
 
-    private static GuardedInvocation linkBean(final LinkRequest linkRequest, final LinkerServices linkerServices) {
+    private static GuardedInvocation linkBean(final LinkRequest linkRequest, final LinkerServices linkerServices) throws Exception {
         final NashornCallSiteDescriptor desc = (NashornCallSiteDescriptor)linkRequest.getCallSiteDescriptor();
         final Object self = linkRequest.getReceiver();
         final String operator = desc.getFirstOperator();
@@ -84,6 +88,22 @@
             }
             throw typeError("not.a.function", ScriptRuntime.safeToString(self));
         case "call":
+            // Support dyn:call on any object that supports some @FunctionalInterface
+            // annotated interface. This way Java method, constructor references or
+            // implementations of java.util.function.* interfaces can be called as though
+            // those are script functions.
+            final Method m = getFunctionalInterfaceMethod(self.getClass());
+            if (m != null) {
+                final MethodType callType = desc.getMethodType();
+                // 'callee' and 'thiz' passed from script + actual arguments
+                if (callType.parameterCount() != m.getParameterCount() + 2) {
+                    throw typeError("no.method.matches.args", ScriptRuntime.safeToString(self));
+                }
+                return new GuardedInvocation(
+                        // drop 'thiz' passed from the script.
+                        MH.dropArguments(desc.getLookup().unreflect(m), 1, callType.parameterType(1)),
+                        Guards.getInstanceOfGuard(m.getDeclaringClass())).asType(callType);
+            }
             if(BeansLinker.isDynamicMethod(self)) {
                 throw typeError("no.method.matches.args", ScriptRuntime.safeToString(self));
             }
@@ -148,4 +168,32 @@
         }
         return ScriptRuntime.safeToString(linkRequest.getArguments()[1]);
     }
+
+    // Returns @FunctionalInterface annotated interface's single abstract method.
+    // If not found, returns null
+    static Method getFunctionalInterfaceMethod(final Class<?> clazz) {
+        if (clazz == null) {
+            return null;
+        }
+
+        for (Class<?> iface : clazz.getInterfaces()) {
+            // check accessiblity up-front
+            if (! Context.isAccessibleClass(iface)) {
+                continue;
+            }
+
+            // check for @FunctionalInterface
+            if (iface.isAnnotationPresent(FunctionalInterface.class)) {
+                // return the first abstract method
+                for (final Method m : iface.getMethods()) {
+                    if (Modifier.isAbstract(m.getModifiers())) {
+                        return m;
+                    }
+                }
+            }
+        }
+
+        // did not find here, try super class
+        return getFunctionalInterfaceMethod(clazz.getSuperclass());
+    }
 }
--- a/src/jdk/nashorn/internal/runtime/linker/NashornStaticClassLinker.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/src/jdk/nashorn/internal/runtime/linker/NashornStaticClassLinker.java	Tue Jul 23 21:51:23 2013 +0530
@@ -63,10 +63,11 @@
         if (self.getClass() != StaticClass.class) {
             return null;
         }
+        final Class<?> receiverClass = ((StaticClass) self).getRepresentedClass();
+        Bootstrap.checkReflectionAccess(receiverClass);
         final CallSiteDescriptor desc = request.getCallSiteDescriptor();
         // We intercept "new" on StaticClass instances to provide additional capabilities
         if ("new".equals(desc.getNameToken(CallSiteDescriptor.OPERATOR))) {
-            final Class<?> receiverClass = ((StaticClass) self).getRepresentedClass();
             // Is the class abstract? (This includes interfaces.)
             if (NashornLinker.isAbstractClass(receiverClass)) {
                 // Change this link request into a link request on the adapter class.
--- a/test/script/basic/JDK-8010946-2.js	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/script/basic/JDK-8010946-2.js	Tue Jul 23 21:51:23 2013 +0530
@@ -30,9 +30,8 @@
  * @run
  */
 
-// Ensure these are CallerSensitiveDynamicMethods
+// Ensure this is CallerSensitiveDynamicMethod
 print(java.security.AccessController["doPrivileged(PrivilegedAction)"])
-print(java.lang.Class["forName(String)"])
 
 // Ensure this is not
 print(java.lang.String["valueOf(char)"])
--- a/test/script/basic/JDK-8010946-2.js.EXPECTED	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/script/basic/JDK-8010946-2.js.EXPECTED	Tue Jul 23 21:51:23 2013 +0530
@@ -1,3 +1,2 @@
 [jdk.internal.dynalink.beans.CallerSensitiveDynamicMethod Object java.security.AccessController.doPrivileged(PrivilegedAction)]
-[jdk.internal.dynalink.beans.CallerSensitiveDynamicMethod Class java.lang.Class.forName(String)]
 [jdk.internal.dynalink.beans.SimpleDynamicMethod String java.lang.String.valueOf(char)]
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/basic/JDK-8020356.js	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,10435 @@
+/*
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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.
+ * 
+ * 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * JDK-8020356: ClassCastException Undefined->Scope on spiltter class generated for a large switch statement
+ *
+ * @test
+ * @run
+ */
+
+print(hugeSwitch.apply({i: 20}));
+print(hugeArrayLiteral.apply({i: 10}));
+
+function hugeSwitch() {
+    switch (1) {
+        case 1:
+            return this.i;
+        case 2:
+            return this.i;
+        case 3:
+            return this.i;
+        case 4:
+            return this.i;
+        case 5:
+            return this.i;
+        case 6:
+            return this.i;
+        case 7:
+            return this.i;
+        case 8:
+            return this.i;
+        case 9:
+            return this.i;
+        case 10:
+            return this.i;
+        case 11:
+            return this.i;
+        case 12:
+            return this.i;
+        case 13:
+            return this.i;
+        case 14:
+            return this.i;
+        case 15:
+            return this.i;
+        case 16:
+            return this.i;
+        case 17:
+            return this.i;
+        case 18:
+            return this.i;
+        case 19:
+            return this.i;
+        case 20:
+            return this.i;
+        case 21:
+            return this.i;
+        case 22:
+            return this.i;
+        case 23:
+            return this.i;
+        case 24:
+            return this.i;
+        case 25:
+            return this.i;
+        case 26:
+            return this.i;
+        case 27:
+            return this.i;
+        case 28:
+            return this.i;
+        case 29:
+            return this.i;
+        case 30:
+            return this.i;
+        case 31:
+            return this.i;
+        case 32:
+            return this.i;
+        case 33:
+            return this.i;
+        case 34:
+            return this.i;
+        case 35:
+            return this.i;
+        case 36:
+            return this.i;
+        case 37:
+            return this.i;
+        case 38:
+            return this.i;
+        case 39:
+            return this.i;
+        case 40:
+            return this.i;
+        case 41:
+            return this.i;
+        case 42:
+            return this.i;
+        case 43:
+            return this.i;
+        case 44:
+            return this.i;
+        case 45:
+            return this.i;
+        case 46:
+            return this.i;
+        case 47:
+            return this.i;
+        case 48:
+            return this.i;
+        case 49:
+            return this.i;
+        case 50:
+            return this.i;
+        case 51:
+            return this.i;
+        case 52:
+            return this.i;
+        case 53:
+            return this.i;
+        case 54:
+            return this.i;
+        case 55:
+            return this.i;
+        case 56:
+            return this.i;
+        case 57:
+            return this.i;
+        case 58:
+            return this.i;
+        case 59:
+            return this.i;
+        case 60:
+            return this.i;
+        case 61:
+            return this.i;
+        case 62:
+            return this.i;
+        case 63:
+            return this.i;
+        case 64:
+            return this.i;
+        case 65:
+            return this.i;
+        case 66:
+            return this.i;
+        case 67:
+            return this.i;
+        case 68:
+            return this.i;
+        case 69:
+            return this.i;
+        case 70:
+            return this.i;
+        case 71:
+            return this.i;
+        case 72:
+            return this.i;
+        case 73:
+            return this.i;
+        case 74:
+            return this.i;
+        case 75:
+            return this.i;
+        case 76:
+            return this.i;
+        case 77:
+            return this.i;
+        case 78:
+            return this.i;
+        case 79:
+            return this.i;
+        case 80:
+            return this.i;
+        case 81:
+            return this.i;
+        case 82:
+            return this.i;
+        case 83:
+            return this.i;
+        case 84:
+            return this.i;
+        case 85:
+            return this.i;
+        case 86:
+            return this.i;
+        case 87:
+            return this.i;
+        case 88:
+            return this.i;
+        case 89:
+            return this.i;
+        case 90:
+            return this.i;
+        case 91:
+            return this.i;
+        case 92:
+            return this.i;
+        case 93:
+            return this.i;
+        case 94:
+            return this.i;
+        case 95:
+            return this.i;
+        case 96:
+            return this.i;
+        case 97:
+            return this.i;
+        case 98:
+            return this.i;
+        case 99:
+            return this.i;
+        case 100:
+            return this.i;
+        case 101:
+            return this.i;
+        case 102:
+            return this.i;
+        case 103:
+            return this.i;
+        case 104:
+            return this.i;
+        case 105:
+            return this.i;
+        case 106:
+            return this.i;
+        case 107:
+            return this.i;
+        case 108:
+            return this.i;
+        case 109:
+            return this.i;
+        case 110:
+            return this.i;
+        case 111:
+            return this.i;
+        case 112:
+            return this.i;
+        case 113:
+            return this.i;
+        case 114:
+            return this.i;
+        case 115:
+            return this.i;
+        case 116:
+            return this.i;
+        case 117:
+            return this.i;
+        case 118:
+            return this.i;
+        case 119:
+            return this.i;
+        case 120:
+            return this.i;
+        case 121:
+            return this.i;
+        case 122:
+            return this.i;
+        case 123:
+            return this.i;
+        case 124:
+            return this.i;
+        case 125:
+            return this.i;
+        case 126:
+            return this.i;
+        case 127:
+            return this.i;
+        case 128:
+            return this.i;
+        case 129:
+            return this.i;
+        case 130:
+            return this.i;
+        case 131:
+            return this.i;
+        case 132:
+            return this.i;
+        case 133:
+            return this.i;
+        case 134:
+            return this.i;
+        case 135:
+            return this.i;
+        case 136:
+            return this.i;
+        case 137:
+            return this.i;
+        case 138:
+            return this.i;
+        case 139:
+            return this.i;
+        case 140:
+            return this.i;
+        case 141:
+            return this.i;
+        case 142:
+            return this.i;
+        case 143:
+            return this.i;
+        case 144:
+            return this.i;
+        case 145:
+            return this.i;
+        case 146:
+            return this.i;
+        case 147:
+            return this.i;
+        case 148:
+            return this.i;
+        case 149:
+            return this.i;
+        case 150:
+            return this.i;
+        case 151:
+            return this.i;
+        case 152:
+            return this.i;
+        case 153:
+            return this.i;
+        case 154:
+            return this.i;
+        case 155:
+            return this.i;
+        case 156:
+            return this.i;
+        case 157:
+            return this.i;
+        case 158:
+            return this.i;
+        case 159:
+            return this.i;
+        case 160:
+            return this.i;
+        case 161:
+            return this.i;
+        case 162:
+            return this.i;
+        case 163:
+            return this.i;
+        case 164:
+            return this.i;
+        case 165:
+            return this.i;
+        case 166:
+            return this.i;
+        case 167:
+            return this.i;
+        case 168:
+            return this.i;
+        case 169:
+            return this.i;
+        case 170:
+            return this.i;
+        case 171:
+            return this.i;
+        case 172:
+            return this.i;
+        case 173:
+            return this.i;
+        case 174:
+            return this.i;
+        case 175:
+            return this.i;
+        case 176:
+            return this.i;
+        case 177:
+            return this.i;
+        case 178:
+            return this.i;
+        case 179:
+            return this.i;
+        case 180:
+            return this.i;
+        case 181:
+            return this.i;
+        case 182:
+            return this.i;
+        case 183:
+            return this.i;
+        case 184:
+            return this.i;
+        case 185:
+            return this.i;
+        case 186:
+            return this.i;
+        case 187:
+            return this.i;
+        case 188:
+            return this.i;
+        case 189:
+            return this.i;
+        case 190:
+            return this.i;
+        case 191:
+            return this.i;
+        case 192:
+            return this.i;
+        case 193:
+            return this.i;
+        case 194:
+            return this.i;
+        case 195:
+            return this.i;
+        case 196:
+            return this.i;
+        case 197:
+            return this.i;
+        case 198:
+            return this.i;
+        case 199:
+            return this.i;
+        case 200:
+            return this.i;
+        case 201:
+            return this.i;
+        case 202:
+            return this.i;
+        case 203:
+            return this.i;
+        case 204:
+            return this.i;
+        case 205:
+            return this.i;
+        case 206:
+            return this.i;
+        case 207:
+            return this.i;
+        case 208:
+            return this.i;
+        case 209:
+            return this.i;
+        case 210:
+            return this.i;
+        case 211:
+            return this.i;
+        case 212:
+            return this.i;
+        case 213:
+            return this.i;
+        case 214:
+            return this.i;
+        case 215:
+            return this.i;
+        case 216:
+            return this.i;
+        case 217:
+            return this.i;
+        case 218:
+            return this.i;
+        case 219:
+            return this.i;
+        case 220:
+            return this.i;
+        case 221:
+            return this.i;
+        case 222:
+            return this.i;
+        case 223:
+            return this.i;
+        case 224:
+            return this.i;
+        case 225:
+            return this.i;
+        case 226:
+            return this.i;
+        case 227:
+            return this.i;
+        case 228:
+            return this.i;
+        case 229:
+            return this.i;
+        case 230:
+            return this.i;
+        case 231:
+            return this.i;
+        case 232:
+            return this.i;
+        case 233:
+            return this.i;
+        case 234:
+            return this.i;
+        case 235:
+            return this.i;
+        case 236:
+            return this.i;
+        case 237:
+            return this.i;
+        case 238:
+            return this.i;
+        case 239:
+            return this.i;
+        case 240:
+            return this.i;
+        case 241:
+            return this.i;
+        case 242:
+            return this.i;
+        case 243:
+            return this.i;
+        case 244:
+            return this.i;
+        case 245:
+            return this.i;
+        case 246:
+            return this.i;
+        case 247:
+            return this.i;
+        case 248:
+            return this.i;
+        case 249:
+            return this.i;
+        case 250:
+            return this.i;
+        case 251:
+            return this.i;
+        case 252:
+            return this.i;
+        case 253:
+            return this.i;
+        case 254:
+            return this.i;
+        case 255:
+            return this.i;
+        case 256:
+            return this.i;
+        case 257:
+            return this.i;
+        case 258:
+            return this.i;
+        case 259:
+            return this.i;
+        case 260:
+            return this.i;
+        case 261:
+            return this.i;
+        case 262:
+            return this.i;
+        case 263:
+            return this.i;
+        case 264:
+            return this.i;
+        case 265:
+            return this.i;
+        case 266:
+            return this.i;
+        case 267:
+            return this.i;
+        case 268:
+            return this.i;
+        case 269:
+            return this.i;
+        case 270:
+            return this.i;
+        case 271:
+            return this.i;
+        case 272:
+            return this.i;
+        case 273:
+            return this.i;
+        case 274:
+            return this.i;
+        case 275:
+            return this.i;
+        case 276:
+            return this.i;
+        case 277:
+            return this.i;
+        case 278:
+            return this.i;
+        case 279:
+            return this.i;
+        case 280:
+            return this.i;
+        case 281:
+            return this.i;
+        case 282:
+            return this.i;
+        case 283:
+            return this.i;
+        case 284:
+            return this.i;
+        case 285:
+            return this.i;
+        case 286:
+            return this.i;
+        case 287:
+            return this.i;
+        case 288:
+            return this.i;
+        case 289:
+            return this.i;
+        case 290:
+            return this.i;
+        case 291:
+            return this.i;
+        case 292:
+            return this.i;
+        case 293:
+            return this.i;
+        case 294:
+            return this.i;
+        case 295:
+            return this.i;
+        case 296:
+            return this.i;
+        case 297:
+            return this.i;
+        case 298:
+            return this.i;
+        case 299:
+            return this.i;
+        case 300:
+            return this.i;
+        case 301:
+            return this.i;
+        case 302:
+            return this.i;
+        case 303:
+            return this.i;
+        case 304:
+            return this.i;
+        case 305:
+            return this.i;
+        case 306:
+            return this.i;
+        case 307:
+            return this.i;
+        case 308:
+            return this.i;
+        case 309:
+            return this.i;
+        case 310:
+            return this.i;
+        case 311:
+            return this.i;
+        case 312:
+            return this.i;
+        case 313:
+            return this.i;
+        case 314:
+            return this.i;
+        case 315:
+            return this.i;
+        case 316:
+            return this.i;
+        case 317:
+            return this.i;
+        case 318:
+            return this.i;
+        case 319:
+            return this.i;
+        case 320:
+            return this.i;
+        case 321:
+            return this.i;
+        case 322:
+            return this.i;
+        case 323:
+            return this.i;
+        case 324:
+            return this.i;
+        case 325:
+            return this.i;
+        case 326:
+            return this.i;
+        case 327:
+            return this.i;
+        case 328:
+            return this.i;
+        case 329:
+            return this.i;
+        case 330:
+            return this.i;
+        case 331:
+            return this.i;
+        case 332:
+            return this.i;
+        case 333:
+            return this.i;
+        case 334:
+            return this.i;
+        case 335:
+            return this.i;
+        case 336:
+            return this.i;
+        case 337:
+            return this.i;
+        case 338:
+            return this.i;
+        case 339:
+            return this.i;
+        case 340:
+            return this.i;
+        case 341:
+            return this.i;
+        case 342:
+            return this.i;
+        case 343:
+            return this.i;
+        case 344:
+            return this.i;
+        case 345:
+            return this.i;
+        case 346:
+            return this.i;
+        case 347:
+            return this.i;
+        case 348:
+            return this.i;
+        case 349:
+            return this.i;
+        case 350:
+            return this.i;
+        case 351:
+            return this.i;
+        case 352:
+            return this.i;
+        case 353:
+            return this.i;
+        case 354:
+            return this.i;
+        case 355:
+            return this.i;
+        case 356:
+            return this.i;
+        case 357:
+            return this.i;
+        case 358:
+            return this.i;
+        case 359:
+            return this.i;
+        case 360:
+            return this.i;
+        case 361:
+            return this.i;
+        case 362:
+            return this.i;
+        case 363:
+            return this.i;
+        case 364:
+            return this.i;
+        case 365:
+            return this.i;
+        case 366:
+            return this.i;
+        case 367:
+            return this.i;
+        case 368:
+            return this.i;
+        case 369:
+            return this.i;
+        case 370:
+            return this.i;
+        case 371:
+            return this.i;
+        case 372:
+            return this.i;
+        case 373:
+            return this.i;
+        case 374:
+            return this.i;
+        case 375:
+            return this.i;
+        case 376:
+            return this.i;
+        case 377:
+            return this.i;
+        case 378:
+            return this.i;
+        case 379:
+            return this.i;
+        case 380:
+            return this.i;
+        case 381:
+            return this.i;
+        case 382:
+            return this.i;
+        case 383:
+            return this.i;
+        case 384:
+            return this.i;
+        case 385:
+            return this.i;
+        case 386:
+            return this.i;
+        case 387:
+            return this.i;
+        case 388:
+            return this.i;
+        case 389:
+            return this.i;
+        case 390:
+            return this.i;
+        case 391:
+            return this.i;
+        case 392:
+            return this.i;
+        case 393:
+            return this.i;
+        case 394:
+            return this.i;
+        case 395:
+            return this.i;
+        case 396:
+            return this.i;
+        case 397:
+            return this.i;
+        case 398:
+            return this.i;
+        case 399:
+            return this.i;
+        case 400:
+            return this.i;
+        case 401:
+            return this.i;
+        case 402:
+            return this.i;
+        case 403:
+            return this.i;
+        case 404:
+            return this.i;
+        case 405:
+            return this.i;
+        case 406:
+            return this.i;
+        case 407:
+            return this.i;
+        case 408:
+            return this.i;
+        case 409:
+            return this.i;
+        case 410:
+            return this.i;
+        case 411:
+            return this.i;
+        case 412:
+            return this.i;
+        case 413:
+            return this.i;
+        case 414:
+            return this.i;
+        case 415:
+            return this.i;
+        case 416:
+            return this.i;
+        case 417:
+            return this.i;
+        case 418:
+            return this.i;
+        case 419:
+            return this.i;
+        case 420:
+            return this.i;
+        case 421:
+            return this.i;
+        case 422:
+            return this.i;
+        case 423:
+            return this.i;
+        case 424:
+            return this.i;
+        case 425:
+            return this.i;
+        case 426:
+            return this.i;
+        case 427:
+            return this.i;
+        case 428:
+            return this.i;
+        case 429:
+            return this.i;
+        case 430:
+            return this.i;
+        case 431:
+            return this.i;
+        case 432:
+            return this.i;
+        case 433:
+            return this.i;
+        case 434:
+            return this.i;
+        case 435:
+            return this.i;
+        case 436:
+            return this.i;
+        case 437:
+            return this.i;
+        case 438:
+            return this.i;
+        case 439:
+            return this.i;
+        case 440:
+            return this.i;
+        case 441:
+            return this.i;
+        case 442:
+            return this.i;
+        case 443:
+            return this.i;
+        case 444:
+            return this.i;
+        case 445:
+            return this.i;
+        case 446:
+            return this.i;
+        case 447:
+            return this.i;
+        case 448:
+            return this.i;
+        case 449:
+            return this.i;
+        case 450:
+            return this.i;
+        case 451:
+            return this.i;
+        case 452:
+            return this.i;
+        case 453:
+            return this.i;
+        case 454:
+            return this.i;
+        case 455:
+            return this.i;
+        case 456:
+            return this.i;
+        case 457:
+            return this.i;
+        case 458:
+            return this.i;
+        case 459:
+            return this.i;
+        case 460:
+            return this.i;
+        case 461:
+            return this.i;
+        case 462:
+            return this.i;
+        case 463:
+            return this.i;
+        case 464:
+            return this.i;
+        case 465:
+            return this.i;
+        case 466:
+            return this.i;
+        case 467:
+            return this.i;
+        case 468:
+            return this.i;
+        case 469:
+            return this.i;
+        case 470:
+            return this.i;
+        case 471:
+            return this.i;
+        case 472:
+            return this.i;
+        case 473:
+            return this.i;
+        case 474:
+            return this.i;
+        case 475:
+            return this.i;
+        case 476:
+            return this.i;
+        case 477:
+            return this.i;
+        case 478:
+            return this.i;
+        case 479:
+            return this.i;
+        case 480:
+            return this.i;
+        case 481:
+            return this.i;
+        case 482:
+            return this.i;
+        case 483:
+            return this.i;
+        case 484:
+            return this.i;
+        case 485:
+            return this.i;
+        case 486:
+            return this.i;
+        case 487:
+            return this.i;
+        case 488:
+            return this.i;
+        case 489:
+            return this.i;
+        case 490:
+            return this.i;
+        case 491:
+            return this.i;
+        case 492:
+            return this.i;
+        case 493:
+            return this.i;
+        case 494:
+            return this.i;
+        case 495:
+            return this.i;
+        case 496:
+            return this.i;
+        case 497:
+            return this.i;
+        case 498:
+            return this.i;
+        case 499:
+            return this.i;
+        case 500:
+            return this.i;
+        case 501:
+            return this.i;
+        case 502:
+            return this.i;
+        case 503:
+            return this.i;
+        case 504:
+            return this.i;
+        case 505:
+            return this.i;
+        case 506:
+            return this.i;
+        case 507:
+            return this.i;
+        case 508:
+            return this.i;
+        case 509:
+            return this.i;
+        case 510:
+            return this.i;
+        case 511:
+            return this.i;
+        case 512:
+            return this.i;
+        case 513:
+            return this.i;
+        case 514:
+            return this.i;
+        case 515:
+            return this.i;
+        case 516:
+            return this.i;
+        case 517:
+            return this.i;
+        case 518:
+            return this.i;
+        case 519:
+            return this.i;
+        case 520:
+            return this.i;
+        case 521:
+            return this.i;
+        case 522:
+            return this.i;
+        case 523:
+            return this.i;
+        case 524:
+            return this.i;
+        case 525:
+            return this.i;
+        case 526:
+            return this.i;
+        case 527:
+            return this.i;
+        case 528:
+            return this.i;
+        case 529:
+            return this.i;
+        case 530:
+            return this.i;
+        case 531:
+            return this.i;
+        case 532:
+            return this.i;
+        case 533:
+            return this.i;
+        case 534:
+            return this.i;
+        case 535:
+            return this.i;
+        case 536:
+            return this.i;
+        case 537:
+            return this.i;
+        case 538:
+            return this.i;
+        case 539:
+            return this.i;
+        case 540:
+            return this.i;
+        case 541:
+            return this.i;
+        case 542:
+            return this.i;
+        case 543:
+            return this.i;
+        case 544:
+            return this.i;
+        case 545:
+            return this.i;
+        case 546:
+            return this.i;
+        case 547:
+            return this.i;
+        case 548:
+            return this.i;
+        case 549:
+            return this.i;
+        case 550:
+            return this.i;
+        case 551:
+            return this.i;
+        case 552:
+            return this.i;
+        case 553:
+            return this.i;
+        case 554:
+            return this.i;
+        case 555:
+            return this.i;
+        case 556:
+            return this.i;
+        case 557:
+            return this.i;
+        case 558:
+            return this.i;
+        case 559:
+            return this.i;
+        case 560:
+            return this.i;
+        case 561:
+            return this.i;
+        case 562:
+            return this.i;
+        case 563:
+            return this.i;
+        case 564:
+            return this.i;
+        case 565:
+            return this.i;
+        case 566:
+            return this.i;
+        case 567:
+            return this.i;
+        case 568:
+            return this.i;
+        case 569:
+            return this.i;
+        case 570:
+            return this.i;
+        case 571:
+            return this.i;
+        case 572:
+            return this.i;
+        case 573:
+            return this.i;
+        case 574:
+            return this.i;
+        case 575:
+            return this.i;
+        case 576:
+            return this.i;
+        case 577:
+            return this.i;
+        case 578:
+            return this.i;
+        case 579:
+            return this.i;
+        case 580:
+            return this.i;
+        case 581:
+            return this.i;
+        case 582:
+            return this.i;
+        case 583:
+            return this.i;
+        case 584:
+            return this.i;
+        case 585:
+            return this.i;
+        case 586:
+            return this.i;
+        case 587:
+            return this.i;
+        case 588:
+            return this.i;
+        case 589:
+            return this.i;
+        case 590:
+            return this.i;
+        case 591:
+            return this.i;
+        case 592:
+            return this.i;
+        case 593:
+            return this.i;
+        case 594:
+            return this.i;
+        case 595:
+            return this.i;
+        case 596:
+            return this.i;
+        case 597:
+            return this.i;
+        case 598:
+            return this.i;
+        case 599:
+            return this.i;
+        case 600:
+            return this.i;
+        case 601:
+            return this.i;
+        case 602:
+            return this.i;
+        case 603:
+            return this.i;
+        case 604:
+            return this.i;
+        case 605:
+            return this.i;
+        case 606:
+            return this.i;
+        case 607:
+            return this.i;
+        case 608:
+            return this.i;
+        case 609:
+            return this.i;
+        case 610:
+            return this.i;
+        case 611:
+            return this.i;
+        case 612:
+            return this.i;
+        case 613:
+            return this.i;
+        case 614:
+            return this.i;
+        case 615:
+            return this.i;
+        case 616:
+            return this.i;
+        case 617:
+            return this.i;
+        case 618:
+            return this.i;
+        case 619:
+            return this.i;
+        case 620:
+            return this.i;
+        case 621:
+            return this.i;
+        case 622:
+            return this.i;
+        case 623:
+            return this.i;
+        case 624:
+            return this.i;
+        case 625:
+            return this.i;
+        case 626:
+            return this.i;
+        case 627:
+            return this.i;
+        case 628:
+            return this.i;
+        case 629:
+            return this.i;
+        case 630:
+            return this.i;
+        case 631:
+            return this.i;
+        case 632:
+            return this.i;
+        case 633:
+            return this.i;
+        case 634:
+            return this.i;
+        case 635:
+            return this.i;
+        case 636:
+            return this.i;
+        case 637:
+            return this.i;
+        case 638:
+            return this.i;
+        case 639:
+            return this.i;
+        case 640:
+            return this.i;
+        case 641:
+            return this.i;
+        case 642:
+            return this.i;
+        case 643:
+            return this.i;
+        case 644:
+            return this.i;
+        case 645:
+            return this.i;
+        case 646:
+            return this.i;
+        case 647:
+            return this.i;
+        case 648:
+            return this.i;
+        case 649:
+            return this.i;
+        case 650:
+            return this.i;
+        case 651:
+            return this.i;
+        case 652:
+            return this.i;
+        case 653:
+            return this.i;
+        case 654:
+            return this.i;
+        case 655:
+            return this.i;
+        case 656:
+            return this.i;
+        case 657:
+            return this.i;
+        case 658:
+            return this.i;
+        case 659:
+            return this.i;
+        case 660:
+            return this.i;
+        case 661:
+            return this.i;
+        case 662:
+            return this.i;
+        case 663:
+            return this.i;
+        case 664:
+            return this.i;
+        case 665:
+            return this.i;
+        case 666:
+            return this.i;
+        case 667:
+            return this.i;
+        case 668:
+            return this.i;
+        case 669:
+            return this.i;
+        case 670:
+            return this.i;
+        case 671:
+            return this.i;
+        case 672:
+            return this.i;
+        case 673:
+            return this.i;
+        case 674:
+            return this.i;
+        case 675:
+            return this.i;
+        case 676:
+            return this.i;
+        case 677:
+            return this.i;
+        case 678:
+            return this.i;
+        case 679:
+            return this.i;
+        case 680:
+            return this.i;
+        case 681:
+            return this.i;
+        case 682:
+            return this.i;
+        case 683:
+            return this.i;
+        case 684:
+            return this.i;
+        case 685:
+            return this.i;
+        case 686:
+            return this.i;
+        case 687:
+            return this.i;
+        case 688:
+            return this.i;
+        case 689:
+            return this.i;
+        case 690:
+            return this.i;
+        case 691:
+            return this.i;
+        case 692:
+            return this.i;
+        case 693:
+            return this.i;
+        case 694:
+            return this.i;
+        case 695:
+            return this.i;
+        case 696:
+            return this.i;
+        case 697:
+            return this.i;
+        case 698:
+            return this.i;
+        case 699:
+            return this.i;
+        case 700:
+            return this.i;
+        case 701:
+            return this.i;
+        case 702:
+            return this.i;
+        case 703:
+            return this.i;
+        case 704:
+            return this.i;
+        case 705:
+            return this.i;
+        case 706:
+            return this.i;
+        case 707:
+            return this.i;
+        case 708:
+            return this.i;
+        case 709:
+            return this.i;
+        case 710:
+            return this.i;
+        case 711:
+            return this.i;
+        case 712:
+            return this.i;
+        case 713:
+            return this.i;
+        case 714:
+            return this.i;
+        case 715:
+            return this.i;
+        case 716:
+            return this.i;
+        case 717:
+            return this.i;
+        case 718:
+            return this.i;
+        case 719:
+            return this.i;
+        case 720:
+            return this.i;
+        case 721:
+            return this.i;
+        case 722:
+            return this.i;
+        case 723:
+            return this.i;
+        case 724:
+            return this.i;
+        case 725:
+            return this.i;
+        case 726:
+            return this.i;
+        case 727:
+            return this.i;
+        case 728:
+            return this.i;
+        case 729:
+            return this.i;
+        case 730:
+            return this.i;
+        case 731:
+            return this.i;
+        case 732:
+            return this.i;
+        case 733:
+            return this.i;
+        case 734:
+            return this.i;
+        case 735:
+            return this.i;
+        case 736:
+            return this.i;
+        case 737:
+            return this.i;
+        case 738:
+            return this.i;
+        case 739:
+            return this.i;
+        case 740:
+            return this.i;
+        case 741:
+            return this.i;
+        case 742:
+            return this.i;
+        case 743:
+            return this.i;
+        case 744:
+            return this.i;
+        case 745:
+            return this.i;
+        case 746:
+            return this.i;
+        case 747:
+            return this.i;
+        case 748:
+            return this.i;
+        case 749:
+            return this.i;
+        case 750:
+            return this.i;
+        case 751:
+            return this.i;
+        case 752:
+            return this.i;
+        case 753:
+            return this.i;
+        case 754:
+            return this.i;
+        case 755:
+            return this.i;
+        case 756:
+            return this.i;
+        case 757:
+            return this.i;
+        case 758:
+            return this.i;
+        case 759:
+            return this.i;
+        case 760:
+            return this.i;
+        case 761:
+            return this.i;
+        case 762:
+            return this.i;
+        case 763:
+            return this.i;
+        case 764:
+            return this.i;
+        case 765:
+            return this.i;
+        case 766:
+            return this.i;
+        case 767:
+            return this.i;
+        case 768:
+            return this.i;
+        case 769:
+            return this.i;
+        case 770:
+            return this.i;
+        case 771:
+            return this.i;
+        case 772:
+            return this.i;
+        case 773:
+            return this.i;
+        case 774:
+            return this.i;
+        case 775:
+            return this.i;
+        case 776:
+            return this.i;
+        case 777:
+            return this.i;
+        case 778:
+            return this.i;
+        case 779:
+            return this.i;
+        case 780:
+            return this.i;
+        case 781:
+            return this.i;
+        case 782:
+            return this.i;
+        case 783:
+            return this.i;
+        case 784:
+            return this.i;
+        case 785:
+            return this.i;
+        case 786:
+            return this.i;
+        case 787:
+            return this.i;
+        case 788:
+            return this.i;
+        case 789:
+            return this.i;
+        case 790:
+            return this.i;
+        case 791:
+            return this.i;
+        case 792:
+            return this.i;
+        case 793:
+            return this.i;
+        case 794:
+            return this.i;
+        case 795:
+            return this.i;
+        case 796:
+            return this.i;
+        case 797:
+            return this.i;
+        case 798:
+            return this.i;
+        case 799:
+            return this.i;
+        case 800:
+            return this.i;
+        case 801:
+            return this.i;
+        case 802:
+            return this.i;
+        case 803:
+            return this.i;
+        case 804:
+            return this.i;
+        case 805:
+            return this.i;
+        case 806:
+            return this.i;
+        case 807:
+            return this.i;
+        case 808:
+            return this.i;
+        case 809:
+            return this.i;
+        case 810:
+            return this.i;
+        case 811:
+            return this.i;
+        case 812:
+            return this.i;
+        case 813:
+            return this.i;
+        case 814:
+            return this.i;
+        case 815:
+            return this.i;
+        case 816:
+            return this.i;
+        case 817:
+            return this.i;
+        case 818:
+            return this.i;
+        case 819:
+            return this.i;
+        case 820:
+            return this.i;
+        case 821:
+            return this.i;
+        case 822:
+            return this.i;
+        case 823:
+            return this.i;
+        case 824:
+            return this.i;
+        case 825:
+            return this.i;
+        case 826:
+            return this.i;
+        case 827:
+            return this.i;
+        case 828:
+            return this.i;
+        case 829:
+            return this.i;
+        case 830:
+            return this.i;
+        case 831:
+            return this.i;
+        case 832:
+            return this.i;
+        case 833:
+            return this.i;
+        case 834:
+            return this.i;
+        case 835:
+            return this.i;
+        case 836:
+            return this.i;
+        case 837:
+            return this.i;
+        case 838:
+            return this.i;
+        case 839:
+            return this.i;
+        case 840:
+            return this.i;
+        case 841:
+            return this.i;
+        case 842:
+            return this.i;
+        case 843:
+            return this.i;
+        case 844:
+            return this.i;
+        case 845:
+            return this.i;
+        case 846:
+            return this.i;
+        case 847:
+            return this.i;
+        case 848:
+            return this.i;
+        case 849:
+            return this.i;
+        case 850:
+            return this.i;
+        case 851:
+            return this.i;
+        case 852:
+            return this.i;
+        case 853:
+            return this.i;
+        case 854:
+            return this.i;
+        case 855:
+            return this.i;
+        case 856:
+            return this.i;
+        case 857:
+            return this.i;
+        case 858:
+            return this.i;
+        case 859:
+            return this.i;
+        case 860:
+            return this.i;
+        case 861:
+            return this.i;
+        case 862:
+            return this.i;
+        case 863:
+            return this.i;
+        case 864:
+            return this.i;
+        case 865:
+            return this.i;
+        case 866:
+            return this.i;
+        case 867:
+            return this.i;
+        case 868:
+            return this.i;
+        case 869:
+            return this.i;
+        case 870:
+            return this.i;
+        case 871:
+            return this.i;
+        case 872:
+            return this.i;
+        case 873:
+            return this.i;
+        case 874:
+            return this.i;
+        case 875:
+            return this.i;
+        case 876:
+            return this.i;
+        case 877:
+            return this.i;
+        case 878:
+            return this.i;
+        case 879:
+            return this.i;
+        case 880:
+            return this.i;
+        case 881:
+            return this.i;
+        case 882:
+            return this.i;
+        case 883:
+            return this.i;
+        case 884:
+            return this.i;
+        case 885:
+            return this.i;
+        case 886:
+            return this.i;
+        case 887:
+            return this.i;
+        case 888:
+            return this.i;
+        case 889:
+            return this.i;
+        case 890:
+            return this.i;
+        case 891:
+            return this.i;
+        case 892:
+            return this.i;
+        case 893:
+            return this.i;
+        case 894:
+            return this.i;
+        case 895:
+            return this.i;
+        case 896:
+            return this.i;
+        case 897:
+            return this.i;
+        case 898:
+            return this.i;
+        case 899:
+            return this.i;
+        case 900:
+            return this.i;
+        case 901:
+            return this.i;
+        case 902:
+            return this.i;
+        case 903:
+            return this.i;
+        case 904:
+            return this.i;
+        case 905:
+            return this.i;
+        case 906:
+            return this.i;
+        case 907:
+            return this.i;
+        case 908:
+            return this.i;
+        case 909:
+            return this.i;
+        case 910:
+            return this.i;
+        case 911:
+            return this.i;
+        case 912:
+            return this.i;
+        case 913:
+            return this.i;
+        case 914:
+            return this.i;
+        case 915:
+            return this.i;
+        case 916:
+            return this.i;
+        case 917:
+            return this.i;
+        case 918:
+            return this.i;
+        case 919:
+            return this.i;
+        case 920:
+            return this.i;
+        case 921:
+            return this.i;
+        case 922:
+            return this.i;
+        case 923:
+            return this.i;
+        case 924:
+            return this.i;
+        case 925:
+            return this.i;
+        case 926:
+            return this.i;
+        case 927:
+            return this.i;
+        case 928:
+            return this.i;
+        case 929:
+            return this.i;
+        case 930:
+            return this.i;
+        case 931:
+            return this.i;
+        case 932:
+            return this.i;
+        case 933:
+            return this.i;
+        case 934:
+            return this.i;
+        case 935:
+            return this.i;
+        case 936:
+            return this.i;
+        case 937:
+            return this.i;
+        case 938:
+            return this.i;
+        case 939:
+            return this.i;
+        case 940:
+            return this.i;
+        case 941:
+            return this.i;
+        case 942:
+            return this.i;
+        case 943:
+            return this.i;
+        case 944:
+            return this.i;
+        case 945:
+            return this.i;
+        case 946:
+            return this.i;
+        case 947:
+            return this.i;
+        case 948:
+            return this.i;
+        case 949:
+            return this.i;
+        case 950:
+            return this.i;
+        case 951:
+            return this.i;
+        case 952:
+            return this.i;
+        case 953:
+            return this.i;
+        case 954:
+            return this.i;
+        case 955:
+            return this.i;
+        case 956:
+            return this.i;
+        case 957:
+            return this.i;
+        case 958:
+            return this.i;
+        case 959:
+            return this.i;
+        case 960:
+            return this.i;
+        case 961:
+            return this.i;
+        case 962:
+            return this.i;
+        case 963:
+            return this.i;
+        case 964:
+            return this.i;
+        case 965:
+            return this.i;
+        case 966:
+            return this.i;
+        case 967:
+            return this.i;
+        case 968:
+            return this.i;
+        case 969:
+            return this.i;
+        case 970:
+            return this.i;
+        case 971:
+            return this.i;
+        case 972:
+            return this.i;
+        case 973:
+            return this.i;
+        case 974:
+            return this.i;
+        case 975:
+            return this.i;
+        case 976:
+            return this.i;
+        case 977:
+            return this.i;
+        case 978:
+            return this.i;
+        case 979:
+            return this.i;
+        case 980:
+            return this.i;
+        case 981:
+            return this.i;
+        case 982:
+            return this.i;
+        case 983:
+            return this.i;
+        case 984:
+            return this.i;
+        case 985:
+            return this.i;
+        case 986:
+            return this.i;
+        case 987:
+            return this.i;
+        case 988:
+            return this.i;
+        case 989:
+            return this.i;
+        case 990:
+            return this.i;
+        case 991:
+            return this.i;
+        case 992:
+            return this.i;
+        case 993:
+            return this.i;
+        case 994:
+            return this.i;
+        case 995:
+            return this.i;
+        case 996:
+            return this.i;
+        case 997:
+            return this.i;
+        case 998:
+            return this.i;
+        case 999:
+            return this.i;
+        case 1000:
+            return this.i;
+        case 1001:
+            return this.i;
+        case 1002:
+            return this.i;
+        case 1003:
+            return this.i;
+        case 1004:
+            return this.i;
+        case 1005:
+            return this.i;
+        case 1006:
+            return this.i;
+        case 1007:
+            return this.i;
+        case 1008:
+            return this.i;
+        case 1009:
+            return this.i;
+        case 1010:
+            return this.i;
+        case 1011:
+            return this.i;
+        case 1012:
+            return this.i;
+        case 1013:
+            return this.i;
+        case 1014:
+            return this.i;
+        case 1015:
+            return this.i;
+        case 1016:
+            return this.i;
+        case 1017:
+            return this.i;
+        case 1018:
+            return this.i;
+        case 1019:
+            return this.i;
+        case 1020:
+            return this.i;
+        case 1021:
+            return this.i;
+        case 1022:
+            return this.i;
+        case 1023:
+            return this.i;
+        case 1024:
+            return this.i;
+        case 1025:
+            return this.i;
+        case 1026:
+            return this.i;
+        case 1027:
+            return this.i;
+        case 1028:
+            return this.i;
+        case 1029:
+            return this.i;
+        case 1030:
+            return this.i;
+        case 1031:
+            return this.i;
+        case 1032:
+            return this.i;
+        case 1033:
+            return this.i;
+        case 1034:
+            return this.i;
+        case 1035:
+            return this.i;
+        case 1036:
+            return this.i;
+        case 1037:
+            return this.i;
+        case 1038:
+            return this.i;
+        case 1039:
+            return this.i;
+        case 1040:
+            return this.i;
+        case 1041:
+            return this.i;
+        case 1042:
+            return this.i;
+        case 1043:
+            return this.i;
+        case 1044:
+            return this.i;
+        case 1045:
+            return this.i;
+        case 1046:
+            return this.i;
+        case 1047:
+            return this.i;
+        case 1048:
+            return this.i;
+        case 1049:
+            return this.i;
+        case 1050:
+            return this.i;
+        case 1051:
+            return this.i;
+        case 1052:
+            return this.i;
+        case 1053:
+            return this.i;
+        case 1054:
+            return this.i;
+        case 1055:
+            return this.i;
+        case 1056:
+            return this.i;
+        case 1057:
+            return this.i;
+        case 1058:
+            return this.i;
+        case 1059:
+            return this.i;
+        case 1060:
+            return this.i;
+        case 1061:
+            return this.i;
+        case 1062:
+            return this.i;
+        case 1063:
+            return this.i;
+        case 1064:
+            return this.i;
+        case 1065:
+            return this.i;
+        case 1066:
+            return this.i;
+        case 1067:
+            return this.i;
+        case 1068:
+            return this.i;
+        case 1069:
+            return this.i;
+        case 1070:
+            return this.i;
+        case 1071:
+            return this.i;
+        case 1072:
+            return this.i;
+        case 1073:
+            return this.i;
+        case 1074:
+            return this.i;
+        case 1075:
+            return this.i;
+        case 1076:
+            return this.i;
+        case 1077:
+            return this.i;
+        case 1078:
+            return this.i;
+        case 1079:
+            return this.i;
+        case 1080:
+            return this.i;
+        case 1081:
+            return this.i;
+        case 1082:
+            return this.i;
+        case 1083:
+            return this.i;
+        case 1084:
+            return this.i;
+        case 1085:
+            return this.i;
+        case 1086:
+            return this.i;
+        case 1087:
+            return this.i;
+        case 1088:
+            return this.i;
+        case 1089:
+            return this.i;
+        case 1090:
+            return this.i;
+        case 1091:
+            return this.i;
+        case 1092:
+            return this.i;
+        case 1093:
+            return this.i;
+        case 1094:
+            return this.i;
+        case 1095:
+            return this.i;
+        case 1096:
+            return this.i;
+        case 1097:
+            return this.i;
+        case 1098:
+            return this.i;
+        case 1099:
+            return this.i;
+        case 1100:
+            return this.i;
+        case 1101:
+            return this.i;
+        case 1102:
+            return this.i;
+        case 1103:
+            return this.i;
+        case 1104:
+            return this.i;
+        case 1105:
+            return this.i;
+        case 1106:
+            return this.i;
+        case 1107:
+            return this.i;
+        case 1108:
+            return this.i;
+        case 1109:
+            return this.i;
+        case 1110:
+            return this.i;
+        case 1111:
+            return this.i;
+        case 1112:
+            return this.i;
+        case 1113:
+            return this.i;
+        case 1114:
+            return this.i;
+        case 1115:
+            return this.i;
+        case 1116:
+            return this.i;
+        case 1117:
+            return this.i;
+        case 1118:
+            return this.i;
+        case 1119:
+            return this.i;
+        case 1120:
+            return this.i;
+        case 1121:
+            return this.i;
+        case 1122:
+            return this.i;
+        case 1123:
+            return this.i;
+        case 1124:
+            return this.i;
+        case 1125:
+            return this.i;
+        case 1126:
+            return this.i;
+        case 1127:
+            return this.i;
+        case 1128:
+            return this.i;
+        case 1129:
+            return this.i;
+        case 1130:
+            return this.i;
+        case 1131:
+            return this.i;
+        case 1132:
+            return this.i;
+        case 1133:
+            return this.i;
+        case 1134:
+            return this.i;
+        case 1135:
+            return this.i;
+        case 1136:
+            return this.i;
+        case 1137:
+            return this.i;
+        case 1138:
+            return this.i;
+        case 1139:
+            return this.i;
+        case 1140:
+            return this.i;
+        case 1141:
+            return this.i;
+        case 1142:
+            return this.i;
+        case 1143:
+            return this.i;
+        case 1144:
+            return this.i;
+        case 1145:
+            return this.i;
+        case 1146:
+            return this.i;
+        case 1147:
+            return this.i;
+        case 1148:
+            return this.i;
+        case 1149:
+            return this.i;
+        case 1150:
+            return this.i;
+        case 1151:
+            return this.i;
+        case 1152:
+            return this.i;
+        case 1153:
+            return this.i;
+        case 1154:
+            return this.i;
+        case 1155:
+            return this.i;
+        case 1156:
+            return this.i;
+        case 1157:
+            return this.i;
+        case 1158:
+            return this.i;
+        case 1159:
+            return this.i;
+        case 1160:
+            return this.i;
+        case 1161:
+            return this.i;
+        case 1162:
+            return this.i;
+        case 1163:
+            return this.i;
+        case 1164:
+            return this.i;
+        case 1165:
+            return this.i;
+        case 1166:
+            return this.i;
+        case 1167:
+            return this.i;
+        case 1168:
+            return this.i;
+        case 1169:
+            return this.i;
+        case 1170:
+            return this.i;
+        case 1171:
+            return this.i;
+        case 1172:
+            return this.i;
+        case 1173:
+            return this.i;
+        case 1174:
+            return this.i;
+        case 1175:
+            return this.i;
+        case 1176:
+            return this.i;
+        case 1177:
+            return this.i;
+        case 1178:
+            return this.i;
+        case 1179:
+            return this.i;
+        case 1180:
+            return this.i;
+        case 1181:
+            return this.i;
+        case 1182:
+            return this.i;
+        case 1183:
+            return this.i;
+        case 1184:
+            return this.i;
+        case 1185:
+            return this.i;
+        case 1186:
+            return this.i;
+        case 1187:
+            return this.i;
+        case 1188:
+            return this.i;
+        case 1189:
+            return this.i;
+        case 1190:
+            return this.i;
+        case 1191:
+            return this.i;
+        case 1192:
+            return this.i;
+        case 1193:
+            return this.i;
+        case 1194:
+            return this.i;
+        case 1195:
+            return this.i;
+        case 1196:
+            return this.i;
+        case 1197:
+            return this.i;
+        case 1198:
+            return this.i;
+        case 1199:
+            return this.i;
+        case 1200:
+            return this.i;
+        case 1201:
+            return this.i;
+        case 1202:
+            return this.i;
+        case 1203:
+            return this.i;
+        case 1204:
+            return this.i;
+        case 1205:
+            return this.i;
+        case 1206:
+            return this.i;
+        case 1207:
+            return this.i;
+        case 1208:
+            return this.i;
+        case 1209:
+            return this.i;
+        case 1210:
+            return this.i;
+        case 1211:
+            return this.i;
+        case 1212:
+            return this.i;
+        case 1213:
+            return this.i;
+        case 1214:
+            return this.i;
+        case 1215:
+            return this.i;
+        case 1216:
+            return this.i;
+        case 1217:
+            return this.i;
+        case 1218:
+            return this.i;
+        case 1219:
+            return this.i;
+        case 1220:
+            return this.i;
+        case 1221:
+            return this.i;
+        case 1222:
+            return this.i;
+        case 1223:
+            return this.i;
+        case 1224:
+            return this.i;
+        case 1225:
+            return this.i;
+        case 1226:
+            return this.i;
+        case 1227:
+            return this.i;
+        case 1228:
+            return this.i;
+        case 1229:
+            return this.i;
+        case 1230:
+            return this.i;
+        case 1231:
+            return this.i;
+        case 1232:
+            return this.i;
+        case 1233:
+            return this.i;
+        case 1234:
+            return this.i;
+        case 1235:
+            return this.i;
+        case 1236:
+            return this.i;
+        case 1237:
+            return this.i;
+        case 1238:
+            return this.i;
+        case 1239:
+            return this.i;
+        case 1240:
+            return this.i;
+        case 1241:
+            return this.i;
+        case 1242:
+            return this.i;
+        case 1243:
+            return this.i;
+        case 1244:
+            return this.i;
+        case 1245:
+            return this.i;
+        case 1246:
+            return this.i;
+        case 1247:
+            return this.i;
+        case 1248:
+            return this.i;
+        case 1249:
+            return this.i;
+        case 1250:
+            return this.i;
+        case 1251:
+            return this.i;
+        case 1252:
+            return this.i;
+        case 1253:
+            return this.i;
+        case 1254:
+            return this.i;
+        case 1255:
+            return this.i;
+        case 1256:
+            return this.i;
+        case 1257:
+            return this.i;
+        case 1258:
+            return this.i;
+        case 1259:
+            return this.i;
+        case 1260:
+            return this.i;
+        case 1261:
+            return this.i;
+        case 1262:
+            return this.i;
+        case 1263:
+            return this.i;
+        case 1264:
+            return this.i;
+        case 1265:
+            return this.i;
+        case 1266:
+            return this.i;
+        case 1267:
+            return this.i;
+        case 1268:
+            return this.i;
+        case 1269:
+            return this.i;
+        case 1270:
+            return this.i;
+        case 1271:
+            return this.i;
+        case 1272:
+            return this.i;
+        case 1273:
+            return this.i;
+        case 1274:
+            return this.i;
+        case 1275:
+            return this.i;
+        case 1276:
+            return this.i;
+        case 1277:
+            return this.i;
+        case 1278:
+            return this.i;
+        case 1279:
+            return this.i;
+        case 1280:
+            return this.i;
+        case 1281:
+            return this.i;
+        case 1282:
+            return this.i;
+        case 1283:
+            return this.i;
+        case 1284:
+            return this.i;
+        case 1285:
+            return this.i;
+        case 1286:
+            return this.i;
+        case 1287:
+            return this.i;
+        case 1288:
+            return this.i;
+        case 1289:
+            return this.i;
+        case 1290:
+            return this.i;
+        case 1291:
+            return this.i;
+        case 1292:
+            return this.i;
+        case 1293:
+            return this.i;
+        case 1294:
+            return this.i;
+        case 1295:
+            return this.i;
+        case 1296:
+            return this.i;
+        case 1297:
+            return this.i;
+        case 1298:
+            return this.i;
+        case 1299:
+            return this.i;
+        case 1300:
+            return this.i;
+        case 1301:
+            return this.i;
+        case 1302:
+            return this.i;
+        case 1303:
+            return this.i;
+        case 1304:
+            return this.i;
+        case 1305:
+            return this.i;
+        case 1306:
+            return this.i;
+        case 1307:
+            return this.i;
+        case 1308:
+            return this.i;
+        case 1309:
+            return this.i;
+        case 1310:
+            return this.i;
+        case 1311:
+            return this.i;
+        case 1312:
+            return this.i;
+        case 1313:
+            return this.i;
+        case 1314:
+            return this.i;
+        case 1315:
+            return this.i;
+        case 1316:
+            return this.i;
+        case 1317:
+            return this.i;
+        case 1318:
+            return this.i;
+        case 1319:
+            return this.i;
+        case 1320:
+            return this.i;
+        case 1321:
+            return this.i;
+        case 1322:
+            return this.i;
+        case 1323:
+            return this.i;
+        case 1324:
+            return this.i;
+        case 1325:
+            return this.i;
+        case 1326:
+            return this.i;
+        case 1327:
+            return this.i;
+        case 1328:
+            return this.i;
+        case 1329:
+            return this.i;
+        case 1330:
+            return this.i;
+        case 1331:
+            return this.i;
+        case 1332:
+            return this.i;
+        case 1333:
+            return this.i;
+        case 1334:
+            return this.i;
+        case 1335:
+            return this.i;
+        case 1336:
+            return this.i;
+        case 1337:
+            return this.i;
+        case 1338:
+            return this.i;
+        case 1339:
+            return this.i;
+        case 1340:
+            return this.i;
+        case 1341:
+            return this.i;
+        case 1342:
+            return this.i;
+        case 1343:
+            return this.i;
+        case 1344:
+            return this.i;
+        case 1345:
+            return this.i;
+        case 1346:
+            return this.i;
+        case 1347:
+            return this.i;
+        case 1348:
+            return this.i;
+        case 1349:
+            return this.i;
+        case 1350:
+            return this.i;
+        case 1351:
+            return this.i;
+        case 1352:
+            return this.i;
+        case 1353:
+            return this.i;
+        case 1354:
+            return this.i;
+        case 1355:
+            return this.i;
+        case 1356:
+            return this.i;
+        case 1357:
+            return this.i;
+        case 1358:
+            return this.i;
+        case 1359:
+            return this.i;
+        case 1360:
+            return this.i;
+        case 1361:
+            return this.i;
+        case 1362:
+            return this.i;
+        case 1363:
+            return this.i;
+        case 1364:
+            return this.i;
+        case 1365:
+            return this.i;
+        case 1366:
+            return this.i;
+        case 1367:
+            return this.i;
+        case 1368:
+            return this.i;
+        case 1369:
+            return this.i;
+        case 1370:
+            return this.i;
+        case 1371:
+            return this.i;
+        case 1372:
+            return this.i;
+        case 1373:
+            return this.i;
+        case 1374:
+            return this.i;
+        case 1375:
+            return this.i;
+        case 1376:
+            return this.i;
+        case 1377:
+            return this.i;
+        case 1378:
+            return this.i;
+        case 1379:
+            return this.i;
+        case 1380:
+            return this.i;
+        case 1381:
+            return this.i;
+        case 1382:
+            return this.i;
+        case 1383:
+            return this.i;
+        case 1384:
+            return this.i;
+        case 1385:
+            return this.i;
+        case 1386:
+            return this.i;
+        case 1387:
+            return this.i;
+        case 1388:
+            return this.i;
+        case 1389:
+            return this.i;
+        case 1390:
+            return this.i;
+        case 1391:
+            return this.i;
+        case 1392:
+            return this.i;
+        case 1393:
+            return this.i;
+        case 1394:
+            return this.i;
+        case 1395:
+            return this.i;
+        case 1396:
+            return this.i;
+        case 1397:
+            return this.i;
+        case 1398:
+            return this.i;
+        case 1399:
+            return this.i;
+        case 1400:
+            return this.i;
+        case 1401:
+            return this.i;
+        case 1402:
+            return this.i;
+        case 1403:
+            return this.i;
+        case 1404:
+            return this.i;
+        case 1405:
+            return this.i;
+        case 1406:
+            return this.i;
+        case 1407:
+            return this.i;
+        case 1408:
+            return this.i;
+        case 1409:
+            return this.i;
+        case 1410:
+            return this.i;
+        case 1411:
+            return this.i;
+        case 1412:
+            return this.i;
+        case 1413:
+            return this.i;
+        case 1414:
+            return this.i;
+        case 1415:
+            return this.i;
+        case 1416:
+            return this.i;
+        case 1417:
+            return this.i;
+        case 1418:
+            return this.i;
+        case 1419:
+            return this.i;
+        case 1420:
+            return this.i;
+        case 1421:
+            return this.i;
+        case 1422:
+            return this.i;
+        case 1423:
+            return this.i;
+        case 1424:
+            return this.i;
+        case 1425:
+            return this.i;
+        case 1426:
+            return this.i;
+        case 1427:
+            return this.i;
+        case 1428:
+            return this.i;
+        case 1429:
+            return this.i;
+        case 1430:
+            return this.i;
+        case 1431:
+            return this.i;
+        case 1432:
+            return this.i;
+        case 1433:
+            return this.i;
+        case 1434:
+            return this.i;
+        case 1435:
+            return this.i;
+        case 1436:
+            return this.i;
+        case 1437:
+            return this.i;
+        case 1438:
+            return this.i;
+        case 1439:
+            return this.i;
+        case 1440:
+            return this.i;
+        case 1441:
+            return this.i;
+        case 1442:
+            return this.i;
+        case 1443:
+            return this.i;
+        case 1444:
+            return this.i;
+        case 1445:
+            return this.i;
+        case 1446:
+            return this.i;
+        case 1447:
+            return this.i;
+        case 1448:
+            return this.i;
+        case 1449:
+            return this.i;
+        case 1450:
+            return this.i;
+        case 1451:
+            return this.i;
+        case 1452:
+            return this.i;
+        case 1453:
+            return this.i;
+        case 1454:
+            return this.i;
+        case 1455:
+            return this.i;
+        case 1456:
+            return this.i;
+        case 1457:
+            return this.i;
+        case 1458:
+            return this.i;
+        case 1459:
+            return this.i;
+        case 1460:
+            return this.i;
+        case 1461:
+            return this.i;
+        case 1462:
+            return this.i;
+        case 1463:
+            return this.i;
+        case 1464:
+            return this.i;
+        case 1465:
+            return this.i;
+        case 1466:
+            return this.i;
+        case 1467:
+            return this.i;
+        case 1468:
+            return this.i;
+        case 1469:
+            return this.i;
+        case 1470:
+            return this.i;
+        case 1471:
+            return this.i;
+        case 1472:
+            return this.i;
+        case 1473:
+            return this.i;
+        case 1474:
+            return this.i;
+        case 1475:
+            return this.i;
+        case 1476:
+            return this.i;
+        case 1477:
+            return this.i;
+        case 1478:
+            return this.i;
+        case 1479:
+            return this.i;
+        case 1480:
+            return this.i;
+        case 1481:
+            return this.i;
+        case 1482:
+            return this.i;
+        case 1483:
+            return this.i;
+        case 1484:
+            return this.i;
+        case 1485:
+            return this.i;
+        case 1486:
+            return this.i;
+        case 1487:
+            return this.i;
+        case 1488:
+            return this.i;
+        case 1489:
+            return this.i;
+        case 1490:
+            return this.i;
+        case 1491:
+            return this.i;
+        case 1492:
+            return this.i;
+        case 1493:
+            return this.i;
+        case 1494:
+            return this.i;
+        case 1495:
+            return this.i;
+        case 1496:
+            return this.i;
+        case 1497:
+            return this.i;
+        case 1498:
+            return this.i;
+        case 1499:
+            return this.i;
+        case 1500:
+            return this.i;
+        case 1501:
+            return this.i;
+        case 1502:
+            return this.i;
+        case 1503:
+            return this.i;
+        case 1504:
+            return this.i;
+        case 1505:
+            return this.i;
+        case 1506:
+            return this.i;
+        case 1507:
+            return this.i;
+        case 1508:
+            return this.i;
+        case 1509:
+            return this.i;
+        case 1510:
+            return this.i;
+        case 1511:
+            return this.i;
+        case 1512:
+            return this.i;
+        case 1513:
+            return this.i;
+        case 1514:
+            return this.i;
+        case 1515:
+            return this.i;
+        case 1516:
+            return this.i;
+        case 1517:
+            return this.i;
+        case 1518:
+            return this.i;
+        case 1519:
+            return this.i;
+        case 1520:
+            return this.i;
+        case 1521:
+            return this.i;
+        case 1522:
+            return this.i;
+        case 1523:
+            return this.i;
+        case 1524:
+            return this.i;
+        case 1525:
+            return this.i;
+        case 1526:
+            return this.i;
+        case 1527:
+            return this.i;
+        case 1528:
+            return this.i;
+        case 1529:
+            return this.i;
+        case 1530:
+            return this.i;
+        case 1531:
+            return this.i;
+        case 1532:
+            return this.i;
+        case 1533:
+            return this.i;
+        case 1534:
+            return this.i;
+        case 1535:
+            return this.i;
+        case 1536:
+            return this.i;
+        case 1537:
+            return this.i;
+        case 1538:
+            return this.i;
+        case 1539:
+            return this.i;
+        case 1540:
+            return this.i;
+        case 1541:
+            return this.i;
+        case 1542:
+            return this.i;
+        case 1543:
+            return this.i;
+        case 1544:
+            return this.i;
+        case 1545:
+            return this.i;
+        case 1546:
+            return this.i;
+        case 1547:
+            return this.i;
+        case 1548:
+            return this.i;
+        case 1549:
+            return this.i;
+        case 1550:
+            return this.i;
+        case 1551:
+            return this.i;
+        case 1552:
+            return this.i;
+        case 1553:
+            return this.i;
+        case 1554:
+            return this.i;
+        case 1555:
+            return this.i;
+        case 1556:
+            return this.i;
+        case 1557:
+            return this.i;
+        case 1558:
+            return this.i;
+        case 1559:
+            return this.i;
+        case 1560:
+            return this.i;
+        case 1561:
+            return this.i;
+        case 1562:
+            return this.i;
+        case 1563:
+            return this.i;
+        case 1564:
+            return this.i;
+        case 1565:
+            return this.i;
+        case 1566:
+            return this.i;
+        case 1567:
+            return this.i;
+        case 1568:
+            return this.i;
+        case 1569:
+            return this.i;
+        case 1570:
+            return this.i;
+        case 1571:
+            return this.i;
+        case 1572:
+            return this.i;
+        case 1573:
+            return this.i;
+        case 1574:
+            return this.i;
+        case 1575:
+            return this.i;
+        case 1576:
+            return this.i;
+        case 1577:
+            return this.i;
+        case 1578:
+            return this.i;
+        case 1579:
+            return this.i;
+        case 1580:
+            return this.i;
+        case 1581:
+            return this.i;
+        case 1582:
+            return this.i;
+        case 1583:
+            return this.i;
+        case 1584:
+            return this.i;
+        case 1585:
+            return this.i;
+        case 1586:
+            return this.i;
+        case 1587:
+            return this.i;
+        case 1588:
+            return this.i;
+        case 1589:
+            return this.i;
+        case 1590:
+            return this.i;
+        case 1591:
+            return this.i;
+        case 1592:
+            return this.i;
+        case 1593:
+            return this.i;
+        case 1594:
+            return this.i;
+        case 1595:
+            return this.i;
+        case 1596:
+            return this.i;
+        case 1597:
+            return this.i;
+        case 1598:
+            return this.i;
+        case 1599:
+            return this.i;
+        case 1600:
+            return this.i;
+        case 1601:
+            return this.i;
+        case 1602:
+            return this.i;
+        case 1603:
+            return this.i;
+        case 1604:
+            return this.i;
+        case 1605:
+            return this.i;
+        case 1606:
+            return this.i;
+        case 1607:
+            return this.i;
+        case 1608:
+            return this.i;
+        case 1609:
+            return this.i;
+        case 1610:
+            return this.i;
+        case 1611:
+            return this.i;
+        case 1612:
+            return this.i;
+        case 1613:
+            return this.i;
+        case 1614:
+            return this.i;
+        case 1615:
+            return this.i;
+        case 1616:
+            return this.i;
+        case 1617:
+            return this.i;
+        case 1618:
+            return this.i;
+        case 1619:
+            return this.i;
+        case 1620:
+            return this.i;
+        case 1621:
+            return this.i;
+        case 1622:
+            return this.i;
+        case 1623:
+            return this.i;
+        case 1624:
+            return this.i;
+        case 1625:
+            return this.i;
+        case 1626:
+            return this.i;
+        case 1627:
+            return this.i;
+        case 1628:
+            return this.i;
+        case 1629:
+            return this.i;
+        case 1630:
+            return this.i;
+        case 1631:
+            return this.i;
+        case 1632:
+            return this.i;
+        case 1633:
+            return this.i;
+        case 1634:
+            return this.i;
+        case 1635:
+            return this.i;
+        case 1636:
+            return this.i;
+        case 1637:
+            return this.i;
+        case 1638:
+            return this.i;
+        case 1639:
+            return this.i;
+        case 1640:
+            return this.i;
+        case 1641:
+            return this.i;
+        case 1642:
+            return this.i;
+        case 1643:
+            return this.i;
+        case 1644:
+            return this.i;
+        case 1645:
+            return this.i;
+        case 1646:
+            return this.i;
+        case 1647:
+            return this.i;
+        case 1648:
+            return this.i;
+        case 1649:
+            return this.i;
+        case 1650:
+            return this.i;
+        case 1651:
+            return this.i;
+        case 1652:
+            return this.i;
+        case 1653:
+            return this.i;
+        case 1654:
+            return this.i;
+        case 1655:
+            return this.i;
+        case 1656:
+            return this.i;
+        case 1657:
+            return this.i;
+        case 1658:
+            return this.i;
+        case 1659:
+            return this.i;
+        case 1660:
+            return this.i;
+        case 1661:
+            return this.i;
+        case 1662:
+            return this.i;
+        case 1663:
+            return this.i;
+        case 1664:
+            return this.i;
+        case 1665:
+            return this.i;
+        case 1666:
+            return this.i;
+        case 1667:
+            return this.i;
+        case 1668:
+            return this.i;
+        case 1669:
+            return this.i;
+        case 1670:
+            return this.i;
+        case 1671:
+            return this.i;
+        case 1672:
+            return this.i;
+        case 1673:
+            return this.i;
+        case 1674:
+            return this.i;
+        case 1675:
+            return this.i;
+        case 1676:
+            return this.i;
+        case 1677:
+            return this.i;
+        case 1678:
+            return this.i;
+        case 1679:
+            return this.i;
+        case 1680:
+            return this.i;
+        case 1681:
+            return this.i;
+        case 1682:
+            return this.i;
+        case 1683:
+            return this.i;
+        case 1684:
+            return this.i;
+        case 1685:
+            return this.i;
+        case 1686:
+            return this.i;
+        case 1687:
+            return this.i;
+        case 1688:
+            return this.i;
+        case 1689:
+            return this.i;
+        case 1690:
+            return this.i;
+        case 1691:
+            return this.i;
+        case 1692:
+            return this.i;
+        case 1693:
+            return this.i;
+        case 1694:
+            return this.i;
+        case 1695:
+            return this.i;
+        case 1696:
+            return this.i;
+        case 1697:
+            return this.i;
+        case 1698:
+            return this.i;
+        case 1699:
+            return this.i;
+        case 1700:
+            return this.i;
+        case 1701:
+            return this.i;
+        case 1702:
+            return this.i;
+        case 1703:
+            return this.i;
+        case 1704:
+            return this.i;
+        case 1705:
+            return this.i;
+        case 1706:
+            return this.i;
+        case 1707:
+            return this.i;
+        case 1708:
+            return this.i;
+        case 1709:
+            return this.i;
+        case 1710:
+            return this.i;
+        case 1711:
+            return this.i;
+        case 1712:
+            return this.i;
+        case 1713:
+            return this.i;
+        case 1714:
+            return this.i;
+        case 1715:
+            return this.i;
+        case 1716:
+            return this.i;
+        case 1717:
+            return this.i;
+        case 1718:
+            return this.i;
+        case 1719:
+            return this.i;
+        case 1720:
+            return this.i;
+        case 1721:
+            return this.i;
+        case 1722:
+            return this.i;
+        case 1723:
+            return this.i;
+        case 1724:
+            return this.i;
+        case 1725:
+            return this.i;
+        case 1726:
+            return this.i;
+        case 1727:
+            return this.i;
+        case 1728:
+            return this.i;
+        case 1729:
+            return this.i;
+        case 1730:
+            return this.i;
+        case 1731:
+            return this.i;
+        case 1732:
+            return this.i;
+        case 1733:
+            return this.i;
+        case 1734:
+            return this.i;
+        case 1735:
+            return this.i;
+        case 1736:
+            return this.i;
+        case 1737:
+            return this.i;
+        case 1738:
+            return this.i;
+        case 1739:
+            return this.i;
+        case 1740:
+            return this.i;
+        case 1741:
+            return this.i;
+        case 1742:
+            return this.i;
+        case 1743:
+            return this.i;
+        case 1744:
+            return this.i;
+        case 1745:
+            return this.i;
+        case 1746:
+            return this.i;
+        case 1747:
+            return this.i;
+        case 1748:
+            return this.i;
+        case 1749:
+            return this.i;
+        case 1750:
+            return this.i;
+        case 1751:
+            return this.i;
+        case 1752:
+            return this.i;
+        case 1753:
+            return this.i;
+        case 1754:
+            return this.i;
+        case 1755:
+            return this.i;
+        case 1756:
+            return this.i;
+        case 1757:
+            return this.i;
+        case 1758:
+            return this.i;
+        case 1759:
+            return this.i;
+        case 1760:
+            return this.i;
+        case 1761:
+            return this.i;
+        case 1762:
+            return this.i;
+        case 1763:
+            return this.i;
+        case 1764:
+            return this.i;
+        case 1765:
+            return this.i;
+        case 1766:
+            return this.i;
+        case 1767:
+            return this.i;
+        case 1768:
+            return this.i;
+        case 1769:
+            return this.i;
+        case 1770:
+            return this.i;
+        case 1771:
+            return this.i;
+        case 1772:
+            return this.i;
+        case 1773:
+            return this.i;
+        case 1774:
+            return this.i;
+        case 1775:
+            return this.i;
+        case 1776:
+            return this.i;
+        case 1777:
+            return this.i;
+        case 1778:
+            return this.i;
+        case 1779:
+            return this.i;
+        case 1780:
+            return this.i;
+        case 1781:
+            return this.i;
+        case 1782:
+            return this.i;
+        case 1783:
+            return this.i;
+        case 1784:
+            return this.i;
+        case 1785:
+            return this.i;
+        case 1786:
+            return this.i;
+        case 1787:
+            return this.i;
+        case 1788:
+            return this.i;
+        case 1789:
+            return this.i;
+        case 1790:
+            return this.i;
+        case 1791:
+            return this.i;
+        case 1792:
+            return this.i;
+        case 1793:
+            return this.i;
+        case 1794:
+            return this.i;
+        case 1795:
+            return this.i;
+        case 1796:
+            return this.i;
+        case 1797:
+            return this.i;
+        case 1798:
+            return this.i;
+        case 1799:
+            return this.i;
+        case 1800:
+            return this.i;
+        case 1801:
+            return this.i;
+        case 1802:
+            return this.i;
+        case 1803:
+            return this.i;
+        case 1804:
+            return this.i;
+        case 1805:
+            return this.i;
+        case 1806:
+            return this.i;
+        case 1807:
+            return this.i;
+        case 1808:
+            return this.i;
+        case 1809:
+            return this.i;
+        case 1810:
+            return this.i;
+        case 1811:
+            return this.i;
+        case 1812:
+            return this.i;
+        case 1813:
+            return this.i;
+        case 1814:
+            return this.i;
+        case 1815:
+            return this.i;
+        case 1816:
+            return this.i;
+        case 1817:
+            return this.i;
+        case 1818:
+            return this.i;
+        case 1819:
+            return this.i;
+        case 1820:
+            return this.i;
+        case 1821:
+            return this.i;
+        case 1822:
+            return this.i;
+        case 1823:
+            return this.i;
+        case 1824:
+            return this.i;
+        case 1825:
+            return this.i;
+        case 1826:
+            return this.i;
+        case 1827:
+            return this.i;
+        case 1828:
+            return this.i;
+        case 1829:
+            return this.i;
+        case 1830:
+            return this.i;
+        case 1831:
+            return this.i;
+        case 1832:
+            return this.i;
+        case 1833:
+            return this.i;
+        case 1834:
+            return this.i;
+        case 1835:
+            return this.i;
+        case 1836:
+            return this.i;
+        case 1837:
+            return this.i;
+        case 1838:
+            return this.i;
+        case 1839:
+            return this.i;
+        case 1840:
+            return this.i;
+        case 1841:
+            return this.i;
+        case 1842:
+            return this.i;
+        case 1843:
+            return this.i;
+        case 1844:
+            return this.i;
+        case 1845:
+            return this.i;
+        case 1846:
+            return this.i;
+        case 1847:
+            return this.i;
+        case 1848:
+            return this.i;
+        case 1849:
+            return this.i;
+        case 1850:
+            return this.i;
+        case 1851:
+            return this.i;
+        case 1852:
+            return this.i;
+        case 1853:
+            return this.i;
+        case 1854:
+            return this.i;
+        case 1855:
+            return this.i;
+        case 1856:
+            return this.i;
+        case 1857:
+            return this.i;
+        case 1858:
+            return this.i;
+        case 1859:
+            return this.i;
+        case 1860:
+            return this.i;
+        case 1861:
+            return this.i;
+        case 1862:
+            return this.i;
+        case 1863:
+            return this.i;
+        case 1864:
+            return this.i;
+        case 1865:
+            return this.i;
+        case 1866:
+            return this.i;
+        case 1867:
+            return this.i;
+        case 1868:
+            return this.i;
+        case 1869:
+            return this.i;
+        case 1870:
+            return this.i;
+        case 1871:
+            return this.i;
+        case 1872:
+            return this.i;
+        case 1873:
+            return this.i;
+        case 1874:
+            return this.i;
+        case 1875:
+            return this.i;
+        case 1876:
+            return this.i;
+        case 1877:
+            return this.i;
+        case 1878:
+            return this.i;
+        case 1879:
+            return this.i;
+        case 1880:
+            return this.i;
+        case 1881:
+            return this.i;
+        case 1882:
+            return this.i;
+        case 1883:
+            return this.i;
+        case 1884:
+            return this.i;
+        case 1885:
+            return this.i;
+        case 1886:
+            return this.i;
+        case 1887:
+            return this.i;
+        case 1888:
+            return this.i;
+        case 1889:
+            return this.i;
+        case 1890:
+            return this.i;
+        case 1891:
+            return this.i;
+        case 1892:
+            return this.i;
+        case 1893:
+            return this.i;
+        case 1894:
+            return this.i;
+        case 1895:
+            return this.i;
+        case 1896:
+            return this.i;
+        case 1897:
+            return this.i;
+        case 1898:
+            return this.i;
+        case 1899:
+            return this.i;
+        case 1900:
+            return this.i;
+        case 1901:
+            return this.i;
+        case 1902:
+            return this.i;
+        case 1903:
+            return this.i;
+        case 1904:
+            return this.i;
+        case 1905:
+            return this.i;
+        case 1906:
+            return this.i;
+        case 1907:
+            return this.i;
+        case 1908:
+            return this.i;
+        case 1909:
+            return this.i;
+        case 1910:
+            return this.i;
+        case 1911:
+            return this.i;
+        case 1912:
+            return this.i;
+        case 1913:
+            return this.i;
+        case 1914:
+            return this.i;
+        case 1915:
+            return this.i;
+        case 1916:
+            return this.i;
+        case 1917:
+            return this.i;
+        case 1918:
+            return this.i;
+        case 1919:
+            return this.i;
+        case 1920:
+            return this.i;
+        case 1921:
+            return this.i;
+        case 1922:
+            return this.i;
+        case 1923:
+            return this.i;
+        case 1924:
+            return this.i;
+        case 1925:
+            return this.i;
+        case 1926:
+            return this.i;
+        case 1927:
+            return this.i;
+        case 1928:
+            return this.i;
+        case 1929:
+            return this.i;
+        case 1930:
+            return this.i;
+        case 1931:
+            return this.i;
+        case 1932:
+            return this.i;
+        case 1933:
+            return this.i;
+        case 1934:
+            return this.i;
+        case 1935:
+            return this.i;
+        case 1936:
+            return this.i;
+        case 1937:
+            return this.i;
+        case 1938:
+            return this.i;
+        case 1939:
+            return this.i;
+        case 1940:
+            return this.i;
+        case 1941:
+            return this.i;
+        case 1942:
+            return this.i;
+        case 1943:
+            return this.i;
+        case 1944:
+            return this.i;
+        case 1945:
+            return this.i;
+        case 1946:
+            return this.i;
+        case 1947:
+            return this.i;
+        case 1948:
+            return this.i;
+        case 1949:
+            return this.i;
+        case 1950:
+            return this.i;
+        case 1951:
+            return this.i;
+        case 1952:
+            return this.i;
+        case 1953:
+            return this.i;
+        case 1954:
+            return this.i;
+        case 1955:
+            return this.i;
+        case 1956:
+            return this.i;
+        case 1957:
+            return this.i;
+        case 1958:
+            return this.i;
+        case 1959:
+            return this.i;
+        case 1960:
+            return this.i;
+        case 1961:
+            return this.i;
+        case 1962:
+            return this.i;
+        case 1963:
+            return this.i;
+        case 1964:
+            return this.i;
+        case 1965:
+            return this.i;
+        case 1966:
+            return this.i;
+        case 1967:
+            return this.i;
+        case 1968:
+            return this.i;
+        case 1969:
+            return this.i;
+        case 1970:
+            return this.i;
+        case 1971:
+            return this.i;
+        case 1972:
+            return this.i;
+        case 1973:
+            return this.i;
+        case 1974:
+            return this.i;
+        case 1975:
+            return this.i;
+        case 1976:
+            return this.i;
+        case 1977:
+            return this.i;
+        case 1978:
+            return this.i;
+        case 1979:
+            return this.i;
+        case 1980:
+            return this.i;
+        case 1981:
+            return this.i;
+        case 1982:
+            return this.i;
+        case 1983:
+            return this.i;
+        case 1984:
+            return this.i;
+        case 1985:
+            return this.i;
+        case 1986:
+            return this.i;
+        case 1987:
+            return this.i;
+        case 1988:
+            return this.i;
+        case 1989:
+            return this.i;
+        case 1990:
+            return this.i;
+        case 1991:
+            return this.i;
+        case 1992:
+            return this.i;
+        case 1993:
+            return this.i;
+        case 1994:
+            return this.i;
+        case 1995:
+            return this.i;
+        case 1996:
+            return this.i;
+        case 1997:
+            return this.i;
+        case 1998:
+            return this.i;
+        case 1999:
+            return this.i;
+        case 2000:
+            return this.i;
+        case 2001:
+            return this.i;
+        case 2002:
+            return this.i;
+        case 2003:
+            return this.i;
+        case 2004:
+            return this.i;
+        case 2005:
+            return this.i;
+        case 2006:
+            return this.i;
+        case 2007:
+            return this.i;
+        case 2008:
+            return this.i;
+        case 2009:
+            return this.i;
+        case 2010:
+            return this.i;
+        case 2011:
+            return this.i;
+        case 2012:
+            return this.i;
+        case 2013:
+            return this.i;
+        case 2014:
+            return this.i;
+        case 2015:
+            return this.i;
+        case 2016:
+            return this.i;
+        case 2017:
+            return this.i;
+        case 2018:
+            return this.i;
+        case 2019:
+            return this.i;
+        case 2020:
+            return this.i;
+        case 2021:
+            return this.i;
+        case 2022:
+            return this.i;
+        case 2023:
+            return this.i;
+        case 2024:
+            return this.i;
+        case 2025:
+            return this.i;
+        case 2026:
+            return this.i;
+        case 2027:
+            return this.i;
+        case 2028:
+            return this.i;
+        case 2029:
+            return this.i;
+        case 2030:
+            return this.i;
+        case 2031:
+            return this.i;
+        case 2032:
+            return this.i;
+        case 2033:
+            return this.i;
+        case 2034:
+            return this.i;
+        case 2035:
+            return this.i;
+        case 2036:
+            return this.i;
+        case 2037:
+            return this.i;
+        case 2038:
+            return this.i;
+        case 2039:
+            return this.i;
+        case 2040:
+            return this.i;
+        case 2041:
+            return this.i;
+        case 2042:
+            return this.i;
+        case 2043:
+            return this.i;
+        case 2044:
+            return this.i;
+        case 2045:
+            return this.i;
+        case 2046:
+            return this.i;
+    }
+}
+
+// Test if this is working in split array literal
+function hugeArrayLiteral() {
+    return [
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i,
+        this.i
+    ][30];
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/basic/JDK-8020356.js.EXPECTED	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,2 @@
+20
+10
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/basic/JDK-8021122.js	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,93 @@
+/*
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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.
+ * 
+ * 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * JDK-8021122: Not all callables are handled for toString and other function valued properties
+ *
+ * @test
+ * @run
+ */
+
+var a = {}
+var obj = new java.util.HashMap();
+Object.bindProperties(a, obj);
+try {
+    print(a);
+} catch (e) {
+    print(e);
+}
+
+var a = {}
+var global = loadWithNewGlobal({ name:"xx", script: "this" });
+var obj = global.eval("({ toString: function() { return 'hello'; } })");
+Object.bindProperties(a, obj);
+try {
+    print(a);
+} catch (e) {
+    print(e);
+}
+
+function runLambdaTests() {
+    var r = new java.lang.Runnable() {
+        run: function() { print("I am runnable"); }
+    };
+
+    // call any @FunctionalInterface object as though it is a function
+    r();
+
+    var twice = new java.util.function.Function() {
+        apply: function(x) 2*x
+    };
+
+    print(twice(34));
+
+    var sum = new java.util.function.BiFunction() {
+        apply: function(x, y) x + y
+    };
+
+    print(sum(32, 12))
+
+    // make toString to be a @FunctionalInterface object
+    var a = {};
+    a.toString = new java.util.function.Supplier() {
+        get: function() { return "MyString"; }
+    };
+
+    try {
+        print(a);
+    } catch (e) {
+        print(e);
+    }
+}
+
+try {
+    // check for java.util.function.Function class
+    Java.type("java.util.function.Function");
+    runLambdaTests();
+} catch (e) {
+    // fake output to match .EXPECTED values
+    print("I am runnable");
+    print("68");
+    print("44");
+    print("MyString");
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/basic/JDK-8021122.js.EXPECTED	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,6 @@
+{}
+hello
+I am runnable
+68
+44
+MyString
--- a/test/script/basic/NASHORN-473.js	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/script/basic/NASHORN-473.js	Tue Jul 23 21:51:23 2013 +0530
@@ -28,7 +28,7 @@
  * @run
  */
 
-var boolArr = java.lang.reflect.Array.newInstance(java.lang.Boolean.TYPE, 2);
+var boolArr = new (Java.type("boolean[]"))(2);
 boolArr[0] = true;
 boolArr[1] = false;
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/basic/classloader.js	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,41 @@
+/*
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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.
+ * 
+ * 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * Try to extend ClassLoader.
+ *
+ * @test
+ * @security
+ */
+
+try {
+    var l = new (Java.extend(java.lang.ClassLoader))({});
+    fail("should have thrown SecurityException");
+} catch (e) {
+    if (e instanceof java.lang.SecurityException) {
+        print(e);
+    } else {
+        fail("expected SecurityException, got " + e);
+    }
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/basic/classloader.js.EXPECTED	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,1 @@
+java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "createClassLoader")
--- a/test/script/basic/javaarray.js	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/script/basic/javaarray.js	Tue Jul 23 21:51:23 2013 +0530
@@ -30,7 +30,7 @@
 
 (function() {
     var nargs = arguments.length;
-    var args = java.lang.reflect.Array.newInstance(java.lang.Object.class, nargs);
+    var args = new (Java.type("java.lang.Object[]"))(nargs);
     print(args.length);
     for (var i = 0; i < nargs; i++) {
         var arg = arguments[i];
@@ -41,7 +41,7 @@
 
 var z; // undefined
 
-var intArray = java.lang.reflect.Array.newInstance(java.lang.Integer.TYPE, 1);
+var intArray = new (Java.type("int[]"))(1);
 intArray[0] = 10;
 print(intArray[0]);
 print(intArray.length);
@@ -50,19 +50,19 @@
 intArray[0] = 10.1;
 print(intArray[0]);
 
-var boolArray = java.lang.reflect.Array.newInstance(java.lang.Boolean.TYPE, 2);
+var boolArray = new (Java.type("boolean[]"))(2);
 boolArray[0] = true;
 print(boolArray[0]);
 print(boolArray[1]);
 print(boolArray.length);
 
-var charArray = java.lang.reflect.Array.newInstance(java.lang.Character.TYPE, 1);
+var charArray = new (Java.type("char[]"))(1);
 charArray[0] = 'j';
 print(charArray[0]);
 print(charArray.length);
 
 
-var doubleArray = java.lang.reflect.Array.newInstance(java.lang.Double.TYPE, 1)
+var doubleArray = new (Java.type("double[]"))(1)
 doubleArray[0]=z
 print(doubleArray[0])
 doubleArray[0]=1
--- a/test/script/sandbox/classloader.js.EXPECTED	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/script/sandbox/classloader.js.EXPECTED	Tue Jul 23 21:51:23 2013 +0530
@@ -1,1 +1,1 @@
-java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "createClassLoader")
+java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "nashorn.JavaReflection")
--- a/test/script/sandbox/reflection.js	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/script/sandbox/reflection.js	Tue Jul 23 21:51:23 2013 +0530
@@ -35,9 +35,8 @@
     }
 }
 
-var cl = java.lang.Class.class;
 try {
-    cl.getDeclaredMethods();
+    var cl = java.lang.Class.class;
 } catch(e) {
     check(e); 
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/trusted/JDK-8020809.js	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,47 @@
+/*
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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.
+ * 
+ * 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * JDK-8020809: Java adapter should not allow overriding of caller sensitive methods
+ * 
+ * @test
+ * @run
+ */
+
+// This test runs as trusted as we need the
+// "enableContextClassLoaderOverride" runtime permission.
+
+var T = Java.extend(java.lang.Thread, {
+    getContextClassLoader: function() {
+        // Since getContextClassLoader is caller sensitive, this won't
+        // actually act as an override; it will be ignored. If we could
+        // invoke it, it would be an error.
+        throw new Error()
+    }
+})
+
+// Retrieve the context ClassLoader on our Thread adapter, ensure the
+// method was not, in fact, overridden.
+var cl = (new T()).contextClassLoader
+
+print("cl is class loader: "  + (cl instanceof java.lang.ClassLoader))
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/script/trusted/JDK-8020809.js.EXPECTED	Tue Jul 23 21:51:23 2013 +0530
@@ -0,0 +1,1 @@
+cl is class loader: true
--- a/test/src/jdk/nashorn/api/javaaccess/BooleanAccessTest.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/src/jdk/nashorn/api/javaaccess/BooleanAccessTest.java	Tue Jul 23 21:51:23 2013 +0530
@@ -72,7 +72,7 @@
         e.eval("var p_boolean_array = o.publicBooleanArray;");
         assertEquals(o.publicBooleanArray[0], e.eval("o.publicBooleanArray[0]"));
         assertTrue(Arrays.equals(o.publicBooleanArray, (boolean[])e.get("p_boolean_array")));
-        e.eval("var t_boolean_arr = java.lang.reflect.Array.newInstance(java.lang.Boolean.TYPE, 3);" +
+        e.eval("var t_boolean_arr = new (Java.type(\"boolean[]\"))(3);" +
                 "t_boolean_arr[0] = true;" +
                 "t_boolean_arr[1] = false;" +
                 "t_boolean_arr[2] = false;" +
@@ -96,7 +96,7 @@
         e.eval("var ps_boolean_array = SharedObject.publicStaticBooleanArray;");
         assertEquals(SharedObject.publicStaticBooleanArray[0], e.eval("SharedObject.publicStaticBooleanArray[0]"));
         assertTrue(Arrays.equals(SharedObject.publicStaticBooleanArray, (boolean[])e.get("ps_boolean_array")));
-        e.eval("var ts_boolean_arr = java.lang.reflect.Array.newInstance(java.lang.Boolean.TYPE, 3);" +
+        e.eval("var ts_boolean_arr = new (Java.type(\"boolean[]\"))(3);" +
                 "ts_boolean_arr[0] = true;" +
                 "ts_boolean_arr[1] = false;" +
                 "ts_boolean_arr[2] = true;" +
@@ -120,7 +120,7 @@
         e.eval("var pf_boolean_array = o.publicFinalBooleanArray;");
         assertEquals(o.publicFinalBooleanArray[0], e.eval("o.publicFinalBooleanArray[0]"));
         assertTrue(Arrays.equals(o.publicFinalBooleanArray, (boolean[])e.get("pf_boolean_array")));
-        e.eval("var tf_boolean_arr = java.lang.reflect.Array.newInstance(java.lang.Boolean.TYPE, 3);" +
+        e.eval("var tf_boolean_arr = new (Java.type(\"boolean[]\"))(3);" +
                 "tf_boolean_arr[0] = false;" +
                 "tf_boolean_arr[1] = false;" +
                 "tf_boolean_arr[2] = true;" +
@@ -144,7 +144,7 @@
         e.eval("var psf_boolean_array = SharedObject.publicStaticFinalBooleanArray;");
         assertEquals(SharedObject.publicStaticFinalBooleanArray[0], e.eval("SharedObject.publicStaticFinalBooleanArray[0]"));
         assertTrue(Arrays.equals(SharedObject.publicStaticFinalBooleanArray, (boolean[])e.get("psf_boolean_array")));
-        e.eval("var tsf_boolean_arr = java.lang.reflect.Array.newInstance(java.lang.Boolean.TYPE, 3);" +
+        e.eval("var tsf_boolean_arr = new (Java.type(\"boolean[]\"))(3);" +
                 "tsf_boolean_arr[0] = false;" +
                 "tsf_boolean_arr[1] = true;" +
                 "tsf_boolean_arr[2] = false;" +
--- a/test/src/jdk/nashorn/api/javaaccess/NumberAccessTest.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/src/jdk/nashorn/api/javaaccess/NumberAccessTest.java	Tue Jul 23 21:51:23 2013 +0530
@@ -73,7 +73,7 @@
         e.eval("var p_long_array = o.publicLongArray;");
         assertEquals(o.publicLongArray[0], e.eval("o.publicLongArray[0];"));
         assertArrayEquals(o.publicLongArray, (long[])e.get("p_long_array"));
-        e.eval("var t_long_arr = java.lang.reflect.Array.newInstance(java.lang.Long.TYPE, 3);" +
+        e.eval("var t_long_arr = new (Java.type(\"long[]\"))(3);" +
                 "t_long_arr[0] = -189009;" +
                 "t_long_arr[1] = 456;" +
                 "t_long_arr[2] = 600000001;" +
@@ -97,7 +97,7 @@
         e.eval("var ps_long_array = SharedObject.publicStaticLongArray;");
         assertEquals(SharedObject.publicStaticLongArray[0], e.eval("SharedObject.publicStaticLongArray[0];"));
         assertArrayEquals(SharedObject.publicStaticLongArray, (long[])e.get("ps_long_array"));
-        e.eval("var ts_long_arr = java.lang.reflect.Array.newInstance(java.lang.Long.TYPE, 3);" +
+        e.eval("var ts_long_arr = new (Java.type(\"long[]\"))(3);" +
                 "ts_long_arr[0] = -189009;" +
                 "ts_long_arr[1] = 456;" +
                 "ts_long_arr[2] = 600000001;" +
@@ -121,7 +121,7 @@
         e.eval("var pf_long_array = o.publicFinalLongArray;");
         assertEquals(o.publicFinalLongArray[0], e.eval("o.publicFinalLongArray[0];"));
         assertArrayEquals(o.publicFinalLongArray, (long[])e.get("pf_long_array"));
-        e.eval("var tf_long_arr = java.lang.reflect.Array.newInstance(java.lang.Long.TYPE, 3);" +
+        e.eval("var tf_long_arr = new (Java.type(\"long[]\"))(3);" +
                 "tf_long_arr[0] = -189009;" +
                 "tf_long_arr[1] = 456;" +
                 "tf_long_arr[2] = 600000001;" +
@@ -145,7 +145,7 @@
         e.eval("var psf_long_array = SharedObject.publicStaticFinalLongArray;");
         assertEquals(SharedObject.publicStaticFinalLongArray[0], e.eval("SharedObject.publicStaticFinalLongArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalLongArray, (long[])e.get("psf_long_array"));
-        e.eval("var tsf_long_arr = java.lang.reflect.Array.newInstance(java.lang.Long.TYPE, 3);" +
+        e.eval("var tsf_long_arr = new (Java.type(\"long[]\"))(3);" +
                 "tsf_long_arr[0] = -189009;" +
                 "tsf_long_arr[1] = 456;" +
                 "tsf_long_arr[2] = 600000001;" +
@@ -171,7 +171,7 @@
         e.eval("var p_int_array = o.publicIntArray;");
         assertEquals(o.publicIntArray[0], e.eval("o.publicIntArray[0];"));
         assertArrayEquals(o.publicIntArray, (int[])e.get("p_int_array"));
-        e.eval("var t_int_arr = java.lang.reflect.Array.newInstance(java.lang.Integer.TYPE, 3);" +
+        e.eval("var t_int_arr = new (Java.type(\"int[]\"))(3);" +
                 "t_int_arr[0] = 4;" +
                 "t_int_arr[1] = 5;" +
                 "t_int_arr[2] = 6;" +
@@ -194,7 +194,7 @@
         e.eval("var ps_int_array = SharedObject.publicStaticIntArray;");
         assertEquals(SharedObject.publicStaticIntArray[0], e.eval("SharedObject.publicStaticIntArray[0];"));
         assertArrayEquals(SharedObject.publicStaticIntArray, (int[])e.get("ps_int_array"));
-        e.eval("var ts_int_arr = java.lang.reflect.Array.newInstance(java.lang.Integer.TYPE, 3);" +
+        e.eval("var ts_int_arr = new (Java.type(\"int[]\"))(3);" +
                 "ts_int_arr[0] = 4;" +
                 "ts_int_arr[1] = 5;" +
                 "ts_int_arr[2] = 6;" +
@@ -218,7 +218,7 @@
         e.eval("var pf_int_array = o.publicFinalIntArray;");
         assertEquals(o.publicFinalIntArray[0], e.eval("o.publicFinalIntArray[0];"));
         assertArrayEquals(o.publicFinalIntArray, (int[])e.get("pf_int_array"));
-        e.eval("var tf_int_arr = java.lang.reflect.Array.newInstance(java.lang.Integer.TYPE, 3);" +
+        e.eval("var tf_int_arr = new (Java.type(\"int[]\"))(3);" +
                 "tf_int_arr[0] = 4;" +
                 "tf_int_arr[1] = 5;" +
                 "tf_int_arr[2] = 6;" +
@@ -241,7 +241,7 @@
         e.eval("var psf_int_array = SharedObject.publicStaticFinalIntArray;");
         assertEquals(SharedObject.publicStaticFinalIntArray[0], e.eval("SharedObject.publicStaticFinalIntArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalIntArray, (int[])e.get("psf_int_array"));
-        e.eval("var tsf_int_arr = java.lang.reflect.Array.newInstance(java.lang.Integer.TYPE, 3);" +
+        e.eval("var tsf_int_arr = new (Java.type(\"int[]\"))(3);" +
                 "tsf_int_arr[0] = 4;" +
                 "tsf_int_arr[1] = 5;" +
                 "tsf_int_arr[2] = 6;" +
@@ -266,7 +266,7 @@
         e.eval("var p_byte_array = o.publicByteArray;");
         assertEquals(o.publicByteArray[0], e.eval("o.publicByteArray[0];"));
         assertArrayEquals(o.publicByteArray, (byte[])e.get("p_byte_array"));
-        e.eval("var t_byte_arr = java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 3);" +
+        e.eval("var t_byte_arr = new (Java.type(\"byte[]\"))(3);" +
                 "t_byte_arr[0] = -18;" +
                 "t_byte_arr[1] = 56;" +
                 "t_byte_arr[2] = 60;" +
@@ -289,7 +289,7 @@
         e.eval("var ps_byte_array = SharedObject.publicStaticByteArray;");
         assertEquals(SharedObject.publicStaticByteArray[0], e.eval("SharedObject.publicStaticByteArray[0];"));
         assertArrayEquals(SharedObject.publicStaticByteArray, (byte[])e.get("ps_byte_array"));
-        e.eval("var ts_byte_arr = java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 3);" +
+        e.eval("var ts_byte_arr = new (Java.type(\"byte[]\"))(3);" +
                 "ts_byte_arr[0] = -18;" +
                 "ts_byte_arr[1] = 56;" +
                 "ts_byte_arr[2] = 60;" +
@@ -312,7 +312,7 @@
         e.eval("var pf_byte_array = o.publicFinalByteArray;");
         assertEquals(o.publicFinalByteArray[0], e.eval("o.publicFinalByteArray[0];"));
         assertArrayEquals(o.publicFinalByteArray, (byte[])e.get("pf_byte_array"));
-        e.eval("var tf_byte_arr = java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 3);" +
+        e.eval("var tf_byte_arr = new (Java.type(\"byte[]\"))(3);" +
                 "tf_byte_arr[0] = -18;" +
                 "tf_byte_arr[1] = 56;" +
                 "tf_byte_arr[2] = 60;" +
@@ -335,7 +335,7 @@
         e.eval("var psf_byte_array = SharedObject.publicStaticFinalByteArray;");
         assertEquals(SharedObject.publicStaticFinalByteArray[0], e.eval("SharedObject.publicStaticFinalByteArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalByteArray, (byte[])e.get("psf_byte_array"));
-        e.eval("var tsf_byte_arr = java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 3);" +
+        e.eval("var tsf_byte_arr = new (Java.type(\"byte[]\"))(3);" +
                 "tsf_byte_arr[0] = -18;" +
                 "tsf_byte_arr[1] = 56;" +
                 "tsf_byte_arr[2] = 60;" +
@@ -360,7 +360,7 @@
         e.eval("var p_short_array = o.publicShortArray;");
         assertEquals(o.publicShortArray[0], e.eval("o.publicShortArray[0];"));
         assertArrayEquals(o.publicShortArray, (short[])e.get("p_short_array"));
-        e.eval("var t_short_arr = java.lang.reflect.Array.newInstance(java.lang.Short.TYPE, 3);" +
+        e.eval("var t_short_arr = new (Java.type(\"short[]\"))(3);" +
                 "t_short_arr[0] = 90;" +
                 "t_short_arr[1] = 5;" +
                 "t_short_arr[2] = -6000;" +
@@ -383,7 +383,7 @@
         e.eval("var ps_short_array = SharedObject.publicStaticShortArray;");
         assertEquals(SharedObject.publicStaticShortArray[0], e.eval("SharedObject.publicStaticShortArray[0];"));
         assertArrayEquals(SharedObject.publicStaticShortArray, (short[])e.get("ps_short_array"));
-        e.eval("var ts_short_arr = java.lang.reflect.Array.newInstance(java.lang.Short.TYPE, 3);" +
+        e.eval("var ts_short_arr = new (Java.type(\"short[]\"))(3);" +
                 "ts_short_arr[0] = 90;" +
                 "ts_short_arr[1] = 5;" +
                 "ts_short_arr[2] = -6000;" +
@@ -406,7 +406,7 @@
         e.eval("var pf_short_array = o.publicFinalShortArray;");
         assertEquals(o.publicFinalShortArray[0], e.eval("o.publicFinalShortArray[0];"));
         assertArrayEquals(o.publicFinalShortArray, (short[])e.get("pf_short_array"));
-        e.eval("var tf_short_arr = java.lang.reflect.Array.newInstance(java.lang.Short.TYPE, 3);" +
+        e.eval("var tf_short_arr = new (Java.type(\"short[]\"))(3);" +
                 "tf_short_arr[0] = 90;" +
                 "tf_short_arr[1] = 5;" +
                 "tf_short_arr[2] = -6000;" +
@@ -429,7 +429,7 @@
         e.eval("var psf_short_array = SharedObject.publicStaticFinalShortArray;");
         assertEquals(SharedObject.publicStaticFinalShortArray[0], e.eval("SharedObject.publicStaticFinalShortArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalShortArray, (short[])e.get("psf_short_array"));
-        e.eval("var tsf_short_arr = java.lang.reflect.Array.newInstance(java.lang.Short.TYPE, 3);" +
+        e.eval("var tsf_short_arr = new (Java.type(\"short[]\"))(3);" +
                 "tsf_short_arr[0] = 90;" +
                 "tsf_short_arr[1] = 5;" +
                 "tsf_short_arr[2] = -6000;" +
@@ -463,7 +463,7 @@
         e.eval("var p_char_array = o.publicCharArray;");
         assertEquals(o.publicCharArray[0], e.eval("o.publicCharArray[0];"));
         assertArrayEquals(o.publicCharArray, (char[])e.get("p_char_array"));
-        e.eval("var t_char_arr = java.lang.reflect.Array.newInstance(java.lang.Character.TYPE, 3);" +
+        e.eval("var t_char_arr = new (Java.type(\"char[]\"))(3);" +
                 "t_char_arr[0] = 'F';" +
                 "t_char_arr[1] = 'o';" +
                 "t_char_arr[2] = 'o';" +
@@ -486,7 +486,7 @@
         e.eval("var ps_char_array = SharedObject.publicStaticCharArray;");
         assertEquals(SharedObject.publicStaticCharArray[0], e.eval("SharedObject.publicStaticCharArray[0];"));
         assertArrayEquals(SharedObject.publicStaticCharArray, (char[])e.get("ps_char_array"));
-        e.eval("var ts_char_arr = java.lang.reflect.Array.newInstance(java.lang.Character.TYPE, 3);" +
+        e.eval("var ts_char_arr = new (Java.type(\"char[]\"))(3);" +
                 "ts_char_arr[0] = 'G';" +
                 "ts_char_arr[1] = 'o';" +
                 "ts_char_arr[2] = 'o';" +
@@ -509,7 +509,7 @@
         e.eval("var pf_char_array = o.publicFinalCharArray;");
         assertEquals(o.publicFinalCharArray[0], e.eval("o.publicFinalCharArray[0];"));
         assertArrayEquals(o.publicFinalCharArray, (char[])e.get("pf_char_array"));
-        e.eval("var tf_char_arr = java.lang.reflect.Array.newInstance(java.lang.Character.TYPE, 3);" +
+        e.eval("var tf_char_arr = new (Java.type(\"char[]\"))(3);" +
                 "tf_char_arr[0] = 'F';" +
                 "tf_char_arr[1] = 'o';" +
                 "tf_char_arr[2] = 'o';" +
@@ -532,7 +532,7 @@
         e.eval("var psf_char_array = SharedObject.publicStaticFinalCharArray;");
         assertEquals(SharedObject.publicStaticFinalCharArray[0], e.eval("SharedObject.publicStaticFinalCharArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalCharArray, (char[])e.get("psf_char_array"));
-        e.eval("var tsf_char_arr = java.lang.reflect.Array.newInstance(java.lang.Character.TYPE, 3);" +
+        e.eval("var tsf_char_arr = new (Java.type(\"char[]\"))(3);" +
                 "tsf_char_arr[0] = 'Z';" +
                 "tsf_char_arr[1] = 'o';" +
                 "tsf_char_arr[2] = 'o';" +
@@ -569,7 +569,7 @@
         e.eval("var p_float_array = o.publicFloatArray;");
         assertEquals(o.publicFloatArray[0], e.eval("o.publicFloatArray[0];"));
         assertArrayEquals(o.publicFloatArray, (float[])e.get("p_float_array"), 1e-10f);
-        e.eval("var t_float_arr = java.lang.reflect.Array.newInstance(java.lang.Float.TYPE, 3);" +
+        e.eval("var t_float_arr = new (Java.type(\"float[]\"))(3);" +
                 "t_float_arr[0] = 9.0;" +
                 "t_float_arr[1] = 5.12345;" +
                 "t_float_arr[2] = -60.03;" +
@@ -604,7 +604,7 @@
         e.eval("var ps_float_array = SharedObject.publicStaticFloatArray;");
         assertEquals(SharedObject.publicStaticFloatArray[0], e.eval("SharedObject.publicStaticFloatArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFloatArray, (float[])e.get("ps_float_array"), 1e-10f);
-        e.eval("var ts_float_arr = java.lang.reflect.Array.newInstance(java.lang.Float.TYPE, 3);" +
+        e.eval("var ts_float_arr = new (Java.type(\"float[]\"))(3);" +
                 "ts_float_arr[0] = 9.0;" +
                 "ts_float_arr[1] = 5.12345;" +
                 "ts_float_arr[2] = -60.03;" +
@@ -627,7 +627,7 @@
         e.eval("var pf_float_array = o.publicFinalFloatArray;");
         assertEquals(o.publicFinalFloatArray[0], e.eval("o.publicFinalFloatArray[0];"));
         assertArrayEquals(o.publicFinalFloatArray, (float[])e.get("pf_float_array"), 1e-10f);
-        e.eval("var tf_float_arr = java.lang.reflect.Array.newInstance(java.lang.Float.TYPE, 3);" +
+        e.eval("var tf_float_arr = new (Java.type(\"float[]\"))(3);" +
                 "tf_float_arr[0] = 9.0;" +
                 "tf_float_arr[1] = 5.12345;" +
                 "tf_float_arr[2] = -60.03;" +
@@ -650,7 +650,7 @@
         e.eval("var psf_float_array = SharedObject.publicStaticFinalFloatArray;");
         assertEquals(SharedObject.publicStaticFinalFloatArray[0], e.eval("SharedObject.publicStaticFinalFloatArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalFloatArray, (float[])e.get("psf_float_array"), 1e-10f);
-        e.eval("var tsf_float_arr = java.lang.reflect.Array.newInstance(java.lang.Float.TYPE, 3);" +
+        e.eval("var tsf_float_arr = new (Java.type(\"float[]\"))(3);" +
                 "tsf_float_arr[0] = 9.0;" +
                 "tsf_float_arr[1] = 5.12345;" +
                 "tsf_float_arr[2] = -60.03;" +
@@ -687,7 +687,7 @@
         e.eval("var p_double_array = o.publicDoubleArray;");
         assertEquals(o.publicDoubleArray[0], e.eval("o.publicDoubleArray[0];"));
         assertArrayEquals(o.publicDoubleArray, (double[])e.get("p_double_array"), 1e-10);
-        e.eval("var t_double_arr = java.lang.reflect.Array.newInstance(java.lang.Double.TYPE, 3);" +
+        e.eval("var t_double_arr = new (Java.type(\"double[]\"))(3);" +
                 "t_double_arr[0] = 9e10;" +
                 "t_double_arr[1] = 0.677777;" +
                 "t_double_arr[2] = -0.0000001;" +
@@ -722,7 +722,7 @@
         e.eval("var ps_double_array = SharedObject.publicStaticDoubleArray;");
         assertEquals(SharedObject.publicStaticDoubleArray[0], e.eval("SharedObject.publicStaticDoubleArray[0];"));
         assertArrayEquals(SharedObject.publicStaticDoubleArray, (double[])e.get("ps_double_array"), 1e-10);
-        e.eval("var ts_double_arr = java.lang.reflect.Array.newInstance(java.lang.Double.TYPE, 3);" +
+        e.eval("var ts_double_arr = new (Java.type(\"double[]\"))(3);" +
                 "ts_double_arr[0] = 9e10;" +
                 "ts_double_arr[1] = 0.677777;" +
                 "ts_double_arr[2] = -0.0000001;" +
@@ -745,7 +745,7 @@
         e.eval("var pf_double_array = o.publicFinalDoubleArray;");
         assertEquals(o.publicFinalDoubleArray[0], e.eval("o.publicFinalDoubleArray[0];"));
         assertArrayEquals(o.publicFinalDoubleArray, (double[])e.get("pf_double_array"), 1e-10);
-        e.eval("var tf_double_arr = java.lang.reflect.Array.newInstance(java.lang.Double.TYPE, 3);" +
+        e.eval("var tf_double_arr = new (Java.type(\"double[]\"))(3);" +
                 "tf_double_arr[0] = 9e10;" +
                 "tf_double_arr[1] = 0.677777;" +
                 "tf_double_arr[2] = -0.0000001;" +
@@ -768,7 +768,7 @@
         e.eval("var psf_double_array = SharedObject.publicStaticFinalDoubleArray;");
         assertEquals(SharedObject.publicStaticFinalDoubleArray[0], e.eval("SharedObject.publicStaticFinalDoubleArray[0];"));
         assertArrayEquals(SharedObject.publicStaticFinalDoubleArray, (double[])e.get("psf_double_array"), 1e-10);
-        e.eval("var tsf_double_arr = java.lang.reflect.Array.newInstance(java.lang.Double.TYPE, 3);" +
+        e.eval("var tsf_double_arr = new (Java.type(\"double[]\"))(3);" +
                 "tsf_double_arr[0] = 9e10;" +
                 "tsf_double_arr[1] = 0.677777;" +
                 "tsf_double_arr[2] = -0.0000001;" +
--- a/test/src/jdk/nashorn/api/javaaccess/ObjectAccessTest.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/src/jdk/nashorn/api/javaaccess/ObjectAccessTest.java	Tue Jul 23 21:51:23 2013 +0530
@@ -72,7 +72,7 @@
         e.eval("var p_object_array = o.publicObjectArray;");
         assertEquals(o.publicObjectArray[0], e.eval("o.publicObjectArray[0]"));
         assertArrayEquals(o.publicObjectArray, (Object[])e.get("p_object_array"));
-        e.eval("var t_object_arr = java.lang.reflect.Array.newInstance(Person.class, 3);" +
+        e.eval("var t_object_arr = new (Java.type(\"jdk.nashorn.api.javaaccess.Person[]\"))(3);" +
                 "t_object_arr[0] = new Person(100);" +
                 "t_object_arr[1] = new Person(120);" +
                 "t_object_arr[2] = new Person(140);" +
@@ -96,7 +96,7 @@
         e.eval("var ps_object_array = SharedObject.publicStaticObjectArray;");
         assertEquals(SharedObject.publicStaticObjectArray[0], e.eval("SharedObject.publicStaticObjectArray[0]"));
         assertArrayEquals(SharedObject.publicStaticObjectArray, (Object[])e.get("ps_object_array"));
-        e.eval("var ts_object_arr = java.lang.reflect.Array.newInstance(Person.class, 3);" +
+        e.eval("var ts_object_arr = new (Java.type(\"jdk.nashorn.api.javaaccess.Person[]\"))(3);" +
                 "ts_object_arr[0] = new Person(100);" +
                 "ts_object_arr[1] = new Person(120);" +
                 "ts_object_arr[2] = new Person(140);" +
@@ -120,7 +120,7 @@
         e.eval("var pf_object_array = o.publicFinalObjectArray;");
         assertEquals(o.publicFinalObjectArray[0], e.eval("o.publicFinalObjectArray[0]"));
         assertArrayEquals(o.publicFinalObjectArray, (Object[])e.get("pf_object_array"));
-        e.eval("var tf_object_arr = java.lang.reflect.Array.newInstance(Person.class, 3);" +
+        e.eval("var tf_object_arr = new (Java.type(\"jdk.nashorn.api.javaaccess.Person[]\"))(3);" +
                 "tf_object_arr[0] = new Person(100);" +
                 "tf_object_arr[1] = new Person(120);" +
                 "tf_object_arr[2] = new Person(140);" +
@@ -144,7 +144,7 @@
         e.eval("var psf_object_array = SharedObject.publicStaticFinalObjectArray;");
         assertEquals(SharedObject.publicStaticFinalObjectArray[0], e.eval("SharedObject.publicStaticFinalObjectArray[0]"));
         assertArrayEquals(SharedObject.publicStaticFinalObjectArray, (Object[])e.get("psf_object_array"));
-        e.eval("var tsf_object_arr = java.lang.reflect.Array.newInstance(Person.class, 3);" +
+        e.eval("var tsf_object_arr = new (Java.type(\"jdk.nashorn.api.javaaccess.Person[]\"))(3);" +
                 "tsf_object_arr[0] = new Person(100);" +
                 "tsf_object_arr[1] = new Person(120);" +
                 "tsf_object_arr[2] = new Person(140);" +
--- a/test/src/jdk/nashorn/api/javaaccess/StringAccessTest.java	Wed Jul 17 00:36:48 2013 -0700
+++ b/test/src/jdk/nashorn/api/javaaccess/StringAccessTest.java	Tue Jul 23 21:51:23 2013 +0530
@@ -71,7 +71,7 @@
         e.eval("var p_string_array = o.publicStringArray;");
         assertEquals(o.publicStringArray[0], e.eval("o.publicStringArray[0]"));
         assertArrayEquals(o.publicStringArray, (String[])e.get("p_string_array"));
-        e.eval("var t_string_arr = java.lang.reflect.Array.newInstance(java.lang.String.class, 3);" +
+        e.eval("var t_string_arr = new (Java.type(\"java.lang.String[]\"))(3);" +
                 "t_string_arr[0] = 'abc';" +
                 "t_string_arr[1] = '123';" +
                 "t_string_arr[2] = 'xyzzzz';" +
@@ -95,7 +95,7 @@
         e.eval("var ps_string_array = SharedObject.publicStaticStringArray;");
         assertEquals(SharedObject.publicStaticStringArray[0], e.eval("SharedObject.publicStaticStringArray[0]"));
         assertArrayEquals(SharedObject.publicStaticStringArray, (String[])e.get("ps_string_array"));
-        e.eval("var ts_string_arr = java.lang.reflect.Array.newInstance(java.lang.String.class, 3);" +
+        e.eval("var ts_string_arr = new (Java.type(\"java.lang.String[]\"))(3);" +
                 "ts_string_arr[0] = 'abc';" +
                 "ts_string_arr[1] = '123';" +
                 "ts_string_arr[2] = 'xyzzzz';" +
@@ -119,7 +119,7 @@
         e.eval("var pf_string_array = o.publicFinalStringArray;");
         assertEquals(o.publicFinalStringArray[0], e.eval("o.publicFinalStringArray[0]"));
         assertArrayEquals(o.publicFinalStringArray, (String[])e.get("pf_string_array"));
-        e.eval("var tf_string_arr = java.lang.reflect.Array.newInstance(java.lang.String.class, 3);" +
+        e.eval("var tf_string_arr = new (Java.type(\"java.lang.String[]\"))(3);" +
                 "tf_string_arr[0] = 'abc';" +
                 "tf_string_arr[1] = '123';" +
                 "tf_string_arr[2] = 'xyzzzz';" +
@@ -143,7 +143,7 @@
         e.eval("var psf_string_array = SharedObject.publicStaticFinalStringArray;");
         assertEquals(SharedObject.publicStaticFinalStringArray[0], e.eval("SharedObject.publicStaticFinalStringArray[0]"));
         assertArrayEquals(SharedObject.publicStaticFinalStringArray, (String[])e.get("psf_string_array"));
-        e.eval("var tsf_string_arr = java.lang.reflect.Array.newInstance(java.lang.String.class, 3);" +
+        e.eval("var tsf_string_arr = new (Java.type(\"java.lang.String[]\"))(3);" +
                 "tsf_string_arr[0] = 'abc';" +
                 "tsf_string_arr[1] = '123';" +
                 "tsf_string_arr[2] = 'xyzzzz';" +