-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path62940.1f3f059c.iframe.bundle.js
1 lines (1 loc) · 25.3 KB
/
62940.1f3f059c.iframe.bundle.js
1
"use strict";(globalThis.webpackChunkmetamask_crx=globalThis.webpackChunkmetamask_crx||[]).push([[62940],{"./ui/components/ui/mascot/mascot.component.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>Mascot});var prop_types__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./node_modules/prop-types/index.js"),prop_types__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_4__),react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js"),_metamask_logo__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/@metamask/logo/src/index.js"),_metamask_logo__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_metamask_logo__WEBPACK_IMPORTED_MODULE_1__),lodash__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/lodash/lodash.js"),_helpers_utils_build_types__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./ui/helpers/utils/build-types.js");function _assert_this_initialized(self){if(void 0===self)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return self}function _class_call_check(instance,Constructor){if(!(instance instanceof Constructor))throw TypeError("Cannot call a class as a function")}function _defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}function _create_class(Constructor,protoProps,staticProps){return protoProps&&_defineProperties(Constructor.prototype,protoProps),staticProps&&_defineProperties(Constructor,staticProps),Constructor}function _define_property(obj,key,value){return key in obj?Object.defineProperty(obj,key,{value:value,enumerable:!0,configurable:!0,writable:!0}):obj[key]=value,obj}function _get_prototype_of(o){return(_get_prototype_of=Object.setPrototypeOf?Object.getPrototypeOf:function getPrototypeOf(o){return o.__proto__||Object.getPrototypeOf(o)})(o)}function _inherits(subClass,superClass){if("function"!=typeof superClass&&null!==superClass)throw TypeError("Super expression must either be null or a function");subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,writable:!0,configurable:!0}}),superClass&&_set_prototype_of(subClass,superClass)}function _possible_constructor_return(self,call){return call&&("object"===_type_of(call)||"function"==typeof call)?call:_assert_this_initialized(self)}function _set_prototype_of(o,p){return(_set_prototype_of=Object.setPrototypeOf||function setPrototypeOf(o,p){return o.__proto__=p,o})(o,p)}function _type_of(obj){return obj&&"undefined"!=typeof Symbol&&obj.constructor===Symbol?"symbol":typeof obj}function _is_native_reflect_construct(){if("undefined"==typeof Reflect||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function _create_super(Derived){var hasNativeReflectConstruct=_is_native_reflect_construct();return function _createSuperInternal(){var result,Super=_get_prototype_of(Derived);return result=hasNativeReflectConstruct?Reflect.construct(Super,arguments,_get_prototype_of(this).constructor):Super.apply(this,arguments),_possible_constructor_return(this,result)}}var directionTargetGenerator=function(param){var top=param.top,left=param.left,height=param.height,width=param.width,horizontalMiddle=left+width/2,verticalMiddle=top+height/2;return{up:{x:horizontalMiddle,y:top-height},down:{x:horizontalMiddle,y:top+2*height},left:{x:left-width,y:verticalMiddle},right:{x:left+2*width,y:verticalMiddle},middle:{x:horizontalMiddle,y:verticalMiddle}}},Mascot=function(Component){_inherits(Mascot,Component);var _super=_create_super(Mascot);function Mascot(props){_class_call_check(this,Mascot),_this=_super.call(this,props);var _this,width=props.width,height=props.height,followMouse=props.followMouse;return _this.logo=_metamask_logo__WEBPACK_IMPORTED_MODULE_1___default()({followMouse:followMouse,pxNotRatio:!0,width:width,height:height,meshJson:(0,_helpers_utils_build_types__WEBPACK_IMPORTED_MODULE_3__.Z)("foxMeshJson"),verticalFieldOfView:Math.PI/37.5,near:100,far:340}),_this.mascotContainer=(0,react__WEBPACK_IMPORTED_MODULE_0__.createRef)(),_this.refollowMouse=(0,lodash__WEBPACK_IMPORTED_MODULE_2__.debounce)(_this.logo.setFollowMouse.bind(_this.logo,!0),1e3),_this.unfollowMouse=_this.logo.setFollowMouse.bind(_this.logo,!1),_this}return _create_class(Mascot,[{key:"handleAnimationEvents",value:function handleAnimationEvents(){this.animations||(this.animations=this.props.animationEventEmitter,this.animations.on("point",this.lookAt.bind(this)),this.animations.on("setFollowMouse",this.logo.setFollowMouse.bind(this.logo)))}},{key:"lookAt",value:function lookAt(target){this.unfollowMouse(),this.logo.lookAtAndRender(target),this.refollowMouse()}},{key:"componentDidMount",value:function componentDidMount(){this.mascotContainer.current.appendChild(this.logo.container),this.directionTargetMap=directionTargetGenerator(this.mascotContainer.current.getBoundingClientRect());var _this_props=this.props,lookAtTarget=_this_props.lookAtTarget,lookAtDirection=_this_props.lookAtDirection;(null==lookAtTarget?void 0:lookAtTarget.x)&&(null==lookAtTarget?void 0:lookAtTarget.y)?this.logo.lookAtAndRender(lookAtTarget):lookAtDirection&&this.logo.lookAtAndRender(this.directionTargetMap[lookAtDirection])}},{key:"componentDidUpdate",value:function componentDidUpdate(prevProps){var tmp=prevProps.lookAtTarget,prevTarget=void 0===tmp?{}:tmp,tmp1=prevProps.lookAtDirection,prevFollowMouse=prevProps.followMouse,_this_props=this.props,_this_props_lookAtTarget=_this_props.lookAtTarget,lookAtTarget=void 0===_this_props_lookAtTarget?{}:_this_props_lookAtTarget,followMouse=_this_props.followMouse,lookAtDirection=_this_props.lookAtDirection;lookAtDirection&&(void 0===tmp1?null:tmp1)!==lookAtDirection?this.logo.lookAtAndRender(this.directionTargetMap[lookAtDirection]):((null==lookAtTarget?void 0:lookAtTarget.x)!==(null==prevTarget?void 0:prevTarget.x)||(null==lookAtTarget?void 0:lookAtTarget.y)!==(null==prevTarget?void 0:prevTarget.y))&&this.logo.lookAtAndRender(lookAtTarget),prevFollowMouse!==followMouse&&(this.unfollowMouse(),followMouse&&this.refollowMouse())}},{key:"componentWillUnmount",value:function componentWillUnmount(){this.animations=this.props.animationEventEmitter,this.animations.removeAllListeners(),this.logo.container.remove(),this.logo.stopAnimation()}},{key:"render",value:function render(){return this.handleAnimationEvents(),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{ref:this.mascotContainer,style:{zIndex:0}})}}]),Mascot}(react__WEBPACK_IMPORTED_MODULE_0__.Component);_define_property(Mascot,"propTypes",{animationEventEmitter:prop_types__WEBPACK_IMPORTED_MODULE_4___default().object.isRequired,width:prop_types__WEBPACK_IMPORTED_MODULE_4___default().string,height:prop_types__WEBPACK_IMPORTED_MODULE_4___default().string,followMouse:prop_types__WEBPACK_IMPORTED_MODULE_4___default().bool,lookAtTarget:prop_types__WEBPACK_IMPORTED_MODULE_4___default().object,lookAtDirection:prop_types__WEBPACK_IMPORTED_MODULE_4___default().oneOf(["up","down","left","right","middle"])}),_define_property(Mascot,"defaultProps",{width:"200",height:"200",followMouse:!0,lookAtTarget:{},lookAtDirection:null}),Mascot.__docgenInfo={description:"",methods:[{name:"handleAnimationEvents",docblock:null,modifiers:[],params:[],returns:null},{name:"lookAt",docblock:null,modifiers:[],params:[{name:"target",optional:!1,type:null}],returns:null}],displayName:"Mascot",props:{width:{defaultValue:{value:"'200'",computed:!1},description:"",type:{name:"string"},required:!1},height:{defaultValue:{value:"'200'",computed:!1},description:"",type:{name:"string"},required:!1},followMouse:{defaultValue:{value:"true",computed:!1},description:"",type:{name:"bool"},required:!1},lookAtTarget:{defaultValue:{value:"{}",computed:!1},description:"",type:{name:"object"},required:!1},lookAtDirection:{defaultValue:{value:"null",computed:!1},description:"",type:{name:"enum",value:[{value:"'up'",computed:!1},{value:"'down'",computed:!1},{value:"'left'",computed:!1},{value:"'right'",computed:!1},{value:"'middle'",computed:!1}]},required:!1},animationEventEmitter:{description:"",type:{name:"object"},required:!0}}}},"./ui/helpers/utils/build-types.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Z:()=>getBuildSpecificAsset,V:()=>isBeta});let flask_mascot_namespaceObject=JSON.parse('{"chunks":[{"faces":[[0,1,2],[2,3,0],[4,5,2],[6,3,2],[2,5,6],[7,8,9],[10,3,6],[10,50,7],[7,3,10],[7,9,3],[49,0,9],[3,9,0],[2,1,4]],"name":"left ear","gradient":"left-ear-gradient"},{"faces":[[53,54,55],[55,56,53],[57,56,55],[58,59,55],[55,54,58],[60,61,62],[63,58,54],[63,60,89],[60,63,54],[60,54,61],[88,61,53],[54,53,61],[55,59,57]],"name":"right ear","gradient":"right-ear-gradient"},{"color":[22,22,22],"faces":[[11,12,13]],"name":"left eye"},{"color":[22,22,22],"faces":[[64,65,66]],"name":"right eye"},{"faces":[[14,15,11],[11,16,14]],"name":"left inner eye","gradient":"left-inner-eye-gradient"},{"faces":[[17,12,18]],"name":"left outer eye","gradient":"left-outer-eye-gradient"},{"faces":[[41,64,37]],"name":"right lower inner eye","gradient":"right-inner-eye-gradient"},{"faces":[[67,68,66]],"name":"right outer eye","gradient":"right-outer-eye-gradient"},{"color":[223,117,84],"faces":[[19,20,21],[21,22,19],[20,19,23],[23,24,20],[23,25,24],[19,22,26],[26,27,19],[23,28,29],[23,29,30],[25,23,30],[29,51,52],[52,30,29],[27,26,69],[69,70,27],[70,71,72],[72,27,70],[72,71,73],[51,74,72],[52,51,72],[73,52,72],[19,27,74],[74,28,19],[51,29,28],[28,74,51],[74,27,72],[28,23,19]],"name":"lower chin"},{"color":[255,159,90],"faces":[[21,20,24],[24,31,21]],"name":"left lower snout"},{"color":[255,159,90],"faces":[[69,71,70],[71,69,75]],"name":"right lower snout"},{"color":[147,131,250],"faces":[[31,24,18]],"name":"left upper snout"},{"faces":[[6,5,16],[16,17,6]],"name":"left forehead","gradient":"left-forehead-gradient"},{"faces":[[24,32,33],[33,34,24]],"name":"left lower cheek","gradient":"left-lower-cheek-gradient"},{"faces":[[5,4,35]],"name":"left top ear","gradient":"left-top-ear-gradient"},{"color":[147,131,250],"faces":[[75,68,71]],"name":"right upper snout"},{"faces":[[58,67,40],[40,59,58]],"name":"right forhead","gradient":"right-forehead-gradient"},{"faces":[[71,76,77],[77,78,71]],"name":"right lower cheek","gradient":"right-lower-cheek-gradient"},{"faces":[[24,34,18]],"name":"left middle cheek","gradient":"left-middle-cheek-gradient"},{"color":[156,90,221],"faces":[[16,13,12],[12,17,16],[13,16,11]],"name":"left above eye"},{"faces":[[71,68,76]],"name":"right middle cheek","gradient":"right-middle-cheek-gradient"},{"color":[156,90,221],"faces":[[40,67,66],[66,65,40],[65,64,40]],"name":"right above eye"},{"color":[22,22,22],"faces":[[36,15,37],[37,38,36],[31,39,22],[22,21,31],[31,15,36],[36,39,31],[75,69,26],[26,80,75],[75,80,38],[38,37,75],[38,80,39],[39,36,38],[39,80,26],[26,22,39]],"name":"nose"},{"faces":[[17,33,10],[17,18,34],[34,33,17],[10,6,17]],"name":"left upper cheek","gradient":"left-upper-cheek-gradient"},{"faces":[[11,15,31],[31,18,11],[18,12,11]],"name":"left below eye","gradient":"left-below-eye-gradient"},{"faces":[[14,16,40],[40,41,14],[59,5,35],[35,79,59],[14,41,37],[37,15,14],[5,59,40],[40,16,5]],"name":"forehead","gradient":"forehead-gradient"},{"faces":[[67,63,77],[67,77,76],[76,68,67],[63,67,58]],"name":"right upper cheek","gradient":"right-upper-cheek-gradient"},{"faces":[[64,68,75],[75,37,64],[68,64,66]],"name":"right below eye","gradient":"right-below-eye-gradient"},{"faces":[[35,4,42],[4,1,42],[42,43,44],[44,35,42],[45,43,42],[42,10,45],[30,32,24],[24,25,30],[30,33,32],[33,30,10],[44,43,46],[43,45,47],[47,46,43],[48,47,45],[45,30,48],[30,45,10],[49,42,0],[8,7,42],[50,42,7],[50,10,42],[1,0,42],[42,9,8],[42,49,9],[79,81,57],[57,81,56],[82,79,35],[35,44,82],[81,79,82],[82,83,81],[84,63,81],[81,83,84],[44,46,85],[85,82,44],[52,73,71],[71,78,52],[52,78,77],[77,63,52],[82,85,83],[83,85,86],[86,84,83],[87,52,84],[84,86,87],[52,63,84],[88,53,81],[62,81,60],[89,60,81],[89,81,63],[56,81,53],[81,62,61],[81,61,88],[48,87,86],[86,47,48],[47,86,85],[85,46,47],[48,30,52],[52,87,48]],"name":"back","gradient":"back-gradient"},{"faces":[[57,59,79]],"name":"right top ear","gradient":"right-top-ear-gradient"},{"faces":[[64,41,40]],"name":"right inner upper eye","gradient":"right-inner-eye-gradient"}],"gradients":{"left-inner-eye-gradient":{"type":"linear","x1":"41.97721822541966%","y1":"67.79239690721649%","x2":"44.56654676258992%","y2":"67.79239690721649%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#BA86F3"},{"offset":"0.5281","stop-color":"#B786F4"},{"offset":"0.8987","stop-color":"#AE86F5"},{"offset":"1","stop-color":"#AA86F6"}]},"right-inner-eye-gradient":{"type":"linear","x1":"56.72805755395684%","y1":"81.08904639175258%","x2":"56.72805755395684%","y2":"54.49574742268041%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#BA86F3"},{"offset":"0.5281","stop-color":"#B786F4"},{"offset":"0.8987","stop-color":"#AE86F5"},{"offset":"1","stop-color":"#AA86F6"}]},"left-middle-cheek-gradient":{"type":"linear","x1":"25.107913669064747%","y1":"72.68865979381442%","x2":"25.107913669064747%","y2":"89.44690721649484%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#6848BA"},{"offset":"0.3363","stop-color":"#6356D5"}]},"right-middle-cheek-gradient":{"type":"linear","x1":"74.89208633093526%","y1":"51.32938144329896%","x2":"74.89208633093526%","y2":"94.76301546391753%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#6848BA"},{"offset":"0.3363","stop-color":"#6356D5"}]},"right-forehead-gradient":{"type":"linear","x1":"67.00671462829736%","y1":"30.13930412371134%","x2":"67.00671462829736%","y2":"54.49561855670103%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#DC69E6"},{"offset":"1","stop-color":"#C289F3"}]},"left-forehead-gradient":{"type":"linear","x1":"32.99340527577938%","y1":"30.13930412371134%","x2":"32.99340527577938%","y2":"54.49561855670103%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#DC69E6"},{"offset":"1","stop-color":"#C289F3"}]},"right-top-ear-gradient":{"type":"linear","x1":"95.056858513189448%","y1":"15.06958762886598%","x2":"57.31654676258992%","y2":"15.06958762886598%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#BB65ED"},{"offset":"1","stop-color":"#E560E3"}]},"left-top-ear-gradient":{"type":"linear","x1":"4.943141486810552%","y1":"15.06958762886598%","x2":"42.68345323741008%","y2":"15.06958762886598%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#BB65ED"},{"offset":"1","stop-color":"#E560E3"}]},"left-lower-cheek-gradient":{"type":"linear","x1":"15.103956834532372%","y1":"72.6889175257732%","x2":"15.103956834532372%","y2":"96.03221649484537%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#906EF7"},{"offset":"1","stop-color":"#575ADE"}]},"right-lower-cheek-gradient":{"type":"linear","x1":"84.91570743405276%","y1":"72.6889175257732%","x2":"84.91570743405276%","y2":"96.03221649484537%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#906EF7"},{"offset":"1","stop-color":"#575ADE"}]},"right-outer-eye-gradient":{"type":"linear","x1":"68.7720623501199%","y1":"63.14909793814433%","x2":"78.03057553956835%","y2":"63.14909793814433%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#BA86F3"},{"offset":"0.5281","stop-color":"#B786F4"},{"offset":"0.8987","stop-color":"#AE86F5"},{"offset":"1","stop-color":"#AA86F6"}]},"left-outer-eye-gradient":{"type":"linear","x1":"21.969424460431654%","y1":"63.14909793814433%","x2":"31.227937649880094%","y2":"63.14909793814433%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#BA86F3"},{"offset":"0.5281","stop-color":"#B786F4"},{"offset":"0.8987","stop-color":"#AE86F5"},{"offset":"1","stop-color":"#AA86F6"}]},"left-ear-gradient":{"type":"linear","x1":"50%","y1":"30%","x2":"4%","y2":"4%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#541758"},{"offset":"0.4286","stop-color":"#4F206C"},{"offset":"0.62","stop-color":"#4D2577"},{"offset":"1","stop-color":"#8B45B6"}]},"right-ear-gradient":{"type":"linear","x1":"50%","y1":"30%","x2":"96%","y2":"4%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#541758"},{"offset":"0.4286","stop-color":"#4F206C"},{"offset":"0.62","stop-color":"#4D2577"},{"offset":"1","stop-color":"#8B45B6"}]},"left-below-eye-gradient":{"type":"linear","x1":"30.914028776978412%","y1":"72.83646907216496%","x2":"44.56654676258992%","y2":"72.83646907216496%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#C8A8F7"},{"offset":"1","stop-color":"#BAAAFB"}]},"right-below-eye-gradient":{"type":"linear","x1":"55.43345323741007%","y1":"72.83646907216496%","x2":"69.12517985611511%","y2":"72.83646907216496%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#C8A8F7"},{"offset":"1","stop-color":"#BAAAFB"}]},"left-upper-cheek-gradient":{"type":"linear","x1":"16.02589928057554%","y1":"43.35154639175258%","x2":"16.02589928057554%","y2":"72.85773195876288%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#B65FE5"},{"offset":"1","stop-color":"#ADA2FC"}]},"right-upper-cheek-gradient":{"type":"linear","x1":"83.99364508393285%","y1":"43.35154639175258%","x2":"83.99364508393285%","y2":"72.85773195876288%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#B65FE5"},{"offset":"1","stop-color":"#ADA2FC"}]},"forehead-gradient":{"type":"linear","x1":"50%","y1":"12.790180412371136%","x2":"50%","y2":"81.08904639175258%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#FB7FE4"},{"offset":"1","stop-color":"#BCABFB"}]},"back-gradient":{"type":"linear","x1":"50%","y1":"12.790180412371136%","x2":"50%","y2":"81.08904639175258%","gradientUnits":"userSpaceOnUse","stops":[{"stop-color":"#FB7FE4"},{"offset":"1","stop-color":"#5C5CE0"}]}},"positions":[[111.024597,52.604599,46.225899],[114.025002,87.673302,58.9818],[66.192001,80.898003,55.394299],[72.113297,35.491798,30.871401],[97.804497,116.560997,73.978798],[16.7623,58.010899,58.078201],[52.608898,30.3641,42.556099],[106.881401,31.945499,46.9133],[113.484596,38.6049,49.121498],[108.6633,43.2332,46.315399],[101.216599,15.9822,46.308201],[16.6605,-16.2883,93.618698],[40.775002,-10.2288,85.276398],[23.926901,-2.5103,86.736504],[11.1691,-7.0037,99.377602],[9.5692,-34.393902,141.671997],[12.596,7.1655,88.740997],[61.180901,8.8142,76.996803],[39.719501,-28.927099,88.963799],[13.7962,-68.575699,132.057007],[15.2674,-62.32,129.688004],[14.8446,-52.6096,140.113007],[12.8917,-49.771599,144.740997],[35.604198,-71.758003,81.063904],[47.462502,-68.606102,63.369701],[38.2486,-64.730202,38.909901],[-12.8917,-49.771599,144.740997],[-13.7962,-68.575699,132.057007],[17.802099,-71.758003,81.063904],[19.1243,-69.0168,49.420101],[38.2486,-66.275597,17.776199],[12.8928,-36.703499,141.671997],[109.283997,-93.589897,27.824301],[122.117996,-36.8894,35.025002],[67.7668,-30.197001,78.417801],[33.180698,101.851997,25.3186],[9.4063,-35.589802,150.722],[-9.5692,-34.393902,141.671997],[-9.4063,-35.589802,150.722],[11.4565,-37.899399,150.722],[-12.596,7.1655,88.740997],[-11.1691,-7.0037,99.377602],[70.236504,62.836201,-3.9475],[47.263401,54.293999,-27.414801],[28.7302,91.731102,-24.972601],[69.167603,6.5862,-12.7757],[28.7302,49.1003,-48.3596],[31.903,5.692,-47.821999],[35.075802,-34.432899,-16.280899],[115.284103,48.681499,48.684101],[110.842796,28.4821,49.176201],[-19.1243,-69.0168,49.420101],[-38.2486,-66.275597,17.776199],[-111.024597,52.604599,46.225899],[-72.113297,35.491798,30.871401],[-66.192001,80.898003,55.394299],[-114.025002,87.673302,58.9818],[-97.804497,116.560997,73.978798],[-52.608898,30.3641,42.556099],[-16.7623,58.010899,58.078201],[-106.881401,31.945499,46.9133],[-108.6633,43.2332,46.315399],[-113.484596,38.6049,49.121498],[-101.216599,15.9822,46.308201],[-16.6605,-16.2883,93.618698],[-23.926901,-2.5103,86.736504],[-40.775002,-10.2288,85.276398],[-61.180901,8.8142,76.996803],[-39.719501,-28.927099,88.963799],[-14.8446,-52.6096,140.113007],[-15.2674,-62.32,129.688004],[-47.462502,-68.606102,63.369701],[-35.604198,-71.758003,81.063904],[-38.2486,-64.730202,38.909901],[-17.802099,-71.758003,81.063904],[-12.8928,-36.703499,141.671997],[-67.7668,-30.197001,78.417801],[-122.117996,-36.8894,35.025002],[-109.283997,-93.589897,27.824301],[-33.180698,101.851997,25.3186],[-11.4565,-37.899399,150.722],[-70.236504,62.836201,-3.9475],[-28.7302,91.731102,-24.972601],[-47.263401,54.293999,-27.414801],[-69.167603,6.5862,-12.7757],[-28.7302,49.1003,-48.3596],[-31.903,5.692,-47.821999],[-35.075802,-34.432899,-16.280899],[-115.284103,48.681499,48.684101],[-110.842796,28.4821,49.176201]]}'),fox_namespaceObject=JSON.parse('{"chunks":[{"color":[102,24,0],"faces":[[2,3,1],[1,3,4],[5,1,4],[6,7,61],[6,61,8],[15,20,12],[15,9,19],[19,20,15],[1,5,0],[1,0,2],[31,30,32],[30,33,32],[34,33,30],[35,37,60],[35,60,36],[44,41,49],[44,48,38],[48,44,49],[30,29,34],[30,31,29],[12,20,49],[12,49,41],[20,19,48],[20,48,49],[19,9,38],[19,38,48]],"materialName":"model:model1:brown"},{"color":[227,72,7],"faces":[[9,6,63],[17,28,13],[13,16,17],[8,65,10],[27,7,59],[63,8,10],[18,2,21],[2,0,21],[21,22,23],[24,22,21],[21,5,24],[14,16,13],[25,16,14],[16,24,17],[25,22,24],[16,25,24],[17,24,5],[0,5,21],[61,27,8],[62,37,35],[42,46,45],[46,42,57],[37,64,56],[56,36,60],[37,62,39],[47,50,31],[31,50,29],[50,52,51],[53,50,51],[50,53,34],[43,42,45],[45,54,43],[53,45,46],[54,53,51],[54,45,53],[53,46,34],[29,50,34],[36,56,58],[23,22,51],[23,51,52],[22,25,54],[22,54,51],[25,14,43],[25,43,54],[56,60,37],[7,27,61],[38,62,35],[8,63,6],[37,39,64],[8,27,65]],"materialName":"model:model1:orange_dark"},{"color":[255,92,22],"faces":[[27,59,4],[65,3,10],[3,2,18],[23,18,21],[27,4,3],[28,15,13],[56,32,33],[56,64,32],[32,47,31],[52,50,47],[56,33,58],[57,42,44],[18,23,52],[18,52,47],[32,64,39],[27,3,65]],"materialName":"model:model1:orange_mid"},{"color":[192,196,205],"faces":[[26,13,11],[14,13,26],[43,55,42],[55,40,42],[14,26,55],[14,55,43],[26,11,40],[26,40,55],[11,12,41],[11,41,40]],"materialName":"model:model1:white_underside"},{"color":[255,141,93],"faces":[[17,59,7],[17,7,28],[28,9,15],[9,28,6],[28,7,6],[58,34,46],[58,46,57],[58,57,36],[57,44,38],[38,35,57],[36,57,35],[62,63,10],[62,10,39],[10,3,32],[10,32,39],[3,18,47],[3,47,32],[59,5,4],[34,58,33],[5,59,17],[38,9,63],[38,63,62]],"materialName":"model:model1:pasted__orange_bright_alt"},{"color":[231,235,246],"faces":[[15,12,11],[15,11,13],[44,42,40],[44,40,41]],"materialName":"model:model1:white_side"}],"positions":[[11.086484,5.960324999999999,2.77823],[6.465275,4.255375000000001,1.88451],[9.594237,11.702960999999998,4.818539],[2.466232,4.250507000000001,6.037715],[6.464263,1.4749859999999995,3.628665],[9.605342,1.4489300000000007,0.910938],[2.231848,-2.4387,8.109403],[4.922223,-1.7745820000000005,6.462612],[2.730904,-0.9981170000000006,8.231533],[0.93571,-5.683305,13.898631],[1.826048,0.1982759999999999,8.967493],[1.258694,-9.521664999999999,11.713494],[1.255813,-7.606733,14.061978],[4.829895,-7.400282,5.474004],[4.015327,-7.042688,0.703314],[1.612633,-6.389058,13.879456],[9.587111,-8.813012,-0.560606],[11.053112,-3.933592,1.23187],[2.146133,7.2576350000000005,2.344184],[0.566381,-6.040558,14.725849],[1.08419,-6.719231000000001,14.706674],[5.171019,4.21175,-3.034384],[2.0921,2.645106,-5.246524],[1.66333,6.2937319999999985,-1.261715],[7.22446,0.4266179999999995,-1.816326],[2.34563,-2.4331899999999997,-5.660416],[1.060229,-9.526682000000001,3.893901],[4.81298,0.19828200000000074,7.707912],[4.82989,-4.000793,8.547805],[-11.086484,5.960324999999999,2.77823],[-6.465275,4.255375000000001,1.88451],[-9.594237,11.702960999999998,4.818539],[-2.466232,4.250507000000001,6.037715],[-6.464263,1.4749859999999995,3.628665],[-9.605342,1.4489300000000007,0.910938],[-2.231848,-2.4387,8.109403],[-4.922223,-1.7745820000000005,6.462612],[-2.730904,-0.9981170000000006,8.231533],[-0.93571,-5.683305,13.898631],[-1.826048,0.1982759999999999,8.967493],[-1.258695,-9.521664999999999,11.713494],[-1.255813,-7.606733,14.061978],[-4.829895,-7.400282,5.474004],[-4.015327,-7.042687,0.703314],[-1.612633,-6.389058,13.879456],[-9.587111,-8.813012,-0.560606],[-11.053112,-3.933592,1.23187],[-2.146133,7.2576350000000005,2.344184],[-0.566381,-6.040558,14.725849],[-1.08419,-6.719231000000001,14.706674],[-5.171019,4.21175,-3.034384],[-2.0921,2.645106,-5.246524],[-1.66333,6.2937319999999985,-1.261715],[-7.22446,0.4266179999999995,-1.816326],[-2.34563,-2.4331899999999997,-5.660416],[-1.060229,-9.526682000000001,3.893901],[-4.81298,0.19828200000000074,7.707912],[-4.82989,-4.000793,8.547805],[-6.599504,-1.3817730000000008,5.348948],[6.599504,-1.3817730000000008,5.348948],[-4.135162,-0.9990760000000005,7.580709],[4.135162,-0.9990760000000005,7.580709],[-1.551688,-1.8464950000000009,9.58765],[1.551688,-1.8464950000000009,9.58765],[-3.089554,0.19827800000000018,8.422374],[3.089554,0.19827800000000018,8.422374]]}');var process=__webpack_require__("./node_modules/process/browser.js"),assetList={main:{foxMeshJson:fox_namespaceObject},beta:{foxMeshJson:void 0},flask:{foxMeshJson:flask_mascot_namespaceObject}};function isBeta(){return"beta"===process.env.METAMASK_BUILD_TYPE}function getBuildSpecificAsset(assetName){var buildType=process.env.METAMASK_BUILD_TYPE;return assetList[buildType]&&Object.keys(assetList[buildType]).includes(assetName)?assetList[buildType][assetName]:(console.error('Cannot find asset "'.concat(assetName,'" for build "').concat(buildType,'", returning main build asset.')),assetList.main[assetName])}}}]);