| OLD | NEW | 
|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 function assert(condition,opt_message){if(!condition){var message="Assertion fai
    led";if(opt_message)message=message+": "+opt_message;var error=new Error(message
    );var global=function(){return this}();if(global.traceAssertionsForTesting)conso
    le.warn(error.stack);throw error}return condition}function assertNotReached(opt_
    message){assert(false,opt_message||"Unreachable code hit")}function assertInstan
    ceof(value,type,opt_message){if(!(value instanceof type)){assertNotReached(opt_m
    essage||"Value "+value+" is not a[n] "+(type.name||typeof type))}return value} | 4 function assert(condition,opt_message){if(!condition){var message="Assertion fai
    led";if(opt_message)message=message+": "+opt_message;var error=new Error(message
    );var global=function(){return this}();if(global.traceAssertionsForTesting)conso
    le.warn(error.stack);throw error}return condition}function assertNotReached(opt_
    message){assert(false,opt_message||"Unreachable code hit")}function assertInstan
    ceof(value,type,opt_message){if(!(value instanceof type)){assertNotReached(opt_m
    essage||"Value "+value+" is not a[n] "+(type.name||typeof type))}return value} | 
| 5 // Copyright 2016 The Chromium Authors. All rights reserved. | 5 // Copyright 2016 The Chromium Authors. All rights reserved. | 
| 6 // Use of this source code is governed by a BSD-style license that can be | 6 // Use of this source code is governed by a BSD-style license that can be | 
| 7 // found in the LICENSE file. | 7 // found in the LICENSE file. | 
| 8 function PromiseResolver(){this.resolve_;this.reject_;this.promise_=new Promise(
    function(resolve,reject){this.resolve_=resolve;this.reject_=reject}.bind(this))}
    PromiseResolver.prototype={get promise(){return this.promise_},set promise(p){as
    sertNotReached()},get resolve(){return this.resolve_},set resolve(r){assertNotRe
    ached()},get reject(){return this.reject_},set reject(s){assertNotReached()}}; | 8 function PromiseResolver(){this.resolve_;this.reject_;this.promise_=new Promise(
    function(resolve,reject){this.resolve_=resolve;this.reject_=reject}.bind(this))}
    PromiseResolver.prototype={get promise(){return this.promise_},set promise(p){as
    sertNotReached()},get resolve(){return this.resolve_},set resolve(r){assertNotRe
    ached()},get reject(){return this.reject_},set reject(s){assertNotReached()}}; | 
| 9 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 9 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 10 // Use of this source code is governed by a BSD-style license that can be | 10 // Use of this source code is governed by a BSD-style license that can be | 
| 11 // found in the LICENSE file. | 11 // found in the LICENSE file. | 
| 12 var global=this;var WebUIListener;var cr=cr||function(){"use strict";function ex
    portPath(name,opt_object,opt_objectToExportTo){var parts=name.split(".");var cur
    =opt_objectToExportTo||global;for(var part;parts.length&&(part=parts.shift());){
    if(!parts.length&&opt_object!==undefined){cur[part]=opt_object}else if(part in c
    ur){cur=cur[part]}else{cur=cur[part]={}}}return cur}function dispatchPropertyCha
    nge(target,propertyName,newValue,oldValue){var e=new Event(propertyName+"Change"
    );e.propertyName=propertyName;e.newValue=newValue;e.oldValue=oldValue;target.dis
    patchEvent(e)}function getAttributeName(jsName){return jsName.replace(/([A-Z])/g
    ,"-$1").toLowerCase()}var PropertyKind={JS:"js",ATTR:"attr",BOOL_ATTR:"boolAttr"
    };function getGetter(name,kind){switch(kind){case PropertyKind.JS:var privateNam
    e=name+"_";return function(){return this[privateName]};case PropertyKind.ATTR:va
    r attributeName=getAttributeName(name);return function(){return this.getAttribut
    e(attributeName)};case PropertyKind.BOOL_ATTR:var attributeName=getAttributeName
    (name);return function(){return this.hasAttribute(attributeName)}}throw"not reac
    hed"}function getSetter(name,kind,opt_setHook){switch(kind){case PropertyKind.JS
    :var privateName=name+"_";return function(value){var oldValue=this[name];if(valu
    e!==oldValue){this[privateName]=value;if(opt_setHook)opt_setHook.call(this,value
    ,oldValue);dispatchPropertyChange(this,name,value,oldValue)}};case PropertyKind.
    ATTR:var attributeName=getAttributeName(name);return function(value){var oldValu
    e=this[name];if(value!==oldValue){if(value==undefined)this.removeAttribute(attri
    buteName);else this.setAttribute(attributeName,value);if(opt_setHook)opt_setHook
    .call(this,value,oldValue);dispatchPropertyChange(this,name,value,oldValue)}};ca
    se PropertyKind.BOOL_ATTR:var attributeName=getAttributeName(name);return functi
    on(value){var oldValue=this[name];if(value!==oldValue){if(value)this.setAttribut
    e(attributeName,name);else this.removeAttribute(attributeName);if(opt_setHook)op
    t_setHook.call(this,value,oldValue);dispatchPropertyChange(this,name,value,oldVa
    lue)}}}throw"not reached"}function defineProperty(obj,name,opt_kind,opt_setHook)
    {if(typeof obj=="function")obj=obj.prototype;var kind=opt_kind||PropertyKind.JS;
    if(!obj.__lookupGetter__(name))obj.__defineGetter__(name,getGetter(name,kind));i
    f(!obj.__lookupSetter__(name))obj.__defineSetter__(name,getSetter(name,kind,opt_
    setHook))}var uidCounter=1;function createUid(){return uidCounter++}function get
    Uid(item){if(item.hasOwnProperty("uid"))return item.uid;return item.uid=createUi
    d()}function dispatchSimpleEvent(target,type,opt_bubbles,opt_cancelable){var e=n
    ew Event(type,{bubbles:opt_bubbles,cancelable:opt_cancelable===undefined||opt_ca
    ncelable});return target.dispatchEvent(e)}function define(name,fun){var obj=expo
    rtPath(name);var exports=fun();for(var propertyName in exports){var propertyDesc
    riptor=Object.getOwnPropertyDescriptor(exports,propertyName);if(propertyDescript
    or)Object.defineProperty(obj,propertyName,propertyDescriptor)}}function addSingl
    etonGetter(ctor){ctor.getInstance=function(){return ctor.instance_||(ctor.instan
    ce_=new ctor)}}function makePublic(ctor,methods,opt_target){methods.forEach(func
    tion(method){ctor[method]=function(){var target=opt_target?document.getElementBy
    Id(opt_target):ctor.getInstance();return target[method+"_"].apply(target,argumen
    ts)}})}var chromeSendResolverMap={};function webUIResponse(id,isSuccess,response
    ){var resolver=chromeSendResolverMap[id];delete chromeSendResolverMap[id];if(isS
    uccess)resolver.resolve(response);else resolver.reject(response)}function sendWi
    thPromise(methodName,var_args){var args=Array.prototype.slice.call(arguments,1);
    var promiseResolver=new PromiseResolver;var id=methodName+"_"+createUid();chrome
    SendResolverMap[id]=promiseResolver;chrome.send(methodName,[id].concat(args));re
    turn promiseResolver.promise}var webUIListenerMap={};function webUIListenerCallb
    ack(event,var_args){var eventListenersMap=webUIListenerMap[event];if(!eventListe
    nersMap){return}var args=Array.prototype.slice.call(arguments,1);for(var listene
    rId in eventListenersMap){eventListenersMap[listenerId].apply(null,args)}}functi
    on addWebUIListener(eventName,callback){webUIListenerMap[eventName]=webUIListene
    rMap[eventName]||{};var uid=createUid();webUIListenerMap[eventName][uid]=callbac
    k;return{eventName:eventName,uid:uid}}function removeWebUIListener(listener){var
     listenerExists=webUIListenerMap[listener.eventName]&&webUIListenerMap[listener.
    eventName][listener.uid];if(listenerExists){delete webUIListenerMap[listener.eve
    ntName][listener.uid];return true}return false}return{addSingletonGetter:addSing
    letonGetter,createUid:createUid,define:define,defineProperty:defineProperty,disp
    atchPropertyChange:dispatchPropertyChange,dispatchSimpleEvent:dispatchSimpleEven
    t,exportPath:exportPath,getUid:getUid,makePublic:makePublic,PropertyKind:Propert
    yKind,addWebUIListener:addWebUIListener,removeWebUIListener:removeWebUIListener,
    sendWithPromise:sendWithPromise,webUIListenerCallback:webUIListenerCallback,webU
    IResponse:webUIResponse,get doc(){return document},get isMac(){return/Mac/.test(
    navigator.platform)},get isWindows(){return/Win/.test(navigator.platform)},get i
    sChromeOS(){return/CrOS/.test(navigator.userAgent)},get isLinux(){return/Linux/.
    test(navigator.userAgent)},get isAndroid(){return/Android/.test(navigator.userAg
    ent)},get isIOS(){return/iPad|iPhone|iPod/.test(navigator.platform)}}}(); | 12 var global=this;var WebUIListener;var cr=cr||function(){"use strict";function ex
    portPath(name,opt_object,opt_objectToExportTo){var parts=name.split(".");var cur
    =opt_objectToExportTo||global;for(var part;parts.length&&(part=parts.shift());){
    if(!parts.length&&opt_object!==undefined){cur[part]=opt_object}else if(part in c
    ur){cur=cur[part]}else{cur=cur[part]={}}}return cur}function dispatchPropertyCha
    nge(target,propertyName,newValue,oldValue){var e=new Event(propertyName+"Change"
    );e.propertyName=propertyName;e.newValue=newValue;e.oldValue=oldValue;target.dis
    patchEvent(e)}function getAttributeName(jsName){return jsName.replace(/([A-Z])/g
    ,"-$1").toLowerCase()}var PropertyKind={JS:"js",ATTR:"attr",BOOL_ATTR:"boolAttr"
    };function getGetter(name,kind){switch(kind){case PropertyKind.JS:var privateNam
    e=name+"_";return function(){return this[privateName]};case PropertyKind.ATTR:va
    r attributeName=getAttributeName(name);return function(){return this.getAttribut
    e(attributeName)};case PropertyKind.BOOL_ATTR:var attributeName=getAttributeName
    (name);return function(){return this.hasAttribute(attributeName)}}throw"not reac
    hed"}function getSetter(name,kind,opt_setHook){switch(kind){case PropertyKind.JS
    :var privateName=name+"_";return function(value){var oldValue=this[name];if(valu
    e!==oldValue){this[privateName]=value;if(opt_setHook)opt_setHook.call(this,value
    ,oldValue);dispatchPropertyChange(this,name,value,oldValue)}};case PropertyKind.
    ATTR:var attributeName=getAttributeName(name);return function(value){var oldValu
    e=this[name];if(value!==oldValue){if(value==undefined)this.removeAttribute(attri
    buteName);else this.setAttribute(attributeName,value);if(opt_setHook)opt_setHook
    .call(this,value,oldValue);dispatchPropertyChange(this,name,value,oldValue)}};ca
    se PropertyKind.BOOL_ATTR:var attributeName=getAttributeName(name);return functi
    on(value){var oldValue=this[name];if(value!==oldValue){if(value)this.setAttribut
    e(attributeName,name);else this.removeAttribute(attributeName);if(opt_setHook)op
    t_setHook.call(this,value,oldValue);dispatchPropertyChange(this,name,value,oldVa
    lue)}}}throw"not reached"}function defineProperty(obj,name,opt_kind,opt_setHook)
    {if(typeof obj=="function")obj=obj.prototype;var kind=opt_kind||PropertyKind.JS;
    if(!obj.__lookupGetter__(name))obj.__defineGetter__(name,getGetter(name,kind));i
    f(!obj.__lookupSetter__(name))obj.__defineSetter__(name,getSetter(name,kind,opt_
    setHook))}var uidCounter=1;function createUid(){return uidCounter++}function get
    Uid(item){if(item.hasOwnProperty("uid"))return item.uid;return item.uid=createUi
    d()}function dispatchSimpleEvent(target,type,opt_bubbles,opt_cancelable){var e=n
    ew Event(type,{bubbles:opt_bubbles,cancelable:opt_cancelable===undefined||opt_ca
    ncelable});return target.dispatchEvent(e)}function define(name,fun){var obj=expo
    rtPath(name);var exports=fun();for(var propertyName in exports){var propertyDesc
    riptor=Object.getOwnPropertyDescriptor(exports,propertyName);if(propertyDescript
    or)Object.defineProperty(obj,propertyName,propertyDescriptor)}}function addSingl
    etonGetter(ctor){ctor.getInstance=function(){return ctor.instance_||(ctor.instan
    ce_=new ctor)}}function makePublic(ctor,methods,opt_target){methods.forEach(func
    tion(method){ctor[method]=function(){var target=opt_target?document.getElementBy
    Id(opt_target):ctor.getInstance();return target[method+"_"].apply(target,argumen
    ts)}})}var chromeSendResolverMap={};function webUIResponse(id,isSuccess,response
    ){var resolver=chromeSendResolverMap[id];delete chromeSendResolverMap[id];if(isS
    uccess)resolver.resolve(response);else resolver.reject(response)}function sendWi
    thPromise(methodName,var_args){var args=Array.prototype.slice.call(arguments,1);
    var promiseResolver=new PromiseResolver;var id=methodName+"_"+createUid();chrome
    SendResolverMap[id]=promiseResolver;chrome.send(methodName,[id].concat(args));re
    turn promiseResolver.promise}var webUIListenerMap={};function webUIListenerCallb
    ack(event,var_args){var eventListenersMap=webUIListenerMap[event];if(!eventListe
    nersMap){return}var args=Array.prototype.slice.call(arguments,1);for(var listene
    rId in eventListenersMap){eventListenersMap[listenerId].apply(null,args)}}functi
    on addWebUIListener(eventName,callback){webUIListenerMap[eventName]=webUIListene
    rMap[eventName]||{};var uid=createUid();webUIListenerMap[eventName][uid]=callbac
    k;return{eventName:eventName,uid:uid}}function removeWebUIListener(listener){var
     listenerExists=webUIListenerMap[listener.eventName]&&webUIListenerMap[listener.
    eventName][listener.uid];if(listenerExists){delete webUIListenerMap[listener.eve
    ntName][listener.uid];return true}return false}return{addSingletonGetter:addSing
    letonGetter,createUid:createUid,define:define,defineProperty:defineProperty,disp
    atchPropertyChange:dispatchPropertyChange,dispatchSimpleEvent:dispatchSimpleEven
    t,exportPath:exportPath,getUid:getUid,makePublic:makePublic,PropertyKind:Propert
    yKind,addWebUIListener:addWebUIListener,removeWebUIListener:removeWebUIListener,
    sendWithPromise:sendWithPromise,webUIListenerCallback:webUIListenerCallback,webU
    IResponse:webUIResponse,get doc(){return document},get isMac(){return/Mac/.test(
    navigator.platform)},get isWindows(){return/Win/.test(navigator.platform)},get i
    sChromeOS(){return/CrOS/.test(navigator.userAgent)},get isLinux(){return/Linux/.
    test(navigator.userAgent)},get isAndroid(){return/Android/.test(navigator.userAg
    ent)},get isIOS(){return/iPad|iPhone|iPod/.test(navigator.platform)}}}(); | 
| 13 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 13 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 14 // Use of this source code is governed by a BSD-style license that can be | 14 // Use of this source code is governed by a BSD-style license that can be | 
| 15 // found in the LICENSE file. | 15 // found in the LICENSE file. | 
| 16 cr.define("cr.ui",function(){function decorate(source,constr){var elements;if(ty
    peof source=="string")elements=cr.doc.querySelectorAll(source);else elements=[so
    urce];for(var i=0,el;el=elements[i];i++){if(!(el instanceof constr))constr.decor
    ate(el)}}function createElementHelper(tagName,opt_bag){var doc;if(opt_bag&&opt_b
    ag.ownerDocument)doc=opt_bag.ownerDocument;else doc=cr.doc;return doc.createElem
    ent(tagName)}function define(tagNameOrFunction){var createFunction,tagName;if(ty
    peof tagNameOrFunction=="function"){createFunction=tagNameOrFunction;tagName=""}
    else{createFunction=createElementHelper;tagName=tagNameOrFunction}function f(opt
    _propertyBag){var el=createFunction(tagName,opt_propertyBag);f.decorate(el);for(
    var propertyName in opt_propertyBag){el[propertyName]=opt_propertyBag[propertyNa
    me]}return el}f.decorate=function(el){el.__proto__=f.prototype;el.decorate()};re
    turn f}function limitInputWidth(el,parentEl,min,opt_scale){el.style.width="10px"
    ;var doc=el.ownerDocument;var win=doc.defaultView;var computedStyle=win.getCompu
    tedStyle(el);var parentComputedStyle=win.getComputedStyle(parentEl);var rtl=comp
    utedStyle.direction=="rtl";var inputRect=el.getBoundingClientRect();var parentRe
    ct=parentEl.getBoundingClientRect();var startPos=rtl?parentRect.right-inputRect.
    right:inputRect.left-parentRect.left;var inner=parseInt(computedStyle.borderLeft
    Width,10)+parseInt(computedStyle.paddingLeft,10)+parseInt(computedStyle.paddingR
    ight,10)+parseInt(computedStyle.borderRightWidth,10);var parentPadding=rtl?parse
    Int(parentComputedStyle.paddingLeft,10):parseInt(parentComputedStyle.paddingRigh
    t,10);var max=parentEl.clientWidth-startPos-inner-parentPadding;if(opt_scale)max
    *=opt_scale;function limit(){if(el.scrollWidth>max){el.style.width=max+"px"}else
    {el.style.width=0;var sw=el.scrollWidth;if(sw<min){el.style.width=min+"px"}else{
    el.style.width=sw+"px"}}}el.addEventListener("input",limit);limit()}function toC
    ssPx(pixels){if(!window.isFinite(pixels))console.error("Pixel value is not a num
    ber: "+pixels);return Math.round(pixels)+"px"}function swallowDoubleClick(e){var
     doc=e.target.ownerDocument;var counter=Math.min(1,e.detail);function swallow(e)
    {e.stopPropagation();e.preventDefault()}function onclick(e){if(e.detail>counter)
    {counter=e.detail;swallow(e)}else{doc.removeEventListener("dblclick",swallow,tru
    e);doc.removeEventListener("click",onclick,true)}}setTimeout(function(){doc.addE
    ventListener("click",onclick,true);doc.addEventListener("dblclick",swallow,true)
    },0)}return{decorate:decorate,define:define,limitInputWidth:limitInputWidth,toCs
    sPx:toCssPx,swallowDoubleClick:swallowDoubleClick}}); | 16 cr.define("cr.ui",function(){function decorate(source,constr){var elements;if(ty
    peof source=="string")elements=cr.doc.querySelectorAll(source);else elements=[so
    urce];for(var i=0,el;el=elements[i];i++){if(!(el instanceof constr))constr.decor
    ate(el)}}function createElementHelper(tagName,opt_bag){var doc;if(opt_bag&&opt_b
    ag.ownerDocument)doc=opt_bag.ownerDocument;else doc=cr.doc;return doc.createElem
    ent(tagName)}function define(tagNameOrFunction){var createFunction,tagName;if(ty
    peof tagNameOrFunction=="function"){createFunction=tagNameOrFunction;tagName=""}
    else{createFunction=createElementHelper;tagName=tagNameOrFunction}function f(opt
    _propertyBag){var el=createFunction(tagName,opt_propertyBag);f.decorate(el);for(
    var propertyName in opt_propertyBag){el[propertyName]=opt_propertyBag[propertyNa
    me]}return el}f.decorate=function(el){el.__proto__=f.prototype;el.decorate()};re
    turn f}function limitInputWidth(el,parentEl,min,opt_scale){el.style.width="10px"
    ;var doc=el.ownerDocument;var win=doc.defaultView;var computedStyle=win.getCompu
    tedStyle(el);var parentComputedStyle=win.getComputedStyle(parentEl);var rtl=comp
    utedStyle.direction=="rtl";var inputRect=el.getBoundingClientRect();var parentRe
    ct=parentEl.getBoundingClientRect();var startPos=rtl?parentRect.right-inputRect.
    right:inputRect.left-parentRect.left;var inner=parseInt(computedStyle.borderLeft
    Width,10)+parseInt(computedStyle.paddingLeft,10)+parseInt(computedStyle.paddingR
    ight,10)+parseInt(computedStyle.borderRightWidth,10);var parentPadding=rtl?parse
    Int(parentComputedStyle.paddingLeft,10):parseInt(parentComputedStyle.paddingRigh
    t,10);var max=parentEl.clientWidth-startPos-inner-parentPadding;if(opt_scale)max
    *=opt_scale;function limit(){if(el.scrollWidth>max){el.style.width=max+"px"}else
    {el.style.width=0;var sw=el.scrollWidth;if(sw<min){el.style.width=min+"px"}else{
    el.style.width=sw+"px"}}}el.addEventListener("input",limit);limit()}function toC
    ssPx(pixels){if(!window.isFinite(pixels))console.error("Pixel value is not a num
    ber: "+pixels);return Math.round(pixels)+"px"}function swallowDoubleClick(e){var
     doc=e.target.ownerDocument;var counter=Math.min(1,e.detail);function swallow(e)
    {e.stopPropagation();e.preventDefault()}function onclick(e){if(e.detail>counter)
    {counter=e.detail;swallow(e)}else{doc.removeEventListener("dblclick",swallow,tru
    e);doc.removeEventListener("click",onclick,true)}}setTimeout(function(){doc.addE
    ventListener("click",onclick,true);doc.addEventListener("dblclick",swallow,true)
    },0)}return{decorate:decorate,define:define,limitInputWidth:limitInputWidth,toCs
    sPx:toCssPx,swallowDoubleClick:swallowDoubleClick}}); | 
| 17 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 17 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 18 // Use of this source code is governed by a BSD-style license that can be | 18 // Use of this source code is governed by a BSD-style license that can be | 
| 19 // found in the LICENSE file. | 19 // found in the LICENSE file. | 
| 20 cr.define("cr.ui",function(){function KeyboardShortcut(shortcut){var mods={};var
     ident="";shortcut.split("|").forEach(function(part){var partLc=part.toLowerCase
    ();switch(partLc){case"alt":case"ctrl":case"meta":case"shift":mods[partLc+"Key"]
    =true;break;default:if(ident)throw Error("Invalid shortcut");ident=part}});this.
    ident_=ident;this.mods_=mods}KeyboardShortcut.prototype={matchesEvent:function(e
    ){if(e.key==this.ident_){var mods=this.mods_;return["altKey","ctrlKey","metaKey"
    ,"shiftKey"].every(function(k){return e[k]==!!mods[k]})}return false}};var Comma
    nd=cr.ui.define("command");Command.prototype={__proto__:HTMLElement.prototype,de
    corate:function(){CommandManager.init(assert(this.ownerDocument));if(this.hasAtt
    ribute("shortcut"))this.shortcut=this.getAttribute("shortcut")},execute:function
    (opt_element){if(this.disabled)return;var doc=this.ownerDocument;if(doc.activeEl
    ement){var e=new Event("command",{bubbles:true});e.command=this;(opt_element||do
    c.activeElement).dispatchEvent(e)}},canExecuteChange:function(opt_node){dispatch
    CanExecuteEvent(this,opt_node||this.ownerDocument.activeElement)},shortcut_:"",g
    et shortcut(){return this.shortcut_},set shortcut(shortcut){var oldShortcut=this
    .shortcut_;if(shortcut!==oldShortcut){this.keyboardShortcuts_=shortcut.split(/\s
    +/).map(function(shortcut){return new KeyboardShortcut(shortcut)});this.shortcut
    _=shortcut;cr.dispatchPropertyChange(this,"shortcut",this.shortcut_,oldShortcut)
    }},matchesEvent:function(e){if(!this.keyboardShortcuts_)return false;return this
    .keyboardShortcuts_.some(function(keyboardShortcut){return keyboardShortcut.matc
    hesEvent(e)})}};cr.defineProperty(Command,"label",cr.PropertyKind.ATTR);cr.defin
    eProperty(Command,"disabled",cr.PropertyKind.BOOL_ATTR);cr.defineProperty(Comman
    d,"hidden",cr.PropertyKind.BOOL_ATTR);cr.defineProperty(Command,"checked",cr.Pro
    pertyKind.BOOL_ATTR);cr.defineProperty(Command,"hideShortcutText",cr.PropertyKin
    d.BOOL_ATTR);function dispatchCanExecuteEvent(command,target){var e=new CanExecu
    teEvent(command);target.dispatchEvent(e);command.disabled=!e.canExecute}var comm
    andManagers={};function CommandManager(doc){doc.addEventListener("focus",this.ha
    ndleFocus_.bind(this),true);doc.addEventListener("keydown",this.handleKeyDown_.b
    ind(this),false)}CommandManager.init=function(doc){var uid=cr.getUid(doc);if(!(u
    id in commandManagers)){commandManagers[uid]=new CommandManager(doc)}};CommandMa
    nager.prototype={handleFocus_:function(e){var target=e.target;if(target.menu||ta
    rget.command)return;var commands=Array.prototype.slice.call(target.ownerDocument
    .querySelectorAll("command"));commands.forEach(function(command){dispatchCanExec
    uteEvent(command,target)})},handleKeyDown_:function(e){var target=e.target;var c
    ommands=Array.prototype.slice.call(target.ownerDocument.querySelectorAll("comman
    d"));for(var i=0,command;command=commands[i];i++){if(command.matchesEvent(e)){co
    mmand.canExecuteChange();if(!command.disabled){e.preventDefault();e.stopPropagat
    ion();command.execute();return}}}}};function CanExecuteEvent(command){var e=new 
    Event("canExecute",{bubbles:true,cancelable:true});e.__proto__=CanExecuteEvent.p
    rototype;e.command=command;return e}CanExecuteEvent.prototype={__proto__:Event.p
    rototype,command:null,canExecute_:false,get canExecute(){return this.canExecute_
    },set canExecute(canExecute){this.canExecute_=!!canExecute;this.stopPropagation(
    );this.preventDefault()}};return{Command:Command,CanExecuteEvent:CanExecuteEvent
    }}); | 20 cr.define("cr.ui",function(){function KeyboardShortcut(shortcut){var mods={};var
     ident="";shortcut.split("|").forEach(function(part){var partLc=part.toLowerCase
    ();switch(partLc){case"alt":case"ctrl":case"meta":case"shift":mods[partLc+"Key"]
    =true;break;default:if(ident)throw Error("Invalid shortcut");ident=part}});this.
    ident_=ident;this.mods_=mods}KeyboardShortcut.prototype={matchesEvent:function(e
    ){if(e.key==this.ident_){var mods=this.mods_;return["altKey","ctrlKey","metaKey"
    ,"shiftKey"].every(function(k){return e[k]==!!mods[k]})}return false}};var Comma
    nd=cr.ui.define("command");Command.prototype={__proto__:HTMLElement.prototype,de
    corate:function(){CommandManager.init(assert(this.ownerDocument));if(this.hasAtt
    ribute("shortcut"))this.shortcut=this.getAttribute("shortcut")},execute:function
    (opt_element){if(this.disabled)return;var doc=this.ownerDocument;if(doc.activeEl
    ement){var e=new Event("command",{bubbles:true});e.command=this;(opt_element||do
    c.activeElement).dispatchEvent(e)}},canExecuteChange:function(opt_node){dispatch
    CanExecuteEvent(this,opt_node||this.ownerDocument.activeElement)},shortcut_:"",g
    et shortcut(){return this.shortcut_},set shortcut(shortcut){var oldShortcut=this
    .shortcut_;if(shortcut!==oldShortcut){this.keyboardShortcuts_=shortcut.split(/\s
    +/).map(function(shortcut){return new KeyboardShortcut(shortcut)});this.shortcut
    _=shortcut;cr.dispatchPropertyChange(this,"shortcut",this.shortcut_,oldShortcut)
    }},matchesEvent:function(e){if(!this.keyboardShortcuts_)return false;return this
    .keyboardShortcuts_.some(function(keyboardShortcut){return keyboardShortcut.matc
    hesEvent(e)})}};cr.defineProperty(Command,"label",cr.PropertyKind.ATTR);cr.defin
    eProperty(Command,"disabled",cr.PropertyKind.BOOL_ATTR);cr.defineProperty(Comman
    d,"hidden",cr.PropertyKind.BOOL_ATTR);cr.defineProperty(Command,"checked",cr.Pro
    pertyKind.BOOL_ATTR);cr.defineProperty(Command,"hideShortcutText",cr.PropertyKin
    d.BOOL_ATTR);function dispatchCanExecuteEvent(command,target){var e=new CanExecu
    teEvent(command);target.dispatchEvent(e);command.disabled=!e.canExecute}var comm
    andManagers={};function CommandManager(doc){doc.addEventListener("focus",this.ha
    ndleFocus_.bind(this),true);doc.addEventListener("keydown",this.handleKeyDown_.b
    ind(this),false)}CommandManager.init=function(doc){var uid=cr.getUid(doc);if(!(u
    id in commandManagers)){commandManagers[uid]=new CommandManager(doc)}};CommandMa
    nager.prototype={handleFocus_:function(e){var target=e.target;if(target.menu||ta
    rget.command)return;var commands=Array.prototype.slice.call(target.ownerDocument
    .querySelectorAll("command"));commands.forEach(function(command){dispatchCanExec
    uteEvent(command,target)})},handleKeyDown_:function(e){var target=e.target;var c
    ommands=Array.prototype.slice.call(target.ownerDocument.querySelectorAll("comman
    d"));for(var i=0,command;command=commands[i];i++){if(command.matchesEvent(e)){co
    mmand.canExecuteChange();if(!command.disabled){e.preventDefault();e.stopPropagat
    ion();command.execute();return}}}}};function CanExecuteEvent(command){var e=new 
    Event("canExecute",{bubbles:true,cancelable:true});e.__proto__=CanExecuteEvent.p
    rototype;e.command=command;return e}CanExecuteEvent.prototype={__proto__:Event.p
    rototype,command:null,canExecute_:false,get canExecute(){return this.canExecute_
    },set canExecute(canExecute){this.canExecute_=!!canExecute;this.stopPropagation(
    );this.preventDefault()}};return{Command:Command,CanExecuteEvent:CanExecuteEvent
    }}); | 
| 21 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 21 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 22 // Use of this source code is governed by a BSD-style license that can be | 22 // Use of this source code is governed by a BSD-style license that can be | 
| 23 // found in the LICENSE file. | 23 // found in the LICENSE file. | 
| 24 function $(id){var el=document.getElementById(id);return el?assertInstanceof(el,
    HTMLElement):null}function getSVGElement(id){var el=document.getElementById(id);
    return el?assertInstanceof(el,Element):null}function announceAccessibleMessage(m
    sg){var element=document.createElement("div");element.setAttribute("aria-live","
    polite");element.style.position="fixed";element.style.left="-9999px";element.sty
    le.height="0px";element.innerText=msg;document.body.appendChild(element);window.
    setTimeout(function(){document.body.removeChild(element)},0)}function url(s){var
     s2=s.replace(/(\(|\)|\,|\s|\'|\"|\\)/g,"\\$1");if(/\\\\$/.test(s2)){s2+=" "}ret
    urn'url("'+s2+'")'}function parseQueryParams(location){var params={};var query=u
    nescape(location.search.substring(1));var vars=query.split("&");for(var i=0;i<va
    rs.length;i++){var pair=vars[i].split("=");params[pair[0]]=pair[1]}return params
    }function setQueryParam(location,key,value){var query=parseQueryParams(location)
    ;query[encodeURIComponent(key)]=encodeURIComponent(value);var newQuery="";for(va
    r q in query){newQuery+=(newQuery?"&":"?")+q+"="+query[q]}return location.origin
    +location.pathname+newQuery+location.hash}function findAncestorByClass(el,classN
    ame){return findAncestor(el,function(el){return el.classList&&el.classList.conta
    ins(className)})}function findAncestor(node,predicate){var last=false;while(node
    !=null&&!(last=predicate(node))){node=node.parentNode}return last?node:null}func
    tion swapDomNodes(a,b){var afterA=a.nextSibling;if(afterA==b){swapDomNodes(b,a);
    return}var aParent=a.parentNode;b.parentNode.replaceChild(a,b);aParent.insertBef
    ore(b,afterA)}function disableTextSelectAndDrag(opt_allowSelectStart,opt_allowDr
    agStart){document.onselectstart=function(e){if(!(opt_allowSelectStart&&opt_allow
    SelectStart.call(this,e)))e.preventDefault()};document.ondragstart=function(e){i
    f(!(opt_allowDragStart&&opt_allowDragStart.call(this,e)))e.preventDefault()}}fun
    ction preventDefaultOnPoundLinkClicks(){document.addEventListener("click",functi
    on(e){var anchor=findAncestor(e.target,function(el){return el.tagName=="A"});if(
    anchor&&anchor.getAttribute("href")=="#")e.preventDefault()})}function isRTL(){r
    eturn document.documentElement.dir=="rtl"}function getRequiredElement(id){return
     assertInstanceof($(id),HTMLElement,"Missing required element: "+id)}function qu
    eryRequiredElement(selectors,opt_context){var element=(opt_context||document).qu
    erySelector(selectors);return assertInstanceof(element,HTMLElement,"Missing requ
    ired element: "+selectors)}["click","auxclick"].forEach(function(eventName){docu
    ment.addEventListener(eventName,function(e){if(e.button>1)return;if(e.defaultPre
    vented)return;var eventPath=e.path;var anchor=null;if(eventPath){for(var i=0;i<e
    ventPath.length;i++){var element=eventPath[i];if(element.tagName==="A"&&element.
    href){anchor=element;break}}}var el=e.target;if(!anchor&&el.nodeType==Node.ELEME
    NT_NODE&&el.webkitMatchesSelector("A, A *")){while(el.tagName!="A"){el=el.parent
    Element}anchor=el}if(!anchor)return;anchor=anchor;if((anchor.protocol=="file:"||
    anchor.protocol=="about:")&&(e.button==0||e.button==1)){chrome.send("navigateToU
    rl",[anchor.href,anchor.target,e.button,e.altKey,e.ctrlKey,e.metaKey,e.shiftKey]
    );e.preventDefault()}})});function appendParam(url,key,value){var param=encodeUR
    IComponent(key)+"="+encodeURIComponent(value);if(url.indexOf("?")==-1)return url
    +"?"+param;return url+"&"+param}function createElementWithClassName(type,classNa
    me){var elm=document.createElement(type);elm.className=className;return elm}func
    tion ensureTransitionEndEvent(el,opt_timeOut){if(opt_timeOut===undefined){var st
    yle=getComputedStyle(el);opt_timeOut=parseFloat(style.transitionDuration)*1e3;op
    t_timeOut+=50}var fired=false;el.addEventListener("webkitTransitionEnd",function
     f(e){el.removeEventListener("webkitTransitionEnd",f);fired=true});window.setTim
    eout(function(){if(!fired)cr.dispatchSimpleEvent(el,"webkitTransitionEnd",true)}
    ,opt_timeOut)}function scrollTopForDocument(doc){return doc.documentElement.scro
    llTop||doc.body.scrollTop}function setScrollTopForDocument(doc,value){doc.docume
    ntElement.scrollTop=doc.body.scrollTop=value}function scrollLeftForDocument(doc)
    {return doc.documentElement.scrollLeft||doc.body.scrollLeft}function setScrollLe
    ftForDocument(doc,value){doc.documentElement.scrollLeft=doc.body.scrollLeft=valu
    e}function HTMLEscape(original){return original.replace(/&/g,"&").replace(/<
    /g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}fun
    ction elide(original,maxLength){if(original.length<=maxLength)return original;re
    turn original.substring(0,maxLength-1)+"…"}function quoteString(str){return str.
    replace(/([\\\.\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g,"\\$1")}function listenOnc
    e(target,eventNames,callback){if(!Array.isArray(eventNames))eventNames=eventName
    s.split(/ +/);var removeAllAndCallCallback=function(event){eventNames.forEach(fu
    nction(eventName){target.removeEventListener(eventName,removeAllAndCallCallback,
    false)});return callback(event)};eventNames.forEach(function(eventName){target.a
    ddEventListener(eventName,removeAllAndCallCallback,false)})} | 24 function $(id){var el=document.getElementById(id);return el?assertInstanceof(el,
    HTMLElement):null}function getSVGElement(id){var el=document.getElementById(id);
    return el?assertInstanceof(el,Element):null}function announceAccessibleMessage(m
    sg){var element=document.createElement("div");element.setAttribute("aria-live","
    polite");element.style.position="fixed";element.style.left="-9999px";element.sty
    le.height="0px";element.innerText=msg;document.body.appendChild(element);window.
    setTimeout(function(){document.body.removeChild(element)},0)}function url(s){var
     s2=s.replace(/(\(|\)|\,|\s|\'|\"|\\)/g,"\\$1");if(/\\\\$/.test(s2)){s2+=" "}ret
    urn'url("'+s2+'")'}function parseQueryParams(location){var params={};var query=u
    nescape(location.search.substring(1));var vars=query.split("&");for(var i=0;i<va
    rs.length;i++){var pair=vars[i].split("=");params[pair[0]]=pair[1]}return params
    }function setQueryParam(location,key,value){var query=parseQueryParams(location)
    ;query[encodeURIComponent(key)]=encodeURIComponent(value);var newQuery="";for(va
    r q in query){newQuery+=(newQuery?"&":"?")+q+"="+query[q]}return location.origin
    +location.pathname+newQuery+location.hash}function findAncestorByClass(el,classN
    ame){return findAncestor(el,function(el){return el.classList&&el.classList.conta
    ins(className)})}function findAncestor(node,predicate){var last=false;while(node
    !=null&&!(last=predicate(node))){node=node.parentNode}return last?node:null}func
    tion swapDomNodes(a,b){var afterA=a.nextSibling;if(afterA==b){swapDomNodes(b,a);
    return}var aParent=a.parentNode;b.parentNode.replaceChild(a,b);aParent.insertBef
    ore(b,afterA)}function disableTextSelectAndDrag(opt_allowSelectStart,opt_allowDr
    agStart){document.onselectstart=function(e){if(!(opt_allowSelectStart&&opt_allow
    SelectStart.call(this,e)))e.preventDefault()};document.ondragstart=function(e){i
    f(!(opt_allowDragStart&&opt_allowDragStart.call(this,e)))e.preventDefault()}}fun
    ction preventDefaultOnPoundLinkClicks(){document.addEventListener("click",functi
    on(e){var anchor=findAncestor(e.target,function(el){return el.tagName=="A"});if(
    anchor&&anchor.getAttribute("href")=="#")e.preventDefault()})}function isRTL(){r
    eturn document.documentElement.dir=="rtl"}function getRequiredElement(id){return
     assertInstanceof($(id),HTMLElement,"Missing required element: "+id)}function qu
    eryRequiredElement(selectors,opt_context){var element=(opt_context||document).qu
    erySelector(selectors);return assertInstanceof(element,HTMLElement,"Missing requ
    ired element: "+selectors)}["click","auxclick"].forEach(function(eventName){docu
    ment.addEventListener(eventName,function(e){if(e.button>1)return;if(e.defaultPre
    vented)return;var eventPath=e.path;var anchor=null;if(eventPath){for(var i=0;i<e
    ventPath.length;i++){var element=eventPath[i];if(element.tagName==="A"&&element.
    href){anchor=element;break}}}var el=e.target;if(!anchor&&el.nodeType==Node.ELEME
    NT_NODE&&el.webkitMatchesSelector("A, A *")){while(el.tagName!="A"){el=el.parent
    Element}anchor=el}if(!anchor)return;anchor=anchor;if((anchor.protocol=="file:"||
    anchor.protocol=="about:")&&(e.button==0||e.button==1)){chrome.send("navigateToU
    rl",[anchor.href,anchor.target,e.button,e.altKey,e.ctrlKey,e.metaKey,e.shiftKey]
    );e.preventDefault()}})});function appendParam(url,key,value){var param=encodeUR
    IComponent(key)+"="+encodeURIComponent(value);if(url.indexOf("?")==-1)return url
    +"?"+param;return url+"&"+param}function createElementWithClassName(type,classNa
    me){var elm=document.createElement(type);elm.className=className;return elm}func
    tion ensureTransitionEndEvent(el,opt_timeOut){if(opt_timeOut===undefined){var st
    yle=getComputedStyle(el);opt_timeOut=parseFloat(style.transitionDuration)*1e3;op
    t_timeOut+=50}var fired=false;el.addEventListener("webkitTransitionEnd",function
     f(e){el.removeEventListener("webkitTransitionEnd",f);fired=true});window.setTim
    eout(function(){if(!fired)cr.dispatchSimpleEvent(el,"webkitTransitionEnd",true)}
    ,opt_timeOut)}function scrollTopForDocument(doc){return doc.documentElement.scro
    llTop||doc.body.scrollTop}function setScrollTopForDocument(doc,value){doc.docume
    ntElement.scrollTop=doc.body.scrollTop=value}function scrollLeftForDocument(doc)
    {return doc.documentElement.scrollLeft||doc.body.scrollLeft}function setScrollLe
    ftForDocument(doc,value){doc.documentElement.scrollLeft=doc.body.scrollLeft=valu
    e}function HTMLEscape(original){return original.replace(/&/g,"&").replace(/<
    /g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}fun
    ction elide(original,maxLength){if(original.length<=maxLength)return original;re
    turn original.substring(0,maxLength-1)+"…"}function quoteString(str){return str.
    replace(/([\\\.\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g,"\\$1")}function listenOnc
    e(target,eventNames,callback){if(!Array.isArray(eventNames))eventNames=eventName
    s.split(/ +/);var removeAllAndCallCallback=function(event){eventNames.forEach(fu
    nction(eventName){target.removeEventListener(eventName,removeAllAndCallCallback,
    false)});return callback(event)};eventNames.forEach(function(eventName){target.a
    ddEventListener(eventName,removeAllAndCallCallback,false)})} | 
| 25 // <if expr="is_ios"> | 25 // <if expr="is_ios"> | 
| 26 if(!("key"in KeyboardEvent.prototype)){Object.defineProperty(KeyboardEvent.proto
    type,"key",{get:function(){if(this.keyCode>=48&&this.keyCode<=57)return String.f
    romCharCode(this.keyCode);if(this.keyCode>=65&&this.keyCode<=90){var result=Stri
    ng.fromCharCode(this.keyCode).toLowerCase();if(this.shiftKey)result=result.toUpp
    erCase();return result}switch(this.keyCode){case 8:return"Backspace";case 9:retu
    rn"Tab";case 13:return"Enter";case 16:return"Shift";case 17:return"Control";case
     18:return"Alt";case 27:return"Escape";case 32:return" ";case 33:return"PageUp";
    case 34:return"PageDown";case 35:return"End";case 36:return"Home";case 37:return
    "ArrowLeft";case 38:return"ArrowUp";case 39:return"ArrowRight";case 40:return"Ar
    rowDown";case 45:return"Insert";case 46:return"Delete";case 91:return"Meta";case
     112:return"F1";case 113:return"F2";case 114:return"F3";case 115:return"F4";case
     116:return"F5";case 117:return"F6";case 118:return"F7";case 119:return"F8";case
     120:return"F9";case 121:return"F10";case 122:return"F11";case 123:return"F12";c
    ase 187:return"=";case 189:return"-";case 219:return"[";case 221:return"]"}retur
    n"Unidentified"}})}else{window.console.log("KeyboardEvent.Key polyfill not requi
    red")} | 26 if(!("key"in KeyboardEvent.prototype)){Object.defineProperty(KeyboardEvent.proto
    type,"key",{get:function(){if(this.keyCode>=48&&this.keyCode<=57)return String.f
    romCharCode(this.keyCode);if(this.keyCode>=65&&this.keyCode<=90){var result=Stri
    ng.fromCharCode(this.keyCode).toLowerCase();if(this.shiftKey)result=result.toUpp
    erCase();return result}switch(this.keyCode){case 8:return"Backspace";case 9:retu
    rn"Tab";case 13:return"Enter";case 16:return"Shift";case 17:return"Control";case
     18:return"Alt";case 27:return"Escape";case 32:return" ";case 33:return"PageUp";
    case 34:return"PageDown";case 35:return"End";case 36:return"Home";case 37:return
    "ArrowLeft";case 38:return"ArrowUp";case 39:return"ArrowRight";case 40:return"Ar
    rowDown";case 45:return"Insert";case 46:return"Delete";case 91:return"Meta";case
     112:return"F1";case 113:return"F2";case 114:return"F3";case 115:return"F4";case
     116:return"F5";case 117:return"F6";case 118:return"F7";case 119:return"F8";case
     120:return"F9";case 121:return"F10";case 122:return"F11";case 123:return"F12";c
    ase 187:return"=";case 189:return"-";case 219:return"[";case 221:return"]"}retur
    n"Unidentified"}})}else{window.console.log("KeyboardEvent.Key polyfill not requi
    red")} | 
| 27 // </if>  /* is_ios */ | 27 // </if>  /* is_ios */ | 
| 28 function importModules(moduleNames){return new Promise(function(resolve){define(
    moduleNames,function(){resolve(Array.from(arguments))})})}Polymer.IronResizableB
    ehavior={properties:{_parentResizable:{type:Object,observer:"_parentResizableCha
    nged"},_notifyingDescendant:{type:Boolean,value:false}},listeners:{"iron-request
    -resize-notifications":"_onIronRequestResizeNotifications"},created:function(){t
    his._interestedResizables=[];this._boundNotifyResize=this.notifyResize.bind(this
    )},attached:function(){this.fire("iron-request-resize-notifications",null,{node:
    this,bubbles:true,cancelable:true});if(!this._parentResizable){window.addEventLi
    stener("resize",this._boundNotifyResize);this.notifyResize()}},detached:function
    (){if(this._parentResizable){this._parentResizable.stopResizeNotificationsFor(th
    is)}else{window.removeEventListener("resize",this._boundNotifyResize)}this._pare
    ntResizable=null},notifyResize:function(){if(!this.isAttached){return}this._inte
    restedResizables.forEach(function(resizable){if(this.resizerShouldNotify(resizab
    le)){this._notifyDescendant(resizable)}},this);this._fireResize()},assignParentR
    esizable:function(parentResizable){this._parentResizable=parentResizable},stopRe
    sizeNotificationsFor:function(target){var index=this._interestedResizables.index
    Of(target);if(index>-1){this._interestedResizables.splice(index,1);this.unlisten
    (target,"iron-resize","_onDescendantIronResize")}},resizerShouldNotify:function(
    element){return true},_onDescendantIronResize:function(event){if(this._notifying
    Descendant){event.stopPropagation();return}if(!Polymer.Settings.useShadow){this.
    _fireResize()}},_fireResize:function(){this.fire("iron-resize",null,{node:this,b
    ubbles:false})},_onIronRequestResizeNotifications:function(event){var target=eve
    nt.path?event.path[0]:event.target;if(target===this){return}if(this._interestedR
    esizables.indexOf(target)===-1){this._interestedResizables.push(target);this.lis
    ten(target,"iron-resize","_onDescendantIronResize")}target.assignParentResizable
    (this);this._notifyDescendant(target);event.stopPropagation()},_parentResizableC
    hanged:function(parentResizable){if(parentResizable){window.removeEventListener(
    "resize",this._boundNotifyResize)}},_notifyDescendant:function(descendant){if(!t
    his.isAttached){return}this._notifyingDescendant=true;descendant.notifyResize();
    this._notifyingDescendant=false}};(function(){"use strict";var KEY_IDENTIFIER={"
    U+0008":"backspace","U+0009":"tab","U+001B":"esc","U+0020":"space","U+007F":"del
    "};var KEY_CODE={8:"backspace",9:"tab",13:"enter",27:"esc",33:"pageup",34:"paged
    own",35:"end",36:"home",32:"space",37:"left",38:"up",39:"right",40:"down",46:"de
    l",106:"*"};var MODIFIER_KEYS={shift:"shiftKey",ctrl:"ctrlKey",alt:"altKey",meta
    :"metaKey"};var KEY_CHAR=/[a-z0-9*]/;var IDENT_CHAR=/U\+/;var ARROW_KEY=/^arrow/
    ;var SPACE_KEY=/^space(bar)?/;var ESC_KEY=/^escape$/;function transformKey(key,n
    oSpecialChars){var validKey="";if(key){var lKey=key.toLowerCase();if(lKey===" "|
    |SPACE_KEY.test(lKey)){validKey="space"}else if(ESC_KEY.test(lKey)){validKey="es
    c"}else if(lKey.length==1){if(!noSpecialChars||KEY_CHAR.test(lKey)){validKey=lKe
    y}}else if(ARROW_KEY.test(lKey)){validKey=lKey.replace("arrow","")}else if(lKey=
    ="multiply"){validKey="*"}else{validKey=lKey}}return validKey}function transform
    KeyIdentifier(keyIdent){var validKey="";if(keyIdent){if(keyIdent in KEY_IDENTIFI
    ER){validKey=KEY_IDENTIFIER[keyIdent]}else if(IDENT_CHAR.test(keyIdent)){keyIden
    t=parseInt(keyIdent.replace("U+","0x"),16);validKey=String.fromCharCode(keyIdent
    ).toLowerCase()}else{validKey=keyIdent.toLowerCase()}}return validKey}function t
    ransformKeyCode(keyCode){var validKey="";if(Number(keyCode)){if(keyCode>=65&&key
    Code<=90){validKey=String.fromCharCode(32+keyCode)}else if(keyCode>=112&&keyCode
    <=123){validKey="f"+(keyCode-112)}else if(keyCode>=48&&keyCode<=57){validKey=Str
    ing(keyCode-48)}else if(keyCode>=96&&keyCode<=105){validKey=String(keyCode-96)}e
    lse{validKey=KEY_CODE[keyCode]}}return validKey}function normalizedKeyForEvent(k
    eyEvent,noSpecialChars){if(keyEvent.key){return transformKey(keyEvent.key,noSpec
    ialChars)}if(keyEvent.detail&&keyEvent.detail.key){return transformKey(keyEvent.
    detail.key,noSpecialChars)}return transformKeyIdentifier(keyEvent.keyIdentifier)
    ||transformKeyCode(keyEvent.keyCode)||""}function keyComboMatchesEvent(keyCombo,
    event){var keyEvent=normalizedKeyForEvent(event,keyCombo.hasModifiers);return ke
    yEvent===keyCombo.key&&(!keyCombo.hasModifiers||!!event.shiftKey===!!keyCombo.sh
    iftKey&&!!event.ctrlKey===!!keyCombo.ctrlKey&&!!event.altKey===!!keyCombo.altKey
    &&!!event.metaKey===!!keyCombo.metaKey)}function parseKeyComboString(keyComboStr
    ing){if(keyComboString.length===1){return{combo:keyComboString,key:keyComboStrin
    g,event:"keydown"}}return keyComboString.split("+").reduce(function(parsedKeyCom
    bo,keyComboPart){var eventParts=keyComboPart.split(":");var keyName=eventParts[0
    ];var event=eventParts[1];if(keyName in MODIFIER_KEYS){parsedKeyCombo[MODIFIER_K
    EYS[keyName]]=true;parsedKeyCombo.hasModifiers=true}else{parsedKeyCombo.key=keyN
    ame;parsedKeyCombo.event=event||"keydown"}return parsedKeyCombo},{combo:keyCombo
    String.split(":").shift()})}function parseEventString(eventString){return eventS
    tring.trim().split(" ").map(function(keyComboString){return parseKeyComboString(
    keyComboString)})}Polymer.IronA11yKeysBehavior={properties:{keyEventTarget:{type
    :Object,value:function(){return this}},stopKeyboardEventPropagation:{type:Boolea
    n,value:false},_boundKeyHandlers:{type:Array,value:function(){return[]}},_impera
    tiveKeyBindings:{type:Object,value:function(){return{}}}},observers:["_resetKeyE
    ventListeners(keyEventTarget, _boundKeyHandlers)"],keyBindings:{},registered:fun
    ction(){this._prepKeyBindings()},attached:function(){this._listenKeyEventListene
    rs()},detached:function(){this._unlistenKeyEventListeners()},addOwnKeyBinding:fu
    nction(eventString,handlerName){this._imperativeKeyBindings[eventString]=handler
    Name;this._prepKeyBindings();this._resetKeyEventListeners()},removeOwnKeyBinding
    s:function(){this._imperativeKeyBindings={};this._prepKeyBindings();this._resetK
    eyEventListeners()},keyboardEventMatchesKeys:function(event,eventString){var key
    Combos=parseEventString(eventString);for(var i=0;i<keyCombos.length;++i){if(keyC
    omboMatchesEvent(keyCombos[i],event)){return true}}return false},_collectKeyBind
    ings:function(){var keyBindings=this.behaviors.map(function(behavior){return beh
    avior.keyBindings});if(keyBindings.indexOf(this.keyBindings)===-1){keyBindings.p
    ush(this.keyBindings)}return keyBindings},_prepKeyBindings:function(){this._keyB
    indings={};this._collectKeyBindings().forEach(function(keyBindings){for(var even
    tString in keyBindings){this._addKeyBinding(eventString,keyBindings[eventString]
    )}},this);for(var eventString in this._imperativeKeyBindings){this._addKeyBindin
    g(eventString,this._imperativeKeyBindings[eventString])}for(var eventName in thi
    s._keyBindings){this._keyBindings[eventName].sort(function(kb1,kb2){var b1=kb1[0
    ].hasModifiers;var b2=kb2[0].hasModifiers;return b1===b2?0:b1?-1:1})}},_addKeyBi
    nding:function(eventString,handlerName){parseEventString(eventString).forEach(fu
    nction(keyCombo){this._keyBindings[keyCombo.event]=this._keyBindings[keyCombo.ev
    ent]||[];this._keyBindings[keyCombo.event].push([keyCombo,handlerName])},this)},
    _resetKeyEventListeners:function(){this._unlistenKeyEventListeners();if(this.isA
    ttached){this._listenKeyEventListeners()}},_listenKeyEventListeners:function(){i
    f(!this.keyEventTarget){return}Object.keys(this._keyBindings).forEach(function(e
    ventName){var keyBindings=this._keyBindings[eventName];var boundKeyHandler=this.
    _onKeyBindingEvent.bind(this,keyBindings);this._boundKeyHandlers.push([this.keyE
    ventTarget,eventName,boundKeyHandler]);this.keyEventTarget.addEventListener(even
    tName,boundKeyHandler)},this)},_unlistenKeyEventListeners:function(){var keyHand
    lerTuple;var keyEventTarget;var eventName;var boundKeyHandler;while(this._boundK
    eyHandlers.length){keyHandlerTuple=this._boundKeyHandlers.pop();keyEventTarget=k
    eyHandlerTuple[0];eventName=keyHandlerTuple[1];boundKeyHandler=keyHandlerTuple[2
    ];keyEventTarget.removeEventListener(eventName,boundKeyHandler)}},_onKeyBindingE
    vent:function(keyBindings,event){if(this.stopKeyboardEventPropagation){event.sto
    pPropagation()}if(event.defaultPrevented){return}for(var i=0;i<keyBindings.lengt
    h;i++){var keyCombo=keyBindings[i][0];var handlerName=keyBindings[i][1];if(keyCo
    mboMatchesEvent(keyCombo,event)){this._triggerKeyHandler(keyCombo,handlerName,ev
    ent);if(event.defaultPrevented){return}}}},_triggerKeyHandler:function(keyCombo,
    handlerName,keyboardEvent){var detail=Object.create(keyCombo);detail.keyboardEve
    nt=keyboardEvent;var event=new CustomEvent(keyCombo.event,{detail:detail,cancela
    ble:true});this[handlerName].call(this,event);if(event.defaultPrevented){keyboar
    dEvent.preventDefault()}}}})();Polymer.IronScrollTargetBehavior={properties:{scr
    ollTarget:{type:HTMLElement,value:function(){return this._defaultScrollTarget}}}
    ,observers:["_scrollTargetChanged(scrollTarget, isAttached)"],_shouldHaveListene
    r:true,_scrollTargetChanged:function(scrollTarget,isAttached){var eventTarget;if
    (this._oldScrollTarget){this._toggleScrollListener(false,this._oldScrollTarget);
    this._oldScrollTarget=null}if(!isAttached){return}if(scrollTarget==="document"){
    this.scrollTarget=this._doc}else if(typeof scrollTarget==="string"){this.scrollT
    arget=this.domHost?this.domHost.$[scrollTarget]:Polymer.dom(this.ownerDocument).
    querySelector("#"+scrollTarget)}else if(this._isValidScrollTarget()){this._bound
    ScrollHandler=this._boundScrollHandler||this._scrollHandler.bind(this);this._old
    ScrollTarget=scrollTarget;this._toggleScrollListener(this._shouldHaveListener,sc
    rollTarget)}},_scrollHandler:function scrollHandler(){},get _defaultScrollTarget
    (){return this._doc},get _doc(){return this.ownerDocument.documentElement},get _
    scrollTop(){if(this._isValidScrollTarget()){return this.scrollTarget===this._doc
    ?window.pageYOffset:this.scrollTarget.scrollTop}return 0},get _scrollLeft(){if(t
    his._isValidScrollTarget()){return this.scrollTarget===this._doc?window.pageXOff
    set:this.scrollTarget.scrollLeft}return 0},set _scrollTop(top){if(this.scrollTar
    get===this._doc){window.scrollTo(window.pageXOffset,top)}else if(this._isValidSc
    rollTarget()){this.scrollTarget.scrollTop=top}},set _scrollLeft(left){if(this.sc
    rollTarget===this._doc){window.scrollTo(left,window.pageYOffset)}else if(this._i
    sValidScrollTarget()){this.scrollTarget.scrollLeft=left}},scroll:function(left,t
    op){if(this.scrollTarget===this._doc){window.scrollTo(left,top)}else if(this._is
    ValidScrollTarget()){this.scrollTarget.scrollLeft=left;this.scrollTarget.scrollT
    op=top}},get _scrollTargetWidth(){if(this._isValidScrollTarget()){return this.sc
    rollTarget===this._doc?window.innerWidth:this.scrollTarget.offsetWidth}return 0}
    ,get _scrollTargetHeight(){if(this._isValidScrollTarget()){return this.scrollTar
    get===this._doc?window.innerHeight:this.scrollTarget.offsetHeight}return 0},_isV
    alidScrollTarget:function(){return this.scrollTarget instanceof HTMLElement},_to
    ggleScrollListener:function(yes,scrollTarget){if(!this._boundScrollHandler){retu
    rn}var eventTarget=scrollTarget===this._doc?window:scrollTarget;if(yes){eventTar
    get.addEventListener("scroll",this._boundScrollHandler)}else{eventTarget.removeE
    ventListener("scroll",this._boundScrollHandler)}},toggleScrollListener:function(
    yes){this._shouldHaveListener=yes;this._toggleScrollListener(yes,this.scrollTarg
    et)}};(function(){var IOS=navigator.userAgent.match(/iP(?:hone|ad;(?: U;)? CPU) 
    OS (\d+)/);var IOS_TOUCH_SCROLLING=IOS&&IOS[1]>=8;var DEFAULT_PHYSICAL_COUNT=3;v
    ar HIDDEN_Y="-10000px";var ITEM_WIDTH=0;var ITEM_HEIGHT=1;var SECRET_TABINDEX=-1
    00;Polymer({is:"iron-list",properties:{items:{type:Array},maxPhysicalCount:{type
    :Number,value:500},as:{type:String,value:"item"},indexAs:{type:String,value:"ind
    ex"},selectedAs:{type:String,value:"selected"},grid:{type:Boolean,value:false,re
    flectToAttribute:true},selectionEnabled:{type:Boolean,value:false},selectedItem:
    {type:Object,notify:true},selectedItems:{type:Object,notify:true},multiSelection
    :{type:Boolean,value:false}},observers:["_itemsChanged(items.*)","_selectionEnab
    ledChanged(selectionEnabled)","_multiSelectionChanged(multiSelection)","_setOver
    flow(scrollTarget)"],behaviors:[Polymer.Templatizer,Polymer.IronResizableBehavio
    r,Polymer.IronA11yKeysBehavior,Polymer.IronScrollTargetBehavior],keyBindings:{up
    :"_didMoveUp",down:"_didMoveDown",enter:"_didEnter"},_ratio:.5,_scrollerPaddingT
    op:0,_scrollPosition:0,_physicalSize:0,_physicalAverage:0,_physicalAverageCount:
    0,_physicalTop:0,_virtualCount:0,_physicalIndexForKey:null,_estScrollHeight:0,_s
    crollHeight:0,_viewportHeight:0,_viewportWidth:0,_physicalItems:null,_physicalSi
    zes:null,_firstVisibleIndexVal:null,_lastVisibleIndexVal:null,_collection:null,_
    maxPages:2,_focusedItem:null,_focusedIndex:-1,_offscreenFocusedItem:null,_focusB
    ackfillItem:null,_itemsPerRow:1,_itemWidth:0,_rowHeight:0,_templateCost:0,get _p
    hysicalBottom(){return this._physicalTop+this._physicalSize},get _scrollBottom()
    {return this._scrollPosition+this._viewportHeight},get _virtualEnd(){return this
    ._virtualStart+this._physicalCount-1},get _hiddenContentSize(){var size=this.gri
    d?this._physicalRows*this._rowHeight:this._physicalSize;return size-this._viewpo
    rtHeight},get _maxScrollTop(){return this._estScrollHeight-this._viewportHeight+
    this._scrollerPaddingTop},_minVirtualStart:0,get _maxVirtualStart(){return Math.
    max(0,this._virtualCount-this._physicalCount)},_virtualStartVal:0,set _virtualSt
    art(val){this._virtualStartVal=Math.min(this._maxVirtualStart,Math.max(this._min
    VirtualStart,val))},get _virtualStart(){return this._virtualStartVal||0},_physic
    alStartVal:0,set _physicalStart(val){this._physicalStartVal=val%this._physicalCo
    unt;if(this._physicalStartVal<0){this._physicalStartVal=this._physicalCount+this
    ._physicalStartVal}this._physicalEnd=(this._physicalStart+this._physicalCount-1)
    %this._physicalCount},get _physicalStart(){return this._physicalStartVal||0},_ph
    ysicalCountVal:0,set _physicalCount(val){this._physicalCountVal=val;this._physic
    alEnd=(this._physicalStart+this._physicalCount-1)%this._physicalCount},get _phys
    icalCount(){return this._physicalCountVal},_physicalEnd:0,get _optPhysicalSize()
    {if(this.grid){return this._estRowsInView*this._rowHeight*this._maxPages}return 
    this._viewportHeight*this._maxPages},get _isVisible(){return Boolean(this.offset
    Width||this.offsetHeight)},get firstVisibleIndex(){if(this._firstVisibleIndexVal
    ===null){var physicalOffset=Math.floor(this._physicalTop+this._scrollerPaddingTo
    p);this._firstVisibleIndexVal=this._iterateItems(function(pidx,vidx){physicalOff
    set+=this._getPhysicalSizeIncrement(pidx);if(physicalOffset>this._scrollPosition
    ){return this.grid?vidx-vidx%this._itemsPerRow:vidx}if(this.grid&&this._virtualC
    ount-1===vidx){return vidx-vidx%this._itemsPerRow}})||0}return this._firstVisibl
    eIndexVal},get lastVisibleIndex(){if(this._lastVisibleIndexVal===null){if(this.g
    rid){var lastIndex=this.firstVisibleIndex+this._estRowsInView*this._itemsPerRow-
    1;this._lastVisibleIndexVal=Math.min(this._virtualCount,lastIndex)}else{var phys
    icalOffset=this._physicalTop;this._iterateItems(function(pidx,vidx){if(physicalO
    ffset<this._scrollBottom){this._lastVisibleIndexVal=vidx}else{return true}physic
    alOffset+=this._getPhysicalSizeIncrement(pidx)})}}return this._lastVisibleIndexV
    al},get _defaultScrollTarget(){return this},get _virtualRowCount(){return Math.c
    eil(this._virtualCount/this._itemsPerRow)},get _estRowsInView(){return Math.ceil
    (this._viewportHeight/this._rowHeight)},get _physicalRows(){return Math.ceil(thi
    s._physicalCount/this._itemsPerRow)},ready:function(){this.addEventListener("foc
    us",this._didFocus.bind(this),true)},attached:function(){if(this._physicalCount=
    ==0){this._debounceTemplate(this._render)}this.listen(this,"iron-resize","_resiz
    eHandler")},detached:function(){this.unlisten(this,"iron-resize","_resizeHandler
    ")},_setOverflow:function(scrollTarget){this.style.webkitOverflowScrolling=scrol
    lTarget===this?"touch":"";this.style.overflow=scrollTarget===this?"auto":""},upd
    ateViewportBoundaries:function(){this._scrollerPaddingTop=this.scrollTarget===th
    is?0:parseInt(window.getComputedStyle(this)["padding-top"],10);this._viewportWid
    th=this.$.items.offsetWidth;this._viewportHeight=this._scrollTargetHeight;this.g
    rid&&this._updateGridMetrics()},_scrollHandler:function(){var scrollTop=Math.max
    (0,Math.min(this._maxScrollTop,this._scrollTop));var delta=scrollTop-this._scrol
    lPosition;var isScrollingDown=delta>=0;this._scrollPosition=scrollTop;this._firs
    tVisibleIndexVal=null;this._lastVisibleIndexVal=null;if(Math.abs(delta)>this._ph
    ysicalSize){var idxAdjustment=Math.round(delta/this._physicalAverage)*this._item
    sPerRow;this._physicalTop=this._physicalTop+delta;this._virtualStart=this._virtu
    alStart+idxAdjustment;this._physicalStart=this._physicalStart+idxAdjustment;this
    ._update()}else{var reusables=this._getReusables(isScrollingDown);if(isScrolling
    Down){this._physicalTop=reusables.physicalTop;this._virtualStart=this._virtualSt
    art+reusables.indexes.length;this._physicalStart=this._physicalStart+reusables.i
    ndexes.length}else{this._virtualStart=this._virtualStart-reusables.indexes.lengt
    h;this._physicalStart=this._physicalStart-reusables.indexes.length}if(reusables.
    indexes.length===0){this._increasePoolIfNeeded()}else{this._update(reusables.ind
    exes,isScrollingDown?null:reusables.indexes)}}},_getReusables:function(fromTop){
    var ith,lastIth,offsetContent,physicalItemHeight;var idxs=[];var protectedOffset
    Content=this._hiddenContentSize*this._ratio;var virtualStart=this._virtualStart;
    var virtualEnd=this._virtualEnd;var physicalCount=this._physicalCount;var physic
    alTop=this._physicalTop+this._scrollerPaddingTop;var scrollTop=this._scrollTop;v
    ar scrollBottom=this._scrollBottom;if(fromTop){ith=this._physicalStart;lastIth=t
    his._physicalEnd;offsetContent=scrollTop-physicalTop}else{ith=this._physicalEnd;
    lastIth=this._physicalStart;offsetContent=this._physicalBottom-scrollBottom}whil
    e(true){physicalItemHeight=this._getPhysicalSizeIncrement(ith);offsetContent=off
    setContent-physicalItemHeight;if(idxs.length>=physicalCount||offsetContent<=prot
    ectedOffsetContent){break}if(fromTop){if(virtualEnd+idxs.length+1>=this._virtual
    Count){break}if(physicalTop+physicalItemHeight>=scrollTop){break}idxs.push(ith);
    physicalTop=physicalTop+physicalItemHeight;ith=(ith+1)%physicalCount}else{if(vir
    tualStart-idxs.length<=0){break}if(physicalTop+this._physicalSize-physicalItemHe
    ight<=scrollBottom){break}idxs.push(ith);physicalTop=physicalTop-physicalItemHei
    ght;ith=ith===0?physicalCount-1:ith-1}}return{indexes:idxs,physicalTop:physicalT
    op-this._scrollerPaddingTop}},_update:function(itemSet,movingUp){if(itemSet&&ite
    mSet.length===0){return}this._manageFocus();this._assignModels(itemSet);this._up
    dateMetrics(itemSet);if(movingUp){while(movingUp.length){var idx=movingUp.pop();
    this._physicalTop-=this._getPhysicalSizeIncrement(idx)}}this._positionItems();th
    is._updateScrollerSize();this._increasePoolIfNeeded()},_createPool:function(size
    ){var physicalItems=new Array(size);this._ensureTemplatized();for(var i=0;i<size
    ;i++){var inst=this.stamp(null);physicalItems[i]=inst.root.querySelector("*");Po
    lymer.dom(this).appendChild(inst.root)}return physicalItems},_increasePoolIfNeed
    ed:function(){if(this._viewportHeight===0){return false}var self=this;var isClie
    ntFull=this._physicalBottom>=this._scrollBottom&&this._physicalTop<=this._scroll
    Position;if(this._physicalSize>=this._optPhysicalSize&&isClientFull){return fals
    e}var maxPoolSize=Math.round(this._physicalCount*.5);if(!isClientFull){this._deb
    ounceTemplate(this._increasePool.bind(this,maxPoolSize));return true}this._yield
    (function(){self._increasePool(Math.min(maxPoolSize,Math.max(1,Math.round(50/sel
    f._templateCost))))});return true},_yield:function(cb){var g=window;var handle=g
    .requestIdleCallback?g.requestIdleCallback(cb):g.setTimeout(cb,16);Polymer.dom.a
    ddDebouncer({complete:function(){g.cancelIdleCallback?g.cancelIdleCallback(handl
    e):g.clearTimeout(handle);cb()}})},_increasePool:function(missingItems){var next
    PhysicalCount=Math.min(this._physicalCount+missingItems,this._virtualCount-this.
    _virtualStart,Math.max(this.maxPhysicalCount,DEFAULT_PHYSICAL_COUNT));var prevPh
    ysicalCount=this._physicalCount;var delta=nextPhysicalCount-prevPhysicalCount;va
    r ts=window.performance.now();if(delta<=0){return}[].push.apply(this._physicalIt
    ems,this._createPool(delta));[].push.apply(this._physicalSizes,new Array(delta))
    ;this._physicalCount=prevPhysicalCount+delta;if(this._physicalStart>this._physic
    alEnd&&this._isIndexRendered(this._focusedIndex)&&this._getPhysicalIndex(this._f
    ocusedIndex)<this._physicalEnd){this._physicalStart=this._physicalStart+delta}th
    is._update();this._templateCost=(window.performance.now()-ts)/delta},_render:fun
    ction(){if(this.isAttached&&this._isVisible){if(this._physicalCount===0){this.up
    dateViewportBoundaries();this._increasePool(DEFAULT_PHYSICAL_COUNT)}else{var reu
    sables=this._getReusables(true);this._physicalTop=reusables.physicalTop;this._vi
    rtualStart=this._virtualStart+reusables.indexes.length;this._physicalStart=this.
    _physicalStart+reusables.indexes.length;this._update(reusables.indexes);this._up
    date()}}},_ensureTemplatized:function(){if(!this.ctor){var props={};props.__key_
    _=true;props[this.as]=true;props[this.indexAs]=true;props[this.selectedAs]=true;
    props.tabIndex=true;this._instanceProps=props;this._userTemplate=Polymer.dom(thi
    s).querySelector("template");if(this._userTemplate){this.templatize(this._userTe
    mplate)}else{console.warn("iron-list requires a template to be provided in light
    -dom")}}},_getStampedChildren:function(){return this._physicalItems},_forwardIns
    tancePath:function(inst,path,value){if(path.indexOf(this.as+".")===0){this.notif
    yPath("items."+inst.__key__+"."+path.slice(this.as.length+1),value)}},_forwardPa
    rentProp:function(prop,value){if(this._physicalItems){this._physicalItems.forEac
    h(function(item){item._templateInstance[prop]=value},this)}},_forwardParentPath:
    function(path,value){if(this._physicalItems){this._physicalItems.forEach(functio
    n(item){item._templateInstance.notifyPath(path,value,true)},this)}},_forwardItem
    Path:function(path,value){if(!this._physicalIndexForKey){return}var dot=path.ind
    exOf(".");var key=path.substring(0,dot<0?path.length:dot);var idx=this._physical
    IndexForKey[key];var offscreenItem=this._offscreenFocusedItem;var el=offscreenIt
    em&&offscreenItem._templateInstance.__key__===key?offscreenItem:this._physicalIt
    ems[idx];if(!el||el._templateInstance.__key__!==key){return}if(dot>=0){path=this
    .as+"."+path.substring(dot+1);el._templateInstance.notifyPath(path,value,true)}e
    lse{var currentItem=el._templateInstance[this.as];if(Array.isArray(this.selected
    Items)){for(var i=0;i<this.selectedItems.length;i++){if(this.selectedItems[i]===
    currentItem){this.set("selectedItems."+i,value);break}}}else if(this.selectedIte
    m===currentItem){this.set("selectedItem",value)}el._templateInstance[this.as]=va
    lue}},_itemsChanged:function(change){if(change.path==="items"){this._virtualStar
    t=0;this._physicalTop=0;this._virtualCount=this.items?this.items.length:0;this._
    collection=this.items?Polymer.Collection.get(this.items):null;this._physicalInde
    xForKey={};this._firstVisibleIndexVal=null;this._lastVisibleIndexVal=null;this._
    physicalCount=this._physicalCount||0;this._physicalItems=this._physicalItems||[]
    ;this._physicalSizes=this._physicalSizes||[];this._physicalStart=0;this._resetSc
    rollPosition(0);this._removeFocusedItem();this._debounceTemplate(this._render)}e
    lse if(change.path==="items.splices"){this._adjustVirtualIndex(change.value.inde
    xSplices);this._virtualCount=this.items?this.items.length:0;this._debounceTempla
    te(this._render)}else{this._forwardItemPath(change.path.split(".").slice(1).join
    ("."),change.value)}},_adjustVirtualIndex:function(splices){splices.forEach(func
    tion(splice){splice.removed.forEach(this._removeItem,this);if(splice.index<this.
    _virtualStart){var delta=Math.max(splice.addedCount-splice.removed.length,splice
    .index-this._virtualStart);this._virtualStart=this._virtualStart+delta;if(this._
    focusedIndex>=0){this._focusedIndex=this._focusedIndex+delta}}},this)},_removeIt
    em:function(item){this.$.selector.deselect(item);if(this._focusedItem&&this._foc
    usedItem._templateInstance[this.as]===item){this._removeFocusedItem()}},_iterate
    Items:function(fn,itemSet){var pidx,vidx,rtn,i;if(arguments.length===2&&itemSet)
    {for(i=0;i<itemSet.length;i++){pidx=itemSet[i];vidx=this._computeVidx(pidx);if((
    rtn=fn.call(this,pidx,vidx))!=null){return rtn}}}else{pidx=this._physicalStart;v
    idx=this._virtualStart;for(;pidx<this._physicalCount;pidx++,vidx++){if((rtn=fn.c
    all(this,pidx,vidx))!=null){return rtn}}for(pidx=0;pidx<this._physicalStart;pidx
    ++,vidx++){if((rtn=fn.call(this,pidx,vidx))!=null){return rtn}}}},_computeVidx:f
    unction(pidx){if(pidx>=this._physicalStart){return this._virtualStart+(pidx-this
    ._physicalStart)}return this._virtualStart+(this._physicalCount-this._physicalSt
    art)+pidx},_assignModels:function(itemSet){this._iterateItems(function(pidx,vidx
    ){var el=this._physicalItems[pidx];var inst=el._templateInstance;var item=this.i
    tems&&this.items[vidx];if(item!=null){inst[this.as]=item;inst.__key__=this._coll
    ection.getKey(item);inst[this.selectedAs]=this.$.selector.isSelected(item);inst[
    this.indexAs]=vidx;inst.tabIndex=this._focusedIndex===vidx?0:-1;this._physicalIn
    dexForKey[inst.__key__]=pidx;el.removeAttribute("hidden")}else{inst.__key__=null
    ;el.setAttribute("hidden","")}},itemSet)},_updateMetrics:function(itemSet){Polym
    er.dom.flush();var newPhysicalSize=0;var oldPhysicalSize=0;var prevAvgCount=this
    ._physicalAverageCount;var prevPhysicalAvg=this._physicalAverage;this._iterateIt
    ems(function(pidx,vidx){oldPhysicalSize+=this._physicalSizes[pidx]||0;this._phys
    icalSizes[pidx]=this._physicalItems[pidx].offsetHeight;newPhysicalSize+=this._ph
    ysicalSizes[pidx];this._physicalAverageCount+=this._physicalSizes[pidx]?1:0},ite
    mSet);if(this.grid){this._updateGridMetrics();this._physicalSize=Math.ceil(this.
    _physicalCount/this._itemsPerRow)*this._rowHeight}else{this._physicalSize=this._
    physicalSize+newPhysicalSize-oldPhysicalSize}if(this._physicalAverageCount!==pre
    vAvgCount){this._physicalAverage=Math.round((prevPhysicalAvg*prevAvgCount+newPhy
    sicalSize)/this._physicalAverageCount)}},_updateGridMetrics:function(){this._ite
    mWidth=this._physicalCount>0?this._physicalItems[0].getBoundingClientRect().widt
    h:200;this._rowHeight=this._physicalCount>0?this._physicalItems[0].offsetHeight:
    200;this._itemsPerRow=this._itemWidth?Math.floor(this._viewportWidth/this._itemW
    idth):this._itemsPerRow},_positionItems:function(){this._adjustScrollPosition();
    var y=this._physicalTop;if(this.grid){var totalItemWidth=this._itemsPerRow*this.
    _itemWidth;var rowOffset=(this._viewportWidth-totalItemWidth)/2;this._iterateIte
    ms(function(pidx,vidx){var modulus=vidx%this._itemsPerRow;var x=Math.floor(modul
    us*this._itemWidth+rowOffset);this.translate3d(x+"px",y+"px",0,this._physicalIte
    ms[pidx]);if(this._shouldRenderNextRow(vidx)){y+=this._rowHeight}})}else{this._i
    terateItems(function(pidx,vidx){this.translate3d(0,y+"px",0,this._physicalItems[
    pidx]);y+=this._physicalSizes[pidx]})}},_getPhysicalSizeIncrement:function(pidx)
    {if(!this.grid){return this._physicalSizes[pidx]}if(this._computeVidx(pidx)%this
    ._itemsPerRow!==this._itemsPerRow-1){return 0}return this._rowHeight},_shouldRen
    derNextRow:function(vidx){return vidx%this._itemsPerRow===this._itemsPerRow-1},_
    adjustScrollPosition:function(){var deltaHeight=this._virtualStart===0?this._phy
    sicalTop:Math.min(this._scrollPosition+this._physicalTop,0);if(deltaHeight){this
    ._physicalTop=this._physicalTop-deltaHeight;if(!IOS_TOUCH_SCROLLING&&this._physi
    calTop!==0){this._resetScrollPosition(this._scrollTop-deltaHeight)}}},_resetScro
    llPosition:function(pos){if(this.scrollTarget){this._scrollTop=pos;this._scrollP
    osition=this._scrollTop}},_updateScrollerSize:function(forceUpdate){if(this.grid
    ){this._estScrollHeight=this._virtualRowCount*this._rowHeight}else{this._estScro
    llHeight=this._physicalBottom+Math.max(this._virtualCount-this._physicalCount-th
    is._virtualStart,0)*this._physicalAverage}forceUpdate=forceUpdate||this._scrollH
    eight===0;forceUpdate=forceUpdate||this._scrollPosition>=this._estScrollHeight-t
    his._physicalSize;forceUpdate=forceUpdate||this.grid&&this.$.items.style.height<
    this._estScrollHeight;if(forceUpdate||Math.abs(this._estScrollHeight-this._scrol
    lHeight)>=this._optPhysicalSize){this.$.items.style.height=this._estScrollHeight
    +"px";this._scrollHeight=this._estScrollHeight}},scrollToItem:function(item){ret
    urn this.scrollToIndex(this.items.indexOf(item))},scrollToIndex:function(idx){if
    (typeof idx!=="number"||idx<0||idx>this.items.length-1){return}Polymer.dom.flush
    ();if(this._physicalCount===0){return}idx=Math.min(Math.max(idx,0),this._virtual
    Count-1);if(!this._isIndexRendered(idx)||idx>=this._maxVirtualStart){this._virtu
    alStart=this.grid?idx-this._itemsPerRow*2:idx-1}this._manageFocus();this._assign
    Models();this._updateMetrics();this._physicalTop=Math.floor(this._virtualStart/t
    his._itemsPerRow)*this._physicalAverage;var currentTopItem=this._physicalStart;v
    ar currentVirtualItem=this._virtualStart;var targetOffsetTop=0;var hiddenContent
    Size=this._hiddenContentSize;while(currentVirtualItem<idx&&targetOffsetTop<=hidd
    enContentSize){targetOffsetTop=targetOffsetTop+this._getPhysicalSizeIncrement(cu
    rrentTopItem);currentTopItem=(currentTopItem+1)%this._physicalCount;currentVirtu
    alItem++}this._updateScrollerSize(true);this._positionItems();this._resetScrollP
    osition(this._physicalTop+this._scrollerPaddingTop+targetOffsetTop);this._increa
    sePoolIfNeeded();this._firstVisibleIndexVal=null;this._lastVisibleIndexVal=null}
    ,_resetAverage:function(){this._physicalAverage=0;this._physicalAverageCount=0},
    _resizeHandler:function(){var delta=Math.abs(this._viewportHeight-this._scrollTa
    rgetHeight);if(IOS&&delta>0&&delta<100){return}Polymer.dom.addDebouncer(this.deb
    ounce("_debounceTemplate",function(){this.updateViewportBoundaries();this._rende
    r();if(this._isVisible){this.toggleScrollListener(true);if(this._physicalCount>0
    ){this._resetAverage();this.scrollToIndex(this.firstVisibleIndex)}}else{this.tog
    gleScrollListener(false)}}.bind(this),1))},_getModelFromItem:function(item){var 
    key=this._collection.getKey(item);var pidx=this._physicalIndexForKey[key];if(pid
    x!=null){return this._physicalItems[pidx]._templateInstance}return null},_getNor
    malizedItem:function(item){if(this._collection.getKey(item)===undefined){if(type
    of item==="number"){item=this.items[item];if(!item){throw new RangeError("<item>
     not found")}return item}throw new TypeError("<item> should be a valid item")}re
    turn item},selectItem:function(item){item=this._getNormalizedItem(item);var mode
    l=this._getModelFromItem(item);if(!this.multiSelection&&this.selectedItem){this.
    deselectItem(this.selectedItem)}if(model){model[this.selectedAs]=true}this.$.sel
    ector.select(item);this.updateSizeForItem(item)},deselectItem:function(item){ite
    m=this._getNormalizedItem(item);var model=this._getModelFromItem(item);if(model)
    {model[this.selectedAs]=false}this.$.selector.deselect(item);this.updateSizeForI
    tem(item)},toggleSelectionForItem:function(item){item=this._getNormalizedItem(it
    em);if(this.$.selector.isSelected(item)){this.deselectItem(item)}else{this.selec
    tItem(item)}},clearSelection:function(){function unselect(item){var model=this._
    getModelFromItem(item);if(model){model[this.selectedAs]=false}}if(Array.isArray(
    this.selectedItems)){this.selectedItems.forEach(unselect,this)}else if(this.sele
    ctedItem){unselect.call(this,this.selectedItem)}this.$.selector.clearSelection()
    },_selectionEnabledChanged:function(selectionEnabled){var handler=selectionEnabl
    ed?this.listen:this.unlisten;handler.call(this,this,"tap","_selectionHandler")},
    _selectionHandler:function(e){var model=this.modelForElement(e.target);if(!model
    ){return}var modelTabIndex,activeElTabIndex;var target=Polymer.dom(e).path[0];va
    r activeEl=Polymer.dom(this.domHost?this.domHost.root:document).activeElement;va
    r physicalItem=this._physicalItems[this._getPhysicalIndex(model[this.indexAs])]; | 28 function importModules(moduleNames){return new Promise(function(resolve){define(
    moduleNames,function(){resolve(Array.from(arguments))})})}Polymer.IronResizableB
    ehavior={properties:{_parentResizable:{type:Object,observer:"_parentResizableCha
    nged"},_notifyingDescendant:{type:Boolean,value:false}},listeners:{"iron-request
    -resize-notifications":"_onIronRequestResizeNotifications"},created:function(){t
    his._interestedResizables=[];this._boundNotifyResize=this.notifyResize.bind(this
    )},attached:function(){this.fire("iron-request-resize-notifications",null,{node:
    this,bubbles:true,cancelable:true});if(!this._parentResizable){window.addEventLi
    stener("resize",this._boundNotifyResize);this.notifyResize()}},detached:function
    (){if(this._parentResizable){this._parentResizable.stopResizeNotificationsFor(th
    is)}else{window.removeEventListener("resize",this._boundNotifyResize)}this._pare
    ntResizable=null},notifyResize:function(){if(!this.isAttached){return}this._inte
    restedResizables.forEach(function(resizable){if(this.resizerShouldNotify(resizab
    le)){this._notifyDescendant(resizable)}},this);this._fireResize()},assignParentR
    esizable:function(parentResizable){this._parentResizable=parentResizable},stopRe
    sizeNotificationsFor:function(target){var index=this._interestedResizables.index
    Of(target);if(index>-1){this._interestedResizables.splice(index,1);this.unlisten
    (target,"iron-resize","_onDescendantIronResize")}},resizerShouldNotify:function(
    element){return true},_onDescendantIronResize:function(event){if(this._notifying
    Descendant){event.stopPropagation();return}if(!Polymer.Settings.useShadow){this.
    _fireResize()}},_fireResize:function(){this.fire("iron-resize",null,{node:this,b
    ubbles:false})},_onIronRequestResizeNotifications:function(event){var target=eve
    nt.path?event.path[0]:event.target;if(target===this){return}if(this._interestedR
    esizables.indexOf(target)===-1){this._interestedResizables.push(target);this.lis
    ten(target,"iron-resize","_onDescendantIronResize")}target.assignParentResizable
    (this);this._notifyDescendant(target);event.stopPropagation()},_parentResizableC
    hanged:function(parentResizable){if(parentResizable){window.removeEventListener(
    "resize",this._boundNotifyResize)}},_notifyDescendant:function(descendant){if(!t
    his.isAttached){return}this._notifyingDescendant=true;descendant.notifyResize();
    this._notifyingDescendant=false}};(function(){"use strict";var KEY_IDENTIFIER={"
    U+0008":"backspace","U+0009":"tab","U+001B":"esc","U+0020":"space","U+007F":"del
    "};var KEY_CODE={8:"backspace",9:"tab",13:"enter",27:"esc",33:"pageup",34:"paged
    own",35:"end",36:"home",32:"space",37:"left",38:"up",39:"right",40:"down",46:"de
    l",106:"*"};var MODIFIER_KEYS={shift:"shiftKey",ctrl:"ctrlKey",alt:"altKey",meta
    :"metaKey"};var KEY_CHAR=/[a-z0-9*]/;var IDENT_CHAR=/U\+/;var ARROW_KEY=/^arrow/
    ;var SPACE_KEY=/^space(bar)?/;var ESC_KEY=/^escape$/;function transformKey(key,n
    oSpecialChars){var validKey="";if(key){var lKey=key.toLowerCase();if(lKey===" "|
    |SPACE_KEY.test(lKey)){validKey="space"}else if(ESC_KEY.test(lKey)){validKey="es
    c"}else if(lKey.length==1){if(!noSpecialChars||KEY_CHAR.test(lKey)){validKey=lKe
    y}}else if(ARROW_KEY.test(lKey)){validKey=lKey.replace("arrow","")}else if(lKey=
    ="multiply"){validKey="*"}else{validKey=lKey}}return validKey}function transform
    KeyIdentifier(keyIdent){var validKey="";if(keyIdent){if(keyIdent in KEY_IDENTIFI
    ER){validKey=KEY_IDENTIFIER[keyIdent]}else if(IDENT_CHAR.test(keyIdent)){keyIden
    t=parseInt(keyIdent.replace("U+","0x"),16);validKey=String.fromCharCode(keyIdent
    ).toLowerCase()}else{validKey=keyIdent.toLowerCase()}}return validKey}function t
    ransformKeyCode(keyCode){var validKey="";if(Number(keyCode)){if(keyCode>=65&&key
    Code<=90){validKey=String.fromCharCode(32+keyCode)}else if(keyCode>=112&&keyCode
    <=123){validKey="f"+(keyCode-112)}else if(keyCode>=48&&keyCode<=57){validKey=Str
    ing(keyCode-48)}else if(keyCode>=96&&keyCode<=105){validKey=String(keyCode-96)}e
    lse{validKey=KEY_CODE[keyCode]}}return validKey}function normalizedKeyForEvent(k
    eyEvent,noSpecialChars){if(keyEvent.key){return transformKey(keyEvent.key,noSpec
    ialChars)}if(keyEvent.detail&&keyEvent.detail.key){return transformKey(keyEvent.
    detail.key,noSpecialChars)}return transformKeyIdentifier(keyEvent.keyIdentifier)
    ||transformKeyCode(keyEvent.keyCode)||""}function keyComboMatchesEvent(keyCombo,
    event){var keyEvent=normalizedKeyForEvent(event,keyCombo.hasModifiers);return ke
    yEvent===keyCombo.key&&(!keyCombo.hasModifiers||!!event.shiftKey===!!keyCombo.sh
    iftKey&&!!event.ctrlKey===!!keyCombo.ctrlKey&&!!event.altKey===!!keyCombo.altKey
    &&!!event.metaKey===!!keyCombo.metaKey)}function parseKeyComboString(keyComboStr
    ing){if(keyComboString.length===1){return{combo:keyComboString,key:keyComboStrin
    g,event:"keydown"}}return keyComboString.split("+").reduce(function(parsedKeyCom
    bo,keyComboPart){var eventParts=keyComboPart.split(":");var keyName=eventParts[0
    ];var event=eventParts[1];if(keyName in MODIFIER_KEYS){parsedKeyCombo[MODIFIER_K
    EYS[keyName]]=true;parsedKeyCombo.hasModifiers=true}else{parsedKeyCombo.key=keyN
    ame;parsedKeyCombo.event=event||"keydown"}return parsedKeyCombo},{combo:keyCombo
    String.split(":").shift()})}function parseEventString(eventString){return eventS
    tring.trim().split(" ").map(function(keyComboString){return parseKeyComboString(
    keyComboString)})}Polymer.IronA11yKeysBehavior={properties:{keyEventTarget:{type
    :Object,value:function(){return this}},stopKeyboardEventPropagation:{type:Boolea
    n,value:false},_boundKeyHandlers:{type:Array,value:function(){return[]}},_impera
    tiveKeyBindings:{type:Object,value:function(){return{}}}},observers:["_resetKeyE
    ventListeners(keyEventTarget, _boundKeyHandlers)"],keyBindings:{},registered:fun
    ction(){this._prepKeyBindings()},attached:function(){this._listenKeyEventListene
    rs()},detached:function(){this._unlistenKeyEventListeners()},addOwnKeyBinding:fu
    nction(eventString,handlerName){this._imperativeKeyBindings[eventString]=handler
    Name;this._prepKeyBindings();this._resetKeyEventListeners()},removeOwnKeyBinding
    s:function(){this._imperativeKeyBindings={};this._prepKeyBindings();this._resetK
    eyEventListeners()},keyboardEventMatchesKeys:function(event,eventString){var key
    Combos=parseEventString(eventString);for(var i=0;i<keyCombos.length;++i){if(keyC
    omboMatchesEvent(keyCombos[i],event)){return true}}return false},_collectKeyBind
    ings:function(){var keyBindings=this.behaviors.map(function(behavior){return beh
    avior.keyBindings});if(keyBindings.indexOf(this.keyBindings)===-1){keyBindings.p
    ush(this.keyBindings)}return keyBindings},_prepKeyBindings:function(){this._keyB
    indings={};this._collectKeyBindings().forEach(function(keyBindings){for(var even
    tString in keyBindings){this._addKeyBinding(eventString,keyBindings[eventString]
    )}},this);for(var eventString in this._imperativeKeyBindings){this._addKeyBindin
    g(eventString,this._imperativeKeyBindings[eventString])}for(var eventName in thi
    s._keyBindings){this._keyBindings[eventName].sort(function(kb1,kb2){var b1=kb1[0
    ].hasModifiers;var b2=kb2[0].hasModifiers;return b1===b2?0:b1?-1:1})}},_addKeyBi
    nding:function(eventString,handlerName){parseEventString(eventString).forEach(fu
    nction(keyCombo){this._keyBindings[keyCombo.event]=this._keyBindings[keyCombo.ev
    ent]||[];this._keyBindings[keyCombo.event].push([keyCombo,handlerName])},this)},
    _resetKeyEventListeners:function(){this._unlistenKeyEventListeners();if(this.isA
    ttached){this._listenKeyEventListeners()}},_listenKeyEventListeners:function(){i
    f(!this.keyEventTarget){return}Object.keys(this._keyBindings).forEach(function(e
    ventName){var keyBindings=this._keyBindings[eventName];var boundKeyHandler=this.
    _onKeyBindingEvent.bind(this,keyBindings);this._boundKeyHandlers.push([this.keyE
    ventTarget,eventName,boundKeyHandler]);this.keyEventTarget.addEventListener(even
    tName,boundKeyHandler)},this)},_unlistenKeyEventListeners:function(){var keyHand
    lerTuple;var keyEventTarget;var eventName;var boundKeyHandler;while(this._boundK
    eyHandlers.length){keyHandlerTuple=this._boundKeyHandlers.pop();keyEventTarget=k
    eyHandlerTuple[0];eventName=keyHandlerTuple[1];boundKeyHandler=keyHandlerTuple[2
    ];keyEventTarget.removeEventListener(eventName,boundKeyHandler)}},_onKeyBindingE
    vent:function(keyBindings,event){if(this.stopKeyboardEventPropagation){event.sto
    pPropagation()}if(event.defaultPrevented){return}for(var i=0;i<keyBindings.lengt
    h;i++){var keyCombo=keyBindings[i][0];var handlerName=keyBindings[i][1];if(keyCo
    mboMatchesEvent(keyCombo,event)){this._triggerKeyHandler(keyCombo,handlerName,ev
    ent);if(event.defaultPrevented){return}}}},_triggerKeyHandler:function(keyCombo,
    handlerName,keyboardEvent){var detail=Object.create(keyCombo);detail.keyboardEve
    nt=keyboardEvent;var event=new CustomEvent(keyCombo.event,{detail:detail,cancela
    ble:true});this[handlerName].call(this,event);if(event.defaultPrevented){keyboar
    dEvent.preventDefault()}}}})();Polymer.IronScrollTargetBehavior={properties:{scr
    ollTarget:{type:HTMLElement,value:function(){return this._defaultScrollTarget}}}
    ,observers:["_scrollTargetChanged(scrollTarget, isAttached)"],_shouldHaveListene
    r:true,_scrollTargetChanged:function(scrollTarget,isAttached){var eventTarget;if
    (this._oldScrollTarget){this._toggleScrollListener(false,this._oldScrollTarget);
    this._oldScrollTarget=null}if(!isAttached){return}if(scrollTarget==="document"){
    this.scrollTarget=this._doc}else if(typeof scrollTarget==="string"){this.scrollT
    arget=this.domHost?this.domHost.$[scrollTarget]:Polymer.dom(this.ownerDocument).
    querySelector("#"+scrollTarget)}else if(this._isValidScrollTarget()){this._bound
    ScrollHandler=this._boundScrollHandler||this._scrollHandler.bind(this);this._old
    ScrollTarget=scrollTarget;this._toggleScrollListener(this._shouldHaveListener,sc
    rollTarget)}},_scrollHandler:function scrollHandler(){},get _defaultScrollTarget
    (){return this._doc},get _doc(){return this.ownerDocument.documentElement},get _
    scrollTop(){if(this._isValidScrollTarget()){return this.scrollTarget===this._doc
    ?window.pageYOffset:this.scrollTarget.scrollTop}return 0},get _scrollLeft(){if(t
    his._isValidScrollTarget()){return this.scrollTarget===this._doc?window.pageXOff
    set:this.scrollTarget.scrollLeft}return 0},set _scrollTop(top){if(this.scrollTar
    get===this._doc){window.scrollTo(window.pageXOffset,top)}else if(this._isValidSc
    rollTarget()){this.scrollTarget.scrollTop=top}},set _scrollLeft(left){if(this.sc
    rollTarget===this._doc){window.scrollTo(left,window.pageYOffset)}else if(this._i
    sValidScrollTarget()){this.scrollTarget.scrollLeft=left}},scroll:function(left,t
    op){if(this.scrollTarget===this._doc){window.scrollTo(left,top)}else if(this._is
    ValidScrollTarget()){this.scrollTarget.scrollLeft=left;this.scrollTarget.scrollT
    op=top}},get _scrollTargetWidth(){if(this._isValidScrollTarget()){return this.sc
    rollTarget===this._doc?window.innerWidth:this.scrollTarget.offsetWidth}return 0}
    ,get _scrollTargetHeight(){if(this._isValidScrollTarget()){return this.scrollTar
    get===this._doc?window.innerHeight:this.scrollTarget.offsetHeight}return 0},_isV
    alidScrollTarget:function(){return this.scrollTarget instanceof HTMLElement},_to
    ggleScrollListener:function(yes,scrollTarget){if(!this._boundScrollHandler){retu
    rn}var eventTarget=scrollTarget===this._doc?window:scrollTarget;if(yes){eventTar
    get.addEventListener("scroll",this._boundScrollHandler)}else{eventTarget.removeE
    ventListener("scroll",this._boundScrollHandler)}},toggleScrollListener:function(
    yes){this._shouldHaveListener=yes;this._toggleScrollListener(yes,this.scrollTarg
    et)}};(function(){var IOS=navigator.userAgent.match(/iP(?:hone|ad;(?: U;)? CPU) 
    OS (\d+)/);var IOS_TOUCH_SCROLLING=IOS&&IOS[1]>=8;var DEFAULT_PHYSICAL_COUNT=3;v
    ar HIDDEN_Y="-10000px";var ITEM_WIDTH=0;var ITEM_HEIGHT=1;var SECRET_TABINDEX=-1
    00;Polymer({is:"iron-list",properties:{items:{type:Array},maxPhysicalCount:{type
    :Number,value:500},as:{type:String,value:"item"},indexAs:{type:String,value:"ind
    ex"},selectedAs:{type:String,value:"selected"},grid:{type:Boolean,value:false,re
    flectToAttribute:true},selectionEnabled:{type:Boolean,value:false},selectedItem:
    {type:Object,notify:true},selectedItems:{type:Object,notify:true},multiSelection
    :{type:Boolean,value:false}},observers:["_itemsChanged(items.*)","_selectionEnab
    ledChanged(selectionEnabled)","_multiSelectionChanged(multiSelection)","_setOver
    flow(scrollTarget)"],behaviors:[Polymer.Templatizer,Polymer.IronResizableBehavio
    r,Polymer.IronA11yKeysBehavior,Polymer.IronScrollTargetBehavior],keyBindings:{up
    :"_didMoveUp",down:"_didMoveDown",enter:"_didEnter"},_ratio:.5,_scrollerPaddingT
    op:0,_scrollPosition:0,_physicalSize:0,_physicalAverage:0,_physicalAverageCount:
    0,_physicalTop:0,_virtualCount:0,_physicalIndexForKey:null,_estScrollHeight:0,_s
    crollHeight:0,_viewportHeight:0,_viewportWidth:0,_physicalItems:null,_physicalSi
    zes:null,_firstVisibleIndexVal:null,_lastVisibleIndexVal:null,_collection:null,_
    maxPages:2,_focusedItem:null,_focusedIndex:-1,_offscreenFocusedItem:null,_focusB
    ackfillItem:null,_itemsPerRow:1,_itemWidth:0,_rowHeight:0,_templateCost:0,get _p
    hysicalBottom(){return this._physicalTop+this._physicalSize},get _scrollBottom()
    {return this._scrollPosition+this._viewportHeight},get _virtualEnd(){return this
    ._virtualStart+this._physicalCount-1},get _hiddenContentSize(){var size=this.gri
    d?this._physicalRows*this._rowHeight:this._physicalSize;return size-this._viewpo
    rtHeight},get _maxScrollTop(){return this._estScrollHeight-this._viewportHeight+
    this._scrollerPaddingTop},_minVirtualStart:0,get _maxVirtualStart(){return Math.
    max(0,this._virtualCount-this._physicalCount)},_virtualStartVal:0,set _virtualSt
    art(val){this._virtualStartVal=Math.min(this._maxVirtualStart,Math.max(this._min
    VirtualStart,val))},get _virtualStart(){return this._virtualStartVal||0},_physic
    alStartVal:0,set _physicalStart(val){this._physicalStartVal=val%this._physicalCo
    unt;if(this._physicalStartVal<0){this._physicalStartVal=this._physicalCount+this
    ._physicalStartVal}this._physicalEnd=(this._physicalStart+this._physicalCount-1)
    %this._physicalCount},get _physicalStart(){return this._physicalStartVal||0},_ph
    ysicalCountVal:0,set _physicalCount(val){this._physicalCountVal=val;this._physic
    alEnd=(this._physicalStart+this._physicalCount-1)%this._physicalCount},get _phys
    icalCount(){return this._physicalCountVal},_physicalEnd:0,get _optPhysicalSize()
    {if(this.grid){return this._estRowsInView*this._rowHeight*this._maxPages}return 
    this._viewportHeight*this._maxPages},get _isVisible(){return Boolean(this.offset
    Width||this.offsetHeight)},get firstVisibleIndex(){if(this._firstVisibleIndexVal
    ===null){var physicalOffset=Math.floor(this._physicalTop+this._scrollerPaddingTo
    p);this._firstVisibleIndexVal=this._iterateItems(function(pidx,vidx){physicalOff
    set+=this._getPhysicalSizeIncrement(pidx);if(physicalOffset>this._scrollPosition
    ){return this.grid?vidx-vidx%this._itemsPerRow:vidx}if(this.grid&&this._virtualC
    ount-1===vidx){return vidx-vidx%this._itemsPerRow}})||0}return this._firstVisibl
    eIndexVal},get lastVisibleIndex(){if(this._lastVisibleIndexVal===null){if(this.g
    rid){var lastIndex=this.firstVisibleIndex+this._estRowsInView*this._itemsPerRow-
    1;this._lastVisibleIndexVal=Math.min(this._virtualCount,lastIndex)}else{var phys
    icalOffset=this._physicalTop;this._iterateItems(function(pidx,vidx){if(physicalO
    ffset<this._scrollBottom){this._lastVisibleIndexVal=vidx}else{return true}physic
    alOffset+=this._getPhysicalSizeIncrement(pidx)})}}return this._lastVisibleIndexV
    al},get _defaultScrollTarget(){return this},get _virtualRowCount(){return Math.c
    eil(this._virtualCount/this._itemsPerRow)},get _estRowsInView(){return Math.ceil
    (this._viewportHeight/this._rowHeight)},get _physicalRows(){return Math.ceil(thi
    s._physicalCount/this._itemsPerRow)},ready:function(){this.addEventListener("foc
    us",this._didFocus.bind(this),true)},attached:function(){if(this._physicalCount=
    ==0){this._debounceTemplate(this._render)}this.listen(this,"iron-resize","_resiz
    eHandler")},detached:function(){this.unlisten(this,"iron-resize","_resizeHandler
    ")},_setOverflow:function(scrollTarget){this.style.webkitOverflowScrolling=scrol
    lTarget===this?"touch":"";this.style.overflow=scrollTarget===this?"auto":""},upd
    ateViewportBoundaries:function(){this._scrollerPaddingTop=this.scrollTarget===th
    is?0:parseInt(window.getComputedStyle(this)["padding-top"],10);this._viewportWid
    th=this.$.items.offsetWidth;this._viewportHeight=this._scrollTargetHeight;this.g
    rid&&this._updateGridMetrics()},_scrollHandler:function(){var scrollTop=Math.max
    (0,Math.min(this._maxScrollTop,this._scrollTop));var delta=scrollTop-this._scrol
    lPosition;var isScrollingDown=delta>=0;this._scrollPosition=scrollTop;this._firs
    tVisibleIndexVal=null;this._lastVisibleIndexVal=null;if(Math.abs(delta)>this._ph
    ysicalSize){var idxAdjustment=Math.round(delta/this._physicalAverage)*this._item
    sPerRow;this._physicalTop=this._physicalTop+delta;this._virtualStart=this._virtu
    alStart+idxAdjustment;this._physicalStart=this._physicalStart+idxAdjustment;this
    ._update()}else{var reusables=this._getReusables(isScrollingDown);if(isScrolling
    Down){this._physicalTop=reusables.physicalTop;this._virtualStart=this._virtualSt
    art+reusables.indexes.length;this._physicalStart=this._physicalStart+reusables.i
    ndexes.length}else{this._virtualStart=this._virtualStart-reusables.indexes.lengt
    h;this._physicalStart=this._physicalStart-reusables.indexes.length}if(reusables.
    indexes.length===0){this._increasePoolIfNeeded()}else{this._update(reusables.ind
    exes,isScrollingDown?null:reusables.indexes)}}},_getReusables:function(fromTop){
    var ith,lastIth,offsetContent,physicalItemHeight;var idxs=[];var protectedOffset
    Content=this._hiddenContentSize*this._ratio;var virtualStart=this._virtualStart;
    var virtualEnd=this._virtualEnd;var physicalCount=this._physicalCount;var physic
    alTop=this._physicalTop+this._scrollerPaddingTop;var scrollTop=this._scrollTop;v
    ar scrollBottom=this._scrollBottom;if(fromTop){ith=this._physicalStart;lastIth=t
    his._physicalEnd;offsetContent=scrollTop-physicalTop}else{ith=this._physicalEnd;
    lastIth=this._physicalStart;offsetContent=this._physicalBottom-scrollBottom}whil
    e(true){physicalItemHeight=this._getPhysicalSizeIncrement(ith);offsetContent=off
    setContent-physicalItemHeight;if(idxs.length>=physicalCount||offsetContent<=prot
    ectedOffsetContent){break}if(fromTop){if(virtualEnd+idxs.length+1>=this._virtual
    Count){break}if(physicalTop+physicalItemHeight>=scrollTop){break}idxs.push(ith);
    physicalTop=physicalTop+physicalItemHeight;ith=(ith+1)%physicalCount}else{if(vir
    tualStart-idxs.length<=0){break}if(physicalTop+this._physicalSize-physicalItemHe
    ight<=scrollBottom){break}idxs.push(ith);physicalTop=physicalTop-physicalItemHei
    ght;ith=ith===0?physicalCount-1:ith-1}}return{indexes:idxs,physicalTop:physicalT
    op-this._scrollerPaddingTop}},_update:function(itemSet,movingUp){if(itemSet&&ite
    mSet.length===0){return}this._manageFocus();this._assignModels(itemSet);this._up
    dateMetrics(itemSet);if(movingUp){while(movingUp.length){var idx=movingUp.pop();
    this._physicalTop-=this._getPhysicalSizeIncrement(idx)}}this._positionItems();th
    is._updateScrollerSize();this._increasePoolIfNeeded()},_createPool:function(size
    ){var physicalItems=new Array(size);this._ensureTemplatized();for(var i=0;i<size
    ;i++){var inst=this.stamp(null);physicalItems[i]=inst.root.querySelector("*");Po
    lymer.dom(this).appendChild(inst.root)}return physicalItems},_increasePoolIfNeed
    ed:function(){if(this._viewportHeight===0){return false}var self=this;var isClie
    ntFull=this._physicalBottom>=this._scrollBottom&&this._physicalTop<=this._scroll
    Position;if(this._physicalSize>=this._optPhysicalSize&&isClientFull){return fals
    e}var maxPoolSize=Math.round(this._physicalCount*.5);if(!isClientFull){this._deb
    ounceTemplate(this._increasePool.bind(this,maxPoolSize));return true}this._yield
    (function(){self._increasePool(Math.min(maxPoolSize,Math.max(1,Math.round(50/sel
    f._templateCost))))});return true},_yield:function(cb){var g=window;var handle=g
    .requestIdleCallback?g.requestIdleCallback(cb):g.setTimeout(cb,16);Polymer.dom.a
    ddDebouncer({complete:function(){g.cancelIdleCallback?g.cancelIdleCallback(handl
    e):g.clearTimeout(handle);cb()}})},_increasePool:function(missingItems){var next
    PhysicalCount=Math.min(this._physicalCount+missingItems,this._virtualCount-this.
    _virtualStart,Math.max(this.maxPhysicalCount,DEFAULT_PHYSICAL_COUNT));var prevPh
    ysicalCount=this._physicalCount;var delta=nextPhysicalCount-prevPhysicalCount;va
    r ts=window.performance.now();if(delta<=0){return}[].push.apply(this._physicalIt
    ems,this._createPool(delta));[].push.apply(this._physicalSizes,new Array(delta))
    ;this._physicalCount=prevPhysicalCount+delta;if(this._physicalStart>this._physic
    alEnd&&this._isIndexRendered(this._focusedIndex)&&this._getPhysicalIndex(this._f
    ocusedIndex)<this._physicalEnd){this._physicalStart=this._physicalStart+delta}th
    is._update();this._templateCost=(window.performance.now()-ts)/delta},_render:fun
    ction(){if(this.isAttached&&this._isVisible){if(this._physicalCount===0){this.up
    dateViewportBoundaries();this._increasePool(DEFAULT_PHYSICAL_COUNT)}else{var reu
    sables=this._getReusables(true);this._physicalTop=reusables.physicalTop;this._vi
    rtualStart=this._virtualStart+reusables.indexes.length;this._physicalStart=this.
    _physicalStart+reusables.indexes.length;this._update(reusables.indexes);this._up
    date()}}},_ensureTemplatized:function(){if(!this.ctor){var props={};props.__key_
    _=true;props[this.as]=true;props[this.indexAs]=true;props[this.selectedAs]=true;
    props.tabIndex=true;this._instanceProps=props;this._userTemplate=Polymer.dom(thi
    s).querySelector("template");if(this._userTemplate){this.templatize(this._userTe
    mplate)}else{console.warn("iron-list requires a template to be provided in light
    -dom")}}},_getStampedChildren:function(){return this._physicalItems},_forwardIns
    tancePath:function(inst,path,value){if(path.indexOf(this.as+".")===0){this.notif
    yPath("items."+inst.__key__+"."+path.slice(this.as.length+1),value)}},_forwardPa
    rentProp:function(prop,value){if(this._physicalItems){this._physicalItems.forEac
    h(function(item){item._templateInstance[prop]=value},this)}},_forwardParentPath:
    function(path,value){if(this._physicalItems){this._physicalItems.forEach(functio
    n(item){item._templateInstance.notifyPath(path,value,true)},this)}},_forwardItem
    Path:function(path,value){if(!this._physicalIndexForKey){return}var dot=path.ind
    exOf(".");var key=path.substring(0,dot<0?path.length:dot);var idx=this._physical
    IndexForKey[key];var offscreenItem=this._offscreenFocusedItem;var el=offscreenIt
    em&&offscreenItem._templateInstance.__key__===key?offscreenItem:this._physicalIt
    ems[idx];if(!el||el._templateInstance.__key__!==key){return}if(dot>=0){path=this
    .as+"."+path.substring(dot+1);el._templateInstance.notifyPath(path,value,true)}e
    lse{var currentItem=el._templateInstance[this.as];if(Array.isArray(this.selected
    Items)){for(var i=0;i<this.selectedItems.length;i++){if(this.selectedItems[i]===
    currentItem){this.set("selectedItems."+i,value);break}}}else if(this.selectedIte
    m===currentItem){this.set("selectedItem",value)}el._templateInstance[this.as]=va
    lue}},_itemsChanged:function(change){if(change.path==="items"){this._virtualStar
    t=0;this._physicalTop=0;this._virtualCount=this.items?this.items.length:0;this._
    collection=this.items?Polymer.Collection.get(this.items):null;this._physicalInde
    xForKey={};this._firstVisibleIndexVal=null;this._lastVisibleIndexVal=null;this._
    physicalCount=this._physicalCount||0;this._physicalItems=this._physicalItems||[]
    ;this._physicalSizes=this._physicalSizes||[];this._physicalStart=0;this._resetSc
    rollPosition(0);this._removeFocusedItem();this._debounceTemplate(this._render)}e
    lse if(change.path==="items.splices"){this._adjustVirtualIndex(change.value.inde
    xSplices);this._virtualCount=this.items?this.items.length:0;this._debounceTempla
    te(this._render)}else{this._forwardItemPath(change.path.split(".").slice(1).join
    ("."),change.value)}},_adjustVirtualIndex:function(splices){splices.forEach(func
    tion(splice){splice.removed.forEach(this._removeItem,this);if(splice.index<this.
    _virtualStart){var delta=Math.max(splice.addedCount-splice.removed.length,splice
    .index-this._virtualStart);this._virtualStart=this._virtualStart+delta;if(this._
    focusedIndex>=0){this._focusedIndex=this._focusedIndex+delta}}},this)},_removeIt
    em:function(item){this.$.selector.deselect(item);if(this._focusedItem&&this._foc
    usedItem._templateInstance[this.as]===item){this._removeFocusedItem()}},_iterate
    Items:function(fn,itemSet){var pidx,vidx,rtn,i;if(arguments.length===2&&itemSet)
    {for(i=0;i<itemSet.length;i++){pidx=itemSet[i];vidx=this._computeVidx(pidx);if((
    rtn=fn.call(this,pidx,vidx))!=null){return rtn}}}else{pidx=this._physicalStart;v
    idx=this._virtualStart;for(;pidx<this._physicalCount;pidx++,vidx++){if((rtn=fn.c
    all(this,pidx,vidx))!=null){return rtn}}for(pidx=0;pidx<this._physicalStart;pidx
    ++,vidx++){if((rtn=fn.call(this,pidx,vidx))!=null){return rtn}}}},_computeVidx:f
    unction(pidx){if(pidx>=this._physicalStart){return this._virtualStart+(pidx-this
    ._physicalStart)}return this._virtualStart+(this._physicalCount-this._physicalSt
    art)+pidx},_assignModels:function(itemSet){this._iterateItems(function(pidx,vidx
    ){var el=this._physicalItems[pidx];var inst=el._templateInstance;var item=this.i
    tems&&this.items[vidx];if(item!=null){inst[this.as]=item;inst.__key__=this._coll
    ection.getKey(item);inst[this.selectedAs]=this.$.selector.isSelected(item);inst[
    this.indexAs]=vidx;inst.tabIndex=this._focusedIndex===vidx?0:-1;this._physicalIn
    dexForKey[inst.__key__]=pidx;el.removeAttribute("hidden")}else{inst.__key__=null
    ;el.setAttribute("hidden","")}},itemSet)},_updateMetrics:function(itemSet){Polym
    er.dom.flush();var newPhysicalSize=0;var oldPhysicalSize=0;var prevAvgCount=this
    ._physicalAverageCount;var prevPhysicalAvg=this._physicalAverage;this._iterateIt
    ems(function(pidx,vidx){oldPhysicalSize+=this._physicalSizes[pidx]||0;this._phys
    icalSizes[pidx]=this._physicalItems[pidx].offsetHeight;newPhysicalSize+=this._ph
    ysicalSizes[pidx];this._physicalAverageCount+=this._physicalSizes[pidx]?1:0},ite
    mSet);if(this.grid){this._updateGridMetrics();this._physicalSize=Math.ceil(this.
    _physicalCount/this._itemsPerRow)*this._rowHeight}else{this._physicalSize=this._
    physicalSize+newPhysicalSize-oldPhysicalSize}if(this._physicalAverageCount!==pre
    vAvgCount){this._physicalAverage=Math.round((prevPhysicalAvg*prevAvgCount+newPhy
    sicalSize)/this._physicalAverageCount)}},_updateGridMetrics:function(){this._ite
    mWidth=this._physicalCount>0?this._physicalItems[0].getBoundingClientRect().widt
    h:200;this._rowHeight=this._physicalCount>0?this._physicalItems[0].offsetHeight:
    200;this._itemsPerRow=this._itemWidth?Math.floor(this._viewportWidth/this._itemW
    idth):this._itemsPerRow},_positionItems:function(){this._adjustScrollPosition();
    var y=this._physicalTop;if(this.grid){var totalItemWidth=this._itemsPerRow*this.
    _itemWidth;var rowOffset=(this._viewportWidth-totalItemWidth)/2;this._iterateIte
    ms(function(pidx,vidx){var modulus=vidx%this._itemsPerRow;var x=Math.floor(modul
    us*this._itemWidth+rowOffset);this.translate3d(x+"px",y+"px",0,this._physicalIte
    ms[pidx]);if(this._shouldRenderNextRow(vidx)){y+=this._rowHeight}})}else{this._i
    terateItems(function(pidx,vidx){this.translate3d(0,y+"px",0,this._physicalItems[
    pidx]);y+=this._physicalSizes[pidx]})}},_getPhysicalSizeIncrement:function(pidx)
    {if(!this.grid){return this._physicalSizes[pidx]}if(this._computeVidx(pidx)%this
    ._itemsPerRow!==this._itemsPerRow-1){return 0}return this._rowHeight},_shouldRen
    derNextRow:function(vidx){return vidx%this._itemsPerRow===this._itemsPerRow-1},_
    adjustScrollPosition:function(){var deltaHeight=this._virtualStart===0?this._phy
    sicalTop:Math.min(this._scrollPosition+this._physicalTop,0);if(deltaHeight){this
    ._physicalTop=this._physicalTop-deltaHeight;if(!IOS_TOUCH_SCROLLING&&this._physi
    calTop!==0){this._resetScrollPosition(this._scrollTop-deltaHeight)}}},_resetScro
    llPosition:function(pos){if(this.scrollTarget){this._scrollTop=pos;this._scrollP
    osition=this._scrollTop}},_updateScrollerSize:function(forceUpdate){if(this.grid
    ){this._estScrollHeight=this._virtualRowCount*this._rowHeight}else{this._estScro
    llHeight=this._physicalBottom+Math.max(this._virtualCount-this._physicalCount-th
    is._virtualStart,0)*this._physicalAverage}forceUpdate=forceUpdate||this._scrollH
    eight===0;forceUpdate=forceUpdate||this._scrollPosition>=this._estScrollHeight-t
    his._physicalSize;forceUpdate=forceUpdate||this.grid&&this.$.items.style.height<
    this._estScrollHeight;if(forceUpdate||Math.abs(this._estScrollHeight-this._scrol
    lHeight)>=this._optPhysicalSize){this.$.items.style.height=this._estScrollHeight
    +"px";this._scrollHeight=this._estScrollHeight}},scrollToItem:function(item){ret
    urn this.scrollToIndex(this.items.indexOf(item))},scrollToIndex:function(idx){if
    (typeof idx!=="number"||idx<0||idx>this.items.length-1){return}Polymer.dom.flush
    ();if(this._physicalCount===0){return}idx=Math.min(Math.max(idx,0),this._virtual
    Count-1);if(!this._isIndexRendered(idx)||idx>=this._maxVirtualStart){this._virtu
    alStart=this.grid?idx-this._itemsPerRow*2:idx-1}this._manageFocus();this._assign
    Models();this._updateMetrics();this._physicalTop=Math.floor(this._virtualStart/t
    his._itemsPerRow)*this._physicalAverage;var currentTopItem=this._physicalStart;v
    ar currentVirtualItem=this._virtualStart;var targetOffsetTop=0;var hiddenContent
    Size=this._hiddenContentSize;while(currentVirtualItem<idx&&targetOffsetTop<=hidd
    enContentSize){targetOffsetTop=targetOffsetTop+this._getPhysicalSizeIncrement(cu
    rrentTopItem);currentTopItem=(currentTopItem+1)%this._physicalCount;currentVirtu
    alItem++}this._updateScrollerSize(true);this._positionItems();this._resetScrollP
    osition(this._physicalTop+this._scrollerPaddingTop+targetOffsetTop);this._increa
    sePoolIfNeeded();this._firstVisibleIndexVal=null;this._lastVisibleIndexVal=null}
    ,_resetAverage:function(){this._physicalAverage=0;this._physicalAverageCount=0},
    _resizeHandler:function(){var delta=Math.abs(this._viewportHeight-this._scrollTa
    rgetHeight);if(IOS&&delta>0&&delta<100){return}Polymer.dom.addDebouncer(this.deb
    ounce("_debounceTemplate",function(){this.updateViewportBoundaries();this._rende
    r();if(this._isVisible){this.toggleScrollListener(true);if(this._physicalCount>0
    ){this._resetAverage();this.scrollToIndex(this.firstVisibleIndex)}}else{this.tog
    gleScrollListener(false)}}.bind(this),1))},_getModelFromItem:function(item){var 
    key=this._collection.getKey(item);var pidx=this._physicalIndexForKey[key];if(pid
    x!=null){return this._physicalItems[pidx]._templateInstance}return null},_getNor
    malizedItem:function(item){if(this._collection.getKey(item)===undefined){if(type
    of item==="number"){item=this.items[item];if(!item){throw new RangeError("<item>
     not found")}return item}throw new TypeError("<item> should be a valid item")}re
    turn item},selectItem:function(item){item=this._getNormalizedItem(item);var mode
    l=this._getModelFromItem(item);if(!this.multiSelection&&this.selectedItem){this.
    deselectItem(this.selectedItem)}if(model){model[this.selectedAs]=true}this.$.sel
    ector.select(item);this.updateSizeForItem(item)},deselectItem:function(item){ite
    m=this._getNormalizedItem(item);var model=this._getModelFromItem(item);if(model)
    {model[this.selectedAs]=false}this.$.selector.deselect(item);this.updateSizeForI
    tem(item)},toggleSelectionForItem:function(item){item=this._getNormalizedItem(it
    em);if(this.$.selector.isSelected(item)){this.deselectItem(item)}else{this.selec
    tItem(item)}},clearSelection:function(){function unselect(item){var model=this._
    getModelFromItem(item);if(model){model[this.selectedAs]=false}}if(Array.isArray(
    this.selectedItems)){this.selectedItems.forEach(unselect,this)}else if(this.sele
    ctedItem){unselect.call(this,this.selectedItem)}this.$.selector.clearSelection()
    },_selectionEnabledChanged:function(selectionEnabled){var handler=selectionEnabl
    ed?this.listen:this.unlisten;handler.call(this,this,"tap","_selectionHandler")},
    _selectionHandler:function(e){var model=this.modelForElement(e.target);if(!model
    ){return}var modelTabIndex,activeElTabIndex;var target=Polymer.dom(e).path[0];va
    r activeEl=Polymer.dom(this.domHost?this.domHost.root:document).activeElement;va
    r physicalItem=this._physicalItems[this._getPhysicalIndex(model[this.indexAs])]; | 
| 29 |  | 
| 30 if(target.localName==="input"||target.localName==="button"||target.localName==="
    select"){return}modelTabIndex=model.tabIndex;model.tabIndex=SECRET_TABINDEX;acti
    veElTabIndex=activeEl?activeEl.tabIndex:-1;model.tabIndex=modelTabIndex;if(activ
    eEl&&physicalItem!==activeEl&&physicalItem.contains(activeEl)&&activeElTabIndex!
    ==SECRET_TABINDEX){return}this.toggleSelectionForItem(model[this.as])},_multiSel
    ectionChanged:function(multiSelection){this.clearSelection();this.$.selector.mul
    ti=multiSelection},updateSizeForItem:function(item){item=this._getNormalizedItem
    (item);var key=this._collection.getKey(item);var pidx=this._physicalIndexForKey[
    key];if(pidx!=null){this._updateMetrics([pidx]);this._positionItems()}},_manageF
    ocus:function(){var fidx=this._focusedIndex;if(fidx>=0&&fidx<this._virtualCount)
    {if(this._isIndexRendered(fidx)){this._restoreFocusedItem()}else{this._createFoc
    usBackfillItem()}}else if(this._virtualCount>0&&this._physicalCount>0){this._foc
    usedIndex=this._virtualStart;this._focusedItem=this._physicalItems[this._physica
    lStart]}},_isIndexRendered:function(idx){return idx>=this._virtualStart&&idx<=th
    is._virtualEnd},_isIndexVisible:function(idx){return idx>=this.firstVisibleIndex
    &&idx<=this.lastVisibleIndex},_getPhysicalIndex:function(idx){return this._physi
    calIndexForKey[this._collection.getKey(this._getNormalizedItem(idx))]},_focusPhy
    sicalItem:function(idx){if(idx<0||idx>=this._virtualCount){return}this._restoreF
    ocusedItem();if(!this._isIndexRendered(idx)){this.scrollToIndex(idx)}var physica
    lItem=this._physicalItems[this._getPhysicalIndex(idx)];var model=physicalItem._t
    emplateInstance;var focusable;model.tabIndex=SECRET_TABINDEX;if(physicalItem.tab
    Index===SECRET_TABINDEX){focusable=physicalItem}if(!focusable){focusable=Polymer
    .dom(physicalItem).querySelector('[tabindex="'+SECRET_TABINDEX+'"]')}model.tabIn
    dex=0;this._focusedIndex=idx;focusable&&focusable.focus()},_removeFocusedItem:fu
    nction(){if(this._offscreenFocusedItem){Polymer.dom(this).removeChild(this._offs
    creenFocusedItem)}this._offscreenFocusedItem=null;this._focusBackfillItem=null;t
    his._focusedItem=null;this._focusedIndex=-1},_createFocusBackfillItem:function()
    {var fidx=this._focusedIndex;var pidx=this._getPhysicalIndex(fidx);if(this._offs
    creenFocusedItem||pidx==null||fidx<0){return}if(!this._focusBackfillItem){var st
    ampedTemplate=this.stamp(null);this._focusBackfillItem=stampedTemplate.root.quer
    ySelector("*");Polymer.dom(this).appendChild(stampedTemplate.root)}this._offscre
    enFocusedItem=this._physicalItems[pidx];this._offscreenFocusedItem._templateInst
    ance.tabIndex=0;this._physicalItems[pidx]=this._focusBackfillItem;this.translate
    3d(0,HIDDEN_Y,0,this._offscreenFocusedItem)},_restoreFocusedItem:function(){var 
    pidx,fidx=this._focusedIndex;if(!this._offscreenFocusedItem||this._focusedIndex<
    0){return}this._assignModels();pidx=this._getPhysicalIndex(fidx);if(pidx!=null){
    this._focusBackfillItem=this._physicalItems[pidx];this._focusBackfillItem._templ
    ateInstance.tabIndex=-1;this._physicalItems[pidx]=this._offscreenFocusedItem;thi
    s._offscreenFocusedItem=null;this.translate3d(0,HIDDEN_Y,0,this._focusBackfillIt
    em)}},_didFocus:function(e){var targetModel=this.modelForElement(e.target);var f
    ocusedModel=this._focusedItem?this._focusedItem._templateInstance:null;var hasOf
    fscreenFocusedItem=this._offscreenFocusedItem!==null;var fidx=this._focusedIndex
    ;if(!targetModel||!focusedModel){return}if(focusedModel===targetModel){if(!this.
    _isIndexVisible(fidx)){this.scrollToIndex(fidx)}}else{this._restoreFocusedItem()
    ;focusedModel.tabIndex=-1;targetModel.tabIndex=0;fidx=targetModel[this.indexAs];
    this._focusedIndex=fidx;this._focusedItem=this._physicalItems[this._getPhysicalI
    ndex(fidx)];if(hasOffscreenFocusedItem&&!this._offscreenFocusedItem){this._updat
    e()}}},_didMoveUp:function(){this._focusPhysicalItem(this._focusedIndex-1)},_did
    MoveDown:function(e){e.detail.keyboardEvent.preventDefault();this._focusPhysical
    Item(this._focusedIndex+1)},_didEnter:function(e){this._focusPhysicalItem(this._
    focusedIndex);this._selectionHandler(e.detail.keyboardEvent)}})})(); | 29 if(target.localName==="input"||target.localName==="button"||target.localName==="
    select"){return}modelTabIndex=model.tabIndex;model.tabIndex=SECRET_TABINDEX;acti
    veElTabIndex=activeEl?activeEl.tabIndex:-1;model.tabIndex=modelTabIndex;if(activ
    eEl&&physicalItem!==activeEl&&physicalItem.contains(activeEl)&&activeElTabIndex!
    ==SECRET_TABINDEX){return}this.toggleSelectionForItem(model[this.as])},_multiSel
    ectionChanged:function(multiSelection){this.clearSelection();this.$.selector.mul
    ti=multiSelection},updateSizeForItem:function(item){item=this._getNormalizedItem
    (item);var key=this._collection.getKey(item);var pidx=this._physicalIndexForKey[
    key];if(pidx!=null){this._updateMetrics([pidx]);this._positionItems()}},_manageF
    ocus:function(){var fidx=this._focusedIndex;if(fidx>=0&&fidx<this._virtualCount)
    {if(this._isIndexRendered(fidx)){this._restoreFocusedItem()}else{this._createFoc
    usBackfillItem()}}else if(this._virtualCount>0&&this._physicalCount>0){this._foc
    usedIndex=this._virtualStart;this._focusedItem=this._physicalItems[this._physica
    lStart]}},_isIndexRendered:function(idx){return idx>=this._virtualStart&&idx<=th
    is._virtualEnd},_isIndexVisible:function(idx){return idx>=this.firstVisibleIndex
    &&idx<=this.lastVisibleIndex},_getPhysicalIndex:function(idx){return this._physi
    calIndexForKey[this._collection.getKey(this._getNormalizedItem(idx))]},_focusPhy
    sicalItem:function(idx){if(idx<0||idx>=this._virtualCount){return}this._restoreF
    ocusedItem();if(!this._isIndexRendered(idx)){this.scrollToIndex(idx)}var physica
    lItem=this._physicalItems[this._getPhysicalIndex(idx)];var model=physicalItem._t
    emplateInstance;var focusable;model.tabIndex=SECRET_TABINDEX;if(physicalItem.tab
    Index===SECRET_TABINDEX){focusable=physicalItem}if(!focusable){focusable=Polymer
    .dom(physicalItem).querySelector('[tabindex="'+SECRET_TABINDEX+'"]')}model.tabIn
    dex=0;this._focusedIndex=idx;focusable&&focusable.focus()},_removeFocusedItem:fu
    nction(){if(this._offscreenFocusedItem){Polymer.dom(this).removeChild(this._offs
    creenFocusedItem)}this._offscreenFocusedItem=null;this._focusBackfillItem=null;t
    his._focusedItem=null;this._focusedIndex=-1},_createFocusBackfillItem:function()
    {var fidx=this._focusedIndex;var pidx=this._getPhysicalIndex(fidx);if(this._offs
    creenFocusedItem||pidx==null||fidx<0){return}if(!this._focusBackfillItem){var st
    ampedTemplate=this.stamp(null);this._focusBackfillItem=stampedTemplate.root.quer
    ySelector("*");Polymer.dom(this).appendChild(stampedTemplate.root)}this._offscre
    enFocusedItem=this._physicalItems[pidx];this._offscreenFocusedItem._templateInst
    ance.tabIndex=0;this._physicalItems[pidx]=this._focusBackfillItem;this.translate
    3d(0,HIDDEN_Y,0,this._offscreenFocusedItem)},_restoreFocusedItem:function(){var 
    pidx,fidx=this._focusedIndex;if(!this._offscreenFocusedItem||this._focusedIndex<
    0){return}this._assignModels();pidx=this._getPhysicalIndex(fidx);if(pidx!=null){
    this._focusBackfillItem=this._physicalItems[pidx];this._focusBackfillItem._templ
    ateInstance.tabIndex=-1;this._physicalItems[pidx]=this._offscreenFocusedItem;thi
    s._offscreenFocusedItem=null;this.translate3d(0,HIDDEN_Y,0,this._focusBackfillIt
    em)}},_didFocus:function(e){var targetModel=this.modelForElement(e.target);var f
    ocusedModel=this._focusedItem?this._focusedItem._templateInstance:null;var hasOf
    fscreenFocusedItem=this._offscreenFocusedItem!==null;var fidx=this._focusedIndex
    ;if(!targetModel||!focusedModel){return}if(focusedModel===targetModel){if(!this.
    _isIndexVisible(fidx)){this.scrollToIndex(fidx)}}else{this._restoreFocusedItem()
    ;focusedModel.tabIndex=-1;targetModel.tabIndex=0;fidx=targetModel[this.indexAs];
    this._focusedIndex=fidx;this._focusedItem=this._physicalItems[this._getPhysicalI
    ndex(fidx)];if(hasOffscreenFocusedItem&&!this._offscreenFocusedItem){this._updat
    e()}}},_didMoveUp:function(){this._focusPhysicalItem(this._focusedIndex-1)},_did
    MoveDown:function(e){e.detail.keyboardEvent.preventDefault();this._focusPhysical
    Item(this._focusedIndex+1)},_didEnter:function(e){this._focusPhysicalItem(this._
    focusedIndex);this._selectionHandler(e.detail.keyboardEvent)}})})(); | 
| 31 // Copyright 2015 The Chromium Authors. All rights reserved. | 30 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 32 // Use of this source code is governed by a BSD-style license that can be | 31 // Use of this source code is governed by a BSD-style license that can be | 
| 33 // found in the LICENSE file. | 32 // found in the LICENSE file. | 
| 34 cr.define("downloads",function(){function chromeSendWithId(chromeSendName){retur
    n function(id){chrome.send(chromeSendName,[id])}}function ActionService(){this.s
    earchTerms_=[]}function trim(s){return s.trim()}function truthy(value){return!!v
    alue}ActionService.splitTerms=function(searchText){return searchText.split(/"([^
    "]*)"/).map(trim).filter(truthy)};ActionService.prototype={cancel:chromeSendWith
    Id("cancel"),clearAll:function(){if(loadTimeData.getBoolean("allowDeletingHistor
    y")){chrome.send("clearAll");this.search("")}},discardDangerous:chromeSendWithId
    ("discardDangerous"),download:function(url){var a=document.createElement("a");a.
    href=url;a.setAttribute("download","");a.click()},drag:chromeSendWithId("drag"),
    loadMore:function(){chrome.send("getDownloads",this.searchTerms_)},isSearching:f
    unction(){return this.searchTerms_.length>0},openDownloadsFolder:function(){chro
    me.send("openDownloadsFolderRequiringGesture")},openFile:chromeSendWithId("openF
    ileRequiringGesture"),pause:chromeSendWithId("pause"),remove:chromeSendWithId("r
    emove"),resume:chromeSendWithId("resume"),saveDangerous:chromeSendWithId("saveDa
    ngerousRequiringGesture"),search:function(searchText){var searchTerms=ActionServ
    ice.splitTerms(searchText);var sameTerms=searchTerms.length==this.searchTerms_.l
    ength;for(var i=0;sameTerms&&i<searchTerms.length;++i){if(searchTerms[i]!=this.s
    earchTerms_[i])sameTerms=false}if(sameTerms)return false;this.searchTerms_=searc
    hTerms;this.loadMore();return true},show:chromeSendWithId("show"),undo:chrome.se
    nd.bind(chrome,"undo")};cr.addSingletonGetter(ActionService);return{ActionServic
    e:ActionService}}); | 33 cr.define("downloads",function(){function chromeSendWithId(chromeSendName){retur
    n function(id){chrome.send(chromeSendName,[id])}}function ActionService(){this.s
    earchTerms_=[]}function trim(s){return s.trim()}function truthy(value){return!!v
    alue}ActionService.splitTerms=function(searchText){return searchText.split(/"([^
    "]*)"/).map(trim).filter(truthy)};ActionService.prototype={cancel:chromeSendWith
    Id("cancel"),clearAll:function(){if(loadTimeData.getBoolean("allowDeletingHistor
    y")){chrome.send("clearAll");this.search("")}},discardDangerous:chromeSendWithId
    ("discardDangerous"),download:function(url){var a=document.createElement("a");a.
    href=url;a.setAttribute("download","");a.click()},drag:chromeSendWithId("drag"),
    loadMore:function(){chrome.send("getDownloads",this.searchTerms_)},isSearching:f
    unction(){return this.searchTerms_.length>0},openDownloadsFolder:function(){chro
    me.send("openDownloadsFolderRequiringGesture")},openFile:chromeSendWithId("openF
    ileRequiringGesture"),pause:chromeSendWithId("pause"),remove:chromeSendWithId("r
    emove"),resume:chromeSendWithId("resume"),saveDangerous:chromeSendWithId("saveDa
    ngerousRequiringGesture"),search:function(searchText){var searchTerms=ActionServ
    ice.splitTerms(searchText);var sameTerms=searchTerms.length==this.searchTerms_.l
    ength;for(var i=0;sameTerms&&i<searchTerms.length;++i){if(searchTerms[i]!=this.s
    earchTerms_[i])sameTerms=false}if(sameTerms)return false;this.searchTerms_=searc
    hTerms;this.loadMore();return true},show:chromeSendWithId("show"),undo:chrome.se
    nd.bind(chrome,"undo")};cr.addSingletonGetter(ActionService);return{ActionServic
    e:ActionService}}); | 
| 35 // Copyright 2015 The Chromium Authors. All rights reserved. | 34 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 36 // Use of this source code is governed by a BSD-style license that can be | 35 // Use of this source code is governed by a BSD-style license that can be | 
| 37 // found in the LICENSE file. | 36 // found in the LICENSE file. | 
| 38 cr.define("downloads",function(){var DangerType={NOT_DANGEROUS:"NOT_DANGEROUS",D
    ANGEROUS_FILE:"DANGEROUS_FILE",DANGEROUS_URL:"DANGEROUS_URL",DANGEROUS_CONTENT:"
    DANGEROUS_CONTENT",UNCOMMON_CONTENT:"UNCOMMON_CONTENT",DANGEROUS_HOST:"DANGEROUS
    _HOST",POTENTIALLY_UNWANTED:"POTENTIALLY_UNWANTED"};var States={IN_PROGRESS:"IN_
    PROGRESS",CANCELLED:"CANCELLED",COMPLETE:"COMPLETE",PAUSED:"PAUSED",DANGEROUS:"D
    ANGEROUS",INTERRUPTED:"INTERRUPTED"};return{DangerType:DangerType,States:States}
    }); | 37 cr.define("downloads",function(){var DangerType={NOT_DANGEROUS:"NOT_DANGEROUS",D
    ANGEROUS_FILE:"DANGEROUS_FILE",DANGEROUS_URL:"DANGEROUS_URL",DANGEROUS_CONTENT:"
    DANGEROUS_CONTENT",UNCOMMON_CONTENT:"UNCOMMON_CONTENT",DANGEROUS_HOST:"DANGEROUS
    _HOST",POTENTIALLY_UNWANTED:"POTENTIALLY_UNWANTED"};var States={IN_PROGRESS:"IN_
    PROGRESS",CANCELLED:"CANCELLED",COMPLETE:"COMPLETE",PAUSED:"PAUSED",DANGEROUS:"D
    ANGEROUS",INTERRUPTED:"INTERRUPTED"};return{DangerType:DangerType,States:States}
    }); | 
| 39 // Copyright 2014 The Chromium Authors. All rights reserved. | 38 // Copyright 2014 The Chromium Authors. All rights reserved. | 
| 40 // Use of this source code is governed by a BSD-style license that can be | 39 // Use of this source code is governed by a BSD-style license that can be | 
| 41 // found in the LICENSE file. | 40 // found in the LICENSE file. | 
| 42 var ActionLink=document.registerElement("action-link",{prototype:{__proto__:HTML
    AnchorElement.prototype,createdCallback:function(){this.tabIndex=this.disabled?-
    1:0;if(!this.hasAttribute("role"))this.setAttribute("role","link");this.addEvent
    Listener("keydown",function(e){if(!this.disabled&&e.key=="Enter"&&!this.href){wi
    ndow.setTimeout(this.click.bind(this),0)}});function preventDefault(e){e.prevent
    Default()}function removePreventDefault(){document.removeEventListener("selectst
    art",preventDefault);document.removeEventListener("mouseup",removePreventDefault
    )}this.addEventListener("mousedown",function(){document.addEventListener("select
    start",preventDefault);document.addEventListener("mouseup",removePreventDefault)
    ;if(document.activeElement!=this)this.classList.add("no-outline")});this.addEven
    tListener("blur",function(){this.classList.remove("no-outline")})},set disabled(
    disabled){if(disabled)HTMLAnchorElement.prototype.setAttribute.call(this,"disabl
    ed","");else HTMLAnchorElement.prototype.removeAttribute.call(this,"disabled");t
    his.tabIndex=disabled?-1:0},get disabled(){return this.hasAttribute("disabled")}
    ,setAttribute:function(attr,val){if(attr.toLowerCase()=="disabled")this.disabled
    =true;else HTMLAnchorElement.prototype.setAttribute.apply(this,arguments)},remov
    eAttribute:function(attr){if(attr.toLowerCase()=="disabled")this.disabled=false;
    else HTMLAnchorElement.prototype.removeAttribute.apply(this,arguments)}},"extend
    s":"a"});(function(){var metaDatas={};var metaArrays={};var singleton=null;Polym
    er.IronMeta=Polymer({is:"iron-meta",properties:{type:{type:String,value:"default
    ",observer:"_typeChanged"},key:{type:String,observer:"_keyChanged"},value:{type:
    Object,notify:true,observer:"_valueChanged"},self:{type:Boolean,observer:"_selfC
    hanged"},list:{type:Array,notify:true}},hostAttributes:{hidden:true},factoryImpl
    :function(config){if(config){for(var n in config){switch(n){case"type":case"key"
    :case"value":this[n]=config[n];break}}}},created:function(){this._metaDatas=meta
    Datas;this._metaArrays=metaArrays},_keyChanged:function(key,old){this._resetRegi
    stration(old)},_valueChanged:function(value){this._resetRegistration(this.key)},
    _selfChanged:function(self){if(self){this.value=this}},_typeChanged:function(typ
    e){this._unregisterKey(this.key);if(!metaDatas[type]){metaDatas[type]={}}this._m
    etaData=metaDatas[type];if(!metaArrays[type]){metaArrays[type]=[]}this.list=meta
    Arrays[type];this._registerKeyValue(this.key,this.value)},byKey:function(key){re
    turn this._metaData&&this._metaData[key]},_resetRegistration:function(oldKey){th
    is._unregisterKey(oldKey);this._registerKeyValue(this.key,this.value)},_unregist
    erKey:function(key){this._unregister(key,this._metaData,this.list)},_registerKey
    Value:function(key,value){this._register(key,value,this._metaData,this.list)},_r
    egister:function(key,value,data,list){if(key&&data&&value!==undefined){data[key]
    =value;list.push(value)}},_unregister:function(key,data,list){if(key&&data){if(k
    ey in data){var value=data[key];delete data[key];this.arrayDelete(list,value)}}}
    });Polymer.IronMeta.getIronMeta=function getIronMeta(){if(singleton===null){sing
    leton=new Polymer.IronMeta}return singleton};Polymer.IronMetaQuery=Polymer({is:"
    iron-meta-query",properties:{type:{type:String,value:"default",observer:"_typeCh
    anged"},key:{type:String,observer:"_keyChanged"},value:{type:Object,notify:true,
    readOnly:true},list:{type:Array,notify:true}},factoryImpl:function(config){if(co
    nfig){for(var n in config){switch(n){case"type":case"key":this[n]=config[n];brea
    k}}}},created:function(){this._metaDatas=metaDatas;this._metaArrays=metaArrays},
    _keyChanged:function(key){this._setValue(this._metaData&&this._metaData[key])},_
    typeChanged:function(type){this._metaData=metaDatas[type];this.list=metaArrays[t
    ype];if(this.key){this._keyChanged(this.key)}},byKey:function(key){return this._
    metaData&&this._metaData[key]}})})();Polymer({is:"iron-icon",properties:{icon:{t
    ype:String,observer:"_iconChanged"},theme:{type:String,observer:"_updateIcon"},s
    rc:{type:String,observer:"_srcChanged"},_meta:{value:Polymer.Base.create("iron-m
    eta",{type:"iconset"}),observer:"_updateIcon"}},_DEFAULT_ICONSET:"icons",_iconCh
    anged:function(icon){var parts=(icon||"").split(":");this._iconName=parts.pop();
    this._iconsetName=parts.pop()||this._DEFAULT_ICONSET;this._updateIcon()},_srcCha
    nged:function(src){this._updateIcon()},_usesIconset:function(){return this.icon|
    |!this.src},_updateIcon:function(){if(this._usesIconset()){if(this._img&&this._i
    mg.parentNode){Polymer.dom(this.root).removeChild(this._img)}if(this._iconName==
    =""){if(this._iconset){this._iconset.removeIcon(this)}}else if(this._iconsetName
    &&this._meta){this._iconset=this._meta.byKey(this._iconsetName);if(this._iconset
    ){this._iconset.applyIcon(this,this._iconName,this.theme);this.unlisten(window,"
    iron-iconset-added","_updateIcon")}else{this.listen(window,"iron-iconset-added",
    "_updateIcon")}}}else{if(this._iconset){this._iconset.removeIcon(this)}if(!this.
    _img){this._img=document.createElement("img");this._img.style.width="100%";this.
    _img.style.height="100%";this._img.draggable=false}this._img.src=this.src;Polyme
    r.dom(this.root).appendChild(this._img)}}});Polymer.IronControlState={properties
    :{focused:{type:Boolean,value:false,notify:true,readOnly:true,reflectToAttribute
    :true},disabled:{type:Boolean,value:false,notify:true,observer:"_disabledChanged
    ",reflectToAttribute:true},_oldTabIndex:{type:Number},_boundFocusBlurHandler:{ty
    pe:Function,value:function(){return this._focusBlurHandler.bind(this)}}},observe
    rs:["_changedControlState(focused, disabled)"],ready:function(){this.addEventLis
    tener("focus",this._boundFocusBlurHandler,true);this.addEventListener("blur",thi
    s._boundFocusBlurHandler,true)},_focusBlurHandler:function(event){if(event.targe
    t===this){this._setFocused(event.type==="focus")}else if(!this.shadowRoot){var t
    arget=Polymer.dom(event).localTarget;if(!this.isLightDescendant(target)){this.fi
    re(event.type,{sourceEvent:event},{node:this,bubbles:event.bubbles,cancelable:ev
    ent.cancelable})}}},_disabledChanged:function(disabled,old){this.setAttribute("a
    ria-disabled",disabled?"true":"false");this.style.pointerEvents=disabled?"none":
    "";if(disabled){this._oldTabIndex=this.tabIndex;this._setFocused(false);this.tab
    Index=-1;this.blur()}else if(this._oldTabIndex!==undefined){this.tabIndex=this._
    oldTabIndex}},_changedControlState:function(){if(this._controlStateChanged){this
    ._controlStateChanged()}}};Polymer.IronButtonStateImpl={properties:{pressed:{typ
    e:Boolean,readOnly:true,value:false,reflectToAttribute:true,observer:"_pressedCh
    anged"},toggles:{type:Boolean,value:false,reflectToAttribute:true},active:{type:
    Boolean,value:false,notify:true,reflectToAttribute:true},pointerDown:{type:Boole
    an,readOnly:true,value:false},receivedFocusFromKeyboard:{type:Boolean,readOnly:t
    rue},ariaActiveAttribute:{type:String,value:"aria-pressed",observer:"_ariaActive
    AttributeChanged"}},listeners:{down:"_downHandler",up:"_upHandler",tap:"_tapHand
    ler"},observers:["_detectKeyboardFocus(focused)","_activeChanged(active, ariaAct
    iveAttribute)"],keyBindings:{"enter:keydown":"_asyncClick","space:keydown":"_spa
    ceKeyDownHandler","space:keyup":"_spaceKeyUpHandler"},_mouseEventRe:/^mouse/,_ta
    pHandler:function(){if(this.toggles){this._userActivate(!this.active)}else{this.
    active=false}},_detectKeyboardFocus:function(focused){this._setReceivedFocusFrom
    Keyboard(!this.pointerDown&&focused)},_userActivate:function(active){if(this.act
    ive!==active){this.active=active;this.fire("change")}},_downHandler:function(eve
    nt){this._setPointerDown(true);this._setPressed(true);this._setReceivedFocusFrom
    Keyboard(false)},_upHandler:function(){this._setPointerDown(false);this._setPres
    sed(false)},_spaceKeyDownHandler:function(event){var keyboardEvent=event.detail.
    keyboardEvent;var target=Polymer.dom(keyboardEvent).localTarget;if(this.isLightD
    escendant(target))return;keyboardEvent.preventDefault();keyboardEvent.stopImmedi
    atePropagation();this._setPressed(true)},_spaceKeyUpHandler:function(event){var 
    keyboardEvent=event.detail.keyboardEvent;var target=Polymer.dom(keyboardEvent).l
    ocalTarget;if(this.isLightDescendant(target))return;if(this.pressed){this._async
    Click()}this._setPressed(false)},_asyncClick:function(){this.async(function(){th
    is.click()},1)},_pressedChanged:function(pressed){this._changedButtonState()},_a
    riaActiveAttributeChanged:function(value,oldValue){if(oldValue&&oldValue!=value&
    &this.hasAttribute(oldValue)){this.removeAttribute(oldValue)}},_activeChanged:fu
    nction(active,ariaActiveAttribute){if(this.toggles){this.setAttribute(this.ariaA
    ctiveAttribute,active?"true":"false")}else{this.removeAttribute(this.ariaActiveA
    ttribute)}this._changedButtonState()},_controlStateChanged:function(){if(this.di
    sabled){this._setPressed(false)}else{this._changedButtonState()}},_changedButton
    State:function(){if(this._buttonStateChanged){this._buttonStateChanged()}}};Poly
    mer.IronButtonState=[Polymer.IronA11yKeysBehavior,Polymer.IronButtonStateImpl];(
    function(){var Utility={distance:function(x1,y1,x2,y2){var xDelta=x1-x2;var yDel
    ta=y1-y2;return Math.sqrt(xDelta*xDelta+yDelta*yDelta)},now:window.performance&&
    window.performance.now?window.performance.now.bind(window.performance):Date.now}
    ;function ElementMetrics(element){this.element=element;this.width=this.boundingR
    ect.width;this.height=this.boundingRect.height;this.size=Math.max(this.width,thi
    s.height)}ElementMetrics.prototype={get boundingRect(){return this.element.getBo
    undingClientRect()},furthestCornerDistanceFrom:function(x,y){var topLeft=Utility
    .distance(x,y,0,0);var topRight=Utility.distance(x,y,this.width,0);var bottomLef
    t=Utility.distance(x,y,0,this.height);var bottomRight=Utility.distance(x,y,this.
    width,this.height);return Math.max(topLeft,topRight,bottomLeft,bottomRight)}};fu
    nction Ripple(element){this.element=element;this.color=window.getComputedStyle(e
    lement).color;this.wave=document.createElement("div");this.waveContainer=documen
    t.createElement("div");this.wave.style.backgroundColor=this.color;this.wave.clas
    sList.add("wave");this.waveContainer.classList.add("wave-container");Polymer.dom
    (this.waveContainer).appendChild(this.wave);this.resetInteractionState()}Ripple.
    MAX_RADIUS=300;Ripple.prototype={get recenters(){return this.element.recenters},
    get center(){return this.element.center},get mouseDownElapsed(){var elapsed;if(!
    this.mouseDownStart){return 0}elapsed=Utility.now()-this.mouseDownStart;if(this.
    mouseUpStart){elapsed-=this.mouseUpElapsed}return elapsed},get mouseUpElapsed(){
    return this.mouseUpStart?Utility.now()-this.mouseUpStart:0},get mouseDownElapsed
    Seconds(){return this.mouseDownElapsed/1e3},get mouseUpElapsedSeconds(){return t
    his.mouseUpElapsed/1e3},get mouseInteractionSeconds(){return this.mouseDownElaps
    edSeconds+this.mouseUpElapsedSeconds},get initialOpacity(){return this.element.i
    nitialOpacity},get opacityDecayVelocity(){return this.element.opacityDecayVeloci
    ty},get radius(){var width2=this.containerMetrics.width*this.containerMetrics.wi
    dth;var height2=this.containerMetrics.height*this.containerMetrics.height;var wa
    veRadius=Math.min(Math.sqrt(width2+height2),Ripple.MAX_RADIUS)*1.1+5;var duratio
    n=1.1-.2*(waveRadius/Ripple.MAX_RADIUS);var timeNow=this.mouseInteractionSeconds
    /duration;var size=waveRadius*(1-Math.pow(80,-timeNow));return Math.abs(size)},g
    et opacity(){if(!this.mouseUpStart){return this.initialOpacity}return Math.max(0
    ,this.initialOpacity-this.mouseUpElapsedSeconds*this.opacityDecayVelocity)},get 
    outerOpacity(){var outerOpacity=this.mouseUpElapsedSeconds*.3;var waveOpacity=th
    is.opacity;return Math.max(0,Math.min(outerOpacity,waveOpacity))},get isOpacityF
    ullyDecayed(){return this.opacity<.01&&this.radius>=Math.min(this.maxRadius,Ripp
    le.MAX_RADIUS)},get isRestingAtMaxRadius(){return this.opacity>=this.initialOpac
    ity&&this.radius>=Math.min(this.maxRadius,Ripple.MAX_RADIUS)},get isAnimationCom
    plete(){return this.mouseUpStart?this.isOpacityFullyDecayed:this.isRestingAtMaxR
    adius},get translationFraction(){return Math.min(1,this.radius/this.containerMet
    rics.size*2/Math.sqrt(2))},get xNow(){if(this.xEnd){return this.xStart+this.tran
    slationFraction*(this.xEnd-this.xStart)}return this.xStart},get yNow(){if(this.y
    End){return this.yStart+this.translationFraction*(this.yEnd-this.yStart)}return 
    this.yStart},get isMouseDown(){return this.mouseDownStart&&!this.mouseUpStart},r
    esetInteractionState:function(){this.maxRadius=0;this.mouseDownStart=0;this.mous
    eUpStart=0;this.xStart=0;this.yStart=0;this.xEnd=0;this.yEnd=0;this.slideDistanc
    e=0;this.containerMetrics=new ElementMetrics(this.element)},draw:function(){var 
    scale;var translateString;var dx;var dy;this.wave.style.opacity=this.opacity;sca
    le=this.radius/(this.containerMetrics.size/2);dx=this.xNow-this.containerMetrics
    .width/2;dy=this.yNow-this.containerMetrics.height/2;this.waveContainer.style.we
    bkitTransform="translate("+dx+"px, "+dy+"px)";this.waveContainer.style.transform
    ="translate3d("+dx+"px, "+dy+"px, 0)";this.wave.style.webkitTransform="scale("+s
    cale+","+scale+")";this.wave.style.transform="scale3d("+scale+","+scale+",1)"},d
    ownAction:function(event){var xCenter=this.containerMetrics.width/2;var yCenter=
    this.containerMetrics.height/2;this.resetInteractionState();this.mouseDownStart=
    Utility.now();if(this.center){this.xStart=xCenter;this.yStart=yCenter;this.slide
    Distance=Utility.distance(this.xStart,this.yStart,this.xEnd,this.yEnd)}else{this
    .xStart=event?event.detail.x-this.containerMetrics.boundingRect.left:this.contai
    nerMetrics.width/2;this.yStart=event?event.detail.y-this.containerMetrics.boundi
    ngRect.top:this.containerMetrics.height/2}if(this.recenters){this.xEnd=xCenter;t
    his.yEnd=yCenter;this.slideDistance=Utility.distance(this.xStart,this.yStart,thi
    s.xEnd,this.yEnd)}this.maxRadius=this.containerMetrics.furthestCornerDistanceFro
    m(this.xStart,this.yStart);this.waveContainer.style.top=(this.containerMetrics.h
    eight-this.containerMetrics.size)/2+"px";this.waveContainer.style.left=(this.con
    tainerMetrics.width-this.containerMetrics.size)/2+"px";this.waveContainer.style.
    width=this.containerMetrics.size+"px";this.waveContainer.style.height=this.conta
    inerMetrics.size+"px"},upAction:function(event){if(!this.isMouseDown){return}thi
    s.mouseUpStart=Utility.now()},remove:function(){Polymer.dom(this.waveContainer.p
    arentNode).removeChild(this.waveContainer)}};Polymer({is:"paper-ripple",behavior
    s:[Polymer.IronA11yKeysBehavior],properties:{initialOpacity:{type:Number,value:.
    25},opacityDecayVelocity:{type:Number,value:.8},recenters:{type:Boolean,value:fa
    lse},center:{type:Boolean,value:false},ripples:{type:Array,value:function(){retu
    rn[]}},animating:{type:Boolean,readOnly:true,reflectToAttribute:true,value:false
    },holdDown:{type:Boolean,value:false,observer:"_holdDownChanged"},noink:{type:Bo
    olean,value:false},_animating:{type:Boolean},_boundAnimate:{type:Function,value:
    function(){return this.animate.bind(this)}}},get target(){return this.keyEventTa
    rget},keyBindings:{"enter:keydown":"_onEnterKeydown","space:keydown":"_onSpaceKe
    ydown","space:keyup":"_onSpaceKeyup"},attached:function(){if(this.parentNode.nod
    eType==11){this.keyEventTarget=Polymer.dom(this).getOwnerRoot().host}else{this.k
    eyEventTarget=this.parentNode}var keyEventTarget=this.keyEventTarget;this.listen
    (keyEventTarget,"up","uiUpAction");this.listen(keyEventTarget,"down","uiDownActi
    on")},detached:function(){this.unlisten(this.keyEventTarget,"up","uiUpAction");t
    his.unlisten(this.keyEventTarget,"down","uiDownAction");this.keyEventTarget=null
    },get shouldKeepAnimating(){for(var index=0;index<this.ripples.length;++index){i
    f(!this.ripples[index].isAnimationComplete){return true}}return false},simulated
    Ripple:function(){this.downAction(null);this.async(function(){this.upAction()},1
    )},uiDownAction:function(event){if(!this.noink){this.downAction(event)}},downAct
    ion:function(event){if(this.holdDown&&this.ripples.length>0){return}var ripple=t
    his.addRipple();ripple.downAction(event);if(!this._animating){this._animating=tr
    ue;this.animate()}},uiUpAction:function(event){if(!this.noink){this.upAction(eve
    nt)}},upAction:function(event){if(this.holdDown){return}this.ripples.forEach(fun
    ction(ripple){ripple.upAction(event)});this._animating=true;this.animate()},onAn
    imationComplete:function(){this._animating=false;this.$.background.style.backgro
    undColor=null;this.fire("transitionend")},addRipple:function(){var ripple=new Ri
    pple(this);Polymer.dom(this.$.waves).appendChild(ripple.waveContainer);this.$.ba
    ckground.style.backgroundColor=ripple.color;this.ripples.push(ripple);this._setA
    nimating(true);return ripple},removeRipple:function(ripple){var rippleIndex=this
    .ripples.indexOf(ripple);if(rippleIndex<0){return}this.ripples.splice(rippleInde
    x,1);ripple.remove();if(!this.ripples.length){this._setAnimating(false)}},animat
    e:function(){if(!this._animating){return}var index;var ripple;for(index=0;index<
    this.ripples.length;++index){ripple=this.ripples[index];ripple.draw();this.$.bac
    kground.style.opacity=ripple.outerOpacity;if(ripple.isOpacityFullyDecayed&&!ripp
    le.isRestingAtMaxRadius){this.removeRipple(ripple)}}if(!this.shouldKeepAnimating
    &&this.ripples.length===0){this.onAnimationComplete()}else{window.requestAnimati
    onFrame(this._boundAnimate)}},_onEnterKeydown:function(){this.uiDownAction();thi
    s.async(this.uiUpAction,1)},_onSpaceKeydown:function(){this.uiDownAction()},_onS
    paceKeyup:function(){this.uiUpAction()},_holdDownChanged:function(newVal,oldVal)
    {if(oldVal===undefined){return}if(newVal){this.downAction()}else{this.upAction()
    }}})})();Polymer.PaperRippleBehavior={properties:{noink:{type:Boolean,observer:"
    _noinkChanged"},_rippleContainer:{type:Object}},_buttonStateChanged:function(){i
    f(this.focused){this.ensureRipple()}},_downHandler:function(event){Polymer.IronB
    uttonStateImpl._downHandler.call(this,event);if(this.pressed){this.ensureRipple(
    event)}},ensureRipple:function(optTriggeringEvent){if(!this.hasRipple()){this._r
    ipple=this._createRipple();this._ripple.noink=this.noink;var rippleContainer=thi
    s._rippleContainer||this.root;if(rippleContainer){Polymer.dom(rippleContainer).a
    ppendChild(this._ripple)}if(optTriggeringEvent){var domContainer=Polymer.dom(thi
    s._rippleContainer||this);var target=Polymer.dom(optTriggeringEvent).rootTarget;
    if(domContainer.deepContains(target)){this._ripple.uiDownAction(optTriggeringEve
    nt)}}}},getRipple:function(){this.ensureRipple();return this._ripple},hasRipple:
    function(){return Boolean(this._ripple)},_createRipple:function(){return documen
    t.createElement("paper-ripple")},_noinkChanged:function(noink){if(this.hasRipple
    ()){this._ripple.noink=noink}}};Polymer.PaperButtonBehaviorImpl={properties:{ele
    vation:{type:Number,reflectToAttribute:true,readOnly:true}},observers:["_calcula
    teElevation(focused, disabled, active, pressed, receivedFocusFromKeyboard)","_co
    mputeKeyboardClass(receivedFocusFromKeyboard)"],hostAttributes:{role:"button",ta
    bindex:"0",animated:true},_calculateElevation:function(){var e=1;if(this.disable
    d){e=0}else if(this.active||this.pressed){e=4}else if(this.receivedFocusFromKeyb
    oard){e=3}this._setElevation(e)},_computeKeyboardClass:function(receivedFocusFro
    mKeyboard){this.toggleClass("keyboard-focus",receivedFocusFromKeyboard)},_spaceK
    eyDownHandler:function(event){Polymer.IronButtonStateImpl._spaceKeyDownHandler.c
    all(this,event);if(this.hasRipple()&&this.getRipple().ripples.length<1){this._ri
    pple.uiDownAction()}},_spaceKeyUpHandler:function(event){Polymer.IronButtonState
    Impl._spaceKeyUpHandler.call(this,event);if(this.hasRipple()){this._ripple.uiUpA
    ction()}}};Polymer.PaperButtonBehavior=[Polymer.IronButtonState,Polymer.IronCont
    rolState,Polymer.PaperRippleBehavior,Polymer.PaperButtonBehaviorImpl];Polymer({i
    s:"paper-button",behaviors:[Polymer.PaperButtonBehavior],properties:{raised:{typ
    e:Boolean,reflectToAttribute:true,value:false,observer:"_calculateElevation"}},_
    calculateElevation:function(){if(!this.raised){this._setElevation(0)}else{Polyme
    r.PaperButtonBehaviorImpl._calculateElevation.apply(this)}}});Polymer({is:"paper
    -icon-button-light","extends":"button",behaviors:[Polymer.PaperRippleBehavior],l
    isteners:{down:"_rippleDown",up:"_rippleUp",focus:"_rippleDown",blur:"_rippleUp"
    },_rippleDown:function(){this.getRipple().downAction()},_rippleUp:function(){thi
    s.getRipple().upAction()},ensureRipple:function(var_args){var lastRipple=this._r
    ipple;Polymer.PaperRippleBehavior.ensureRipple.apply(this,arguments);if(this._ri
    pple&&this._ripple!==lastRipple){this._ripple.center=true;this._ripple.classList
    .add("circle")}}});Polymer.IronRangeBehavior={properties:{value:{type:Number,val
    ue:0,notify:true,reflectToAttribute:true},min:{type:Number,value:0,notify:true},
    max:{type:Number,value:100,notify:true},step:{type:Number,value:1,notify:true},r
    atio:{type:Number,value:0,readOnly:true,notify:true}},observers:["_update(value,
     min, max, step)"],_calcRatio:function(value){return(this._clampValue(value)-thi
    s.min)/(this.max-this.min)},_clampValue:function(value){return Math.min(this.max
    ,Math.max(this.min,this._calcStep(value)))},_calcStep:function(value){value=pars
    eFloat(value);if(!this.step){return value}var numSteps=Math.round((value-this.mi
    n)/this.step);if(this.step<1){return numSteps/(1/this.step)+this.min}else{return
     numSteps*this.step+this.min}},_validateValue:function(){var v=this._clampValue(
    this.value);this.value=this.oldValue=isNaN(v)?this.oldValue:v;return this.value!
    ==v},_update:function(){this._validateValue();this._setRatio(this._calcRatio(thi
    s.value)*100)}};Polymer({is:"paper-progress",behaviors:[Polymer.IronRangeBehavio
    r],properties:{secondaryProgress:{type:Number,value:0},secondaryRatio:{type:Numb
    er,value:0,readOnly:true},indeterminate:{type:Boolean,value:false,observer:"_tog
    gleIndeterminate"},disabled:{type:Boolean,value:false,reflectToAttribute:true,ob
    server:"_disabledChanged"}},observers:["_progressChanged(secondaryProgress, valu
    e, min, max)"],hostAttributes:{role:"progressbar"},_toggleIndeterminate:function
    (indeterminate){this.toggleClass("indeterminate",indeterminate,this.$.primaryPro
    gress)},_transformProgress:function(progress,ratio){var transform="scaleX("+rati
    o/100+")";progress.style.transform=progress.style.webkitTransform=transform},_ma
    inRatioChanged:function(ratio){this._transformProgress(this.$.primaryProgress,ra
    tio)},_progressChanged:function(secondaryProgress,value,min,max){secondaryProgre
    ss=this._clampValue(secondaryProgress);value=this._clampValue(value);var seconda
    ryRatio=this._calcRatio(secondaryProgress)*100;var mainRatio=this._calcRatio(val
    ue)*100;this._setSecondaryRatio(secondaryRatio);this._transformProgress(this.$.s
    econdaryProgress,secondaryRatio);this._transformProgress(this.$.primaryProgress,
    mainRatio);this.secondaryProgress=secondaryProgress;this.setAttribute("aria-valu
    enow",value);this.setAttribute("aria-valuemin",min);this.setAttribute("aria-valu
    emax",max)},_disabledChanged:function(disabled){this.setAttribute("aria-disabled
    ",disabled?"true":"false")},_hideSecondaryProgress:function(secondaryRatio){retu
    rn secondaryRatio===0}});Polymer({is:"iron-iconset-svg",properties:{name:{type:S
    tring,observer:"_nameChanged"},size:{type:Number,value:24},rtlMirroring:{type:Bo
    olean,value:false}},_targetIsRTL:function(target){if(target&&target.nodeType!==N
    ode.ELEMENT_NODE){target=target.host}return target&&window.getComputedStyle(targ
    et)["direction"]==="rtl"},attached:function(){this.style.display="none"},getIcon
    Names:function(){this._icons=this._createIconMap();return Object.keys(this._icon
    s).map(function(n){return this.name+":"+n},this)},applyIcon:function(element,ico
    nName){element=element.root||element;this.removeIcon(element);var svg=this._clon
    eIcon(iconName,this.rtlMirroring&&this._targetIsRTL(element));if(svg){var pde=Po
    lymer.dom(element);pde.insertBefore(svg,pde.childNodes[0]);return element._svgIc
    on=svg}return null},removeIcon:function(element){element=element.root||element;i
    f(element._svgIcon){Polymer.dom(element).removeChild(element._svgIcon);element._
    svgIcon=null}},_nameChanged:function(){new Polymer.IronMeta({type:"iconset",key:
    this.name,value:this});this.async(function(){this.fire("iron-iconset-added",this
    ,{node:window})})},_createIconMap:function(){var icons=Object.create(null);Polym
    er.dom(this).querySelectorAll("[id]").forEach(function(icon){icons[icon.id]=icon
    });return icons},_cloneIcon:function(id,mirrorAllowed){this._icons=this._icons||
    this._createIconMap();return this._prepareSvgClone(this._icons[id],this.size,mir
    rorAllowed)},_prepareSvgClone:function(sourceSvg,size,mirrorAllowed){if(sourceSv
    g){var content=sourceSvg.cloneNode(true),svg=document.createElementNS("http://ww
    w.w3.org/2000/svg","svg"),viewBox=content.getAttribute("viewBox")||"0 0 "+size+"
     "+size,cssText="pointer-events: none; display: block; width: 100%; height: 100%
    ;";if(mirrorAllowed&&content.hasAttribute("mirror-in-rtl")){cssText+="-webkit-tr
    ansform:scale(-1,1);transform:scale(-1,1);"}svg.setAttribute("viewBox",viewBox);
    svg.setAttribute("preserveAspectRatio","xMidYMid meet");svg.style.cssText=cssTex
    t;svg.appendChild(content).removeAttribute("id");return svg}return null}}); | 41 var ActionLink=document.registerElement("action-link",{prototype:{__proto__:HTML
    AnchorElement.prototype,createdCallback:function(){this.tabIndex=this.disabled?-
    1:0;if(!this.hasAttribute("role"))this.setAttribute("role","link");this.addEvent
    Listener("keydown",function(e){if(!this.disabled&&e.key=="Enter"&&!this.href){wi
    ndow.setTimeout(this.click.bind(this),0)}});function preventDefault(e){e.prevent
    Default()}function removePreventDefault(){document.removeEventListener("selectst
    art",preventDefault);document.removeEventListener("mouseup",removePreventDefault
    )}this.addEventListener("mousedown",function(){document.addEventListener("select
    start",preventDefault);document.addEventListener("mouseup",removePreventDefault)
    ;if(document.activeElement!=this)this.classList.add("no-outline")});this.addEven
    tListener("blur",function(){this.classList.remove("no-outline")})},set disabled(
    disabled){if(disabled)HTMLAnchorElement.prototype.setAttribute.call(this,"disabl
    ed","");else HTMLAnchorElement.prototype.removeAttribute.call(this,"disabled");t
    his.tabIndex=disabled?-1:0},get disabled(){return this.hasAttribute("disabled")}
    ,setAttribute:function(attr,val){if(attr.toLowerCase()=="disabled")this.disabled
    =true;else HTMLAnchorElement.prototype.setAttribute.apply(this,arguments)},remov
    eAttribute:function(attr){if(attr.toLowerCase()=="disabled")this.disabled=false;
    else HTMLAnchorElement.prototype.removeAttribute.apply(this,arguments)}},extends
    :"a"});(function(){var metaDatas={};var metaArrays={};var singleton=null;Polymer
    .IronMeta=Polymer({is:"iron-meta",properties:{type:{type:String,value:"default",
    observer:"_typeChanged"},key:{type:String,observer:"_keyChanged"},value:{type:Ob
    ject,notify:true,observer:"_valueChanged"},self:{type:Boolean,observer:"_selfCha
    nged"},list:{type:Array,notify:true}},hostAttributes:{hidden:true},factoryImpl:f
    unction(config){if(config){for(var n in config){switch(n){case"type":case"key":c
    ase"value":this[n]=config[n];break}}}},created:function(){this._metaDatas=metaDa
    tas;this._metaArrays=metaArrays},_keyChanged:function(key,old){this._resetRegist
    ration(old)},_valueChanged:function(value){this._resetRegistration(this.key)},_s
    elfChanged:function(self){if(self){this.value=this}},_typeChanged:function(type)
    {this._unregisterKey(this.key);if(!metaDatas[type]){metaDatas[type]={}}this._met
    aData=metaDatas[type];if(!metaArrays[type]){metaArrays[type]=[]}this.list=metaAr
    rays[type];this._registerKeyValue(this.key,this.value)},byKey:function(key){retu
    rn this._metaData&&this._metaData[key]},_resetRegistration:function(oldKey){this
    ._unregisterKey(oldKey);this._registerKeyValue(this.key,this.value)},_unregister
    Key:function(key){this._unregister(key,this._metaData,this.list)},_registerKeyVa
    lue:function(key,value){this._register(key,value,this._metaData,this.list)},_reg
    ister:function(key,value,data,list){if(key&&data&&value!==undefined){data[key]=v
    alue;list.push(value)}},_unregister:function(key,data,list){if(key&&data){if(key
     in data){var value=data[key];delete data[key];this.arrayDelete(list,value)}}}})
    ;Polymer.IronMeta.getIronMeta=function getIronMeta(){if(singleton===null){single
    ton=new Polymer.IronMeta}return singleton};Polymer.IronMetaQuery=Polymer({is:"ir
    on-meta-query",properties:{type:{type:String,value:"default",observer:"_typeChan
    ged"},key:{type:String,observer:"_keyChanged"},value:{type:Object,notify:true,re
    adOnly:true},list:{type:Array,notify:true}},factoryImpl:function(config){if(conf
    ig){for(var n in config){switch(n){case"type":case"key":this[n]=config[n];break}
    }}},created:function(){this._metaDatas=metaDatas;this._metaArrays=metaArrays},_k
    eyChanged:function(key){this._setValue(this._metaData&&this._metaData[key])},_ty
    peChanged:function(type){this._metaData=metaDatas[type];this.list=metaArrays[typ
    e];if(this.key){this._keyChanged(this.key)}},byKey:function(key){return this._me
    taData&&this._metaData[key]}})})();Polymer({is:"iron-icon",properties:{icon:{typ
    e:String,observer:"_iconChanged"},theme:{type:String,observer:"_updateIcon"},src
    :{type:String,observer:"_srcChanged"},_meta:{value:Polymer.Base.create("iron-met
    a",{type:"iconset"}),observer:"_updateIcon"}},_DEFAULT_ICONSET:"icons",_iconChan
    ged:function(icon){var parts=(icon||"").split(":");this._iconName=parts.pop();th
    is._iconsetName=parts.pop()||this._DEFAULT_ICONSET;this._updateIcon()},_srcChang
    ed:function(src){this._updateIcon()},_usesIconset:function(){return this.icon||!
    this.src},_updateIcon:function(){if(this._usesIconset()){if(this._img&&this._img
    .parentNode){Polymer.dom(this.root).removeChild(this._img)}if(this._iconName==="
    "){if(this._iconset){this._iconset.removeIcon(this)}}else if(this._iconsetName&&
    this._meta){this._iconset=this._meta.byKey(this._iconsetName);if(this._iconset){
    this._iconset.applyIcon(this,this._iconName,this.theme);this.unlisten(window,"ir
    on-iconset-added","_updateIcon")}else{this.listen(window,"iron-iconset-added","_
    updateIcon")}}}else{if(this._iconset){this._iconset.removeIcon(this)}if(!this._i
    mg){this._img=document.createElement("img");this._img.style.width="100%";this._i
    mg.style.height="100%";this._img.draggable=false}this._img.src=this.src;Polymer.
    dom(this.root).appendChild(this._img)}}});Polymer.IronControlState={properties:{
    focused:{type:Boolean,value:false,notify:true,readOnly:true,reflectToAttribute:t
    rue},disabled:{type:Boolean,value:false,notify:true,observer:"_disabledChanged",
    reflectToAttribute:true},_oldTabIndex:{type:Number},_boundFocusBlurHandler:{type
    :Function,value:function(){return this._focusBlurHandler.bind(this)}}},observers
    :["_changedControlState(focused, disabled)"],ready:function(){this.addEventListe
    ner("focus",this._boundFocusBlurHandler,true);this.addEventListener("blur",this.
    _boundFocusBlurHandler,true)},_focusBlurHandler:function(event){if(event.target=
    ==this){this._setFocused(event.type==="focus")}else if(!this.shadowRoot){var tar
    get=Polymer.dom(event).localTarget;if(!this.isLightDescendant(target)){this.fire
    (event.type,{sourceEvent:event},{node:this,bubbles:event.bubbles,cancelable:even
    t.cancelable})}}},_disabledChanged:function(disabled,old){this.setAttribute("ari
    a-disabled",disabled?"true":"false");this.style.pointerEvents=disabled?"none":""
    ;if(disabled){this._oldTabIndex=this.tabIndex;this._setFocused(false);this.tabIn
    dex=-1;this.blur()}else if(this._oldTabIndex!==undefined){this.tabIndex=this._ol
    dTabIndex}},_changedControlState:function(){if(this._controlStateChanged){this._
    controlStateChanged()}}};Polymer.IronButtonStateImpl={properties:{pressed:{type:
    Boolean,readOnly:true,value:false,reflectToAttribute:true,observer:"_pressedChan
    ged"},toggles:{type:Boolean,value:false,reflectToAttribute:true},active:{type:Bo
    olean,value:false,notify:true,reflectToAttribute:true},pointerDown:{type:Boolean
    ,readOnly:true,value:false},receivedFocusFromKeyboard:{type:Boolean,readOnly:tru
    e},ariaActiveAttribute:{type:String,value:"aria-pressed",observer:"_ariaActiveAt
    tributeChanged"}},listeners:{down:"_downHandler",up:"_upHandler",tap:"_tapHandle
    r"},observers:["_detectKeyboardFocus(focused)","_activeChanged(active, ariaActiv
    eAttribute)"],keyBindings:{"enter:keydown":"_asyncClick","space:keydown":"_space
    KeyDownHandler","space:keyup":"_spaceKeyUpHandler"},_mouseEventRe:/^mouse/,_tapH
    andler:function(){if(this.toggles){this._userActivate(!this.active)}else{this.ac
    tive=false}},_detectKeyboardFocus:function(focused){this._setReceivedFocusFromKe
    yboard(!this.pointerDown&&focused)},_userActivate:function(active){if(this.activ
    e!==active){this.active=active;this.fire("change")}},_downHandler:function(event
    ){this._setPointerDown(true);this._setPressed(true);this._setReceivedFocusFromKe
    yboard(false)},_upHandler:function(){this._setPointerDown(false);this._setPresse
    d(false)},_spaceKeyDownHandler:function(event){var keyboardEvent=event.detail.ke
    yboardEvent;var target=Polymer.dom(keyboardEvent).localTarget;if(this.isLightDes
    cendant(target))return;keyboardEvent.preventDefault();keyboardEvent.stopImmediat
    ePropagation();this._setPressed(true)},_spaceKeyUpHandler:function(event){var ke
    yboardEvent=event.detail.keyboardEvent;var target=Polymer.dom(keyboardEvent).loc
    alTarget;if(this.isLightDescendant(target))return;if(this.pressed){this._asyncCl
    ick()}this._setPressed(false)},_asyncClick:function(){this.async(function(){this
    .click()},1)},_pressedChanged:function(pressed){this._changedButtonState()},_ari
    aActiveAttributeChanged:function(value,oldValue){if(oldValue&&oldValue!=value&&t
    his.hasAttribute(oldValue)){this.removeAttribute(oldValue)}},_activeChanged:func
    tion(active,ariaActiveAttribute){if(this.toggles){this.setAttribute(this.ariaAct
    iveAttribute,active?"true":"false")}else{this.removeAttribute(this.ariaActiveAtt
    ribute)}this._changedButtonState()},_controlStateChanged:function(){if(this.disa
    bled){this._setPressed(false)}else{this._changedButtonState()}},_changedButtonSt
    ate:function(){if(this._buttonStateChanged){this._buttonStateChanged()}}};Polyme
    r.IronButtonState=[Polymer.IronA11yKeysBehavior,Polymer.IronButtonStateImpl];(fu
    nction(){var Utility={distance:function(x1,y1,x2,y2){var xDelta=x1-x2;var yDelta
    =y1-y2;return Math.sqrt(xDelta*xDelta+yDelta*yDelta)},now:window.performance&&wi
    ndow.performance.now?window.performance.now.bind(window.performance):Date.now};f
    unction ElementMetrics(element){this.element=element;this.width=this.boundingRec
    t.width;this.height=this.boundingRect.height;this.size=Math.max(this.width,this.
    height)}ElementMetrics.prototype={get boundingRect(){return this.element.getBoun
    dingClientRect()},furthestCornerDistanceFrom:function(x,y){var topLeft=Utility.d
    istance(x,y,0,0);var topRight=Utility.distance(x,y,this.width,0);var bottomLeft=
    Utility.distance(x,y,0,this.height);var bottomRight=Utility.distance(x,y,this.wi
    dth,this.height);return Math.max(topLeft,topRight,bottomLeft,bottomRight)}};func
    tion Ripple(element){this.element=element;this.color=window.getComputedStyle(ele
    ment).color;this.wave=document.createElement("div");this.waveContainer=document.
    createElement("div");this.wave.style.backgroundColor=this.color;this.wave.classL
    ist.add("wave");this.waveContainer.classList.add("wave-container");Polymer.dom(t
    his.waveContainer).appendChild(this.wave);this.resetInteractionState()}Ripple.MA
    X_RADIUS=300;Ripple.prototype={get recenters(){return this.element.recenters},ge
    t center(){return this.element.center},get mouseDownElapsed(){var elapsed;if(!th
    is.mouseDownStart){return 0}elapsed=Utility.now()-this.mouseDownStart;if(this.mo
    useUpStart){elapsed-=this.mouseUpElapsed}return elapsed},get mouseUpElapsed(){re
    turn this.mouseUpStart?Utility.now()-this.mouseUpStart:0},get mouseDownElapsedSe
    conds(){return this.mouseDownElapsed/1e3},get mouseUpElapsedSeconds(){return thi
    s.mouseUpElapsed/1e3},get mouseInteractionSeconds(){return this.mouseDownElapsed
    Seconds+this.mouseUpElapsedSeconds},get initialOpacity(){return this.element.ini
    tialOpacity},get opacityDecayVelocity(){return this.element.opacityDecayVelocity
    },get radius(){var width2=this.containerMetrics.width*this.containerMetrics.widt
    h;var height2=this.containerMetrics.height*this.containerMetrics.height;var wave
    Radius=Math.min(Math.sqrt(width2+height2),Ripple.MAX_RADIUS)*1.1+5;var duration=
    1.1-.2*(waveRadius/Ripple.MAX_RADIUS);var timeNow=this.mouseInteractionSeconds/d
    uration;var size=waveRadius*(1-Math.pow(80,-timeNow));return Math.abs(size)},get
     opacity(){if(!this.mouseUpStart){return this.initialOpacity}return Math.max(0,t
    his.initialOpacity-this.mouseUpElapsedSeconds*this.opacityDecayVelocity)},get ou
    terOpacity(){var outerOpacity=this.mouseUpElapsedSeconds*.3;var waveOpacity=this
    .opacity;return Math.max(0,Math.min(outerOpacity,waveOpacity))},get isOpacityFul
    lyDecayed(){return this.opacity<.01&&this.radius>=Math.min(this.maxRadius,Ripple
    .MAX_RADIUS)},get isRestingAtMaxRadius(){return this.opacity>=this.initialOpacit
    y&&this.radius>=Math.min(this.maxRadius,Ripple.MAX_RADIUS)},get isAnimationCompl
    ete(){return this.mouseUpStart?this.isOpacityFullyDecayed:this.isRestingAtMaxRad
    ius},get translationFraction(){return Math.min(1,this.radius/this.containerMetri
    cs.size*2/Math.sqrt(2))},get xNow(){if(this.xEnd){return this.xStart+this.transl
    ationFraction*(this.xEnd-this.xStart)}return this.xStart},get yNow(){if(this.yEn
    d){return this.yStart+this.translationFraction*(this.yEnd-this.yStart)}return th
    is.yStart},get isMouseDown(){return this.mouseDownStart&&!this.mouseUpStart},res
    etInteractionState:function(){this.maxRadius=0;this.mouseDownStart=0;this.mouseU
    pStart=0;this.xStart=0;this.yStart=0;this.xEnd=0;this.yEnd=0;this.slideDistance=
    0;this.containerMetrics=new ElementMetrics(this.element)},draw:function(){var sc
    ale;var translateString;var dx;var dy;this.wave.style.opacity=this.opacity;scale
    =this.radius/(this.containerMetrics.size/2);dx=this.xNow-this.containerMetrics.w
    idth/2;dy=this.yNow-this.containerMetrics.height/2;this.waveContainer.style.webk
    itTransform="translate("+dx+"px, "+dy+"px)";this.waveContainer.style.transform="
    translate3d("+dx+"px, "+dy+"px, 0)";this.wave.style.webkitTransform="scale("+sca
    le+","+scale+")";this.wave.style.transform="scale3d("+scale+","+scale+",1)"},dow
    nAction:function(event){var xCenter=this.containerMetrics.width/2;var yCenter=th
    is.containerMetrics.height/2;this.resetInteractionState();this.mouseDownStart=Ut
    ility.now();if(this.center){this.xStart=xCenter;this.yStart=yCenter;this.slideDi
    stance=Utility.distance(this.xStart,this.yStart,this.xEnd,this.yEnd)}else{this.x
    Start=event?event.detail.x-this.containerMetrics.boundingRect.left:this.containe
    rMetrics.width/2;this.yStart=event?event.detail.y-this.containerMetrics.bounding
    Rect.top:this.containerMetrics.height/2}if(this.recenters){this.xEnd=xCenter;thi
    s.yEnd=yCenter;this.slideDistance=Utility.distance(this.xStart,this.yStart,this.
    xEnd,this.yEnd)}this.maxRadius=this.containerMetrics.furthestCornerDistanceFrom(
    this.xStart,this.yStart);this.waveContainer.style.top=(this.containerMetrics.hei
    ght-this.containerMetrics.size)/2+"px";this.waveContainer.style.left=(this.conta
    inerMetrics.width-this.containerMetrics.size)/2+"px";this.waveContainer.style.wi
    dth=this.containerMetrics.size+"px";this.waveContainer.style.height=this.contain
    erMetrics.size+"px"},upAction:function(event){if(!this.isMouseDown){return}this.
    mouseUpStart=Utility.now()},remove:function(){Polymer.dom(this.waveContainer.par
    entNode).removeChild(this.waveContainer)}};Polymer({is:"paper-ripple",behaviors:
    [Polymer.IronA11yKeysBehavior],properties:{initialOpacity:{type:Number,value:.25
    },opacityDecayVelocity:{type:Number,value:.8},recenters:{type:Boolean,value:fals
    e},center:{type:Boolean,value:false},ripples:{type:Array,value:function(){return
    []}},animating:{type:Boolean,readOnly:true,reflectToAttribute:true,value:false},
    holdDown:{type:Boolean,value:false,observer:"_holdDownChanged"},noink:{type:Bool
    ean,value:false},_animating:{type:Boolean},_boundAnimate:{type:Function,value:fu
    nction(){return this.animate.bind(this)}}},get target(){return this.keyEventTarg
    et},keyBindings:{"enter:keydown":"_onEnterKeydown","space:keydown":"_onSpaceKeyd
    own","space:keyup":"_onSpaceKeyup"},attached:function(){if(this.parentNode.nodeT
    ype==11){this.keyEventTarget=Polymer.dom(this).getOwnerRoot().host}else{this.key
    EventTarget=this.parentNode}var keyEventTarget=this.keyEventTarget;this.listen(k
    eyEventTarget,"up","uiUpAction");this.listen(keyEventTarget,"down","uiDownAction
    ")},detached:function(){this.unlisten(this.keyEventTarget,"up","uiUpAction");thi
    s.unlisten(this.keyEventTarget,"down","uiDownAction");this.keyEventTarget=null},
    get shouldKeepAnimating(){for(var index=0;index<this.ripples.length;++index){if(
    !this.ripples[index].isAnimationComplete){return true}}return false},simulatedRi
    pple:function(){this.downAction(null);this.async(function(){this.upAction()},1)}
    ,uiDownAction:function(event){if(!this.noink){this.downAction(event)}},downActio
    n:function(event){if(this.holdDown&&this.ripples.length>0){return}var ripple=thi
    s.addRipple();ripple.downAction(event);if(!this._animating){this._animating=true
    ;this.animate()}},uiUpAction:function(event){if(!this.noink){this.upAction(event
    )}},upAction:function(event){if(this.holdDown){return}this.ripples.forEach(funct
    ion(ripple){ripple.upAction(event)});this._animating=true;this.animate()},onAnim
    ationComplete:function(){this._animating=false;this.$.background.style.backgroun
    dColor=null;this.fire("transitionend")},addRipple:function(){var ripple=new Ripp
    le(this);Polymer.dom(this.$.waves).appendChild(ripple.waveContainer);this.$.back
    ground.style.backgroundColor=ripple.color;this.ripples.push(ripple);this._setAni
    mating(true);return ripple},removeRipple:function(ripple){var rippleIndex=this.r
    ipples.indexOf(ripple);if(rippleIndex<0){return}this.ripples.splice(rippleIndex,
    1);ripple.remove();if(!this.ripples.length){this._setAnimating(false)}},animate:
    function(){if(!this._animating){return}var index;var ripple;for(index=0;index<th
    is.ripples.length;++index){ripple=this.ripples[index];ripple.draw();this.$.backg
    round.style.opacity=ripple.outerOpacity;if(ripple.isOpacityFullyDecayed&&!ripple
    .isRestingAtMaxRadius){this.removeRipple(ripple)}}if(!this.shouldKeepAnimating&&
    this.ripples.length===0){this.onAnimationComplete()}else{window.requestAnimation
    Frame(this._boundAnimate)}},_onEnterKeydown:function(){this.uiDownAction();this.
    async(this.uiUpAction,1)},_onSpaceKeydown:function(){this.uiDownAction()},_onSpa
    ceKeyup:function(){this.uiUpAction()},_holdDownChanged:function(newVal,oldVal){i
    f(oldVal===undefined){return}if(newVal){this.downAction()}else{this.upAction()}}
    })})();Polymer.PaperRippleBehavior={properties:{noink:{type:Boolean,observer:"_n
    oinkChanged"},_rippleContainer:{type:Object}},_buttonStateChanged:function(){if(
    this.focused){this.ensureRipple()}},_downHandler:function(event){Polymer.IronBut
    tonStateImpl._downHandler.call(this,event);if(this.pressed){this.ensureRipple(ev
    ent)}},ensureRipple:function(optTriggeringEvent){if(!this.hasRipple()){this._rip
    ple=this._createRipple();this._ripple.noink=this.noink;var rippleContainer=this.
    _rippleContainer||this.root;if(rippleContainer){Polymer.dom(rippleContainer).app
    endChild(this._ripple)}if(optTriggeringEvent){var domContainer=Polymer.dom(this.
    _rippleContainer||this);var target=Polymer.dom(optTriggeringEvent).rootTarget;if
    (domContainer.deepContains(target)){this._ripple.uiDownAction(optTriggeringEvent
    )}}}},getRipple:function(){this.ensureRipple();return this._ripple},hasRipple:fu
    nction(){return Boolean(this._ripple)},_createRipple:function(){return document.
    createElement("paper-ripple")},_noinkChanged:function(noink){if(this.hasRipple()
    ){this._ripple.noink=noink}}};Polymer.PaperButtonBehaviorImpl={properties:{eleva
    tion:{type:Number,reflectToAttribute:true,readOnly:true}},observers:["_calculate
    Elevation(focused, disabled, active, pressed, receivedFocusFromKeyboard)","_comp
    uteKeyboardClass(receivedFocusFromKeyboard)"],hostAttributes:{role:"button",tabi
    ndex:"0",animated:true},_calculateElevation:function(){var e=1;if(this.disabled)
    {e=0}else if(this.active||this.pressed){e=4}else if(this.receivedFocusFromKeyboa
    rd){e=3}this._setElevation(e)},_computeKeyboardClass:function(receivedFocusFromK
    eyboard){this.toggleClass("keyboard-focus",receivedFocusFromKeyboard)},_spaceKey
    DownHandler:function(event){Polymer.IronButtonStateImpl._spaceKeyDownHandler.cal
    l(this,event);if(this.hasRipple()&&this.getRipple().ripples.length<1){this._ripp
    le.uiDownAction()}},_spaceKeyUpHandler:function(event){Polymer.IronButtonStateIm
    pl._spaceKeyUpHandler.call(this,event);if(this.hasRipple()){this._ripple.uiUpAct
    ion()}}};Polymer.PaperButtonBehavior=[Polymer.IronButtonState,Polymer.IronContro
    lState,Polymer.PaperRippleBehavior,Polymer.PaperButtonBehaviorImpl];Polymer({is:
    "paper-button",behaviors:[Polymer.PaperButtonBehavior],properties:{raised:{type:
    Boolean,reflectToAttribute:true,value:false,observer:"_calculateElevation"}},_ca
    lculateElevation:function(){if(!this.raised){this._setElevation(0)}else{Polymer.
    PaperButtonBehaviorImpl._calculateElevation.apply(this)}}});Polymer({is:"paper-i
    con-button-light",extends:"button",behaviors:[Polymer.PaperRippleBehavior],liste
    ners:{down:"_rippleDown",up:"_rippleUp",focus:"_rippleDown",blur:"_rippleUp"},_r
    ippleDown:function(){this.getRipple().downAction()},_rippleUp:function(){this.ge
    tRipple().upAction()},ensureRipple:function(var_args){var lastRipple=this._rippl
    e;Polymer.PaperRippleBehavior.ensureRipple.apply(this,arguments);if(this._ripple
    &&this._ripple!==lastRipple){this._ripple.center=true;this._ripple.classList.add
    ("circle")}}});Polymer.IronRangeBehavior={properties:{value:{type:Number,value:0
    ,notify:true,reflectToAttribute:true},min:{type:Number,value:0,notify:true},max:
    {type:Number,value:100,notify:true},step:{type:Number,value:1,notify:true},ratio
    :{type:Number,value:0,readOnly:true,notify:true}},observers:["_update(value, min
    , max, step)"],_calcRatio:function(value){return(this._clampValue(value)-this.mi
    n)/(this.max-this.min)},_clampValue:function(value){return Math.min(this.max,Mat
    h.max(this.min,this._calcStep(value)))},_calcStep:function(value){value=parseFlo
    at(value);if(!this.step){return value}var numSteps=Math.round((value-this.min)/t
    his.step);if(this.step<1){return numSteps/(1/this.step)+this.min}else{return num
    Steps*this.step+this.min}},_validateValue:function(){var v=this._clampValue(this
    .value);this.value=this.oldValue=isNaN(v)?this.oldValue:v;return this.value!==v}
    ,_update:function(){this._validateValue();this._setRatio(this._calcRatio(this.va
    lue)*100)}};Polymer({is:"paper-progress",behaviors:[Polymer.IronRangeBehavior],p
    roperties:{secondaryProgress:{type:Number,value:0},secondaryRatio:{type:Number,v
    alue:0,readOnly:true},indeterminate:{type:Boolean,value:false,observer:"_toggleI
    ndeterminate"},disabled:{type:Boolean,value:false,reflectToAttribute:true,observ
    er:"_disabledChanged"}},observers:["_progressChanged(secondaryProgress, value, m
    in, max)"],hostAttributes:{role:"progressbar"},_toggleIndeterminate:function(ind
    eterminate){this.toggleClass("indeterminate",indeterminate,this.$.primaryProgres
    s)},_transformProgress:function(progress,ratio){var transform="scaleX("+ratio/10
    0+")";progress.style.transform=progress.style.webkitTransform=transform},_mainRa
    tioChanged:function(ratio){this._transformProgress(this.$.primaryProgress,ratio)
    },_progressChanged:function(secondaryProgress,value,min,max){secondaryProgress=t
    his._clampValue(secondaryProgress);value=this._clampValue(value);var secondaryRa
    tio=this._calcRatio(secondaryProgress)*100;var mainRatio=this._calcRatio(value)*
    100;this._setSecondaryRatio(secondaryRatio);this._transformProgress(this.$.secon
    daryProgress,secondaryRatio);this._transformProgress(this.$.primaryProgress,main
    Ratio);this.secondaryProgress=secondaryProgress;this.setAttribute("aria-valuenow
    ",value);this.setAttribute("aria-valuemin",min);this.setAttribute("aria-valuemax
    ",max)},_disabledChanged:function(disabled){this.setAttribute("aria-disabled",di
    sabled?"true":"false")},_hideSecondaryProgress:function(secondaryRatio){return s
    econdaryRatio===0}});Polymer({is:"iron-iconset-svg",properties:{name:{type:Strin
    g,observer:"_nameChanged"},size:{type:Number,value:24},rtlMirroring:{type:Boolea
    n,value:false}},_targetIsRTL:function(target){if(target&&target.nodeType!==Node.
    ELEMENT_NODE){target=target.host}return target&&window.getComputedStyle(target)[
    "direction"]==="rtl"},attached:function(){this.style.display="none"},getIconName
    s:function(){this._icons=this._createIconMap();return Object.keys(this._icons).m
    ap(function(n){return this.name+":"+n},this)},applyIcon:function(element,iconNam
    e){element=element.root||element;this.removeIcon(element);var svg=this._cloneIco
    n(iconName,this.rtlMirroring&&this._targetIsRTL(element));if(svg){var pde=Polyme
    r.dom(element);pde.insertBefore(svg,pde.childNodes[0]);return element._svgIcon=s
    vg}return null},removeIcon:function(element){element=element.root||element;if(el
    ement._svgIcon){Polymer.dom(element).removeChild(element._svgIcon);element._svgI
    con=null}},_nameChanged:function(){new Polymer.IronMeta({type:"iconset",key:this
    .name,value:this});this.async(function(){this.fire("iron-iconset-added",this,{no
    de:window})})},_createIconMap:function(){var icons=Object.create(null);Polymer.d
    om(this).querySelectorAll("[id]").forEach(function(icon){icons[icon.id]=icon});r
    eturn icons},_cloneIcon:function(id,mirrorAllowed){this._icons=this._icons||this
    ._createIconMap();return this._prepareSvgClone(this._icons[id],this.size,mirrorA
    llowed)},_prepareSvgClone:function(sourceSvg,size,mirrorAllowed){if(sourceSvg){v
    ar content=sourceSvg.cloneNode(true),svg=document.createElementNS("http://www.w3
    .org/2000/svg","svg"),viewBox=content.getAttribute("viewBox")||"0 0 "+size+" "+s
    ize,cssText="pointer-events: none; display: block; width: 100%; height: 100%;";i
    f(mirrorAllowed&&content.hasAttribute("mirror-in-rtl")){cssText+="-webkit-transf
    orm:scale(-1,1);transform:scale(-1,1);"}svg.setAttribute("viewBox",viewBox);svg.
    setAttribute("preserveAspectRatio","xMidYMid meet");svg.style.cssText=cssText;sv
    g.appendChild(content).removeAttribute("id");return svg}return null}}); | 
| 43 // Copyright 2015 The Chromium Authors. All rights reserved. | 42 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 44 // Use of this source code is governed by a BSD-style license that can be | 43 // Use of this source code is governed by a BSD-style license that can be | 
| 45 // found in the LICENSE file. | 44 // found in the LICENSE file. | 
| 46 cr.define("downloads",function(){var Item=Polymer({is:"downloads-item",propertie
    s:{data:{type:Object},completelyOnDisk_:{computed:"computeCompletelyOnDisk_("+"d
    ata.state, data.file_externally_removed)",type:Boolean,value:true},controlledBy_
    :{computed:"computeControlledBy_(data.by_ext_id, data.by_ext_name)",type:String,
    value:""},isActive_:{computed:"computeIsActive_("+"data.state, data.file_externa
    lly_removed)",type:Boolean,value:true},isDangerous_:{computed:"computeIsDangerou
    s_(data.state)",type:Boolean,value:false},isMalware_:{computed:"computeIsMalware
    _(isDangerous_, data.danger_type)",type:Boolean,value:false},isInProgress_:{comp
    uted:"computeIsInProgress_(data.state)",type:Boolean,value:false},pauseOrResumeT
    ext_:{computed:"computePauseOrResumeText_(isInProgress_, data.resume)",type:Stri
    ng},showCancel_:{computed:"computeShowCancel_(data.state)",type:Boolean,value:fa
    lse},showProgress_:{computed:"computeShowProgress_(showCancel_, data.percent)",t
    ype:Boolean,value:false}},observers:["observeControlledBy_(controlledBy_)","obse
    rveIsDangerous_(isDangerous_, data)"],ready:function(){this.content=this.$.conte
    nt},chopUrl_:function(url){return url.slice(0,300)},computeClass_:function(){var
     classes=[];if(this.isActive_)classes.push("is-active");if(this.isDangerous_)cla
    sses.push("dangerous");if(this.showProgress_)classes.push("show-progress");retur
    n classes.join(" ")},computeCompletelyOnDisk_:function(){return this.data.state=
    =downloads.States.COMPLETE&&!this.data.file_externally_removed},computeControlle
    dBy_:function(){if(!this.data.by_ext_id||!this.data.by_ext_name)return"";var url
    ="chrome://extensions#"+this.data.by_ext_id;var name=this.data.by_ext_name;retur
    n loadTimeData.getStringF("controlledByUrl",url,HTMLEscape(name))},computeDanger
    Icon_:function(){return this.isDangerous_?"cr:warning":""},computeDate_:function
    (){assert(typeof this.data.hideDate=="boolean");if(this.data.hideDate)return"";r
    eturn assert(this.data.since_string||this.data.date_string)},computeDescription_
    :function(){var data=this.data;switch(data.state){case downloads.States.DANGEROU
    S:var fileName=data.file_name;switch(data.danger_type){case downloads.DangerType
    .DANGEROUS_FILE:return loadTimeData.getString("dangerFileDesc");case downloads.D
    angerType.DANGEROUS_URL:case downloads.DangerType.DANGEROUS_CONTENT:case downloa
    ds.DangerType.DANGEROUS_HOST:return loadTimeData.getString("dangerDownloadDesc")
    ;case downloads.DangerType.UNCOMMON_CONTENT:return loadTimeData.getString("dange
    rUncommonDesc");case downloads.DangerType.POTENTIALLY_UNWANTED:return loadTimeDa
    ta.getString("dangerSettingsDesc")}break;case downloads.States.IN_PROGRESS:case 
    downloads.States.PAUSED:return data.progress_status_text}return""},computeIsActi
    ve_:function(){return this.data.state!=downloads.States.CANCELLED&&this.data.sta
    te!=downloads.States.INTERRUPTED&&!this.data.file_externally_removed},computeIsD
    angerous_:function(){return this.data.state==downloads.States.DANGEROUS},compute
    IsInProgress_:function(){return this.data.state==downloads.States.IN_PROGRESS},c
    omputeIsMalware_:function(){return this.isDangerous_&&(this.data.danger_type==do
    wnloads.DangerType.DANGEROUS_CONTENT||this.data.danger_type==downloads.DangerTyp
    e.DANGEROUS_HOST||this.data.danger_type==downloads.DangerType.DANGEROUS_URL||thi
    s.data.danger_type==downloads.DangerType.POTENTIALLY_UNWANTED)},computePauseOrRe
    sumeText_:function(){if(this.isInProgress_)return loadTimeData.getString("contro
    lPause");if(this.data.resume)return loadTimeData.getString("controlResume");retu
    rn""},computeRemoveStyle_:function(){var canDelete=loadTimeData.getBoolean("allo
    wDeletingHistory");var hideRemove=this.isDangerous_||this.showCancel_||!canDelet
    e;return hideRemove?"visibility: hidden":""},computeShowCancel_:function(){retur
    n this.data.state==downloads.States.IN_PROGRESS||this.data.state==downloads.Stat
    es.PAUSED},computeShowProgress_:function(){return this.showCancel_&&this.data.pe
    rcent>=-1},computeTag_:function(){switch(this.data.state){case downloads.States.
    CANCELLED:return loadTimeData.getString("statusCancelled");case downloads.States
    .INTERRUPTED:return this.data.last_reason_text;case downloads.States.COMPLETE:re
    turn this.data.file_externally_removed?loadTimeData.getString("statusRemoved"):"
    "}return""},isIndeterminate_:function(){return this.data.percent==-1},observeCon
    trolledBy_:function(){this.$["controlled-by"].innerHTML=this.controlledBy_},obse
    rveIsDangerous_:function(){if(!this.data)return;if(this.isDangerous_){this.$.url
    .removeAttribute("href")}else{this.$.url.href=assert(this.data.url);var filePath
    =encodeURIComponent(this.data.file_path);var scaleFactor="?scale="+window.device
    PixelRatio+"x";this.$["file-icon"].src="chrome://fileicon/"+filePath+scaleFactor
    }},onCancelTap_:function(){downloads.ActionService.getInstance().cancel(this.dat
    a.id)},onDiscardDangerousTap_:function(){downloads.ActionService.getInstance().d
    iscardDangerous(this.data.id)},onDragStart_:function(e){e.preventDefault();downl
    oads.ActionService.getInstance().drag(this.data.id)},onFileLinkTap_:function(e){
    e.preventDefault();downloads.ActionService.getInstance().openFile(this.data.id)}
    ,onPauseOrResumeTap_:function(){if(this.isInProgress_)downloads.ActionService.ge
    tInstance().pause(this.data.id);else downloads.ActionService.getInstance().resum
    e(this.data.id)},onRemoveTap_:function(){downloads.ActionService.getInstance().r
    emove(this.data.id)},onRetryTap_:function(){downloads.ActionService.getInstance(
    ).download(this.data.url)},onSaveDangerousTap_:function(){downloads.ActionServic
    e.getInstance().saveDangerous(this.data.id)},onShowTap_:function(){downloads.Act
    ionService.getInstance().show(this.data.id)}});return{Item:Item}});Polymer.Paper
    ItemBehaviorImpl={hostAttributes:{role:"option",tabindex:"0"}};Polymer.PaperItem
    Behavior=[Polymer.IronButtonState,Polymer.IronControlState,Polymer.PaperItemBeha
    viorImpl];Polymer({is:"paper-item",behaviors:[Polymer.PaperItemBehavior]});Polym
    er.IronSelection=function(selectCallback){this.selection=[];this.selectCallback=
    selectCallback};Polymer.IronSelection.prototype={get:function(){return this.mult
    i?this.selection.slice():this.selection[0]},clear:function(excludes){this.select
    ion.slice().forEach(function(item){if(!excludes||excludes.indexOf(item)<0){this.
    setItemSelected(item,false)}},this)},isSelected:function(item){return this.selec
    tion.indexOf(item)>=0},setItemSelected:function(item,isSelected){if(item!=null){
    if(isSelected!==this.isSelected(item)){if(isSelected){this.selection.push(item)}
    else{var i=this.selection.indexOf(item);if(i>=0){this.selection.splice(i,1)}}if(
    this.selectCallback){this.selectCallback(item,isSelected)}}}},select:function(it
    em){if(this.multi){this.toggle(item)}else if(this.get()!==item){this.setItemSele
    cted(this.get(),false);this.setItemSelected(item,true)}},toggle:function(item){t
    his.setItemSelected(item,!this.isSelected(item))}};Polymer.IronSelectableBehavio
    r={properties:{attrForSelected:{type:String,value:null},selected:{type:String,no
    tify:true},selectedItem:{type:Object,readOnly:true,notify:true},activateEvent:{t
    ype:String,value:"tap",observer:"_activateEventChanged"},selectable:String,selec
    tedClass:{type:String,value:"iron-selected"},selectedAttribute:{type:String,valu
    e:null},fallbackSelection:{type:String,value:null},items:{type:Array,readOnly:tr
    ue,notify:true,value:function(){return[]}},_excludedLocalNames:{type:Object,valu
    e:function(){return{template:1}}}},observers:["_updateAttrForSelected(attrForSel
    ected)","_updateSelected(selected)","_checkFallback(fallbackSelection)"],created
    :function(){this._bindFilterItem=this._filterItem.bind(this);this._selection=new
     Polymer.IronSelection(this._applySelection.bind(this))},attached:function(){thi
    s._observer=this._observeItems(this);this._updateItems();if(!this._shouldUpdateS
    election){this._updateSelected()}this._addListener(this.activateEvent)},detached
    :function(){if(this._observer){Polymer.dom(this).unobserveNodes(this._observer)}
    this._removeListener(this.activateEvent)},indexOf:function(item){return this.ite
    ms.indexOf(item)},select:function(value){this.selected=value},selectPrevious:fun
    ction(){var length=this.items.length;var index=(Number(this._valueToIndex(this.s
    elected))-1+length)%length;this.selected=this._indexToValue(index)},selectNext:f
    unction(){var index=(Number(this._valueToIndex(this.selected))+1)%this.items.len
    gth;this.selected=this._indexToValue(index)},selectIndex:function(index){this.se
    lect(this._indexToValue(index))},forceSynchronousItemUpdate:function(){this._upd
    ateItems()},get _shouldUpdateSelection(){return this.selected!=null},_checkFallb
    ack:function(){if(this._shouldUpdateSelection){this._updateSelected()}},_addList
    ener:function(eventName){this.listen(this,eventName,"_activateHandler")},_remove
    Listener:function(eventName){this.unlisten(this,eventName,"_activateHandler")},_
    activateEventChanged:function(eventName,old){this._removeListener(old);this._add
    Listener(eventName)},_updateItems:function(){var nodes=Polymer.dom(this).queryDi
    stributedElements(this.selectable||"*");nodes=Array.prototype.filter.call(nodes,
    this._bindFilterItem);this._setItems(nodes)},_updateAttrForSelected:function(){i
    f(this._shouldUpdateSelection){this.selected=this._indexToValue(this.indexOf(thi
    s.selectedItem))}},_updateSelected:function(){this._selectSelected(this.selected
    )},_selectSelected:function(selected){this._selection.select(this._valueToItem(t
    his.selected));if(this.fallbackSelection&&this.items.length&&this._selection.get
    ()===undefined){this.selected=this.fallbackSelection}},_filterItem:function(node
    ){return!this._excludedLocalNames[node.localName]},_valueToItem:function(value){
    return value==null?null:this.items[this._valueToIndex(value)]},_valueToIndex:fun
    ction(value){if(this.attrForSelected){for(var i=0,item;item=this.items[i];i++){i
    f(this._valueForItem(item)==value){return i}}}else{return Number(value)}},_index
    ToValue:function(index){if(this.attrForSelected){var item=this.items[index];if(i
    tem){return this._valueForItem(item)}}else{return index}},_valueForItem:function
    (item){var propValue=item[Polymer.CaseMap.dashToCamelCase(this.attrForSelected)]
    ;return propValue!=undefined?propValue:item.getAttribute(this.attrForSelected)},
    _applySelection:function(item,isSelected){if(this.selectedClass){this.toggleClas
    s(this.selectedClass,isSelected,item)}if(this.selectedAttribute){this.toggleAttr
    ibute(this.selectedAttribute,isSelected,item)}this._selectionChange();this.fire(
    "iron-"+(isSelected?"select":"deselect"),{item:item})},_selectionChange:function
    (){this._setSelectedItem(this._selection.get())},_observeItems:function(node){re
    turn Polymer.dom(node).observeNodes(function(mutation){this._updateItems();if(th
    is._shouldUpdateSelection){this._updateSelected()}this.fire("iron-items-changed"
    ,mutation,{bubbles:false,cancelable:false})})},_activateHandler:function(e){var 
    t=e.target;var items=this.items;while(t&&t!=this){var i=items.indexOf(t);if(i>=0
    ){var value=this._indexToValue(i);this._itemActivate(value,t);return}t=t.parentN
    ode}},_itemActivate:function(value,item){if(!this.fire("iron-activate",{selected
    :value,item:item},{cancelable:true}).defaultPrevented){this.select(value)}}};Pol
    ymer.IronMultiSelectableBehaviorImpl={properties:{multi:{type:Boolean,value:fals
    e,observer:"multiChanged"},selectedValues:{type:Array,notify:true},selectedItems
    :{type:Array,readOnly:true,notify:true}},observers:["_updateSelected(selectedVal
    ues.splices)"],select:function(value){if(this.multi){if(this.selectedValues){thi
    s._toggleSelected(value)}else{this.selectedValues=[value]}}else{this.selected=va
    lue}},multiChanged:function(multi){this._selection.multi=multi},get _shouldUpdat
    eSelection(){return this.selected!=null||this.selectedValues!=null&&this.selecte
    dValues.length},_updateAttrForSelected:function(){if(!this.multi){Polymer.IronSe
    lectableBehavior._updateAttrForSelected.apply(this)}else if(this._shouldUpdateSe
    lection){this.selectedValues=this.selectedItems.map(function(selectedItem){retur
    n this._indexToValue(this.indexOf(selectedItem))},this).filter(function(unfilter
    edValue){return unfilteredValue!=null},this)}},_updateSelected:function(){if(thi
    s.multi){this._selectMulti(this.selectedValues)}else{this._selectSelected(this.s
    elected)}},_selectMulti:function(values){if(values){var selectedItems=this._valu
    esToItems(values);this._selection.clear(selectedItems);for(var i=0;i<selectedIte
    ms.length;i++){this._selection.setItemSelected(selectedItems[i],true)}if(this.fa
    llbackSelection&&this.items.length&&!this._selection.get().length){var fallback=
    this._valueToItem(this.fallbackSelection);if(fallback){this.selectedValues=[this
    .fallbackSelection]}}}else{this._selection.clear()}},_selectionChange:function()
    {var s=this._selection.get();if(this.multi){this._setSelectedItems(s)}else{this.
    _setSelectedItems([s]);this._setSelectedItem(s)}},_toggleSelected:function(value
    ){var i=this.selectedValues.indexOf(value);var unselected=i<0;if(unselected){thi
    s.push("selectedValues",value)}else{this.splice("selectedValues",i,1)}},_valuesT
    oItems:function(values){return values==null?null:values.map(function(value){retu
    rn this._valueToItem(value)},this)}};Polymer.IronMultiSelectableBehavior=[Polyme
    r.IronSelectableBehavior,Polymer.IronMultiSelectableBehaviorImpl];Polymer.IronMe
    nuBehaviorImpl={properties:{focusedItem:{observer:"_focusedItemChanged",readOnly
    :true,type:Object},attrForItemTitle:{type:String}},hostAttributes:{role:"menu",t
    abindex:"0"},observers:["_updateMultiselectable(multi)"],listeners:{focus:"_onFo
    cus",keydown:"_onKeydown","iron-items-changed":"_onIronItemsChanged"},keyBinding
    s:{up:"_onUpKey",down:"_onDownKey",esc:"_onEscKey","shift+tab:keydown":"_onShift
    TabDown"},attached:function(){this._resetTabindices()},select:function(value){if
    (this._defaultFocusAsync){this.cancelAsync(this._defaultFocusAsync);this._defaul
    tFocusAsync=null}var item=this._valueToItem(value);if(item&&item.hasAttribute("d
    isabled"))return;this._setFocusedItem(item);Polymer.IronMultiSelectableBehaviorI
    mpl.select.apply(this,arguments)},_resetTabindices:function(){var selectedItem=t
    his.multi?this.selectedItems&&this.selectedItems[0]:this.selectedItem;this.items
    .forEach(function(item){item.setAttribute("tabindex",item===selectedItem?"0":"-1
    ")},this)},_updateMultiselectable:function(multi){if(multi){this.setAttribute("a
    ria-multiselectable","true")}else{this.removeAttribute("aria-multiselectable")}}
    ,_focusWithKeyboardEvent:function(event){for(var i=0,item;item=this.items[i];i++
    ){var attr=this.attrForItemTitle||"textContent";var title=item[attr]||item.getAt
    tribute(attr);if(!item.hasAttribute("disabled")&&title&&title.trim().charAt(0).t
    oLowerCase()===String.fromCharCode(event.keyCode).toLowerCase()){this._setFocuse
    dItem(item);break}}},_focusPrevious:function(){var length=this.items.length;var 
    curFocusIndex=Number(this.indexOf(this.focusedItem));for(var i=1;i<length+1;i++)
    {var item=this.items[(curFocusIndex-i+length)%length];if(!item.hasAttribute("dis
    abled")){var owner=Polymer.dom(item).getOwnerRoot()||document;this._setFocusedIt
    em(item);if(Polymer.dom(owner).activeElement==item){return}}}},_focusNext:functi
    on(){var length=this.items.length;var curFocusIndex=Number(this.indexOf(this.foc
    usedItem));for(var i=1;i<length+1;i++){var item=this.items[(curFocusIndex+i)%len
    gth];if(!item.hasAttribute("disabled")){var owner=Polymer.dom(item).getOwnerRoot
    ()||document;this._setFocusedItem(item);if(Polymer.dom(owner).activeElement==ite
    m){return}}}},_applySelection:function(item,isSelected){if(isSelected){item.setA
    ttribute("aria-selected","true")}else{item.removeAttribute("aria-selected")}Poly
    mer.IronSelectableBehavior._applySelection.apply(this,arguments)},_focusedItemCh
    anged:function(focusedItem,old){old&&old.setAttribute("tabindex","-1");if(focuse
    dItem){focusedItem.setAttribute("tabindex","0");focusedItem.focus()}},_onIronIte
    msChanged:function(event){if(event.detail.addedNodes.length){this._resetTabindic
    es()}},_onShiftTabDown:function(event){var oldTabIndex=this.getAttribute("tabind
    ex");Polymer.IronMenuBehaviorImpl._shiftTabPressed=true;this._setFocusedItem(nul
    l);this.setAttribute("tabindex","-1");this.async(function(){this.setAttribute("t
    abindex",oldTabIndex);Polymer.IronMenuBehaviorImpl._shiftTabPressed=false},1)},_
    onFocus:function(event){if(Polymer.IronMenuBehaviorImpl._shiftTabPressed){return
    }var rootTarget=Polymer.dom(event).rootTarget;if(rootTarget!==this&&typeof rootT
    arget.tabIndex!=="undefined"&&!this.isLightDescendant(rootTarget)){return}this._
    defaultFocusAsync=this.async(function(){var selectedItem=this.multi?this.selecte
    dItems&&this.selectedItems[0]:this.selectedItem;this._setFocusedItem(null);if(se
    lectedItem){this._setFocusedItem(selectedItem)}else if(this.items[0]){this._focu
    sNext()}})},_onUpKey:function(event){this._focusPrevious();event.detail.keyboard
    Event.preventDefault()},_onDownKey:function(event){this._focusNext();event.detai
    l.keyboardEvent.preventDefault()},_onEscKey:function(event){this.focusedItem.blu
    r()},_onKeydown:function(event){if(!this.keyboardEventMatchesKeys(event,"up down
     esc")){this._focusWithKeyboardEvent(event)}event.stopPropagation()},_activateHa
    ndler:function(event){Polymer.IronSelectableBehavior._activateHandler.call(this,
    event);event.stopPropagation()}};Polymer.IronMenuBehaviorImpl._shiftTabPressed=f
    alse;Polymer.IronMenuBehavior=[Polymer.IronMultiSelectableBehavior,Polymer.IronA
    11yKeysBehavior,Polymer.IronMenuBehaviorImpl];(function(){Polymer({is:"paper-men
    u",behaviors:[Polymer.IronMenuBehavior]})})();Polymer.IronFitBehavior={propertie
    s:{sizingTarget:{type:Object,value:function(){return this}},fitInto:{type:Object
    ,value:window},noOverlap:{type:Boolean},positionTarget:{type:Element},horizontal
    Align:{type:String},verticalAlign:{type:String},dynamicAlign:{type:Boolean},hori
    zontalOffset:{type:Number,value:0,notify:true},verticalOffset:{type:Number,value
    :0,notify:true},autoFitOnAttach:{type:Boolean,value:false},_fitInfo:{type:Object
    }},get _fitWidth(){var fitWidth;if(this.fitInto===window){fitWidth=this.fitInto.
    innerWidth}else{fitWidth=this.fitInto.getBoundingClientRect().width}return fitWi
    dth},get _fitHeight(){var fitHeight;if(this.fitInto===window){fitHeight=this.fit
    Into.innerHeight}else{fitHeight=this.fitInto.getBoundingClientRect().height}retu
    rn fitHeight},get _fitLeft(){var fitLeft;if(this.fitInto===window){fitLeft=0}els
    e{fitLeft=this.fitInto.getBoundingClientRect().left}return fitLeft},get _fitTop(
    ){var fitTop;if(this.fitInto===window){fitTop=0}else{fitTop=this.fitInto.getBoun
    dingClientRect().top}return fitTop},get _defaultPositionTarget(){var parent=Poly
    mer.dom(this).parentNode;if(parent&&parent.nodeType===Node.DOCUMENT_FRAGMENT_NOD
    E){parent=parent.host}return parent},get _localeHorizontalAlign(){if(this._isRTL
    ){if(this.horizontalAlign==="right"){return"left"}if(this.horizontalAlign==="lef
    t"){return"right"}}return this.horizontalAlign},attached:function(){this._isRTL=
    window.getComputedStyle(this).direction=="rtl";this.positionTarget=this.position
    Target||this._defaultPositionTarget;if(this.autoFitOnAttach){if(window.getComput
    edStyle(this).display==="none"){setTimeout(function(){this.fit()}.bind(this))}el
    se{this.fit()}}},fit:function(){this.position();this.constrain();this.center()},
    _discoverInfo:function(){if(this._fitInfo){return}var target=window.getComputedS
    tyle(this);var sizer=window.getComputedStyle(this.sizingTarget);this._fitInfo={i
    nlineStyle:{top:this.style.top||"",left:this.style.left||"",position:this.style.
    position||""},sizerInlineStyle:{maxWidth:this.sizingTarget.style.maxWidth||"",ma
    xHeight:this.sizingTarget.style.maxHeight||"",boxSizing:this.sizingTarget.style.
    boxSizing||""},positionedBy:{vertically:target.top!=="auto"?"top":target.bottom!
    =="auto"?"bottom":null,horizontally:target.left!=="auto"?"left":target.right!=="
    auto"?"right":null},sizedBy:{height:sizer.maxHeight!=="none",width:sizer.maxWidt
    h!=="none",minWidth:parseInt(sizer.minWidth,10)||0,minHeight:parseInt(sizer.minH
    eight,10)||0},margin:{top:parseInt(target.marginTop,10)||0,right:parseInt(target
    .marginRight,10)||0,bottom:parseInt(target.marginBottom,10)||0,left:parseInt(tar
    get.marginLeft,10)||0}};if(this.verticalOffset){this._fitInfo.margin.top=this._f
    itInfo.margin.bottom=this.verticalOffset;this._fitInfo.inlineStyle.marginTop=thi
    s.style.marginTop||"";this._fitInfo.inlineStyle.marginBottom=this.style.marginBo
    ttom||"";this.style.marginTop=this.style.marginBottom=this.verticalOffset+"px"}i
    f(this.horizontalOffset){this._fitInfo.margin.left=this._fitInfo.margin.right=th
    is.horizontalOffset;this._fitInfo.inlineStyle.marginLeft=this.style.marginLeft||
    "";this._fitInfo.inlineStyle.marginRight=this.style.marginRight||"";this.style.m
    arginLeft=this.style.marginRight=this.horizontalOffset+"px"}},resetFit:function(
    ){var info=this._fitInfo||{};for(var property in info.sizerInlineStyle){this.siz
    ingTarget.style[property]=info.sizerInlineStyle[property]}for(var property in in
    fo.inlineStyle){this.style[property]=info.inlineStyle[property]}this._fitInfo=nu
    ll},refit:function(){var scrollLeft=this.sizingTarget.scrollLeft;var scrollTop=t
    his.sizingTarget.scrollTop;this.resetFit();this.fit();this.sizingTarget.scrollLe
    ft=scrollLeft;this.sizingTarget.scrollTop=scrollTop},position:function(){if(!thi
    s.horizontalAlign&&!this.verticalAlign){return}this._discoverInfo();this.style.p
    osition="fixed";this.sizingTarget.style.boxSizing="border-box";this.style.left="
    0px";this.style.top="0px";var rect=this.getBoundingClientRect();var positionRect
    =this.__getNormalizedRect(this.positionTarget);var fitRect=this.__getNormalizedR
    ect(this.fitInto);var margin=this._fitInfo.margin;var size={width:rect.width+mar
    gin.left+margin.right,height:rect.height+margin.top+margin.bottom};var position=
    this.__getPosition(this._localeHorizontalAlign,this.verticalAlign,size,positionR
    ect,fitRect);var left=position.left+margin.left;var top=position.top+margin.top;
    var right=Math.min(fitRect.right-margin.right,left+rect.width);var bottom=Math.m
    in(fitRect.bottom-margin.bottom,top+rect.height);var minWidth=this._fitInfo.size
    dBy.minWidth;var minHeight=this._fitInfo.sizedBy.minHeight;if(left<margin.left){
    left=margin.left;if(right-left<minWidth){left=right-minWidth}}if(top<margin.top)
    {top=margin.top;if(bottom-top<minHeight){top=bottom-minHeight}}this.sizingTarget
    .style.maxWidth=right-left+"px";this.sizingTarget.style.maxHeight=bottom-top+"px
    ";this.style.left=left-rect.left+"px";this.style.top=top-rect.top+"px"},constrai
    n:function(){if(this.horizontalAlign||this.verticalAlign){return}this._discoverI
    nfo();var info=this._fitInfo;if(!info.positionedBy.vertically){this.style.positi
    on="fixed";this.style.top="0px"}if(!info.positionedBy.horizontally){this.style.p
    osition="fixed";this.style.left="0px"}this.sizingTarget.style.boxSizing="border-
    box";var rect=this.getBoundingClientRect();if(!info.sizedBy.height){this.__sizeD
    imension(rect,info.positionedBy.vertically,"top","bottom","Height")}if(!info.siz
    edBy.width){this.__sizeDimension(rect,info.positionedBy.horizontally,"left","rig
    ht","Width")}},_sizeDimension:function(rect,positionedBy,start,end,extent){this.
    __sizeDimension(rect,positionedBy,start,end,extent)},__sizeDimension:function(re
    ct,positionedBy,start,end,extent){var info=this._fitInfo;var fitRect=this.__getN
    ormalizedRect(this.fitInto);var max=extent==="Width"?fitRect.width:fitRect.heigh
    t;var flip=positionedBy===end;var offset=flip?max-rect[end]:rect[start];var marg
    in=info.margin[flip?start:end];var offsetExtent="offset"+extent;var sizingOffset
    =this[offsetExtent]-this.sizingTarget[offsetExtent];this.sizingTarget.style["max
    "+extent]=max-margin-offset-sizingOffset+"px"},center:function(){if(this.horizon
    talAlign||this.verticalAlign){return}this._discoverInfo();var positionedBy=this.
    _fitInfo.positionedBy;if(positionedBy.vertically&&positionedBy.horizontally){ret
    urn}this.style.position="fixed";if(!positionedBy.vertically){this.style.top="0px
    "}if(!positionedBy.horizontally){this.style.left="0px"}var rect=this.getBounding
    ClientRect();var fitRect=this.__getNormalizedRect(this.fitInto);if(!positionedBy
    .vertically){var top=fitRect.top-rect.top+(fitRect.height-rect.height)/2;this.st
    yle.top=top+"px"}if(!positionedBy.horizontally){var left=fitRect.left-rect.left+
    (fitRect.width-rect.width)/2;this.style.left=left+"px"}},__getNormalizedRect:fun
    ction(target){if(target===document.documentElement||target===window){return{top:
    0,left:0,width:window.innerWidth,height:window.innerHeight,right:window.innerWid
    th,bottom:window.innerHeight}}return target.getBoundingClientRect()},__getCroppe
    dArea:function(position,size,fitRect){var verticalCrop=Math.min(0,position.top)+
    Math.min(0,fitRect.bottom-(position.top+size.height));var horizontalCrop=Math.mi
    n(0,position.left)+Math.min(0,fitRect.right-(position.left+size.width));return M
    ath.abs(verticalCrop)*size.width+Math.abs(horizontalCrop)*size.height},__getPosi
    tion:function(hAlign,vAlign,size,positionRect,fitRect){var positions=[{verticalA
    lign:"top",horizontalAlign:"left",top:positionRect.top,left:positionRect.left},{
    verticalAlign:"top",horizontalAlign:"right",top:positionRect.top,left:positionRe
    ct.right-size.width},{verticalAlign:"bottom",horizontalAlign:"left",top:position
    Rect.bottom-size.height,left:positionRect.left},{verticalAlign:"bottom",horizont
    alAlign:"right",top:positionRect.bottom-size.height,left:positionRect.right-size
    .width}];if(this.noOverlap){for(var i=0,l=positions.length;i<l;i++){var copy={};
    for(var key in positions[i]){copy[key]=positions[i][key]}positions.push(copy)}po
    sitions[0].top=positions[1].top+=positionRect.height;positions[2].top=positions[
    3].top-=positionRect.height;positions[4].left=positions[6].left+=positionRect.wi
    dth;positions[5].left=positions[7].left-=positionRect.width}vAlign=vAlign==="aut
    o"?null:vAlign;hAlign=hAlign==="auto"?null:hAlign;var position;for(var i=0;i<pos
    itions.length;i++){var pos=positions[i];if(!this.dynamicAlign&&!this.noOverlap&&
    pos.verticalAlign===vAlign&&pos.horizontalAlign===hAlign){position=pos;break}var
     alignOk=(!vAlign||pos.verticalAlign===vAlign)&&(!hAlign||pos.horizontalAlign===
    hAlign);if(!this.dynamicAlign&&!alignOk){continue}position=position||pos;pos.cro
    ppedArea=this.__getCroppedArea(pos,size,fitRect);var diff=pos.croppedArea-positi
    on.croppedArea;if(diff<0||diff===0&&alignOk){position=pos}if(position.croppedAre
    a===0&&alignOk){break}}return position}};(function(){"use strict";Polymer({is:"i
    ron-overlay-backdrop",properties:{opened:{reflectToAttribute:true,type:Boolean,v
    alue:false,observer:"_openedChanged"}},listeners:{transitionend:"_onTransitionen
    d"},created:function(){this.__openedRaf=null},attached:function(){this.opened&&t
    his._openedChanged(this.opened)},prepare:function(){if(this.opened&&!this.parent
    Node){Polymer.dom(document.body).appendChild(this)}},open:function(){this.opened
    =true},close:function(){this.opened=false},complete:function(){if(!this.opened&&
    this.parentNode===document.body){Polymer.dom(this.parentNode).removeChild(this)}
    },_onTransitionend:function(event){if(event&&event.target===this){this.complete(
    )}},_openedChanged:function(opened){if(opened){this.prepare()}else{var cs=window
    .getComputedStyle(this);if(cs.transitionDuration==="0s"||cs.opacity==0){this.com
    plete()}}if(!this.isAttached){return}if(this.__openedRaf){window.cancelAnimation
    Frame(this.__openedRaf);this.__openedRaf=null}this.scrollTop=this.scrollTop;this
    .__openedRaf=window.requestAnimationFrame(function(){this.__openedRaf=null;this.
    toggleClass("opened",this.opened)}.bind(this))}})})();Polymer.IronOverlayManager
    Class=function(){this._overlays=[];this._minimumZ=101;this._backdropElement=null
    ;Polymer.Gestures.add(document,"tap",this._onCaptureClick.bind(this));document.a
    ddEventListener("focus",this._onCaptureFocus.bind(this),true);document.addEventL
    istener("keydown",this._onCaptureKeyDown.bind(this),true)};Polymer.IronOverlayMa
    nagerClass.prototype={constructor:Polymer.IronOverlayManagerClass,get backdropEl
    ement(){if(!this._backdropElement){this._backdropElement=document.createElement(
    "iron-overlay-backdrop")}return this._backdropElement},get deepActiveElement(){v
    ar active=document.activeElement||document.body;while(active.root&&Polymer.dom(a
    ctive.root).activeElement){active=Polymer.dom(active.root).activeElement}return 
    active},_bringOverlayAtIndexToFront:function(i){var overlay=this._overlays[i];if
    (!overlay){return}var lastI=this._overlays.length-1;var currentOverlay=this._ove
    rlays[lastI];if(currentOverlay&&this._shouldBeBehindOverlay(overlay,currentOverl
    ay)){lastI--}if(i>=lastI){return}var minimumZ=Math.max(this.currentOverlayZ(),th
    is._minimumZ);if(this._getZ(overlay)<=minimumZ){this._applyOverlayZ(overlay,mini
    mumZ)}while(i<lastI){this._overlays[i]=this._overlays[i+1];i++}this._overlays[la
    stI]=overlay},addOrRemoveOverlay:function(overlay){if(overlay.opened){this.addOv
    erlay(overlay)}else{this.removeOverlay(overlay)}},addOverlay:function(overlay){v
    ar i=this._overlays.indexOf(overlay);if(i>=0){this._bringOverlayAtIndexToFront(i
    );this.trackBackdrop();return}var insertionIndex=this._overlays.length;var curre
    ntOverlay=this._overlays[insertionIndex-1];var minimumZ=Math.max(this._getZ(curr
    entOverlay),this._minimumZ);var newZ=this._getZ(overlay);if(currentOverlay&&this
    ._shouldBeBehindOverlay(overlay,currentOverlay)){this._applyOverlayZ(currentOver
    lay,minimumZ);insertionIndex--;var previousOverlay=this._overlays[insertionIndex
    -1];minimumZ=Math.max(this._getZ(previousOverlay),this._minimumZ)}if(newZ<=minim
    umZ){this._applyOverlayZ(overlay,minimumZ)}this._overlays.splice(insertionIndex,
    0,overlay);this.trackBackdrop()},removeOverlay:function(overlay){var i=this._ove
    rlays.indexOf(overlay);if(i===-1){return}this._overlays.splice(i,1);this.trackBa
    ckdrop()},currentOverlay:function(){var i=this._overlays.length-1;return this._o
    verlays[i]},currentOverlayZ:function(){return this._getZ(this.currentOverlay())}
    ,ensureMinimumZ:function(minimumZ){this._minimumZ=Math.max(this._minimumZ,minimu
    mZ)},focusOverlay:function(){var current=this.currentOverlay();if(current){curre
    nt._applyFocus()}},trackBackdrop:function(){var overlay=this._overlayWithBackdro
    p();if(!overlay&&!this._backdropElement){return}this.backdropElement.style.zInde
    x=this._getZ(overlay)-1;this.backdropElement.opened=!!overlay},getBackdrops:func
    tion(){var backdrops=[];for(var i=0;i<this._overlays.length;i++){if(this._overla
    ys[i].withBackdrop){backdrops.push(this._overlays[i])}}return backdrops},backdro
    pZ:function(){return this._getZ(this._overlayWithBackdrop())-1},_overlayWithBack
    drop:function(){for(var i=0;i<this._overlays.length;i++){if(this._overlays[i].wi
    thBackdrop){return this._overlays[i]}}},_getZ:function(overlay){var z=this._mini
    mumZ;if(overlay){var z1=Number(overlay.style.zIndex||window.getComputedStyle(ove
    rlay).zIndex);if(z1===z1){z=z1}}return z},_setZ:function(element,z){element.styl
    e.zIndex=z},_applyOverlayZ:function(overlay,aboveZ){this._setZ(overlay,aboveZ+2)
    },_overlayInPath:function(path){path=path||[];for(var i=0;i<path.length;i++){if(
    path[i]._manager===this){return path[i]}}},_onCaptureClick:function(event){var o
    verlay=this.currentOverlay();if(overlay&&this._overlayInPath(Polymer.dom(event).
    path)!==overlay){overlay._onCaptureClick(event)}},_onCaptureFocus:function(event
    ){var overlay=this.currentOverlay();if(overlay){overlay._onCaptureFocus(event)}}
    ,_onCaptureKeyDown:function(event){var overlay=this.currentOverlay();if(overlay)
    {if(Polymer.IronA11yKeysBehavior.keyboardEventMatchesKeys(event,"esc")){overlay.
    _onCaptureEsc(event)}else if(Polymer.IronA11yKeysBehavior.keyboardEventMatchesKe
    ys(event,"tab")){overlay._onCaptureTab(event)}}},_shouldBeBehindOverlay:function
    (overlay1,overlay2){return!overlay1.alwaysOnTop&&overlay2.alwaysOnTop}};Polymer.
    IronOverlayManager=new Polymer.IronOverlayManagerClass;(function(){"use strict";
    Polymer.IronOverlayBehaviorImpl={properties:{opened:{observer:"_openedChanged",t
    ype:Boolean,value:false,notify:true},canceled:{observer:"_canceledChanged",readO
    nly:true,type:Boolean,value:false},withBackdrop:{observer:"_withBackdropChanged"
    ,type:Boolean},noAutoFocus:{type:Boolean,value:false},noCancelOnEscKey:{type:Boo
    lean,value:false},noCancelOnOutsideClick:{type:Boolean,value:false},closingReaso
    n:{ | 45 cr.define("downloads",function(){var Item=Polymer({is:"downloads-item",propertie
    s:{data:{type:Object},completelyOnDisk_:{computed:"computeCompletelyOnDisk_("+"d
    ata.state, data.file_externally_removed)",type:Boolean,value:true},controlledBy_
    :{computed:"computeControlledBy_(data.by_ext_id, data.by_ext_name)",type:String,
    value:""},isActive_:{computed:"computeIsActive_("+"data.state, data.file_externa
    lly_removed)",type:Boolean,value:true},isDangerous_:{computed:"computeIsDangerou
    s_(data.state)",type:Boolean,value:false},isMalware_:{computed:"computeIsMalware
    _(isDangerous_, data.danger_type)",type:Boolean,value:false},isInProgress_:{comp
    uted:"computeIsInProgress_(data.state)",type:Boolean,value:false},pauseOrResumeT
    ext_:{computed:"computePauseOrResumeText_(isInProgress_, data.resume)",type:Stri
    ng},showCancel_:{computed:"computeShowCancel_(data.state)",type:Boolean,value:fa
    lse},showProgress_:{computed:"computeShowProgress_(showCancel_, data.percent)",t
    ype:Boolean,value:false}},observers:["observeControlledBy_(controlledBy_)","obse
    rveIsDangerous_(isDangerous_, data)"],ready:function(){this.content=this.$.conte
    nt},chopUrl_:function(url){return url.slice(0,300)},computeClass_:function(){var
     classes=[];if(this.isActive_)classes.push("is-active");if(this.isDangerous_)cla
    sses.push("dangerous");if(this.showProgress_)classes.push("show-progress");retur
    n classes.join(" ")},computeCompletelyOnDisk_:function(){return this.data.state=
    =downloads.States.COMPLETE&&!this.data.file_externally_removed},computeControlle
    dBy_:function(){if(!this.data.by_ext_id||!this.data.by_ext_name)return"";var url
    ="chrome://extensions#"+this.data.by_ext_id;var name=this.data.by_ext_name;retur
    n loadTimeData.getStringF("controlledByUrl",url,HTMLEscape(name))},computeDanger
    Icon_:function(){return this.isDangerous_?"cr:warning":""},computeDate_:function
    (){assert(typeof this.data.hideDate=="boolean");if(this.data.hideDate)return"";r
    eturn assert(this.data.since_string||this.data.date_string)},computeDescription_
    :function(){var data=this.data;switch(data.state){case downloads.States.DANGEROU
    S:var fileName=data.file_name;switch(data.danger_type){case downloads.DangerType
    .DANGEROUS_FILE:return loadTimeData.getString("dangerFileDesc");case downloads.D
    angerType.DANGEROUS_URL:case downloads.DangerType.DANGEROUS_CONTENT:case downloa
    ds.DangerType.DANGEROUS_HOST:return loadTimeData.getString("dangerDownloadDesc")
    ;case downloads.DangerType.UNCOMMON_CONTENT:return loadTimeData.getString("dange
    rUncommonDesc");case downloads.DangerType.POTENTIALLY_UNWANTED:return loadTimeDa
    ta.getString("dangerSettingsDesc")}break;case downloads.States.IN_PROGRESS:case 
    downloads.States.PAUSED:return data.progress_status_text}return""},computeIsActi
    ve_:function(){return this.data.state!=downloads.States.CANCELLED&&this.data.sta
    te!=downloads.States.INTERRUPTED&&!this.data.file_externally_removed},computeIsD
    angerous_:function(){return this.data.state==downloads.States.DANGEROUS},compute
    IsInProgress_:function(){return this.data.state==downloads.States.IN_PROGRESS},c
    omputeIsMalware_:function(){return this.isDangerous_&&(this.data.danger_type==do
    wnloads.DangerType.DANGEROUS_CONTENT||this.data.danger_type==downloads.DangerTyp
    e.DANGEROUS_HOST||this.data.danger_type==downloads.DangerType.DANGEROUS_URL||thi
    s.data.danger_type==downloads.DangerType.POTENTIALLY_UNWANTED)},computePauseOrRe
    sumeText_:function(){if(this.isInProgress_)return loadTimeData.getString("contro
    lPause");if(this.data.resume)return loadTimeData.getString("controlResume");retu
    rn""},computeRemoveStyle_:function(){var canDelete=loadTimeData.getBoolean("allo
    wDeletingHistory");var hideRemove=this.isDangerous_||this.showCancel_||!canDelet
    e;return hideRemove?"visibility: hidden":""},computeShowCancel_:function(){retur
    n this.data.state==downloads.States.IN_PROGRESS||this.data.state==downloads.Stat
    es.PAUSED},computeShowProgress_:function(){return this.showCancel_&&this.data.pe
    rcent>=-1},computeTag_:function(){switch(this.data.state){case downloads.States.
    CANCELLED:return loadTimeData.getString("statusCancelled");case downloads.States
    .INTERRUPTED:return this.data.last_reason_text;case downloads.States.COMPLETE:re
    turn this.data.file_externally_removed?loadTimeData.getString("statusRemoved"):"
    "}return""},isIndeterminate_:function(){return this.data.percent==-1},observeCon
    trolledBy_:function(){this.$["controlled-by"].innerHTML=this.controlledBy_},obse
    rveIsDangerous_:function(){if(!this.data)return;if(this.isDangerous_){this.$.url
    .removeAttribute("href")}else{this.$.url.href=assert(this.data.url);var filePath
    =encodeURIComponent(this.data.file_path);var scaleFactor="?scale="+window.device
    PixelRatio+"x";this.$["file-icon"].src="chrome://fileicon/"+filePath+scaleFactor
    }},onCancelTap_:function(){downloads.ActionService.getInstance().cancel(this.dat
    a.id)},onDiscardDangerousTap_:function(){downloads.ActionService.getInstance().d
    iscardDangerous(this.data.id)},onDragStart_:function(e){e.preventDefault();downl
    oads.ActionService.getInstance().drag(this.data.id)},onFileLinkTap_:function(e){
    e.preventDefault();downloads.ActionService.getInstance().openFile(this.data.id)}
    ,onPauseOrResumeTap_:function(){if(this.isInProgress_)downloads.ActionService.ge
    tInstance().pause(this.data.id);else downloads.ActionService.getInstance().resum
    e(this.data.id)},onRemoveTap_:function(){downloads.ActionService.getInstance().r
    emove(this.data.id)},onRetryTap_:function(){downloads.ActionService.getInstance(
    ).download(this.data.url)},onSaveDangerousTap_:function(){downloads.ActionServic
    e.getInstance().saveDangerous(this.data.id)},onShowTap_:function(){downloads.Act
    ionService.getInstance().show(this.data.id)}});return{Item:Item}});Polymer.Paper
    ItemBehaviorImpl={hostAttributes:{role:"option",tabindex:"0"}};Polymer.PaperItem
    Behavior=[Polymer.IronButtonState,Polymer.IronControlState,Polymer.PaperItemBeha
    viorImpl];Polymer({is:"paper-item",behaviors:[Polymer.PaperItemBehavior]});Polym
    er.IronSelection=function(selectCallback){this.selection=[];this.selectCallback=
    selectCallback};Polymer.IronSelection.prototype={get:function(){return this.mult
    i?this.selection.slice():this.selection[0]},clear:function(excludes){this.select
    ion.slice().forEach(function(item){if(!excludes||excludes.indexOf(item)<0){this.
    setItemSelected(item,false)}},this)},isSelected:function(item){return this.selec
    tion.indexOf(item)>=0},setItemSelected:function(item,isSelected){if(item!=null){
    if(isSelected!==this.isSelected(item)){if(isSelected){this.selection.push(item)}
    else{var i=this.selection.indexOf(item);if(i>=0){this.selection.splice(i,1)}}if(
    this.selectCallback){this.selectCallback(item,isSelected)}}}},select:function(it
    em){if(this.multi){this.toggle(item)}else if(this.get()!==item){this.setItemSele
    cted(this.get(),false);this.setItemSelected(item,true)}},toggle:function(item){t
    his.setItemSelected(item,!this.isSelected(item))}};Polymer.IronSelectableBehavio
    r={properties:{attrForSelected:{type:String,value:null},selected:{type:String,no
    tify:true},selectedItem:{type:Object,readOnly:true,notify:true},activateEvent:{t
    ype:String,value:"tap",observer:"_activateEventChanged"},selectable:String,selec
    tedClass:{type:String,value:"iron-selected"},selectedAttribute:{type:String,valu
    e:null},fallbackSelection:{type:String,value:null},items:{type:Array,readOnly:tr
    ue,notify:true,value:function(){return[]}},_excludedLocalNames:{type:Object,valu
    e:function(){return{template:1}}}},observers:["_updateAttrForSelected(attrForSel
    ected)","_updateSelected(selected)","_checkFallback(fallbackSelection)"],created
    :function(){this._bindFilterItem=this._filterItem.bind(this);this._selection=new
     Polymer.IronSelection(this._applySelection.bind(this))},attached:function(){thi
    s._observer=this._observeItems(this);this._updateItems();if(!this._shouldUpdateS
    election){this._updateSelected()}this._addListener(this.activateEvent)},detached
    :function(){if(this._observer){Polymer.dom(this).unobserveNodes(this._observer)}
    this._removeListener(this.activateEvent)},indexOf:function(item){return this.ite
    ms.indexOf(item)},select:function(value){this.selected=value},selectPrevious:fun
    ction(){var length=this.items.length;var index=(Number(this._valueToIndex(this.s
    elected))-1+length)%length;this.selected=this._indexToValue(index)},selectNext:f
    unction(){var index=(Number(this._valueToIndex(this.selected))+1)%this.items.len
    gth;this.selected=this._indexToValue(index)},selectIndex:function(index){this.se
    lect(this._indexToValue(index))},forceSynchronousItemUpdate:function(){this._upd
    ateItems()},get _shouldUpdateSelection(){return this.selected!=null},_checkFallb
    ack:function(){if(this._shouldUpdateSelection){this._updateSelected()}},_addList
    ener:function(eventName){this.listen(this,eventName,"_activateHandler")},_remove
    Listener:function(eventName){this.unlisten(this,eventName,"_activateHandler")},_
    activateEventChanged:function(eventName,old){this._removeListener(old);this._add
    Listener(eventName)},_updateItems:function(){var nodes=Polymer.dom(this).queryDi
    stributedElements(this.selectable||"*");nodes=Array.prototype.filter.call(nodes,
    this._bindFilterItem);this._setItems(nodes)},_updateAttrForSelected:function(){i
    f(this._shouldUpdateSelection){this.selected=this._indexToValue(this.indexOf(thi
    s.selectedItem))}},_updateSelected:function(){this._selectSelected(this.selected
    )},_selectSelected:function(selected){this._selection.select(this._valueToItem(t
    his.selected));if(this.fallbackSelection&&this.items.length&&this._selection.get
    ()===undefined){this.selected=this.fallbackSelection}},_filterItem:function(node
    ){return!this._excludedLocalNames[node.localName]},_valueToItem:function(value){
    return value==null?null:this.items[this._valueToIndex(value)]},_valueToIndex:fun
    ction(value){if(this.attrForSelected){for(var i=0,item;item=this.items[i];i++){i
    f(this._valueForItem(item)==value){return i}}}else{return Number(value)}},_index
    ToValue:function(index){if(this.attrForSelected){var item=this.items[index];if(i
    tem){return this._valueForItem(item)}}else{return index}},_valueForItem:function
    (item){var propValue=item[Polymer.CaseMap.dashToCamelCase(this.attrForSelected)]
    ;return propValue!=undefined?propValue:item.getAttribute(this.attrForSelected)},
    _applySelection:function(item,isSelected){if(this.selectedClass){this.toggleClas
    s(this.selectedClass,isSelected,item)}if(this.selectedAttribute){this.toggleAttr
    ibute(this.selectedAttribute,isSelected,item)}this._selectionChange();this.fire(
    "iron-"+(isSelected?"select":"deselect"),{item:item})},_selectionChange:function
    (){this._setSelectedItem(this._selection.get())},_observeItems:function(node){re
    turn Polymer.dom(node).observeNodes(function(mutation){this._updateItems();if(th
    is._shouldUpdateSelection){this._updateSelected()}this.fire("iron-items-changed"
    ,mutation,{bubbles:false,cancelable:false})})},_activateHandler:function(e){var 
    t=e.target;var items=this.items;while(t&&t!=this){var i=items.indexOf(t);if(i>=0
    ){var value=this._indexToValue(i);this._itemActivate(value,t);return}t=t.parentN
    ode}},_itemActivate:function(value,item){if(!this.fire("iron-activate",{selected
    :value,item:item},{cancelable:true}).defaultPrevented){this.select(value)}}};Pol
    ymer.IronMultiSelectableBehaviorImpl={properties:{multi:{type:Boolean,value:fals
    e,observer:"multiChanged"},selectedValues:{type:Array,notify:true},selectedItems
    :{type:Array,readOnly:true,notify:true}},observers:["_updateSelected(selectedVal
    ues.splices)"],select:function(value){if(this.multi){if(this.selectedValues){thi
    s._toggleSelected(value)}else{this.selectedValues=[value]}}else{this.selected=va
    lue}},multiChanged:function(multi){this._selection.multi=multi},get _shouldUpdat
    eSelection(){return this.selected!=null||this.selectedValues!=null&&this.selecte
    dValues.length},_updateAttrForSelected:function(){if(!this.multi){Polymer.IronSe
    lectableBehavior._updateAttrForSelected.apply(this)}else if(this._shouldUpdateSe
    lection){this.selectedValues=this.selectedItems.map(function(selectedItem){retur
    n this._indexToValue(this.indexOf(selectedItem))},this).filter(function(unfilter
    edValue){return unfilteredValue!=null},this)}},_updateSelected:function(){if(thi
    s.multi){this._selectMulti(this.selectedValues)}else{this._selectSelected(this.s
    elected)}},_selectMulti:function(values){if(values){var selectedItems=this._valu
    esToItems(values);this._selection.clear(selectedItems);for(var i=0;i<selectedIte
    ms.length;i++){this._selection.setItemSelected(selectedItems[i],true)}if(this.fa
    llbackSelection&&this.items.length&&!this._selection.get().length){var fallback=
    this._valueToItem(this.fallbackSelection);if(fallback){this.selectedValues=[this
    .fallbackSelection]}}}else{this._selection.clear()}},_selectionChange:function()
    {var s=this._selection.get();if(this.multi){this._setSelectedItems(s)}else{this.
    _setSelectedItems([s]);this._setSelectedItem(s)}},_toggleSelected:function(value
    ){var i=this.selectedValues.indexOf(value);var unselected=i<0;if(unselected){thi
    s.push("selectedValues",value)}else{this.splice("selectedValues",i,1)}},_valuesT
    oItems:function(values){return values==null?null:values.map(function(value){retu
    rn this._valueToItem(value)},this)}};Polymer.IronMultiSelectableBehavior=[Polyme
    r.IronSelectableBehavior,Polymer.IronMultiSelectableBehaviorImpl];Polymer.IronMe
    nuBehaviorImpl={properties:{focusedItem:{observer:"_focusedItemChanged",readOnly
    :true,type:Object},attrForItemTitle:{type:String}},hostAttributes:{role:"menu",t
    abindex:"0"},observers:["_updateMultiselectable(multi)"],listeners:{focus:"_onFo
    cus",keydown:"_onKeydown","iron-items-changed":"_onIronItemsChanged"},keyBinding
    s:{up:"_onUpKey",down:"_onDownKey",esc:"_onEscKey","shift+tab:keydown":"_onShift
    TabDown"},attached:function(){this._resetTabindices()},select:function(value){if
    (this._defaultFocusAsync){this.cancelAsync(this._defaultFocusAsync);this._defaul
    tFocusAsync=null}var item=this._valueToItem(value);if(item&&item.hasAttribute("d
    isabled"))return;this._setFocusedItem(item);Polymer.IronMultiSelectableBehaviorI
    mpl.select.apply(this,arguments)},_resetTabindices:function(){var selectedItem=t
    his.multi?this.selectedItems&&this.selectedItems[0]:this.selectedItem;this.items
    .forEach(function(item){item.setAttribute("tabindex",item===selectedItem?"0":"-1
    ")},this)},_updateMultiselectable:function(multi){if(multi){this.setAttribute("a
    ria-multiselectable","true")}else{this.removeAttribute("aria-multiselectable")}}
    ,_focusWithKeyboardEvent:function(event){for(var i=0,item;item=this.items[i];i++
    ){var attr=this.attrForItemTitle||"textContent";var title=item[attr]||item.getAt
    tribute(attr);if(!item.hasAttribute("disabled")&&title&&title.trim().charAt(0).t
    oLowerCase()===String.fromCharCode(event.keyCode).toLowerCase()){this._setFocuse
    dItem(item);break}}},_focusPrevious:function(){var length=this.items.length;var 
    curFocusIndex=Number(this.indexOf(this.focusedItem));for(var i=1;i<length+1;i++)
    {var item=this.items[(curFocusIndex-i+length)%length];if(!item.hasAttribute("dis
    abled")){var owner=Polymer.dom(item).getOwnerRoot()||document;this._setFocusedIt
    em(item);if(Polymer.dom(owner).activeElement==item){return}}}},_focusNext:functi
    on(){var length=this.items.length;var curFocusIndex=Number(this.indexOf(this.foc
    usedItem));for(var i=1;i<length+1;i++){var item=this.items[(curFocusIndex+i)%len
    gth];if(!item.hasAttribute("disabled")){var owner=Polymer.dom(item).getOwnerRoot
    ()||document;this._setFocusedItem(item);if(Polymer.dom(owner).activeElement==ite
    m){return}}}},_applySelection:function(item,isSelected){if(isSelected){item.setA
    ttribute("aria-selected","true")}else{item.removeAttribute("aria-selected")}Poly
    mer.IronSelectableBehavior._applySelection.apply(this,arguments)},_focusedItemCh
    anged:function(focusedItem,old){old&&old.setAttribute("tabindex","-1");if(focuse
    dItem){focusedItem.setAttribute("tabindex","0");focusedItem.focus()}},_onIronIte
    msChanged:function(event){if(event.detail.addedNodes.length){this._resetTabindic
    es()}},_onShiftTabDown:function(event){var oldTabIndex=this.getAttribute("tabind
    ex");Polymer.IronMenuBehaviorImpl._shiftTabPressed=true;this._setFocusedItem(nul
    l);this.setAttribute("tabindex","-1");this.async(function(){this.setAttribute("t
    abindex",oldTabIndex);Polymer.IronMenuBehaviorImpl._shiftTabPressed=false},1)},_
    onFocus:function(event){if(Polymer.IronMenuBehaviorImpl._shiftTabPressed){return
    }var rootTarget=Polymer.dom(event).rootTarget;if(rootTarget!==this&&typeof rootT
    arget.tabIndex!=="undefined"&&!this.isLightDescendant(rootTarget)){return}this._
    defaultFocusAsync=this.async(function(){var selectedItem=this.multi?this.selecte
    dItems&&this.selectedItems[0]:this.selectedItem;this._setFocusedItem(null);if(se
    lectedItem){this._setFocusedItem(selectedItem)}else if(this.items[0]){this._focu
    sNext()}})},_onUpKey:function(event){this._focusPrevious();event.detail.keyboard
    Event.preventDefault()},_onDownKey:function(event){this._focusNext();event.detai
    l.keyboardEvent.preventDefault()},_onEscKey:function(event){this.focusedItem.blu
    r()},_onKeydown:function(event){if(!this.keyboardEventMatchesKeys(event,"up down
     esc")){this._focusWithKeyboardEvent(event)}event.stopPropagation()},_activateHa
    ndler:function(event){Polymer.IronSelectableBehavior._activateHandler.call(this,
    event);event.stopPropagation()}};Polymer.IronMenuBehaviorImpl._shiftTabPressed=f
    alse;Polymer.IronMenuBehavior=[Polymer.IronMultiSelectableBehavior,Polymer.IronA
    11yKeysBehavior,Polymer.IronMenuBehaviorImpl];(function(){Polymer({is:"paper-men
    u",behaviors:[Polymer.IronMenuBehavior]})})();Polymer.IronFitBehavior={propertie
    s:{sizingTarget:{type:Object,value:function(){return this}},fitInto:{type:Object
    ,value:window},noOverlap:{type:Boolean},positionTarget:{type:Element},horizontal
    Align:{type:String},verticalAlign:{type:String},dynamicAlign:{type:Boolean},hori
    zontalOffset:{type:Number,value:0,notify:true},verticalOffset:{type:Number,value
    :0,notify:true},autoFitOnAttach:{type:Boolean,value:false},_fitInfo:{type:Object
    }},get _fitWidth(){var fitWidth;if(this.fitInto===window){fitWidth=this.fitInto.
    innerWidth}else{fitWidth=this.fitInto.getBoundingClientRect().width}return fitWi
    dth},get _fitHeight(){var fitHeight;if(this.fitInto===window){fitHeight=this.fit
    Into.innerHeight}else{fitHeight=this.fitInto.getBoundingClientRect().height}retu
    rn fitHeight},get _fitLeft(){var fitLeft;if(this.fitInto===window){fitLeft=0}els
    e{fitLeft=this.fitInto.getBoundingClientRect().left}return fitLeft},get _fitTop(
    ){var fitTop;if(this.fitInto===window){fitTop=0}else{fitTop=this.fitInto.getBoun
    dingClientRect().top}return fitTop},get _defaultPositionTarget(){var parent=Poly
    mer.dom(this).parentNode;if(parent&&parent.nodeType===Node.DOCUMENT_FRAGMENT_NOD
    E){parent=parent.host}return parent},get _localeHorizontalAlign(){if(this._isRTL
    ){if(this.horizontalAlign==="right"){return"left"}if(this.horizontalAlign==="lef
    t"){return"right"}}return this.horizontalAlign},attached:function(){this._isRTL=
    window.getComputedStyle(this).direction=="rtl";this.positionTarget=this.position
    Target||this._defaultPositionTarget;if(this.autoFitOnAttach){if(window.getComput
    edStyle(this).display==="none"){setTimeout(function(){this.fit()}.bind(this))}el
    se{this.fit()}}},fit:function(){this.position();this.constrain();this.center()},
    _discoverInfo:function(){if(this._fitInfo){return}var target=window.getComputedS
    tyle(this);var sizer=window.getComputedStyle(this.sizingTarget);this._fitInfo={i
    nlineStyle:{top:this.style.top||"",left:this.style.left||"",position:this.style.
    position||""},sizerInlineStyle:{maxWidth:this.sizingTarget.style.maxWidth||"",ma
    xHeight:this.sizingTarget.style.maxHeight||"",boxSizing:this.sizingTarget.style.
    boxSizing||""},positionedBy:{vertically:target.top!=="auto"?"top":target.bottom!
    =="auto"?"bottom":null,horizontally:target.left!=="auto"?"left":target.right!=="
    auto"?"right":null},sizedBy:{height:sizer.maxHeight!=="none",width:sizer.maxWidt
    h!=="none",minWidth:parseInt(sizer.minWidth,10)||0,minHeight:parseInt(sizer.minH
    eight,10)||0},margin:{top:parseInt(target.marginTop,10)||0,right:parseInt(target
    .marginRight,10)||0,bottom:parseInt(target.marginBottom,10)||0,left:parseInt(tar
    get.marginLeft,10)||0}};if(this.verticalOffset){this._fitInfo.margin.top=this._f
    itInfo.margin.bottom=this.verticalOffset;this._fitInfo.inlineStyle.marginTop=thi
    s.style.marginTop||"";this._fitInfo.inlineStyle.marginBottom=this.style.marginBo
    ttom||"";this.style.marginTop=this.style.marginBottom=this.verticalOffset+"px"}i
    f(this.horizontalOffset){this._fitInfo.margin.left=this._fitInfo.margin.right=th
    is.horizontalOffset;this._fitInfo.inlineStyle.marginLeft=this.style.marginLeft||
    "";this._fitInfo.inlineStyle.marginRight=this.style.marginRight||"";this.style.m
    arginLeft=this.style.marginRight=this.horizontalOffset+"px"}},resetFit:function(
    ){var info=this._fitInfo||{};for(var property in info.sizerInlineStyle){this.siz
    ingTarget.style[property]=info.sizerInlineStyle[property]}for(var property in in
    fo.inlineStyle){this.style[property]=info.inlineStyle[property]}this._fitInfo=nu
    ll},refit:function(){var scrollLeft=this.sizingTarget.scrollLeft;var scrollTop=t
    his.sizingTarget.scrollTop;this.resetFit();this.fit();this.sizingTarget.scrollLe
    ft=scrollLeft;this.sizingTarget.scrollTop=scrollTop},position:function(){if(!thi
    s.horizontalAlign&&!this.verticalAlign){return}this._discoverInfo();this.style.p
    osition="fixed";this.sizingTarget.style.boxSizing="border-box";this.style.left="
    0px";this.style.top="0px";var rect=this.getBoundingClientRect();var positionRect
    =this.__getNormalizedRect(this.positionTarget);var fitRect=this.__getNormalizedR
    ect(this.fitInto);var margin=this._fitInfo.margin;var size={width:rect.width+mar
    gin.left+margin.right,height:rect.height+margin.top+margin.bottom};var position=
    this.__getPosition(this._localeHorizontalAlign,this.verticalAlign,size,positionR
    ect,fitRect);var left=position.left+margin.left;var top=position.top+margin.top;
    var right=Math.min(fitRect.right-margin.right,left+rect.width);var bottom=Math.m
    in(fitRect.bottom-margin.bottom,top+rect.height);var minWidth=this._fitInfo.size
    dBy.minWidth;var minHeight=this._fitInfo.sizedBy.minHeight;if(left<margin.left){
    left=margin.left;if(right-left<minWidth){left=right-minWidth}}if(top<margin.top)
    {top=margin.top;if(bottom-top<minHeight){top=bottom-minHeight}}this.sizingTarget
    .style.maxWidth=right-left+"px";this.sizingTarget.style.maxHeight=bottom-top+"px
    ";this.style.left=left-rect.left+"px";this.style.top=top-rect.top+"px"},constrai
    n:function(){if(this.horizontalAlign||this.verticalAlign){return}this._discoverI
    nfo();var info=this._fitInfo;if(!info.positionedBy.vertically){this.style.positi
    on="fixed";this.style.top="0px"}if(!info.positionedBy.horizontally){this.style.p
    osition="fixed";this.style.left="0px"}this.sizingTarget.style.boxSizing="border-
    box";var rect=this.getBoundingClientRect();if(!info.sizedBy.height){this.__sizeD
    imension(rect,info.positionedBy.vertically,"top","bottom","Height")}if(!info.siz
    edBy.width){this.__sizeDimension(rect,info.positionedBy.horizontally,"left","rig
    ht","Width")}},_sizeDimension:function(rect,positionedBy,start,end,extent){this.
    __sizeDimension(rect,positionedBy,start,end,extent)},__sizeDimension:function(re
    ct,positionedBy,start,end,extent){var info=this._fitInfo;var fitRect=this.__getN
    ormalizedRect(this.fitInto);var max=extent==="Width"?fitRect.width:fitRect.heigh
    t;var flip=positionedBy===end;var offset=flip?max-rect[end]:rect[start];var marg
    in=info.margin[flip?start:end];var offsetExtent="offset"+extent;var sizingOffset
    =this[offsetExtent]-this.sizingTarget[offsetExtent];this.sizingTarget.style["max
    "+extent]=max-margin-offset-sizingOffset+"px"},center:function(){if(this.horizon
    talAlign||this.verticalAlign){return}this._discoverInfo();var positionedBy=this.
    _fitInfo.positionedBy;if(positionedBy.vertically&&positionedBy.horizontally){ret
    urn}this.style.position="fixed";if(!positionedBy.vertically){this.style.top="0px
    "}if(!positionedBy.horizontally){this.style.left="0px"}var rect=this.getBounding
    ClientRect();var fitRect=this.__getNormalizedRect(this.fitInto);if(!positionedBy
    .vertically){var top=fitRect.top-rect.top+(fitRect.height-rect.height)/2;this.st
    yle.top=top+"px"}if(!positionedBy.horizontally){var left=fitRect.left-rect.left+
    (fitRect.width-rect.width)/2;this.style.left=left+"px"}},__getNormalizedRect:fun
    ction(target){if(target===document.documentElement||target===window){return{top:
    0,left:0,width:window.innerWidth,height:window.innerHeight,right:window.innerWid
    th,bottom:window.innerHeight}}return target.getBoundingClientRect()},__getCroppe
    dArea:function(position,size,fitRect){var verticalCrop=Math.min(0,position.top)+
    Math.min(0,fitRect.bottom-(position.top+size.height));var horizontalCrop=Math.mi
    n(0,position.left)+Math.min(0,fitRect.right-(position.left+size.width));return M
    ath.abs(verticalCrop)*size.width+Math.abs(horizontalCrop)*size.height},__getPosi
    tion:function(hAlign,vAlign,size,positionRect,fitRect){var positions=[{verticalA
    lign:"top",horizontalAlign:"left",top:positionRect.top,left:positionRect.left},{
    verticalAlign:"top",horizontalAlign:"right",top:positionRect.top,left:positionRe
    ct.right-size.width},{verticalAlign:"bottom",horizontalAlign:"left",top:position
    Rect.bottom-size.height,left:positionRect.left},{verticalAlign:"bottom",horizont
    alAlign:"right",top:positionRect.bottom-size.height,left:positionRect.right-size
    .width}];if(this.noOverlap){for(var i=0,l=positions.length;i<l;i++){var copy={};
    for(var key in positions[i]){copy[key]=positions[i][key]}positions.push(copy)}po
    sitions[0].top=positions[1].top+=positionRect.height;positions[2].top=positions[
    3].top-=positionRect.height;positions[4].left=positions[6].left+=positionRect.wi
    dth;positions[5].left=positions[7].left-=positionRect.width}vAlign=vAlign==="aut
    o"?null:vAlign;hAlign=hAlign==="auto"?null:hAlign;var position;for(var i=0;i<pos
    itions.length;i++){var pos=positions[i];if(!this.dynamicAlign&&!this.noOverlap&&
    pos.verticalAlign===vAlign&&pos.horizontalAlign===hAlign){position=pos;break}var
     alignOk=(!vAlign||pos.verticalAlign===vAlign)&&(!hAlign||pos.horizontalAlign===
    hAlign);if(!this.dynamicAlign&&!alignOk){continue}position=position||pos;pos.cro
    ppedArea=this.__getCroppedArea(pos,size,fitRect);var diff=pos.croppedArea-positi
    on.croppedArea;if(diff<0||diff===0&&alignOk){position=pos}if(position.croppedAre
    a===0&&alignOk){break}}return position}};(function(){"use strict";Polymer({is:"i
    ron-overlay-backdrop",properties:{opened:{reflectToAttribute:true,type:Boolean,v
    alue:false,observer:"_openedChanged"}},listeners:{transitionend:"_onTransitionen
    d"},created:function(){this.__openedRaf=null},attached:function(){this.opened&&t
    his._openedChanged(this.opened)},prepare:function(){if(this.opened&&!this.parent
    Node){Polymer.dom(document.body).appendChild(this)}},open:function(){this.opened
    =true},close:function(){this.opened=false},complete:function(){if(!this.opened&&
    this.parentNode===document.body){Polymer.dom(this.parentNode).removeChild(this)}
    },_onTransitionend:function(event){if(event&&event.target===this){this.complete(
    )}},_openedChanged:function(opened){if(opened){this.prepare()}else{var cs=window
    .getComputedStyle(this);if(cs.transitionDuration==="0s"||cs.opacity==0){this.com
    plete()}}if(!this.isAttached){return}if(this.__openedRaf){window.cancelAnimation
    Frame(this.__openedRaf);this.__openedRaf=null}this.scrollTop=this.scrollTop;this
    .__openedRaf=window.requestAnimationFrame(function(){this.__openedRaf=null;this.
    toggleClass("opened",this.opened)}.bind(this))}})})();Polymer.IronOverlayManager
    Class=function(){this._overlays=[];this._minimumZ=101;this._backdropElement=null
    ;Polymer.Gestures.add(document,"tap",this._onCaptureClick.bind(this));document.a
    ddEventListener("focus",this._onCaptureFocus.bind(this),true);document.addEventL
    istener("keydown",this._onCaptureKeyDown.bind(this),true)};Polymer.IronOverlayMa
    nagerClass.prototype={constructor:Polymer.IronOverlayManagerClass,get backdropEl
    ement(){if(!this._backdropElement){this._backdropElement=document.createElement(
    "iron-overlay-backdrop")}return this._backdropElement},get deepActiveElement(){v
    ar active=document.activeElement||document.body;while(active.root&&Polymer.dom(a
    ctive.root).activeElement){active=Polymer.dom(active.root).activeElement}return 
    active},_bringOverlayAtIndexToFront:function(i){var overlay=this._overlays[i];if
    (!overlay){return}var lastI=this._overlays.length-1;var currentOverlay=this._ove
    rlays[lastI];if(currentOverlay&&this._shouldBeBehindOverlay(overlay,currentOverl
    ay)){lastI--}if(i>=lastI){return}var minimumZ=Math.max(this.currentOverlayZ(),th
    is._minimumZ);if(this._getZ(overlay)<=minimumZ){this._applyOverlayZ(overlay,mini
    mumZ)}while(i<lastI){this._overlays[i]=this._overlays[i+1];i++}this._overlays[la
    stI]=overlay},addOrRemoveOverlay:function(overlay){if(overlay.opened){this.addOv
    erlay(overlay)}else{this.removeOverlay(overlay)}},addOverlay:function(overlay){v
    ar i=this._overlays.indexOf(overlay);if(i>=0){this._bringOverlayAtIndexToFront(i
    );this.trackBackdrop();return}var insertionIndex=this._overlays.length;var curre
    ntOverlay=this._overlays[insertionIndex-1];var minimumZ=Math.max(this._getZ(curr
    entOverlay),this._minimumZ);var newZ=this._getZ(overlay);if(currentOverlay&&this
    ._shouldBeBehindOverlay(overlay,currentOverlay)){this._applyOverlayZ(currentOver
    lay,minimumZ);insertionIndex--;var previousOverlay=this._overlays[insertionIndex
    -1];minimumZ=Math.max(this._getZ(previousOverlay),this._minimumZ)}if(newZ<=minim
    umZ){this._applyOverlayZ(overlay,minimumZ)}this._overlays.splice(insertionIndex,
    0,overlay);this.trackBackdrop()},removeOverlay:function(overlay){var i=this._ove
    rlays.indexOf(overlay);if(i===-1){return}this._overlays.splice(i,1);this.trackBa
    ckdrop()},currentOverlay:function(){var i=this._overlays.length-1;return this._o
    verlays[i]},currentOverlayZ:function(){return this._getZ(this.currentOverlay())}
    ,ensureMinimumZ:function(minimumZ){this._minimumZ=Math.max(this._minimumZ,minimu
    mZ)},focusOverlay:function(){var current=this.currentOverlay();if(current){curre
    nt._applyFocus()}},trackBackdrop:function(){var overlay=this._overlayWithBackdro
    p();if(!overlay&&!this._backdropElement){return}this.backdropElement.style.zInde
    x=this._getZ(overlay)-1;this.backdropElement.opened=!!overlay},getBackdrops:func
    tion(){var backdrops=[];for(var i=0;i<this._overlays.length;i++){if(this._overla
    ys[i].withBackdrop){backdrops.push(this._overlays[i])}}return backdrops},backdro
    pZ:function(){return this._getZ(this._overlayWithBackdrop())-1},_overlayWithBack
    drop:function(){for(var i=0;i<this._overlays.length;i++){if(this._overlays[i].wi
    thBackdrop){return this._overlays[i]}}},_getZ:function(overlay){var z=this._mini
    mumZ;if(overlay){var z1=Number(overlay.style.zIndex||window.getComputedStyle(ove
    rlay).zIndex);if(z1===z1){z=z1}}return z},_setZ:function(element,z){element.styl
    e.zIndex=z},_applyOverlayZ:function(overlay,aboveZ){this._setZ(overlay,aboveZ+2)
    },_overlayInPath:function(path){path=path||[];for(var i=0;i<path.length;i++){if(
    path[i]._manager===this){return path[i]}}},_onCaptureClick:function(event){var o
    verlay=this.currentOverlay();if(overlay&&this._overlayInPath(Polymer.dom(event).
    path)!==overlay){overlay._onCaptureClick(event)}},_onCaptureFocus:function(event
    ){var overlay=this.currentOverlay();if(overlay){overlay._onCaptureFocus(event)}}
    ,_onCaptureKeyDown:function(event){var overlay=this.currentOverlay();if(overlay)
    {if(Polymer.IronA11yKeysBehavior.keyboardEventMatchesKeys(event,"esc")){overlay.
    _onCaptureEsc(event)}else if(Polymer.IronA11yKeysBehavior.keyboardEventMatchesKe
    ys(event,"tab")){overlay._onCaptureTab(event)}}},_shouldBeBehindOverlay:function
    (overlay1,overlay2){return!overlay1.alwaysOnTop&&overlay2.alwaysOnTop}};Polymer.
    IronOverlayManager=new Polymer.IronOverlayManagerClass;(function(){"use strict";
    Polymer.IronOverlayBehaviorImpl={properties:{opened:{observer:"_openedChanged",t
    ype:Boolean,value:false,notify:true},canceled:{observer:"_canceledChanged",readO
    nly:true,type:Boolean,value:false},withBackdrop:{observer:"_withBackdropChanged"
    ,type:Boolean},noAutoFocus:{type:Boolean,value:false},noCancelOnEscKey:{type:Boo
    lean,value:false},noCancelOnOutsideClick:{type:Boolean,value:false},closingReaso
    n:{ | 
| 47 type:Object},restoreFocusOnClose:{type:Boolean,value:false},alwaysOnTop:{type:Bo
    olean},_manager:{type:Object,value:Polymer.IronOverlayManager},_focusedChild:{ty
    pe:Object}},listeners:{"iron-resize":"_onIronResize"},get backdropElement(){retu
    rn this._manager.backdropElement},get _focusNode(){return this._focusedChild||Po
    lymer.dom(this).querySelector("[autofocus]")||this},get _focusableNodes(){var FO
    CUSABLE_WITH_DISABLED=["a[href]","area[href]","iframe","[tabindex]","[contentEdi
    table=true]"];var FOCUSABLE_WITHOUT_DISABLED=["input","select","textarea","butto
    n"];var selector=FOCUSABLE_WITH_DISABLED.join(':not([tabindex="-1"]),')+':not([t
    abindex="-1"]),'+FOCUSABLE_WITHOUT_DISABLED.join(':not([disabled]):not([tabindex
    ="-1"]),')+':not([disabled]):not([tabindex="-1"])';var focusables=Polymer.dom(th
    is).querySelectorAll(selector);if(this.tabIndex>=0){focusables.splice(0,0,this)}
    return focusables.sort(function(a,b){if(a.tabIndex===b.tabIndex){return 0}if(a.t
    abIndex===0||a.tabIndex>b.tabIndex){return 1}return-1})},ready:function(){this._
    _isAnimating=false;this.__shouldRemoveTabIndex=false;this.__firstFocusableNode=t
    his.__lastFocusableNode=null;this.__raf=null;this.__restoreFocusNode=null;this._
    ensureSetup()},attached:function(){if(this.opened){this._openedChanged(this.open
    ed)}this._observer=Polymer.dom(this).observeNodes(this._onNodesChange)},detached
    :function(){Polymer.dom(this).unobserveNodes(this._observer);this._observer=null
    ;if(this.__raf){window.cancelAnimationFrame(this.__raf);this.__raf=null}this._ma
    nager.removeOverlay(this)},toggle:function(){this._setCanceled(false);this.opene
    d=!this.opened},open:function(){this._setCanceled(false);this.opened=true},close
    :function(){this._setCanceled(false);this.opened=false},cancel:function(event){v
    ar cancelEvent=this.fire("iron-overlay-canceled",event,{cancelable:true});if(can
    celEvent.defaultPrevented){return}this._setCanceled(true);this.opened=false},_en
    sureSetup:function(){if(this._overlaySetup){return}this._overlaySetup=true;this.
    style.outline="none";this.style.display="none"},_openedChanged:function(opened){
    if(opened){this.removeAttribute("aria-hidden")}else{this.setAttribute("aria-hidd
    en","true")}if(!this.isAttached){return}this.__isAnimating=true;this.__onNextAni
    mationFrame(this.__openedChanged)},_canceledChanged:function(){this.closingReaso
    n=this.closingReason||{};this.closingReason.canceled=this.canceled},_withBackdro
    pChanged:function(){if(this.withBackdrop&&!this.hasAttribute("tabindex")){this.s
    etAttribute("tabindex","-1");this.__shouldRemoveTabIndex=true}else if(this.__sho
    uldRemoveTabIndex){this.removeAttribute("tabindex");this.__shouldRemoveTabIndex=
    false}if(this.opened&&this.isAttached){this._manager.trackBackdrop()}},_prepareR
    enderOpened:function(){this.__restoreFocusNode=this._manager.deepActiveElement;t
    his._preparePositioning();this.refit();this._finishPositioning();if(this.noAutoF
    ocus&&document.activeElement===this._focusNode){this._focusNode.blur();this.__re
    storeFocusNode.focus()}},_renderOpened:function(){this._finishRenderOpened()},_r
    enderClosed:function(){this._finishRenderClosed()},_finishRenderOpened:function(
    ){this.notifyResize();this.__isAnimating=false;var focusableNodes=this._focusabl
    eNodes;this.__firstFocusableNode=focusableNodes[0];this.__lastFocusableNode=focu
    sableNodes[focusableNodes.length-1];this.fire("iron-overlay-opened")},_finishRen
    derClosed:function(){this.style.display="none";this.style.zIndex="";this.notifyR
    esize();this.__isAnimating=false;this.fire("iron-overlay-closed",this.closingRea
    son)},_preparePositioning:function(){this.style.transition=this.style.webkitTran
    sition="none";this.style.transform=this.style.webkitTransform="none";this.style.
    display=""},_finishPositioning:function(){this.style.display="none";this.scrollT
    op=this.scrollTop;this.style.transition=this.style.webkitTransition="";this.styl
    e.transform=this.style.webkitTransform="";this.style.display="";this.scrollTop=t
    his.scrollTop},_applyFocus:function(){if(this.opened){if(!this.noAutoFocus){this
    ._focusNode.focus()}}else{this._focusNode.blur();this._focusedChild=null;if(this
    .restoreFocusOnClose&&this.__restoreFocusNode){this.__restoreFocusNode.focus()}t
    his.__restoreFocusNode=null;var currentOverlay=this._manager.currentOverlay();if
    (currentOverlay&&this!==currentOverlay){currentOverlay._applyFocus()}}},_onCaptu
    reClick:function(event){if(!this.noCancelOnOutsideClick){this.cancel(event)}},_o
    nCaptureFocus:function(event){if(!this.withBackdrop){return}var path=Polymer.dom
    (event).path;if(path.indexOf(this)===-1){event.stopPropagation();this._applyFocu
    s()}else{this._focusedChild=path[0]}},_onCaptureEsc:function(event){if(!this.noC
    ancelOnEscKey){this.cancel(event)}},_onCaptureTab:function(event){if(!this.withB
    ackdrop){return}var shift=event.shiftKey;var nodeToCheck=shift?this.__firstFocus
    ableNode:this.__lastFocusableNode;var nodeToSet=shift?this.__lastFocusableNode:t
    his.__firstFocusableNode;var shouldWrap=false;if(nodeToCheck===nodeToSet){should
    Wrap=true}else{var focusedNode=this._manager.deepActiveElement;shouldWrap=focuse
    dNode===nodeToCheck||focusedNode===this}if(shouldWrap){event.preventDefault();th
    is._focusedChild=nodeToSet;this._applyFocus()}},_onIronResize:function(){if(this
    .opened&&!this.__isAnimating){this.__onNextAnimationFrame(this.refit)}},_onNodes
    Change:function(){if(this.opened&&!this.__isAnimating){this.notifyResize()}},__o
    penedChanged:function(){if(this.opened){this._prepareRenderOpened();this._manage
    r.addOverlay(this);this._applyFocus();this._renderOpened()}else{this._manager.re
    moveOverlay(this);this._applyFocus();this._renderClosed()}},__onNextAnimationFra
    me:function(callback){if(this.__raf){window.cancelAnimationFrame(this.__raf)}var
     self=this;this.__raf=window.requestAnimationFrame(function nextAnimationFrame()
    {self.__raf=null;callback.call(self)})}};Polymer.IronOverlayBehavior=[Polymer.Ir
    onFitBehavior,Polymer.IronResizableBehavior,Polymer.IronOverlayBehaviorImpl]})()
    ;Polymer.NeonAnimatableBehavior={properties:{animationConfig:{type:Object},entry
    Animation:{observer:"_entryAnimationChanged",type:String},exitAnimation:{observe
    r:"_exitAnimationChanged",type:String}},_entryAnimationChanged:function(){this.a
    nimationConfig=this.animationConfig||{};this.animationConfig["entry"]=[{name:thi
    s.entryAnimation,node:this}]},_exitAnimationChanged:function(){this.animationCon
    fig=this.animationConfig||{};this.animationConfig["exit"]=[{name:this.exitAnimat
    ion,node:this}]},_copyProperties:function(config1,config2){for(var property in c
    onfig2){config1[property]=config2[property]}},_cloneConfig:function(config){var 
    clone={isClone:true};this._copyProperties(clone,config);return clone},_getAnimat
    ionConfigRecursive:function(type,map,allConfigs){if(!this.animationConfig){retur
    n}if(this.animationConfig.value&&typeof this.animationConfig.value==="function")
    {this._warn(this._logf("playAnimation","Please put 'animationConfig' inside of y
    our components 'properties' object instead of outside of it."));return}var thisC
    onfig;if(type){thisConfig=this.animationConfig[type]}else{thisConfig=this.animat
    ionConfig}if(!Array.isArray(thisConfig)){thisConfig=[thisConfig]}if(thisConfig){
    for(var config,index=0;config=thisConfig[index];index++){if(config.animatable){c
    onfig.animatable._getAnimationConfigRecursive(config.type||type,map,allConfigs)}
    else{if(config.id){var cachedConfig=map[config.id];if(cachedConfig){if(!cachedCo
    nfig.isClone){map[config.id]=this._cloneConfig(cachedConfig);cachedConfig=map[co
    nfig.id]}this._copyProperties(cachedConfig,config)}else{map[config.id]=config}}e
    lse{allConfigs.push(config)}}}}},getAnimationConfig:function(type){var map={};va
    r allConfigs=[];this._getAnimationConfigRecursive(type,map,allConfigs);for(var k
    ey in map){allConfigs.push(map[key])}return allConfigs}};Polymer.NeonAnimationRu
    nnerBehaviorImpl={_configureAnimations:function(configs){var results=[];if(confi
    gs.length>0){for(var config,index=0;config=configs[index];index++){var neonAnima
    tion=document.createElement(config.name);if(neonAnimation.isNeonAnimation){var r
    esult=null;try{result=neonAnimation.configure(config);if(typeof result.cancel!="
    function"){result=document.timeline.play(result)}}catch(e){result=null;console.w
    arn("Couldnt play","(",config.name,").",e)}if(result){results.push({neonAnimatio
    n:neonAnimation,config:config,animation:result})}}else{console.warn(this.is+":",
    config.name,"not found!")}}}return results},_shouldComplete:function(activeEntri
    es){var finished=true;for(var i=0;i<activeEntries.length;i++){if(activeEntries[i
    ].animation.playState!="finished"){finished=false;break}}return finished},_compl
    ete:function(activeEntries){for(var i=0;i<activeEntries.length;i++){activeEntrie
    s[i].neonAnimation.complete(activeEntries[i].config)}for(var i=0;i<activeEntries
    .length;i++){activeEntries[i].animation.cancel()}},playAnimation:function(type,c
    ookie){var configs=this.getAnimationConfig(type);if(!configs){return}this._activ
    e=this._active||{};if(this._active[type]){this._complete(this._active[type]);del
    ete this._active[type]}var activeEntries=this._configureAnimations(configs);if(a
    ctiveEntries.length==0){this.fire("neon-animation-finish",cookie,{bubbles:false}
    );return}this._active[type]=activeEntries;for(var i=0;i<activeEntries.length;i++
    ){activeEntries[i].animation.onfinish=function(){if(this._shouldComplete(activeE
    ntries)){this._complete(activeEntries);delete this._active[type];this.fire("neon
    -animation-finish",cookie,{bubbles:false})}}.bind(this)}},cancelAnimation:functi
    on(){for(var k in this._animations){this._animations[k].cancel()}this._animation
    s={}}};Polymer.NeonAnimationRunnerBehavior=[Polymer.NeonAnimatableBehavior,Polym
    er.NeonAnimationRunnerBehaviorImpl];Polymer.NeonAnimationBehavior={properties:{a
    nimationTiming:{type:Object,value:function(){return{duration:500,easing:"cubic-b
    ezier(0.4, 0, 0.2, 1)",fill:"both"}}}},isNeonAnimation:true,timingFromConfig:fun
    ction(config){if(config.timing){for(var property in config.timing){this.animatio
    nTiming[property]=config.timing[property]}}return this.animationTiming},setPrefi
    xedProperty:function(node,property,value){var map={transform:["webkitTransform"]
    ,transformOrigin:["mozTransformOrigin","webkitTransformOrigin"]};var prefixes=ma
    p[property];for(var prefix,index=0;prefix=prefixes[index];index++){node.style[pr
    efix]=value}node.style[property]=value},complete:function(){}};Polymer({is:"opaq
    ue-animation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(confi
    g){var node=config.node;this._effect=new KeyframeEffect(node,[{opacity:"1"},{opa
    city:"1"}],this.timingFromConfig(config));node.style.opacity="0";return this._ef
    fect},complete:function(config){config.node.style.opacity=""}});(function(){"use
     strict";var LAST_TOUCH_POSITION={pageX:0,pageY:0};var ROOT_TARGET=null;var SCRO
    LLABLE_NODES=[];Polymer.IronDropdownScrollManager={get currentLockingElement(){r
    eturn this._lockingElements[this._lockingElements.length-1]},elementIsScrollLock
    ed:function(element){var currentLockingElement=this.currentLockingElement;if(cur
    rentLockingElement===undefined)return false;var scrollLocked;if(this._hasCachedL
    ockedElement(element)){return true}if(this._hasCachedUnlockedElement(element)){r
    eturn false}scrollLocked=!!currentLockingElement&¤tLockingElement!==elemen
    t&&!this._composedTreeContains(currentLockingElement,element);if(scrollLocked){t
    his._lockedElementCache.push(element)}else{this._unlockedElementCache.push(eleme
    nt)}return scrollLocked},pushScrollLock:function(element){if(this._lockingElemen
    ts.indexOf(element)>=0){return}if(this._lockingElements.length===0){this._lockSc
    rollInteractions()}this._lockingElements.push(element);this._lockedElementCache=
    [];this._unlockedElementCache=[]},removeScrollLock:function(element){var index=t
    his._lockingElements.indexOf(element);if(index===-1){return}this._lockingElement
    s.splice(index,1);this._lockedElementCache=[];this._unlockedElementCache=[];if(t
    his._lockingElements.length===0){this._unlockScrollInteractions()}},_lockingElem
    ents:[],_lockedElementCache:null,_unlockedElementCache:null,_hasCachedLockedElem
    ent:function(element){return this._lockedElementCache.indexOf(element)>-1},_hasC
    achedUnlockedElement:function(element){return this._unlockedElementCache.indexOf
    (element)>-1},_composedTreeContains:function(element,child){var contentElements;
    var distributedNodes;var contentIndex;var nodeIndex;if(element.contains(child)){
    return true}contentElements=Polymer.dom(element).querySelectorAll("content");for
    (contentIndex=0;contentIndex<contentElements.length;++contentIndex){distributedN
    odes=Polymer.dom(contentElements[contentIndex]).getDistributedNodes();for(nodeIn
    dex=0;nodeIndex<distributedNodes.length;++nodeIndex){if(this._composedTreeContai
    ns(distributedNodes[nodeIndex],child)){return true}}}return false},_scrollIntera
    ctionHandler:function(event){if(event.cancelable&&this._shouldPreventScrolling(e
    vent)){event.preventDefault()}if(event.targetTouches){var touch=event.targetTouc
    hes[0];LAST_TOUCH_POSITION.pageX=touch.pageX;LAST_TOUCH_POSITION.pageY=touch.pag
    eY}},_lockScrollInteractions:function(){this._boundScrollHandler=this._boundScro
    llHandler||this._scrollInteractionHandler.bind(this);document.addEventListener("
    wheel",this._boundScrollHandler,true);document.addEventListener("mousewheel",thi
    s._boundScrollHandler,true);document.addEventListener("DOMMouseScroll",this._bou
    ndScrollHandler,true);document.addEventListener("touchstart",this._boundScrollHa
    ndler,true);document.addEventListener("touchmove",this._boundScrollHandler,true)
    },_unlockScrollInteractions:function(){document.removeEventListener("wheel",this
    ._boundScrollHandler,true);document.removeEventListener("mousewheel",this._bound
    ScrollHandler,true);document.removeEventListener("DOMMouseScroll",this._boundScr
    ollHandler,true);document.removeEventListener("touchstart",this._boundScrollHand
    ler,true);document.removeEventListener("touchmove",this._boundScrollHandler,true
    )},_shouldPreventScrolling:function(event){var target=Polymer.dom(event).rootTar
    get;if(event.type!=="touchmove"&&ROOT_TARGET!==target){ROOT_TARGET=target;SCROLL
    ABLE_NODES=this._getScrollableNodes(Polymer.dom(event).path)}if(!SCROLLABLE_NODE
    S.length){return true}if(event.type==="touchstart"){return false}var info=this._
    getScrollInfo(event);return!this._getScrollingNode(SCROLLABLE_NODES,info.deltaX,
    info.deltaY)},_getScrollableNodes:function(nodes){var scrollables=[];var locking
    Index=nodes.indexOf(this.currentLockingElement);for(var i=0;i<=lockingIndex;i++)
    {var node=nodes[i];if(node.nodeType===11){continue}var style=node.style;if(style
    .overflow!=="scroll"&&style.overflow!=="auto"){style=window.getComputedStyle(nod
    e)}if(style.overflow==="scroll"||style.overflow==="auto"){scrollables.push(node)
    }}return scrollables},_getScrollingNode:function(nodes,deltaX,deltaY){if(!deltaX
    &&!deltaY){return}var verticalScroll=Math.abs(deltaY)>=Math.abs(deltaX);for(var 
    i=0;i<nodes.length;i++){var node=nodes[i];var canScroll=false;if(verticalScroll)
    {canScroll=deltaY<0?node.scrollTop>0:node.scrollTop<node.scrollHeight-node.clien
    tHeight}else{canScroll=deltaX<0?node.scrollLeft>0:node.scrollLeft<node.scrollWid
    th-node.clientWidth}if(canScroll){return node}}},_getScrollInfo:function(event){
    var info={deltaX:event.deltaX,deltaY:event.deltaY};if("deltaX"in event){}else if
    ("wheelDeltaX"in event){info.deltaX=-event.wheelDeltaX;info.deltaY=-event.wheelD
    eltaY}else if("axis"in event){info.deltaX=event.axis===1?event.detail:0;info.del
    taY=event.axis===2?event.detail:0}else if(event.targetTouches){var touch=event.t
    argetTouches[0];info.deltaX=LAST_TOUCH_POSITION.pageX-touch.pageX;info.deltaY=LA
    ST_TOUCH_POSITION.pageY-touch.pageY}return info}}})();(function(){"use strict";P
    olymer({is:"iron-dropdown",behaviors:[Polymer.IronControlState,Polymer.IronA11yK
    eysBehavior,Polymer.IronOverlayBehavior,Polymer.NeonAnimationRunnerBehavior],pro
    perties:{horizontalAlign:{type:String,value:"left",reflectToAttribute:true},vert
    icalAlign:{type:String,value:"top",reflectToAttribute:true},openAnimationConfig:
    {type:Object},closeAnimationConfig:{type:Object},focusTarget:{type:Object},noAni
    mations:{type:Boolean,value:false},allowOutsideScroll:{type:Boolean,value:false}
    ,_boundOnCaptureScroll:{type:Function,value:function(){return this._onCaptureScr
    oll.bind(this)}}},listeners:{"neon-animation-finish":"_onNeonAnimationFinish"},o
    bservers:["_updateOverlayPosition(positionTarget, verticalAlign, horizontalAlign
    , verticalOffset, horizontalOffset)"],get containedElement(){return Polymer.dom(
    this.$.content).getDistributedNodes()[0]},get _focusTarget(){return this.focusTa
    rget||this.containedElement},ready:function(){this._scrollTop=0;this._scrollLeft
    =0;this._refitOnScrollRAF=null},attached:function(){if(!this.sizingTarget||this.
    sizingTarget===this){this.sizingTarget=this.containedElement}},detached:function
    (){this.cancelAnimation();document.removeEventListener("scroll",this._boundOnCap
    tureScroll);Polymer.IronDropdownScrollManager.removeScrollLock(this)},_openedCha
    nged:function(){if(this.opened&&this.disabled){this.cancel()}else{this.cancelAni
    mation();this._updateAnimationConfig();this._saveScrollPosition();if(this.opened
    ){document.addEventListener("scroll",this._boundOnCaptureScroll);!this.allowOuts
    ideScroll&&Polymer.IronDropdownScrollManager.pushScrollLock(this)}else{document.
    removeEventListener("scroll",this._boundOnCaptureScroll);Polymer.IronDropdownScr
    ollManager.removeScrollLock(this)}Polymer.IronOverlayBehaviorImpl._openedChanged
    .apply(this,arguments)}},_renderOpened:function(){if(!this.noAnimations&&this.an
    imationConfig.open){this.$.contentWrapper.classList.add("animating");this.playAn
    imation("open")}else{Polymer.IronOverlayBehaviorImpl._renderOpened.apply(this,ar
    guments)}},_renderClosed:function(){if(!this.noAnimations&&this.animationConfig.
    close){this.$.contentWrapper.classList.add("animating");this.playAnimation("clos
    e")}else{Polymer.IronOverlayBehaviorImpl._renderClosed.apply(this,arguments)}},_
    onNeonAnimationFinish:function(){this.$.contentWrapper.classList.remove("animati
    ng");if(this.opened){this._finishRenderOpened()}else{this._finishRenderClosed()}
    },_onCaptureScroll:function(){if(!this.allowOutsideScroll){this._restoreScrollPo
    sition()}else{this._refitOnScrollRAF&&window.cancelAnimationFrame(this._refitOnS
    crollRAF);this._refitOnScrollRAF=window.requestAnimationFrame(this.refit.bind(th
    is))}},_saveScrollPosition:function(){if(document.scrollingElement){this._scroll
    Top=document.scrollingElement.scrollTop;this._scrollLeft=document.scrollingEleme
    nt.scrollLeft}else{this._scrollTop=Math.max(document.documentElement.scrollTop,d
    ocument.body.scrollTop);this._scrollLeft=Math.max(document.documentElement.scrol
    lLeft,document.body.scrollLeft)}},_restoreScrollPosition:function(){if(document.
    scrollingElement){document.scrollingElement.scrollTop=this._scrollTop;document.s
    crollingElement.scrollLeft=this._scrollLeft}else{document.documentElement.scroll
    Top=this._scrollTop;document.documentElement.scrollLeft=this._scrollLeft;documen
    t.body.scrollTop=this._scrollTop;document.body.scrollLeft=this._scrollLeft}},_up
    dateAnimationConfig:function(){var animations=(this.openAnimationConfig||[]).con
    cat(this.closeAnimationConfig||[]);for(var i=0;i<animations.length;i++){animatio
    ns[i].node=this.containedElement}this.animationConfig={open:this.openAnimationCo
    nfig,close:this.closeAnimationConfig}},_updateOverlayPosition:function(){if(this
    .isAttached){this.notifyResize()}},_applyFocus:function(){var focusTarget=this.f
    ocusTarget||this.containedElement;if(focusTarget&&this.opened&&!this.noAutoFocus
    ){focusTarget.focus()}else{Polymer.IronOverlayBehaviorImpl._applyFocus.apply(thi
    s,arguments)}}})})();Polymer({is:"fade-in-animation",behaviors:[Polymer.NeonAnim
    ationBehavior],configure:function(config){var node=config.node;this._effect=new 
    KeyframeEffect(node,[{opacity:"0"},{opacity:"1"}],this.timingFromConfig(config))
    ;return this._effect}});Polymer({is:"fade-out-animation",behaviors:[Polymer.Neon
    AnimationBehavior],configure:function(config){var node=config.node;this._effect=
    new KeyframeEffect(node,[{opacity:"1"},{opacity:"0"}],this.timingFromConfig(conf
    ig));return this._effect}});Polymer({is:"paper-menu-grow-height-animation",behav
    iors:[Polymer.NeonAnimationBehavior],configure:function(config){var node=config.
    node;var rect=node.getBoundingClientRect();var height=rect.height;this._effect=n
    ew KeyframeEffect(node,[{height:height/2+"px"},{height:height+"px"}],this.timing
    FromConfig(config));return this._effect}});Polymer({is:"paper-menu-grow-width-an
    imation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(config){va
    r node=config.node;var rect=node.getBoundingClientRect();var width=rect.width;th
    is._effect=new KeyframeEffect(node,[{width:width/2+"px"},{width:width+"px"}],thi
    s.timingFromConfig(config));return this._effect}});Polymer({is:"paper-menu-shrin
    k-width-animation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(
    config){var node=config.node;var rect=node.getBoundingClientRect();var width=rec
    t.width;this._effect=new KeyframeEffect(node,[{width:width+"px"},{width:width-wi
    dth/20+"px"}],this.timingFromConfig(config));return this._effect}});Polymer({is:
    "paper-menu-shrink-height-animation",behaviors:[Polymer.NeonAnimationBehavior],c
    onfigure:function(config){var node=config.node;var rect=node.getBoundingClientRe
    ct();var height=rect.height;var top=rect.top;this.setPrefixedProperty(node,"tran
    sformOrigin","0 0");this._effect=new KeyframeEffect(node,[{height:height+"px",tr
    ansform:"translateY(0)"},{height:height/2+"px",transform:"translateY(-20px)"}],t
    his.timingFromConfig(config));return this._effect}});(function(){"use strict";va
    r config={ANIMATION_CUBIC_BEZIER:"cubic-bezier(.3,.95,.5,1)",MAX_ANIMATION_TIME_
    MS:400};var PaperMenuButton=Polymer({is:"paper-menu-button",behaviors:[Polymer.I
    ronA11yKeysBehavior,Polymer.IronControlState],properties:{opened:{type:Boolean,v
    alue:false,notify:true,observer:"_openedChanged"},horizontalAlign:{type:String,v
    alue:"left",reflectToAttribute:true},verticalAlign:{type:String,value:"top",refl
    ectToAttribute:true},dynamicAlign:{type:Boolean},horizontalOffset:{type:Number,v
    alue:0,notify:true},verticalOffset:{type:Number,value:0,notify:true},noOverlap:{
    type:Boolean},noAnimations:{type:Boolean,value:false},ignoreSelect:{type:Boolean
    ,value:false},closeOnActivate:{type:Boolean,value:false},openAnimationConfig:{ty
    pe:Object,value:function(){return[{name:"fade-in-animation",timing:{delay:100,du
    ration:200}},{name:"paper-menu-grow-width-animation",timing:{delay:100,duration:
    150,easing:config.ANIMATION_CUBIC_BEZIER}},{name:"paper-menu-grow-height-animati
    on",timing:{delay:100,duration:275,easing:config.ANIMATION_CUBIC_BEZIER}}]}},clo
    seAnimationConfig:{type:Object,value:function(){return[{name:"fade-out-animation
    ",timing:{duration:150}},{name:"paper-menu-shrink-width-animation",timing:{delay
    :100,duration:50,easing:config.ANIMATION_CUBIC_BEZIER}},{name:"paper-menu-shrink
    -height-animation",timing:{duration:200,easing:"ease-in"}}]}},allowOutsideScroll
    :{type:Boolean,value:false},restoreFocusOnClose:{type:Boolean,value:true},_dropd
    ownContent:{type:Object}},hostAttributes:{role:"group","aria-haspopup":"true"},l
    isteners:{"iron-activate":"_onIronActivate","iron-select":"_onIronSelect"},get c
    ontentElement(){return Polymer.dom(this.$.content).getDistributedNodes()[0]},tog
    gle:function(){if(this.opened){this.close()}else{this.open()}},open:function(){i
    f(this.disabled){return}this.$.dropdown.open()},close:function(){this.$.dropdown
    .close()},_onIronSelect:function(event){if(!this.ignoreSelect){this.close()}},_o
    nIronActivate:function(event){if(this.closeOnActivate){this.close()}},_openedCha
    nged:function(opened,oldOpened){if(opened){this._dropdownContent=this.contentEle
    ment;this.fire("paper-dropdown-open")}else if(oldOpened!=null){this.fire("paper-
    dropdown-close")}},_disabledChanged:function(disabled){Polymer.IronControlState.
    _disabledChanged.apply(this,arguments);if(disabled&&this.opened){this.close()}},
    __onIronOverlayCanceled:function(event){var uiEvent=event.detail;var target=Poly
    mer.dom(uiEvent).rootTarget;var trigger=this.$.trigger;var path=Polymer.dom(uiEv
    ent).path;if(path.indexOf(trigger)>-1){event.preventDefault()}}});Object.keys(co
    nfig).forEach(function(key){PaperMenuButton[key]=config[key]});Polymer.PaperMenu
    Button=PaperMenuButton})();Polymer.PaperInkyFocusBehaviorImpl={observers:["_focu
    sedChanged(receivedFocusFromKeyboard)"],_focusedChanged:function(receivedFocusFr
    omKeyboard){if(receivedFocusFromKeyboard){this.ensureRipple()}if(this.hasRipple(
    )){this._ripple.holdDown=receivedFocusFromKeyboard}},_createRipple:function(){va
    r ripple=Polymer.PaperRippleBehavior._createRipple();ripple.id="ink";ripple.setA
    ttribute("center","");ripple.classList.add("circle");return ripple}};Polymer.Pap
    erInkyFocusBehavior=[Polymer.IronButtonState,Polymer.IronControlState,Polymer.Pa
    perRippleBehavior,Polymer.PaperInkyFocusBehaviorImpl];Polymer({is:"paper-icon-bu
    tton",hostAttributes:{role:"button",tabindex:"0"},behaviors:[Polymer.PaperInkyFo
    cusBehavior],properties:{src:{type:String},icon:{type:String},alt:{type:String,o
    bserver:"_altChanged"}},_altChanged:function(newValue,oldValue){var label=this.g
    etAttribute("aria-label");if(!label||oldValue==label){this.setAttribute("aria-la
    bel",newValue)}}});Polymer({is:"iron-media-query",properties:{queryMatches:{type
    :Boolean,value:false,readOnly:true,notify:true},query:{type:String,observer:"que
    ryChanged"},full:{type:Boolean,value:false},_boundMQHandler:{value:function(){re
    turn this.queryHandler.bind(this)}},_mq:{value:null}},attached:function(){this.s
    tyle.display="none";this.queryChanged()},detached:function(){this._remove()},_ad
    d:function(){if(this._mq){this._mq.addListener(this._boundMQHandler)}},_remove:f
    unction(){if(this._mq){this._mq.removeListener(this._boundMQHandler)}this._mq=nu
    ll},queryChanged:function(){this._remove();var query=this.query;if(!query){retur
    n}if(!this.full&&query[0]!=="("){query="("+query+")"}this._mq=window.matchMedia(
    query);this._add();this.queryHandler(this._mq)},queryHandler:function(mq){this._
    setQueryMatches(mq.matches)}});Polymer.PaperSpinnerBehavior={listeners:{animatio
    nend:"__reset",webkitAnimationEnd:"__reset"},properties:{active:{type:Boolean,va
    lue:false,reflectToAttribute:true,observer:"__activeChanged"},alt:{type:String,v
    alue:"loading",observer:"__altChanged"},__coolingDown:{type:Boolean,value:false}
    },__computeContainerClasses:function(active,coolingDown){return[active||coolingD
    own?"active":"",coolingDown?"cooldown":""].join(" ")},__activeChanged:function(a
    ctive,old){this.__setAriaHidden(!active);this.__coolingDown=!active&&old},__altC
    hanged:function(alt){if(alt===this.getPropertyInfo("alt").value){this.alt=this.g
    etAttribute("aria-label")||alt}else{this.__setAriaHidden(alt==="");this.setAttri
    bute("aria-label",alt)}},__setAriaHidden:function(hidden){var attr="aria-hidden"
    ;if(hidden){this.setAttribute(attr,"true")}else{this.removeAttribute(attr)}},__r
    eset:function(){this.active=false;this.__coolingDown=false}};Polymer({is:"paper-
    spinner-lite",behaviors:[Polymer.PaperSpinnerBehavior]}); | 46 type:Object},restoreFocusOnClose:{type:Boolean,value:false},alwaysOnTop:{type:Bo
    olean},_manager:{type:Object,value:Polymer.IronOverlayManager},_focusedChild:{ty
    pe:Object}},listeners:{"iron-resize":"_onIronResize"},get backdropElement(){retu
    rn this._manager.backdropElement},get _focusNode(){return this._focusedChild||Po
    lymer.dom(this).querySelector("[autofocus]")||this},get _focusableNodes(){var FO
    CUSABLE_WITH_DISABLED=["a[href]","area[href]","iframe","[tabindex]","[contentEdi
    table=true]"];var FOCUSABLE_WITHOUT_DISABLED=["input","select","textarea","butto
    n"];var selector=FOCUSABLE_WITH_DISABLED.join(':not([tabindex="-1"]),')+':not([t
    abindex="-1"]),'+FOCUSABLE_WITHOUT_DISABLED.join(':not([disabled]):not([tabindex
    ="-1"]),')+':not([disabled]):not([tabindex="-1"])';var focusables=Polymer.dom(th
    is).querySelectorAll(selector);if(this.tabIndex>=0){focusables.splice(0,0,this)}
    return focusables.sort(function(a,b){if(a.tabIndex===b.tabIndex){return 0}if(a.t
    abIndex===0||a.tabIndex>b.tabIndex){return 1}return-1})},ready:function(){this._
    _isAnimating=false;this.__shouldRemoveTabIndex=false;this.__firstFocusableNode=t
    his.__lastFocusableNode=null;this.__raf=null;this.__restoreFocusNode=null;this._
    ensureSetup()},attached:function(){if(this.opened){this._openedChanged(this.open
    ed)}this._observer=Polymer.dom(this).observeNodes(this._onNodesChange)},detached
    :function(){Polymer.dom(this).unobserveNodes(this._observer);this._observer=null
    ;if(this.__raf){window.cancelAnimationFrame(this.__raf);this.__raf=null}this._ma
    nager.removeOverlay(this)},toggle:function(){this._setCanceled(false);this.opene
    d=!this.opened},open:function(){this._setCanceled(false);this.opened=true},close
    :function(){this._setCanceled(false);this.opened=false},cancel:function(event){v
    ar cancelEvent=this.fire("iron-overlay-canceled",event,{cancelable:true});if(can
    celEvent.defaultPrevented){return}this._setCanceled(true);this.opened=false},_en
    sureSetup:function(){if(this._overlaySetup){return}this._overlaySetup=true;this.
    style.outline="none";this.style.display="none"},_openedChanged:function(opened){
    if(opened){this.removeAttribute("aria-hidden")}else{this.setAttribute("aria-hidd
    en","true")}if(!this.isAttached){return}this.__isAnimating=true;this.__onNextAni
    mationFrame(this.__openedChanged)},_canceledChanged:function(){this.closingReaso
    n=this.closingReason||{};this.closingReason.canceled=this.canceled},_withBackdro
    pChanged:function(){if(this.withBackdrop&&!this.hasAttribute("tabindex")){this.s
    etAttribute("tabindex","-1");this.__shouldRemoveTabIndex=true}else if(this.__sho
    uldRemoveTabIndex){this.removeAttribute("tabindex");this.__shouldRemoveTabIndex=
    false}if(this.opened&&this.isAttached){this._manager.trackBackdrop()}},_prepareR
    enderOpened:function(){this.__restoreFocusNode=this._manager.deepActiveElement;t
    his._preparePositioning();this.refit();this._finishPositioning();if(this.noAutoF
    ocus&&document.activeElement===this._focusNode){this._focusNode.blur();this.__re
    storeFocusNode.focus()}},_renderOpened:function(){this._finishRenderOpened()},_r
    enderClosed:function(){this._finishRenderClosed()},_finishRenderOpened:function(
    ){this.notifyResize();this.__isAnimating=false;var focusableNodes=this._focusabl
    eNodes;this.__firstFocusableNode=focusableNodes[0];this.__lastFocusableNode=focu
    sableNodes[focusableNodes.length-1];this.fire("iron-overlay-opened")},_finishRen
    derClosed:function(){this.style.display="none";this.style.zIndex="";this.notifyR
    esize();this.__isAnimating=false;this.fire("iron-overlay-closed",this.closingRea
    son)},_preparePositioning:function(){this.style.transition=this.style.webkitTran
    sition="none";this.style.transform=this.style.webkitTransform="none";this.style.
    display=""},_finishPositioning:function(){this.style.display="none";this.scrollT
    op=this.scrollTop;this.style.transition=this.style.webkitTransition="";this.styl
    e.transform=this.style.webkitTransform="";this.style.display="";this.scrollTop=t
    his.scrollTop},_applyFocus:function(){if(this.opened){if(!this.noAutoFocus){this
    ._focusNode.focus()}}else{this._focusNode.blur();this._focusedChild=null;if(this
    .restoreFocusOnClose&&this.__restoreFocusNode){this.__restoreFocusNode.focus()}t
    his.__restoreFocusNode=null;var currentOverlay=this._manager.currentOverlay();if
    (currentOverlay&&this!==currentOverlay){currentOverlay._applyFocus()}}},_onCaptu
    reClick:function(event){if(!this.noCancelOnOutsideClick){this.cancel(event)}},_o
    nCaptureFocus:function(event){if(!this.withBackdrop){return}var path=Polymer.dom
    (event).path;if(path.indexOf(this)===-1){event.stopPropagation();this._applyFocu
    s()}else{this._focusedChild=path[0]}},_onCaptureEsc:function(event){if(!this.noC
    ancelOnEscKey){this.cancel(event)}},_onCaptureTab:function(event){if(!this.withB
    ackdrop){return}var shift=event.shiftKey;var nodeToCheck=shift?this.__firstFocus
    ableNode:this.__lastFocusableNode;var nodeToSet=shift?this.__lastFocusableNode:t
    his.__firstFocusableNode;var shouldWrap=false;if(nodeToCheck===nodeToSet){should
    Wrap=true}else{var focusedNode=this._manager.deepActiveElement;shouldWrap=focuse
    dNode===nodeToCheck||focusedNode===this}if(shouldWrap){event.preventDefault();th
    is._focusedChild=nodeToSet;this._applyFocus()}},_onIronResize:function(){if(this
    .opened&&!this.__isAnimating){this.__onNextAnimationFrame(this.refit)}},_onNodes
    Change:function(){if(this.opened&&!this.__isAnimating){this.notifyResize()}},__o
    penedChanged:function(){if(this.opened){this._prepareRenderOpened();this._manage
    r.addOverlay(this);this._applyFocus();this._renderOpened()}else{this._manager.re
    moveOverlay(this);this._applyFocus();this._renderClosed()}},__onNextAnimationFra
    me:function(callback){if(this.__raf){window.cancelAnimationFrame(this.__raf)}var
     self=this;this.__raf=window.requestAnimationFrame(function nextAnimationFrame()
    {self.__raf=null;callback.call(self)})}};Polymer.IronOverlayBehavior=[Polymer.Ir
    onFitBehavior,Polymer.IronResizableBehavior,Polymer.IronOverlayBehaviorImpl]})()
    ;Polymer.NeonAnimatableBehavior={properties:{animationConfig:{type:Object},entry
    Animation:{observer:"_entryAnimationChanged",type:String},exitAnimation:{observe
    r:"_exitAnimationChanged",type:String}},_entryAnimationChanged:function(){this.a
    nimationConfig=this.animationConfig||{};this.animationConfig["entry"]=[{name:thi
    s.entryAnimation,node:this}]},_exitAnimationChanged:function(){this.animationCon
    fig=this.animationConfig||{};this.animationConfig["exit"]=[{name:this.exitAnimat
    ion,node:this}]},_copyProperties:function(config1,config2){for(var property in c
    onfig2){config1[property]=config2[property]}},_cloneConfig:function(config){var 
    clone={isClone:true};this._copyProperties(clone,config);return clone},_getAnimat
    ionConfigRecursive:function(type,map,allConfigs){if(!this.animationConfig){retur
    n}if(this.animationConfig.value&&typeof this.animationConfig.value==="function")
    {this._warn(this._logf("playAnimation","Please put 'animationConfig' inside of y
    our components 'properties' object instead of outside of it."));return}var thisC
    onfig;if(type){thisConfig=this.animationConfig[type]}else{thisConfig=this.animat
    ionConfig}if(!Array.isArray(thisConfig)){thisConfig=[thisConfig]}if(thisConfig){
    for(var config,index=0;config=thisConfig[index];index++){if(config.animatable){c
    onfig.animatable._getAnimationConfigRecursive(config.type||type,map,allConfigs)}
    else{if(config.id){var cachedConfig=map[config.id];if(cachedConfig){if(!cachedCo
    nfig.isClone){map[config.id]=this._cloneConfig(cachedConfig);cachedConfig=map[co
    nfig.id]}this._copyProperties(cachedConfig,config)}else{map[config.id]=config}}e
    lse{allConfigs.push(config)}}}}},getAnimationConfig:function(type){var map={};va
    r allConfigs=[];this._getAnimationConfigRecursive(type,map,allConfigs);for(var k
    ey in map){allConfigs.push(map[key])}return allConfigs}};Polymer.NeonAnimationRu
    nnerBehaviorImpl={_configureAnimations:function(configs){var results=[];if(confi
    gs.length>0){for(var config,index=0;config=configs[index];index++){var neonAnima
    tion=document.createElement(config.name);if(neonAnimation.isNeonAnimation){var r
    esult=null;try{result=neonAnimation.configure(config);if(typeof result.cancel!="
    function"){result=document.timeline.play(result)}}catch(e){result=null;console.w
    arn("Couldnt play","(",config.name,").",e)}if(result){results.push({neonAnimatio
    n:neonAnimation,config:config,animation:result})}}else{console.warn(this.is+":",
    config.name,"not found!")}}}return results},_shouldComplete:function(activeEntri
    es){var finished=true;for(var i=0;i<activeEntries.length;i++){if(activeEntries[i
    ].animation.playState!="finished"){finished=false;break}}return finished},_compl
    ete:function(activeEntries){for(var i=0;i<activeEntries.length;i++){activeEntrie
    s[i].neonAnimation.complete(activeEntries[i].config)}for(var i=0;i<activeEntries
    .length;i++){activeEntries[i].animation.cancel()}},playAnimation:function(type,c
    ookie){var configs=this.getAnimationConfig(type);if(!configs){return}this._activ
    e=this._active||{};if(this._active[type]){this._complete(this._active[type]);del
    ete this._active[type]}var activeEntries=this._configureAnimations(configs);if(a
    ctiveEntries.length==0){this.fire("neon-animation-finish",cookie,{bubbles:false}
    );return}this._active[type]=activeEntries;for(var i=0;i<activeEntries.length;i++
    ){activeEntries[i].animation.onfinish=function(){if(this._shouldComplete(activeE
    ntries)){this._complete(activeEntries);delete this._active[type];this.fire("neon
    -animation-finish",cookie,{bubbles:false})}}.bind(this)}},cancelAnimation:functi
    on(){for(var k in this._animations){this._animations[k].cancel()}this._animation
    s={}}};Polymer.NeonAnimationRunnerBehavior=[Polymer.NeonAnimatableBehavior,Polym
    er.NeonAnimationRunnerBehaviorImpl];Polymer.NeonAnimationBehavior={properties:{a
    nimationTiming:{type:Object,value:function(){return{duration:500,easing:"cubic-b
    ezier(0.4, 0, 0.2, 1)",fill:"both"}}}},isNeonAnimation:true,timingFromConfig:fun
    ction(config){if(config.timing){for(var property in config.timing){this.animatio
    nTiming[property]=config.timing[property]}}return this.animationTiming},setPrefi
    xedProperty:function(node,property,value){var map={transform:["webkitTransform"]
    ,transformOrigin:["mozTransformOrigin","webkitTransformOrigin"]};var prefixes=ma
    p[property];for(var prefix,index=0;prefix=prefixes[index];index++){node.style[pr
    efix]=value}node.style[property]=value},complete:function(){}};Polymer({is:"opaq
    ue-animation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(confi
    g){var node=config.node;this._effect=new KeyframeEffect(node,[{opacity:"1"},{opa
    city:"1"}],this.timingFromConfig(config));node.style.opacity="0";return this._ef
    fect},complete:function(config){config.node.style.opacity=""}});(function(){"use
     strict";var LAST_TOUCH_POSITION={pageX:0,pageY:0};var ROOT_TARGET=null;var SCRO
    LLABLE_NODES=[];Polymer.IronDropdownScrollManager={get currentLockingElement(){r
    eturn this._lockingElements[this._lockingElements.length-1]},elementIsScrollLock
    ed:function(element){var currentLockingElement=this.currentLockingElement;if(cur
    rentLockingElement===undefined)return false;var scrollLocked;if(this._hasCachedL
    ockedElement(element)){return true}if(this._hasCachedUnlockedElement(element)){r
    eturn false}scrollLocked=!!currentLockingElement&¤tLockingElement!==elemen
    t&&!this._composedTreeContains(currentLockingElement,element);if(scrollLocked){t
    his._lockedElementCache.push(element)}else{this._unlockedElementCache.push(eleme
    nt)}return scrollLocked},pushScrollLock:function(element){if(this._lockingElemen
    ts.indexOf(element)>=0){return}if(this._lockingElements.length===0){this._lockSc
    rollInteractions()}this._lockingElements.push(element);this._lockedElementCache=
    [];this._unlockedElementCache=[]},removeScrollLock:function(element){var index=t
    his._lockingElements.indexOf(element);if(index===-1){return}this._lockingElement
    s.splice(index,1);this._lockedElementCache=[];this._unlockedElementCache=[];if(t
    his._lockingElements.length===0){this._unlockScrollInteractions()}},_lockingElem
    ents:[],_lockedElementCache:null,_unlockedElementCache:null,_hasCachedLockedElem
    ent:function(element){return this._lockedElementCache.indexOf(element)>-1},_hasC
    achedUnlockedElement:function(element){return this._unlockedElementCache.indexOf
    (element)>-1},_composedTreeContains:function(element,child){var contentElements;
    var distributedNodes;var contentIndex;var nodeIndex;if(element.contains(child)){
    return true}contentElements=Polymer.dom(element).querySelectorAll("content");for
    (contentIndex=0;contentIndex<contentElements.length;++contentIndex){distributedN
    odes=Polymer.dom(contentElements[contentIndex]).getDistributedNodes();for(nodeIn
    dex=0;nodeIndex<distributedNodes.length;++nodeIndex){if(this._composedTreeContai
    ns(distributedNodes[nodeIndex],child)){return true}}}return false},_scrollIntera
    ctionHandler:function(event){if(event.cancelable&&this._shouldPreventScrolling(e
    vent)){event.preventDefault()}if(event.targetTouches){var touch=event.targetTouc
    hes[0];LAST_TOUCH_POSITION.pageX=touch.pageX;LAST_TOUCH_POSITION.pageY=touch.pag
    eY}},_lockScrollInteractions:function(){this._boundScrollHandler=this._boundScro
    llHandler||this._scrollInteractionHandler.bind(this);document.addEventListener("
    wheel",this._boundScrollHandler,true);document.addEventListener("mousewheel",thi
    s._boundScrollHandler,true);document.addEventListener("DOMMouseScroll",this._bou
    ndScrollHandler,true);document.addEventListener("touchstart",this._boundScrollHa
    ndler,true);document.addEventListener("touchmove",this._boundScrollHandler,true)
    },_unlockScrollInteractions:function(){document.removeEventListener("wheel",this
    ._boundScrollHandler,true);document.removeEventListener("mousewheel",this._bound
    ScrollHandler,true);document.removeEventListener("DOMMouseScroll",this._boundScr
    ollHandler,true);document.removeEventListener("touchstart",this._boundScrollHand
    ler,true);document.removeEventListener("touchmove",this._boundScrollHandler,true
    )},_shouldPreventScrolling:function(event){var target=Polymer.dom(event).rootTar
    get;if(event.type!=="touchmove"&&ROOT_TARGET!==target){ROOT_TARGET=target;SCROLL
    ABLE_NODES=this._getScrollableNodes(Polymer.dom(event).path)}if(!SCROLLABLE_NODE
    S.length){return true}if(event.type==="touchstart"){return false}var info=this._
    getScrollInfo(event);return!this._getScrollingNode(SCROLLABLE_NODES,info.deltaX,
    info.deltaY)},_getScrollableNodes:function(nodes){var scrollables=[];var locking
    Index=nodes.indexOf(this.currentLockingElement);for(var i=0;i<=lockingIndex;i++)
    {var node=nodes[i];if(node.nodeType===11){continue}var style=node.style;if(style
    .overflow!=="scroll"&&style.overflow!=="auto"){style=window.getComputedStyle(nod
    e)}if(style.overflow==="scroll"||style.overflow==="auto"){scrollables.push(node)
    }}return scrollables},_getScrollingNode:function(nodes,deltaX,deltaY){if(!deltaX
    &&!deltaY){return}var verticalScroll=Math.abs(deltaY)>=Math.abs(deltaX);for(var 
    i=0;i<nodes.length;i++){var node=nodes[i];var canScroll=false;if(verticalScroll)
    {canScroll=deltaY<0?node.scrollTop>0:node.scrollTop<node.scrollHeight-node.clien
    tHeight}else{canScroll=deltaX<0?node.scrollLeft>0:node.scrollLeft<node.scrollWid
    th-node.clientWidth}if(canScroll){return node}}},_getScrollInfo:function(event){
    var info={deltaX:event.deltaX,deltaY:event.deltaY};if("deltaX"in event){}else if
    ("wheelDeltaX"in event){info.deltaX=-event.wheelDeltaX;info.deltaY=-event.wheelD
    eltaY}else if("axis"in event){info.deltaX=event.axis===1?event.detail:0;info.del
    taY=event.axis===2?event.detail:0}else if(event.targetTouches){var touch=event.t
    argetTouches[0];info.deltaX=LAST_TOUCH_POSITION.pageX-touch.pageX;info.deltaY=LA
    ST_TOUCH_POSITION.pageY-touch.pageY}return info}}})();(function(){"use strict";P
    olymer({is:"iron-dropdown",behaviors:[Polymer.IronControlState,Polymer.IronA11yK
    eysBehavior,Polymer.IronOverlayBehavior,Polymer.NeonAnimationRunnerBehavior],pro
    perties:{horizontalAlign:{type:String,value:"left",reflectToAttribute:true},vert
    icalAlign:{type:String,value:"top",reflectToAttribute:true},openAnimationConfig:
    {type:Object},closeAnimationConfig:{type:Object},focusTarget:{type:Object},noAni
    mations:{type:Boolean,value:false},allowOutsideScroll:{type:Boolean,value:false}
    ,_boundOnCaptureScroll:{type:Function,value:function(){return this._onCaptureScr
    oll.bind(this)}}},listeners:{"neon-animation-finish":"_onNeonAnimationFinish"},o
    bservers:["_updateOverlayPosition(positionTarget, verticalAlign, horizontalAlign
    , verticalOffset, horizontalOffset)"],get containedElement(){return Polymer.dom(
    this.$.content).getDistributedNodes()[0]},get _focusTarget(){return this.focusTa
    rget||this.containedElement},ready:function(){this._scrollTop=0;this._scrollLeft
    =0;this._refitOnScrollRAF=null},attached:function(){if(!this.sizingTarget||this.
    sizingTarget===this){this.sizingTarget=this.containedElement}},detached:function
    (){this.cancelAnimation();document.removeEventListener("scroll",this._boundOnCap
    tureScroll);Polymer.IronDropdownScrollManager.removeScrollLock(this)},_openedCha
    nged:function(){if(this.opened&&this.disabled){this.cancel()}else{this.cancelAni
    mation();this._updateAnimationConfig();this._saveScrollPosition();if(this.opened
    ){document.addEventListener("scroll",this._boundOnCaptureScroll);!this.allowOuts
    ideScroll&&Polymer.IronDropdownScrollManager.pushScrollLock(this)}else{document.
    removeEventListener("scroll",this._boundOnCaptureScroll);Polymer.IronDropdownScr
    ollManager.removeScrollLock(this)}Polymer.IronOverlayBehaviorImpl._openedChanged
    .apply(this,arguments)}},_renderOpened:function(){if(!this.noAnimations&&this.an
    imationConfig.open){this.$.contentWrapper.classList.add("animating");this.playAn
    imation("open")}else{Polymer.IronOverlayBehaviorImpl._renderOpened.apply(this,ar
    guments)}},_renderClosed:function(){if(!this.noAnimations&&this.animationConfig.
    close){this.$.contentWrapper.classList.add("animating");this.playAnimation("clos
    e")}else{Polymer.IronOverlayBehaviorImpl._renderClosed.apply(this,arguments)}},_
    onNeonAnimationFinish:function(){this.$.contentWrapper.classList.remove("animati
    ng");if(this.opened){this._finishRenderOpened()}else{this._finishRenderClosed()}
    },_onCaptureScroll:function(){if(!this.allowOutsideScroll){this._restoreScrollPo
    sition()}else{this._refitOnScrollRAF&&window.cancelAnimationFrame(this._refitOnS
    crollRAF);this._refitOnScrollRAF=window.requestAnimationFrame(this.refit.bind(th
    is))}},_saveScrollPosition:function(){if(document.scrollingElement){this._scroll
    Top=document.scrollingElement.scrollTop;this._scrollLeft=document.scrollingEleme
    nt.scrollLeft}else{this._scrollTop=Math.max(document.documentElement.scrollTop,d
    ocument.body.scrollTop);this._scrollLeft=Math.max(document.documentElement.scrol
    lLeft,document.body.scrollLeft)}},_restoreScrollPosition:function(){if(document.
    scrollingElement){document.scrollingElement.scrollTop=this._scrollTop;document.s
    crollingElement.scrollLeft=this._scrollLeft}else{document.documentElement.scroll
    Top=this._scrollTop;document.documentElement.scrollLeft=this._scrollLeft;documen
    t.body.scrollTop=this._scrollTop;document.body.scrollLeft=this._scrollLeft}},_up
    dateAnimationConfig:function(){var animations=(this.openAnimationConfig||[]).con
    cat(this.closeAnimationConfig||[]);for(var i=0;i<animations.length;i++){animatio
    ns[i].node=this.containedElement}this.animationConfig={open:this.openAnimationCo
    nfig,close:this.closeAnimationConfig}},_updateOverlayPosition:function(){if(this
    .isAttached){this.notifyResize()}},_applyFocus:function(){var focusTarget=this.f
    ocusTarget||this.containedElement;if(focusTarget&&this.opened&&!this.noAutoFocus
    ){focusTarget.focus()}else{Polymer.IronOverlayBehaviorImpl._applyFocus.apply(thi
    s,arguments)}}})})();Polymer({is:"fade-in-animation",behaviors:[Polymer.NeonAnim
    ationBehavior],configure:function(config){var node=config.node;this._effect=new 
    KeyframeEffect(node,[{opacity:"0"},{opacity:"1"}],this.timingFromConfig(config))
    ;return this._effect}});Polymer({is:"fade-out-animation",behaviors:[Polymer.Neon
    AnimationBehavior],configure:function(config){var node=config.node;this._effect=
    new KeyframeEffect(node,[{opacity:"1"},{opacity:"0"}],this.timingFromConfig(conf
    ig));return this._effect}});Polymer({is:"paper-menu-grow-height-animation",behav
    iors:[Polymer.NeonAnimationBehavior],configure:function(config){var node=config.
    node;var rect=node.getBoundingClientRect();var height=rect.height;this._effect=n
    ew KeyframeEffect(node,[{height:height/2+"px"},{height:height+"px"}],this.timing
    FromConfig(config));return this._effect}});Polymer({is:"paper-menu-grow-width-an
    imation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(config){va
    r node=config.node;var rect=node.getBoundingClientRect();var width=rect.width;th
    is._effect=new KeyframeEffect(node,[{width:width/2+"px"},{width:width+"px"}],thi
    s.timingFromConfig(config));return this._effect}});Polymer({is:"paper-menu-shrin
    k-width-animation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(
    config){var node=config.node;var rect=node.getBoundingClientRect();var width=rec
    t.width;this._effect=new KeyframeEffect(node,[{width:width+"px"},{width:width-wi
    dth/20+"px"}],this.timingFromConfig(config));return this._effect}});Polymer({is:
    "paper-menu-shrink-height-animation",behaviors:[Polymer.NeonAnimationBehavior],c
    onfigure:function(config){var node=config.node;var rect=node.getBoundingClientRe
    ct();var height=rect.height;var top=rect.top;this.setPrefixedProperty(node,"tran
    sformOrigin","0 0");this._effect=new KeyframeEffect(node,[{height:height+"px",tr
    ansform:"translateY(0)"},{height:height/2+"px",transform:"translateY(-20px)"}],t
    his.timingFromConfig(config));return this._effect}});(function(){"use strict";va
    r config={ANIMATION_CUBIC_BEZIER:"cubic-bezier(.3,.95,.5,1)",MAX_ANIMATION_TIME_
    MS:400};var PaperMenuButton=Polymer({is:"paper-menu-button",behaviors:[Polymer.I
    ronA11yKeysBehavior,Polymer.IronControlState],properties:{opened:{type:Boolean,v
    alue:false,notify:true,observer:"_openedChanged"},horizontalAlign:{type:String,v
    alue:"left",reflectToAttribute:true},verticalAlign:{type:String,value:"top",refl
    ectToAttribute:true},dynamicAlign:{type:Boolean},horizontalOffset:{type:Number,v
    alue:0,notify:true},verticalOffset:{type:Number,value:0,notify:true},noOverlap:{
    type:Boolean},noAnimations:{type:Boolean,value:false},ignoreSelect:{type:Boolean
    ,value:false},closeOnActivate:{type:Boolean,value:false},openAnimationConfig:{ty
    pe:Object,value:function(){return[{name:"fade-in-animation",timing:{delay:100,du
    ration:200}},{name:"paper-menu-grow-width-animation",timing:{delay:100,duration:
    150,easing:config.ANIMATION_CUBIC_BEZIER}},{name:"paper-menu-grow-height-animati
    on",timing:{delay:100,duration:275,easing:config.ANIMATION_CUBIC_BEZIER}}]}},clo
    seAnimationConfig:{type:Object,value:function(){return[{name:"fade-out-animation
    ",timing:{duration:150}},{name:"paper-menu-shrink-width-animation",timing:{delay
    :100,duration:50,easing:config.ANIMATION_CUBIC_BEZIER}},{name:"paper-menu-shrink
    -height-animation",timing:{duration:200,easing:"ease-in"}}]}},allowOutsideScroll
    :{type:Boolean,value:false},restoreFocusOnClose:{type:Boolean,value:true},_dropd
    ownContent:{type:Object}},hostAttributes:{role:"group","aria-haspopup":"true"},l
    isteners:{"iron-activate":"_onIronActivate","iron-select":"_onIronSelect"},get c
    ontentElement(){return Polymer.dom(this.$.content).getDistributedNodes()[0]},tog
    gle:function(){if(this.opened){this.close()}else{this.open()}},open:function(){i
    f(this.disabled){return}this.$.dropdown.open()},close:function(){this.$.dropdown
    .close()},_onIronSelect:function(event){if(!this.ignoreSelect){this.close()}},_o
    nIronActivate:function(event){if(this.closeOnActivate){this.close()}},_openedCha
    nged:function(opened,oldOpened){if(opened){this._dropdownContent=this.contentEle
    ment;this.fire("paper-dropdown-open")}else if(oldOpened!=null){this.fire("paper-
    dropdown-close")}},_disabledChanged:function(disabled){Polymer.IronControlState.
    _disabledChanged.apply(this,arguments);if(disabled&&this.opened){this.close()}},
    __onIronOverlayCanceled:function(event){var uiEvent=event.detail;var target=Poly
    mer.dom(uiEvent).rootTarget;var trigger=this.$.trigger;var path=Polymer.dom(uiEv
    ent).path;if(path.indexOf(trigger)>-1){event.preventDefault()}}});Object.keys(co
    nfig).forEach(function(key){PaperMenuButton[key]=config[key]});Polymer.PaperMenu
    Button=PaperMenuButton})();Polymer.PaperInkyFocusBehaviorImpl={observers:["_focu
    sedChanged(receivedFocusFromKeyboard)"],_focusedChanged:function(receivedFocusFr
    omKeyboard){if(receivedFocusFromKeyboard){this.ensureRipple()}if(this.hasRipple(
    )){this._ripple.holdDown=receivedFocusFromKeyboard}},_createRipple:function(){va
    r ripple=Polymer.PaperRippleBehavior._createRipple();ripple.id="ink";ripple.setA
    ttribute("center","");ripple.classList.add("circle");return ripple}};Polymer.Pap
    erInkyFocusBehavior=[Polymer.IronButtonState,Polymer.IronControlState,Polymer.Pa
    perRippleBehavior,Polymer.PaperInkyFocusBehaviorImpl];Polymer({is:"paper-icon-bu
    tton",hostAttributes:{role:"button",tabindex:"0"},behaviors:[Polymer.PaperInkyFo
    cusBehavior],properties:{src:{type:String},icon:{type:String},alt:{type:String,o
    bserver:"_altChanged"}},_altChanged:function(newValue,oldValue){var label=this.g
    etAttribute("aria-label");if(!label||oldValue==label){this.setAttribute("aria-la
    bel",newValue)}}});Polymer({is:"iron-media-query",properties:{queryMatches:{type
    :Boolean,value:false,readOnly:true,notify:true},query:{type:String,observer:"que
    ryChanged"},full:{type:Boolean,value:false},_boundMQHandler:{value:function(){re
    turn this.queryHandler.bind(this)}},_mq:{value:null}},attached:function(){this.s
    tyle.display="none";this.queryChanged()},detached:function(){this._remove()},_ad
    d:function(){if(this._mq){this._mq.addListener(this._boundMQHandler)}},_remove:f
    unction(){if(this._mq){this._mq.removeListener(this._boundMQHandler)}this._mq=nu
    ll},queryChanged:function(){this._remove();var query=this.query;if(!query){retur
    n}if(!this.full&&query[0]!=="("){query="("+query+")"}this._mq=window.matchMedia(
    query);this._add();this.queryHandler(this._mq)},queryHandler:function(mq){this._
    setQueryMatches(mq.matches)}});Polymer.PaperSpinnerBehavior={listeners:{animatio
    nend:"__reset",webkitAnimationEnd:"__reset"},properties:{active:{type:Boolean,va
    lue:false,reflectToAttribute:true,observer:"__activeChanged"},alt:{type:String,v
    alue:"loading",observer:"__altChanged"},__coolingDown:{type:Boolean,value:false}
    },__computeContainerClasses:function(active,coolingDown){return[active||coolingD
    own?"active":"",coolingDown?"cooldown":""].join(" ")},__activeChanged:function(a
    ctive,old){this.__setAriaHidden(!active);this.__coolingDown=!active&&old},__altC
    hanged:function(alt){if(alt===this.getPropertyInfo("alt").value){this.alt=this.g
    etAttribute("aria-label")||alt}else{this.__setAriaHidden(alt==="");this.setAttri
    bute("aria-label",alt)}},__setAriaHidden:function(hidden){var attr="aria-hidden"
    ;if(hidden){this.setAttribute(attr,"true")}else{this.removeAttribute(attr)}},__r
    eset:function(){this.active=false;this.__coolingDown=false}};Polymer({is:"paper-
    spinner-lite",behaviors:[Polymer.PaperSpinnerBehavior]}); | 
| 48 // Copyright 2016 The Chromium Authors. All rights reserved. | 47 // Copyright 2016 The Chromium Authors. All rights reserved. | 
| 49 // Use of this source code is governed by a BSD-style license that can be | 48 // Use of this source code is governed by a BSD-style license that can be | 
| 50 // found in the LICENSE file. | 49 // found in the LICENSE file. | 
| 51 var CrSearchFieldBehavior={properties:{label:{type:String,value:""},clearLabel:{
    type:String,value:""},lastValue_:{type:String,value:""}},getSearchInput:function
    (){},getValue:function(){return this.getSearchInput().value},setValue:function(v
    alue,opt_noEvent){var searchInput=this.getSearchInput();searchInput.value=value;
    this.onValueChanged_(value,!!opt_noEvent)},onSearchTermSearch:function(){this.on
    ValueChanged_(this.getValue(),false)},onValueChanged_:function(newValue,noEvent)
    {if(newValue==this.lastValue_)return;this.lastValue_=newValue;if(!noEvent)this.f
    ire("search-changed",newValue)}}; | 50 var CrSearchFieldBehavior={properties:{label:{type:String,value:""},clearLabel:{
    type:String,value:""},lastValue_:{type:String,value:""}},getSearchInput:function
    (){},getValue:function(){return this.getSearchInput().value},setValue:function(v
    alue,opt_noEvent){var searchInput=this.getSearchInput();searchInput.value=value;
    this.onValueChanged_(value,!!opt_noEvent)},onSearchTermSearch:function(){this.on
    ValueChanged_(this.getValue(),false)},onValueChanged_:function(newValue,noEvent)
    {if(newValue==this.lastValue_)return;this.lastValue_=newValue;if(!noEvent)this.f
    ire("search-changed",newValue)}}; | 
| 52 // Copyright 2016 The Chromium Authors. All rights reserved. | 51 // Copyright 2016 The Chromium Authors. All rights reserved. | 
| 53 // Use of this source code is governed by a BSD-style license that can be | 52 // Use of this source code is governed by a BSD-style license that can be | 
| 54 // found in the LICENSE file. | 53 // found in the LICENSE file. | 
| 55 Polymer({is:"cr-toolbar-search-field",behaviors:[CrSearchFieldBehavior],properti
    es:{narrow:{type:Boolean,reflectToAttribute:true},showingSearch:{type:Boolean,va
    lue:false,notify:true,observer:"showingSearchChanged_",reflectToAttribute:true},
    label:String,clearLabel:String,spinnerActive:{type:Boolean,reflectToAttribute:tr
    ue},hasSearchText_:{type:Boolean,reflectToAttribute:true},isSpinnerShown_:{type:
    Boolean,computed:"computeIsSpinnerShown_(spinnerActive, showingSearch)"},searchF
    ocused_:{type:Boolean,value:false}},listeners:{click:"showSearch_"},getSearchInp
    ut:function(){return this.$.searchInput},setValue:function(value,opt_noEvent){Cr
    SearchFieldBehavior.setValue.call(this,value,opt_noEvent);this.onSearchInput_()}
    ,isSearchFocused:function(){return this.searchFocused_},showAndFocus:function(){
    this.showingSearch=true;this.focus_()},focus_:function(){this.getSearchInput().f
    ocus()},computeIconTabIndex_:function(narrow){return narrow?0:-1},computeIsSpinn
    erShown_:function(){return this.spinnerActive&&this.showingSearch},onInputFocus_
    :function(){this.searchFocused_=true},onInputBlur_:function(){this.searchFocused
    _=false;if(!this.hasSearchText_)this.showingSearch=false},onSearchInput_:functio
    n(){var newValue=this.$.searchInput.value;this.hasSearchText_=newValue!="";if(ne
    wValue!="")this.showingSearch=true},onSearchTermKeydown_:function(e){if(e.key=="
    Escape")this.showingSearch=false},showSearch_:function(e){if(e.target!=this.$.cl
    earSearch)this.showingSearch=true},clearSearch_:function(e){this.setValue("");th
    is.focus_()},showingSearchChanged_:function(current,previous){if(previous==undef
    ined)return;if(this.showingSearch){this.focus_();return}this.setValue("");this.g
    etSearchInput().blur()}}); | 54 Polymer({is:"cr-toolbar-search-field",behaviors:[CrSearchFieldBehavior],properti
    es:{narrow:{type:Boolean,reflectToAttribute:true},showingSearch:{type:Boolean,va
    lue:false,notify:true,observer:"showingSearchChanged_",reflectToAttribute:true},
    label:String,clearLabel:String,spinnerActive:{type:Boolean,reflectToAttribute:tr
    ue},hasSearchText_:{type:Boolean,reflectToAttribute:true},isSpinnerShown_:{type:
    Boolean,computed:"computeIsSpinnerShown_(spinnerActive, showingSearch)"},searchF
    ocused_:{type:Boolean,value:false}},listeners:{click:"showSearch_"},getSearchInp
    ut:function(){return this.$.searchInput},setValue:function(value,opt_noEvent){Cr
    SearchFieldBehavior.setValue.call(this,value,opt_noEvent);this.onSearchInput_()}
    ,isSearchFocused:function(){return this.searchFocused_},showAndFocus:function(){
    this.showingSearch=true;this.focus_()},focus_:function(){this.getSearchInput().f
    ocus()},computeIconTabIndex_:function(narrow){return narrow?0:-1},computeIsSpinn
    erShown_:function(){return this.spinnerActive&&this.showingSearch},onInputFocus_
    :function(){this.searchFocused_=true},onInputBlur_:function(){this.searchFocused
    _=false;if(!this.hasSearchText_)this.showingSearch=false},onSearchInput_:functio
    n(){var newValue=this.$.searchInput.value;this.hasSearchText_=newValue!="";if(ne
    wValue!="")this.showingSearch=true},onSearchTermKeydown_:function(e){if(e.key=="
    Escape")this.showingSearch=false},showSearch_:function(e){if(e.target!=this.$.cl
    earSearch)this.showingSearch=true},clearSearch_:function(e){this.setValue("");th
    is.focus_()},showingSearchChanged_:function(current,previous){if(previous==undef
    ined)return;if(this.showingSearch){this.focus_();return}this.setValue("");this.g
    etSearchInput().blur()}}); | 
| 56 // Copyright 2016 The Chromium Authors. All rights reserved. | 55 // Copyright 2016 The Chromium Authors. All rights reserved. | 
| 57 // Use of this source code is governed by a BSD-style license that can be | 56 // Use of this source code is governed by a BSD-style license that can be | 
| 58 // found in the LICENSE file. | 57 // found in the LICENSE file. | 
| 59 Polymer({is:"cr-toolbar",properties:{pageName:String,searchPrompt:String,clearLa
    bel:String,menuLabel:String,menuPromo:String,spinnerActive:Boolean,showMenu:{typ
    e:Boolean,value:false},showMenuPromo:{type:Boolean,value:false},closeMenuPromo:S
    tring,narrow_:{type:Boolean,reflectToAttribute:true},showingSearch_:{type:Boolea
    n,reflectToAttribute:true}},observers:["possiblyShowMenuPromo_(showMenu, showMen
    uPromo, showingSearch_)"],getSearchField:function(){return this.$.search},onClos
    ePromoTap_:function(){this.fire("cr-toolbar-menu-promo-close")},onMenuTap_:funct
    ion(){this.fire("cr-toolbar-menu-tap")},possiblyShowMenuPromo_:function(){Polyme
    r.RenderStatus.afterNextRender(this,function(){if(this.showMenu&&this.showMenuPr
    omo&&!this.showingSearch_){this.$$("#menuPromo").animate({opacity:[0,.9]},{durat
    ion:500,fill:"forwards"});this.fire("cr-toolbar-menu-promo-shown")}}.bind(this))
    },titleIfNotShowMenuPromo_:function(title,showMenuPromo){return showMenuPromo?""
    :title}}); | 58 Polymer({is:"cr-toolbar",properties:{pageName:String,searchPrompt:String,clearLa
    bel:String,menuLabel:String,menuPromo:String,spinnerActive:Boolean,showMenu:{typ
    e:Boolean,value:false},showMenuPromo:{type:Boolean,value:false},closeMenuPromo:S
    tring,narrow_:{type:Boolean,reflectToAttribute:true},showingSearch_:{type:Boolea
    n,reflectToAttribute:true}},observers:["possiblyShowMenuPromo_(showMenu, showMen
    uPromo, showingSearch_)"],getSearchField:function(){return this.$.search},onClos
    ePromoTap_:function(){this.fire("cr-toolbar-menu-promo-close")},onMenuTap_:funct
    ion(){this.fire("cr-toolbar-menu-tap")},possiblyShowMenuPromo_:function(){Polyme
    r.RenderStatus.afterNextRender(this,function(){if(this.showMenu&&this.showMenuPr
    omo&&!this.showingSearch_){this.$$("#menuPromo").animate({opacity:[0,.9]},{durat
    ion:500,fill:"forwards"});this.fire("cr-toolbar-menu-promo-shown")}}.bind(this))
    },titleIfNotShowMenuPromo_:function(title,showMenuPromo){return showMenuPromo?""
    :title}}); | 
| 60 // Copyright 2015 The Chromium Authors. All rights reserved. | 59 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 61 // Use of this source code is governed by a BSD-style license that can be | 60 // Use of this source code is governed by a BSD-style license that can be | 
| 62 // found in the LICENSE file. | 61 // found in the LICENSE file. | 
| 63 cr.define("downloads",function(){var Toolbar=Polymer({is:"downloads-toolbar",pro
    perties:{downloadsShowing:{reflectToAttribute:true,type:Boolean,value:false,obse
    rver:"downloadsShowingChanged_"},spinnerActive:{type:Boolean,notify:true}},liste
    ners:{"paper-dropdown-close":"onPaperDropdownClose_","paper-dropdown-open":"onPa
    perDropdownOpen_"},canUndo:function(){return!this.$.toolbar.getSearchField().isS
    earchFocused()},canClearAll:function(){return!this.$.toolbar.getSearchField().ge
    tValue()&&this.downloadsShowing},onFindCommand:function(){this.$.toolbar.getSear
    chField().showAndFocus()},closeMoreActions_:function(){this.$.more.close()},down
    loadsShowingChanged_:function(){this.updateClearAll_()},onClearAllTap_:function(
    ){assert(this.canClearAll());downloads.ActionService.getInstance().clearAll()},o
    nPaperDropdownClose_:function(){window.removeEventListener("resize",assert(this.
    boundClose_))},onItemBlur_:function(e){var menu=this.$$("paper-menu");if(menu.it
    ems.indexOf(e.relatedTarget)>=0)return;this.$.more.restoreFocusOnClose=false;thi
    s.closeMoreActions_();this.$.more.restoreFocusOnClose=true},onPaperDropdownOpen_
    :function(){this.boundClose_=this.boundClose_||this.closeMoreActions_.bind(this)
    ;window.addEventListener("resize",this.boundClose_)},onSearchChanged_:function(e
    vent){var actionService=downloads.ActionService.getInstance();if(actionService.s
    earch(event.detail))this.spinnerActive=actionService.isSearching();this.updateCl
    earAll_()},onOpenDownloadsFolderTap_:function(){downloads.ActionService.getInsta
    nce().openDownloadsFolder()},updateClearAll_:function(){this.$$("paper-menu .cle
    ar-all").hidden=!this.canClearAll()}});return{Toolbar:Toolbar}}); | 62 cr.define("downloads",function(){var Toolbar=Polymer({is:"downloads-toolbar",pro
    perties:{downloadsShowing:{reflectToAttribute:true,type:Boolean,value:false,obse
    rver:"downloadsShowingChanged_"},spinnerActive:{type:Boolean,notify:true}},liste
    ners:{"paper-dropdown-close":"onPaperDropdownClose_","paper-dropdown-open":"onPa
    perDropdownOpen_"},canUndo:function(){return!this.$.toolbar.getSearchField().isS
    earchFocused()},canClearAll:function(){return!this.$.toolbar.getSearchField().ge
    tValue()&&this.downloadsShowing},onFindCommand:function(){this.$.toolbar.getSear
    chField().showAndFocus()},closeMoreActions_:function(){this.$.more.close()},down
    loadsShowingChanged_:function(){this.updateClearAll_()},onClearAllTap_:function(
    ){assert(this.canClearAll());downloads.ActionService.getInstance().clearAll()},o
    nPaperDropdownClose_:function(){window.removeEventListener("resize",assert(this.
    boundClose_))},onItemBlur_:function(e){var menu=this.$$("paper-menu");if(menu.it
    ems.indexOf(e.relatedTarget)>=0)return;this.$.more.restoreFocusOnClose=false;thi
    s.closeMoreActions_();this.$.more.restoreFocusOnClose=true},onPaperDropdownOpen_
    :function(){this.boundClose_=this.boundClose_||this.closeMoreActions_.bind(this)
    ;window.addEventListener("resize",this.boundClose_)},onSearchChanged_:function(e
    vent){var actionService=downloads.ActionService.getInstance();if(actionService.s
    earch(event.detail))this.spinnerActive=actionService.isSearching();this.updateCl
    earAll_()},onOpenDownloadsFolderTap_:function(){downloads.ActionService.getInsta
    nce().openDownloadsFolder()},updateClearAll_:function(){this.$$("paper-menu .cle
    ar-all").hidden=!this.canClearAll()}});return{Toolbar:Toolbar}}); | 
| 64 // Copyright 2015 The Chromium Authors. All rights reserved. | 63 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 65 // Use of this source code is governed by a BSD-style license that can be | 64 // Use of this source code is governed by a BSD-style license that can be | 
| 66 // found in the LICENSE file. | 65 // found in the LICENSE file. | 
| 67 cr.define("downloads",function(){var Manager=Polymer({is:"downloads-manager",pro
    perties:{hasDownloads_:{observer:"hasDownloadsChanged_",type:Boolean},hasShadow_
    :{type:Boolean,value:false,reflectToAttribute:true},inSearchMode_:{type:Boolean,
    value:false},items_:{type:Array,value:function(){return[]}},spinnerActive_:{type
    :Boolean,notify:true}},hostAttributes:{loading:true},listeners:{"downloads-list.
    scroll":"onListScroll_","toolbar.search-changed":"onSearchChanged_"},observers:[
    "itemsChanged_(items_.*)"],clearAll_:function(){this.set("items_",[])},hasDownlo
    adsChanged_:function(){if(loadTimeData.getBoolean("allowDeletingHistory"))this.$
    .toolbar.downloadsShowing=this.hasDownloads_;if(this.hasDownloads_)this.$["downl
    oads-list"].fire("iron-resize")},insertItems_:function(index,list){this.splice.a
    pply(this,["items_",index,0].concat(list));this.updateHideDates_(index,index+lis
    t.length);this.removeAttribute("loading");this.spinnerActive_=false},itemsChange
    d_:function(){this.hasDownloads_=this.items_.length>0},noDownloadsText_:function
    (){return loadTimeData.getString(this.inSearchMode_?"noSearchResults":"noDownloa
    ds")},onCanExecute_:function(e){e=e;switch(e.command.id){case"undo-command":e.ca
    nExecute=this.$.toolbar.canUndo();break;case"clear-all-command":e.canExecute=thi
    s.$.toolbar.canClearAll();break;case"find-command":e.canExecute=true;break}},onC
    ommand_:function(e){if(e.command.id=="clear-all-command")downloads.ActionService
    .getInstance().clearAll();else if(e.command.id=="undo-command")downloads.ActionS
    ervice.getInstance().undo();else if(e.command.id=="find-command")this.$.toolbar.
    onFindCommand()},onListScroll_:function(){var list=this.$["downloads-list"];if(l
    ist.scrollHeight-list.scrollTop-list.offsetHeight<=100){downloads.ActionService.
    getInstance().loadMore()}this.hasShadow_=list.scrollTop>0},onLoad_:function(){cr
    .ui.decorate("command",cr.ui.Command);document.addEventListener("canExecute",thi
    s.onCanExecute_.bind(this));document.addEventListener("command",this.onCommand_.
    bind(this));downloads.ActionService.getInstance().loadMore()},onSearchChanged_:f
    unction(){this.inSearchMode_=downloads.ActionService.getInstance().isSearching()
    },removeItem_:function(index){this.splice("items_",index,1);this.updateHideDates
    _(index,index);this.onListScroll_()},updateHideDates_:function(start,end){for(va
    r i=start;i<=end;++i){var current=this.items_[i];if(!current)continue;var prev=t
    his.items_[i-1];var hideDate=!!prev&&prev.date_string==current.date_string;this.
    set("items_."+i+".hideDate",hideDate)}},updateItem_:function(index,data){this.se
    t("items_."+index,data);this.updateHideDates_(index,index);var list=this.$["down
    loads-list"];list.updateSizeForItem(index)}});Manager.clearAll=function(){Manage
    r.get().clearAll_()};Manager.get=function(){return queryRequiredElement("downloa
    ds-manager")};Manager.insertItems=function(index,list){Manager.get().insertItems
    _(index,list)};Manager.onLoad=function(){Manager.get().onLoad_()};Manager.remove
    Item=function(index){Manager.get().removeItem_(index)};Manager.updateItem=functi
    on(index,data){Manager.get().updateItem_(index,data)};return{Manager:Manager}}); | 66 cr.define("downloads",function(){var Manager=Polymer({is:"downloads-manager",pro
    perties:{hasDownloads_:{observer:"hasDownloadsChanged_",type:Boolean},hasShadow_
    :{type:Boolean,value:false,reflectToAttribute:true},inSearchMode_:{type:Boolean,
    value:false},items_:{type:Array,value:()=>[]},spinnerActive_:{type:Boolean,notif
    y:true}},hostAttributes:{loading:true},listeners:{"downloads-list.scroll":"onLis
    tScroll_","toolbar.search-changed":"onSearchChanged_"},observers:["itemsChanged_
    (items_.*)"],clearAll_:function(){this.set("items_",[])},hasDownloadsChanged_:fu
    nction(){if(loadTimeData.getBoolean("allowDeletingHistory"))this.$.toolbar.downl
    oadsShowing=this.hasDownloads_;if(this.hasDownloads_)this.$["downloads-list"].fi
    re("iron-resize")},insertItems_:function(index,list){this.splice.apply(this,["it
    ems_",index,0].concat(list));this.updateHideDates_(index,index+list.length);this
    .removeAttribute("loading");this.spinnerActive_=false},itemsChanged_:function(){
    this.hasDownloads_=this.items_.length>0},noDownloadsText_:function(){return load
    TimeData.getString(this.inSearchMode_?"noSearchResults":"noDownloads")},onCanExe
    cute_:function(e){e=e;switch(e.command.id){case"undo-command":e.canExecute=this.
    $.toolbar.canUndo();break;case"clear-all-command":e.canExecute=this.$.toolbar.ca
    nClearAll();break;case"find-command":e.canExecute=true;break}},onCommand_:functi
    on(e){if(e.command.id=="clear-all-command")downloads.ActionService.getInstance()
    .clearAll();else if(e.command.id=="undo-command")downloads.ActionService.getInst
    ance().undo();else if(e.command.id=="find-command")this.$.toolbar.onFindCommand(
    )},onListScroll_:function(){var list=this.$["downloads-list"];if(list.scrollHeig
    ht-list.scrollTop-list.offsetHeight<=100){downloads.ActionService.getInstance().
    loadMore()}this.hasShadow_=list.scrollTop>0},onLoad_:function(){cr.ui.decorate("
    command",cr.ui.Command);document.addEventListener("canExecute",this.onCanExecute
    _.bind(this));document.addEventListener("command",this.onCommand_.bind(this));do
    wnloads.ActionService.getInstance().loadMore()},onSearchChanged_:function(){this
    .inSearchMode_=downloads.ActionService.getInstance().isSearching()},removeItem_:
    function(index){this.splice("items_",index,1);this.updateHideDates_(index,index)
    ;this.onListScroll_()},updateHideDates_:function(start,end){for(var i=start;i<=e
    nd;++i){var current=this.items_[i];if(!current)continue;var prev=this.items_[i-1
    ];var hideDate=!!prev&&prev.date_string==current.date_string;this.set("items_."+
    i+".hideDate",hideDate)}},updateItem_:function(index,data){this.set("items_."+in
    dex,data);this.updateHideDates_(index,index);var list=this.$["downloads-list"];l
    ist.updateSizeForItem(index)}});Manager.clearAll=function(){Manager.get().clearA
    ll_()};Manager.get=function(){return queryRequiredElement("downloads-manager")};
    Manager.insertItems=function(index,list){Manager.get().insertItems_(index,list)}
    ;Manager.onLoad=function(){Manager.get().onLoad_()};Manager.removeItem=function(
    index){Manager.get().removeItem_(index)};Manager.updateItem=function(index,data)
    {Manager.get().updateItem_(index,data)};return{Manager:Manager}}); | 
| 68 // Copyright 2015 The Chromium Authors. All rights reserved. | 67 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 69 // Use of this source code is governed by a BSD-style license that can be | 68 // Use of this source code is governed by a BSD-style license that can be | 
| 70 // found in the LICENSE file. | 69 // found in the LICENSE file. | 
| 71 window.addEventListener("load",function(){downloads.Manager.onLoad();document.fo
    nts.load("bold 12px Roboto")}); | 70 window.addEventListener("load",function(){downloads.Manager.onLoad();document.fo
    nts.load("bold 12px Roboto")}); | 
| OLD | NEW | 
|---|