content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
untyped global function Grenade_FileInit global function GetGrenadeThrowSound_1p global function GetGrenadeDeploySound_1p global function GetGrenadeThrowSound_3p global function GetGrenadeDeploySound_3p global function GetGrenadeProjectileSound const DEFAULT_FUSE_TIME = 2.25 const DEFAULT_WARNING_TIME = 1.0 global const float DEFAULT_MAX_COOK_TIME = 99999.9 //Longer than an entire day. Really just an arbitrarily large number global function Grenade_OnWeaponTossReleaseAnimEvent global function Grenade_OnWeaponTossCancelDrop global function Grenade_OnWeaponDeactivate global function Grenade_OnWeaponTossPrep global function Grenade_OnProjectileIgnite #if SERVER global function Grenade_OnPlayerNPCTossGrenade_Common global function ProxMine_Triggered global function EnableTrapWarningSound global function AddToProximityTargets global function ProximityMineThink #endif global function Grenade_Init const GRENADE_EXPLOSIVE_WARNING_SFX_LOOP = "Weapon_Vortex_Gun.ExplosiveWarningBeep" const EMP_MAGNETIC_FORCE = 1600 const MAG_FLIGHT_SFX_LOOP = "Explo_MGL_MagneticAttract" //Proximity Mine Settings global const PROXIMITY_MINE_EXPLOSION_DELAY = 1.2 global const PROXIMITY_MINE_ARMING_DELAY = 1.0 const TRIGGERED_ALARM_SFX = "Weapon_ProximityMine_CloseWarning" global const THERMITE_GRENADE_FX = $"P_grenade_thermite" global const CLUSTER_BASE_FX = $"P_wpn_meteor_exp" global const ProximityTargetClassnames = { [ "npc_soldier_shield" ] = true, [ "npc_soldier_heavy" ] = true, [ "npc_soldier" ] = true, [ "npc_spectre" ] = true, [ "npc_drone" ] = true, [ "npc_titan" ] = true, [ "npc_marvin" ] = true, [ "player" ] = true, [ "npc_turret_mega" ] = true, [ "npc_turret_sentry" ] = true, [ "npc_dropship" ] = true, } const SOLDIER_ARC_STUN_ANIMS = [ "pt_react_ARC_fall", "pt_react_ARC_kneefall", "pt_react_ARC_sidefall", "pt_react_ARC_slowfall", "pt_react_ARC_scream", "pt_react_ARC_stumble_F", "pt_react_ARC_stumble_R" ] function Grenade_FileInit() { PrecacheParticleSystem( CLUSTER_BASE_FX ) RegisterSignal( "ThrowGrenade" ) RegisterSignal( "WeaponDeactivateEvent" ) RegisterSignal( "OnEMPPilotHit" ) RegisterSignal( "StopGrenadeClientEffects" ) RegisterSignal( "DisableTrapWarningSound" ) //Globalize( MagneticFlight ) #if CLIENT AddDestroyCallback( "grenade_frag", ClientDestroyCallback_GrenadeDestroyed ) #endif #if SERVER level._empForcedCallbacks <- {} level._proximityTargetArrayID <- CreateScriptManagedEntArray() AddDamageCallbackSourceID( eDamageSourceId.mp_weapon_proximity_mine, ProxMine_Triggered ) AddDamageCallbackSourceID( eDamageSourceId.mp_weapon_thermite_grenade, Thermite_DamagedPlayerOrNPC ) AddDamageCallbackSourceID( eDamageSourceId.mp_weapon_frag_grenade, Frag_DamagedPlayerOrNPC ) level._empForcedCallbacks[eDamageSourceId.mp_weapon_grenade_emp] <- true level._empForcedCallbacks[eDamageSourceId.mp_weapon_proximity_mine] <- true PrecacheParticleSystem( THERMITE_GRENADE_FX ) #endif } void function Grenade_OnWeaponTossPrep( entity weapon, WeaponTossPrepParams prepParams ) { weapon.w.startChargeTime = Time() entity weaponOwner = weapon.GetWeaponOwner() weapon.EmitWeaponSound_1p3p( GetGrenadeDeploySound_1p( weapon ), GetGrenadeDeploySound_3p( weapon ) ) #if SERVER thread HACK_CookGrenade( weapon, weaponOwner ) thread HACK_DropGrenadeOnDeath( weapon, weaponOwner ) #elseif CLIENT if ( weaponOwner.IsPlayer() ) { weaponOwner.p.grenadePulloutTime = Time() } #endif } void function Grenade_OnWeaponDeactivate( entity weapon ) { StopSoundOnEntity( weapon, GRENADE_EXPLOSIVE_WARNING_SFX_LOOP ) weapon.Signal( "WeaponDeactivateEvent" ) } void function Grenade_OnProjectileIgnite( entity weapon ) { printt( "Grenade_OnProjectileIgnite() callback." ) } function Grenade_Init( entity grenade, entity weapon ) { entity weaponOwner = weapon.GetOwner() if ( IsValid( weaponOwner ) ) SetTeam( grenade, weaponOwner.GetTeam() ) // JFS: this is because I don't know if the above line should be // weapon.GetOwner() or it's a typo and should really be weapon.GetWeaponOwner() // and it's too close to ship and who knows what effect that will have entity owner = weapon.GetWeaponOwner() if ( IsMultiplayer() && IsValid( owner ) ) { if ( owner.IsNPC() ) { SetTeam( grenade, owner.GetTeam() ) } } #if SERVER bool smartPistolVisible = weapon.GetWeaponSettingBool( eWeaponVar.projectile_visible_to_smart_ammo ) if ( smartPistolVisible ) { grenade.SetDamageNotifications( true ) grenade.SetTakeDamageType( DAMAGE_EVENTS_ONLY ) grenade.proj.onlyAllowSmartPistolDamage = true if ( !grenade.GetProjectileWeaponSettingBool( eWeaponVar.projectile_damages_owner ) && !grenade.GetProjectileWeaponSettingBool( eWeaponVar.explosion_damages_owner ) ) SetCustomSmartAmmoTarget( grenade, true ) // prevent friendly target lockon } else { grenade.SetTakeDamageType( DAMAGE_NO ) } #endif if ( IsValid( weaponOwner ) ) grenade.s.originalOwner <- weaponOwner // for later in damage callbacks, to skip damage vs friendlies but not for og owner or his enemies } int function Grenade_OnWeaponToss_( entity weapon, WeaponPrimaryAttackParams attackParams, float directionScale ) { weapon.EmitWeaponSound_1p3p( GetGrenadeThrowSound_1p( weapon ), GetGrenadeThrowSound_3p( weapon ) ) bool projectilePredicted = PROJECTILE_PREDICTED bool projectileLagCompensated = PROJECTILE_LAG_COMPENSATED #if SERVER if ( weapon.IsForceReleaseFromServer() ) { projectilePredicted = false projectileLagCompensated = false } #endif entity grenade = Grenade_Launch( weapon, attackParams.pos, (attackParams.dir * directionScale), projectilePredicted, projectileLagCompensated ) entity weaponOwner = weapon.GetWeaponOwner() weaponOwner.Signal( "ThrowGrenade" ) PlayerUsedOffhand( weaponOwner, weapon ) // intentionally here and in Hack_DropGrenadeOnDeath - accurate for when cooldown actually begins #if SERVER #if BATTLECHATTER_ENABLED TryPlayWeaponBattleChatterLine( weaponOwner, weapon ) #endif #endif return weapon.GetWeaponSettingInt( eWeaponVar.ammo_per_shot ) } var function Grenade_OnWeaponTossReleaseAnimEvent( entity weapon, WeaponPrimaryAttackParams attackParams ) { var result = Grenade_OnWeaponToss_( weapon, attackParams, 1.0 ) return result } var function Grenade_OnWeaponTossCancelDrop( entity weapon, WeaponPrimaryAttackParams attackParams ) { var result = Grenade_OnWeaponToss_( weapon, attackParams, 0.2 ) return result } // Can return entity or nothing entity function Grenade_Launch( entity weapon, vector attackPos, vector throwVelocity, bool isPredicted, bool isLagCompensated ) { #if CLIENT if ( !weapon.ShouldPredictProjectiles() ) return null #endif //TEMP FIX while Deploy anim is added to sprint float currentTime = Time() if ( weapon.w.startChargeTime == 0.0 ) weapon.w.startChargeTime = currentTime entity weaponOwner = weapon.GetWeaponOwner() var discThrow = weapon.GetWeaponInfoFileKeyField( "grenade_disc_throw" ) vector angularVelocity = Vector( 3600, RandomFloatRange( -1200, 1200 ), 0 ) if ( discThrow == 1 ) angularVelocity = Vector( 100, 100, RandomFloatRange( 1200, 2200 ) ) float fuseTime float baseFuseTime = weapon.GetGrenadeFuseTime() //Note that fuse time of 0 means the grenade won't explode on its own, instead it depends on OnProjectileCollision() functions to be defined and explode there. Arguably in this case grenade_fuse_time shouldn't be 0, but an arbitrarily large number instead. if ( baseFuseTime > 0.0 ) { fuseTime = baseFuseTime - ( currentTime - weapon.w.startChargeTime ) if ( fuseTime <= 0 ) fuseTime = 0.001 } else { fuseTime = baseFuseTime } int damageFlags = weapon.GetWeaponDamageFlags() entity frag = weapon.FireWeaponGrenade( attackPos, throwVelocity, angularVelocity, fuseTime, damageFlags, damageFlags, isPredicted, isLagCompensated, true ) if ( frag == null ) return null if ( discThrow == 1 ) // add wobble by pitching it slightly { Assert( !frag.IsMarkedForDeletion(), "Frag before .SetAngles() is marked for deletion." ) frag.SetAngles( frag.GetAngles() + < RandomFloatRange( 7,11 ),0,0 > ) //Assert( !frag.IsMarkedForDeletion(), "Frag after .SetAngles() is marked for deletion." ) if ( frag.IsMarkedForDeletion() ) { CodeWarning( "Frag after .SetAngles() was marked for deletion." ) return null } } Grenade_OnPlayerNPCTossGrenade_Common( weapon, frag ) return frag } void function Grenade_OnPlayerNPCTossGrenade_Common( entity weapon, entity frag ) { Grenade_Init( frag, weapon ) #if SERVER thread TrapExplodeOnDamage( frag, 20, 0.0, 0.0 ) string projectileSound = GetGrenadeProjectileSound( weapon ) if ( projectileSound != "" ) EmitSoundOnEntity( frag, projectileSound ) #endif if( weapon.HasMod( "burn_mod_emp_grenade" ) ) frag.InitMagnetic( EMP_MAGNETIC_FORCE, MAG_FLIGHT_SFX_LOOP ) } struct CookGrenadeStruct //Really just a convenience struct so we can read the changed value of a bool in an OnThreadEnd { bool shouldOverrideFuseTime = false } void function HACK_CookGrenade( entity weapon, entity weaponOwner ) { float maxCookTime = GetMaxCookTime( weapon ) if ( maxCookTime >= DEFAULT_MAX_COOK_TIME ) return weaponOwner.EndSignal( "OnDeath" ) weaponOwner.EndSignal( "ThrowGrenade" ) weapon.EndSignal( "WeaponDeactivateEvent" ) weapon.EndSignal( "OnDestroy" ) /*CookGrenadeStruct grenadeStruct OnThreadEnd( function() : ( weapon, grenadeStruct ) { if ( grenadeStruct.shouldOverrideFuseTime ) { var minFuseTime = weapon.GetWeaponInfoFileKeyField( "min_fuse_time" ) printt( "minFuseTime: " + minFuseTime ) if ( minFuseTime != null ) { expect float( minFuseTime ) printt( "Setting overrideFuseTime to : " + weapon.GetWeaponInfoFileKeyField( "min_fuse_time" ) ) weapon.w.overrideFuseTime = minFuseTime } } } ) */ if ( maxCookTime - DEFAULT_WARNING_TIME <= 0 ) { EmitSoundOnEntity( weapon, GRENADE_EXPLOSIVE_WARNING_SFX_LOOP ) wait maxCookTime } else { wait( maxCookTime - DEFAULT_WARNING_TIME ) EmitSoundOnEntity( weapon, GRENADE_EXPLOSIVE_WARNING_SFX_LOOP ) wait( DEFAULT_WARNING_TIME ) } if ( !IsValid( weapon.GetWeaponOwner() ) ) return weapon.ForceReleaseFromServer() // Will eventually result in Grenade_OnWeaponToss_() or equivalent function // JFS: prevent grenade cook exploit in coliseum if ( GameRules_GetGameMode() == COLISEUM ) { #if SERVER int damageSource = weapon.GetDamageSourceID() if ( damageSource == eDamageSourceId.mp_weapon_frag_grenade ) { var impact_effect_table = weapon.GetWeaponInfoFileKeyField( "impact_effect_table" ) if ( impact_effect_table != null ) { string fx = expect string( impact_effect_table ) PlayImpactFXTable( weaponOwner.EyePosition(), weaponOwner, fx ) } weaponOwner.Die( weaponOwner, weapon, { damageSourceId = damageSource } ) } #endif } weaponOwner.Signal( "ThrowGrenade" ) // Only necessary to end HACK_DropGrenadeOnDeath } void function HACK_WaitForGrenadeDropEvent( weapon, entity weaponOwner ) { weapon.EndSignal( "WeaponDeactivateEvent" ) weaponOwner.WaitSignal( "OnDeath" ) } void function HACK_DropGrenadeOnDeath( entity weapon, entity weaponOwner ) { if ( weapon.HasMod( "burn_card_weapon_mod" ) ) //JFS: Primarily to stop boost grenade weapons (e.g. frag_drone ) not doing TryUsingBurnCardWeapon() when dropped through this function. return weaponOwner.EndSignal( "ThrowGrenade" ) weaponOwner.EndSignal( "OnDestroy" ) waitthread HACK_WaitForGrenadeDropEvent( weapon, weaponOwner ) if( !IsValid( weaponOwner ) || !IsValid( weapon ) || IsAlive( weaponOwner ) ) return float elapsedTime = Time() - weapon.w.startChargeTime float baseFuseTime = weapon.GetGrenadeFuseTime() float fuseDelta = (baseFuseTime - elapsedTime) if ( (baseFuseTime == 0.0) || (fuseDelta > -0.1) ) { float forwardScale = weapon.GetWeaponSettingFloat( eWeaponVar.grenade_death_drop_velocity_scale ) vector velocity = weaponOwner.GetForwardVector() * forwardScale velocity.z += weapon.GetWeaponSettingFloat( eWeaponVar.grenade_death_drop_velocity_extraUp ) vector angularVelocity = Vector( 0, 0, 0 ) float fuseTime = baseFuseTime ? baseFuseTime - elapsedTime : baseFuseTime int primaryClipCount = weapon.GetWeaponPrimaryClipCount() int ammoPerShot = weapon.GetWeaponSettingInt( eWeaponVar.ammo_per_shot ) weapon.SetWeaponPrimaryClipCountAbsolute( maxint( 0, primaryClipCount - ammoPerShot ) ) PlayerUsedOffhand( weaponOwner, weapon ) // intentionally here and in ReleaseAnimEvent - for cases where grenade is dropped on death entity grenade = Grenade_Launch( weapon, weaponOwner.GetOrigin(), velocity, PROJECTILE_NOT_PREDICTED, PROJECTILE_NOT_LAG_COMPENSATED ) } } #if SERVER void function ProxMine_Triggered( entity ent, var damageInfo ) { if ( !IsValid( ent ) ) return if ( DamageInfo_GetCustomDamageType( damageInfo ) & DF_DOOMED_HEALTH_LOSS ) return entity attacker = DamageInfo_GetAttacker( damageInfo ) if ( !IsValid( attacker ) ) return if ( attacker == ent ) return if ( ent.IsPlayer() || ent.IsNPC() ) thread ShowProxMineTriggeredIcon( ent ) //If this feature is good, we should add this to NPCs as well. Currently script errors if applied to an NPC. //if ( ent.IsPlayer() ) // thread ProxMine_ShowOnMinimapTimed( ent, GetOtherTeam( ent.GetTeam() ), PROX_MINE_MARKER_TIME ) } /* function ProxMine_ShowOnMinimapTimed( ent, teamToDisplayEntTo, duration ) { ent.Minimap_AlwaysShow( teamToDisplayEntTo, null ) Minimap_CreatePingForTeam( teamToDisplayEntTo, ent.GetOrigin(), $"vgui/HUD/titanFiringPing", 1.0 ) wait duration if ( IsValid( ent ) && ent.IsPlayer() ) ent.Minimap_DisplayDefault( teamToDisplayEntTo, ent ) } */ void function Thermite_DamagedPlayerOrNPC( entity ent, var damageInfo ) { if ( !IsValid( ent ) ) return Thermite_DamagePlayerOrNPCSounds( ent ) } void function Frag_DamagedPlayerOrNPC( entity ent, var damageInfo ) { #if MP if ( !IsValid( ent ) || ent.IsPlayer() || ent.IsTitan() ) return if ( ent.IsMechanical() ) DamageInfo_ScaleDamage( damageInfo, 0.5 ) #endif } #endif // SERVER #if CLIENT void function ClientDestroyCallback_GrenadeDestroyed( entity grenade ) { } #endif // CLIENT #if SERVER function EnableTrapWarningSound( entity trap, delay = 0, warningSound = DEFAULT_WARNING_SFX ) { trap.EndSignal( "OnDestroy" ) trap.EndSignal( "DisableTrapWarningSound" ) if ( delay > 0 ) wait delay while ( IsValid( trap ) ) { EmitSoundOnEntity( trap, warningSound ) wait 1.0 } } void function AddToProximityTargets( entity ent ) { AddToScriptManagedEntArray( level._proximityTargetArrayID, ent ); } function ProximityMineThink( entity proximityMine, entity owner ) { proximityMine.EndSignal( "OnDestroy" ) OnThreadEnd( function() : ( proximityMine ) { if ( IsValid( proximityMine ) ) proximityMine.Destroy() } ) thread TrapExplodeOnDamage( proximityMine, 50 ) wait PROXIMITY_MINE_ARMING_DELAY int teamNum = proximityMine.GetTeam() float explodeRadius = proximityMine.GetDamageRadius() float triggerRadius = ( ( explodeRadius * 0.75 ) + 0.5 ) local lastTimeNPCsChecked = 0 local NPCTickRate = 0.5 local PlayerTickRate = 0.2 // Wait for someone to enter proximity while( IsValid( proximityMine ) && IsValid( owner ) ) { if ( lastTimeNPCsChecked + NPCTickRate <= Time() ) { array<entity> nearbyNPCs = GetNPCArrayEx( "any", TEAM_ANY, teamNum, proximityMine.GetOrigin(), triggerRadius ) foreach( ent in nearbyNPCs ) { if ( ShouldSetOffProximityMine( proximityMine, ent ) ) { ProximityMine_Explode( proximityMine ) return } } lastTimeNPCsChecked = Time() } array<entity> nearbyPlayers = GetPlayerArrayEx( "any", TEAM_ANY, teamNum, proximityMine.GetOrigin(), triggerRadius ) foreach( ent in nearbyPlayers ) { if ( ShouldSetOffProximityMine( proximityMine, ent ) ) { ProximityMine_Explode( proximityMine ) return } } wait PlayerTickRate } } function ProximityMine_Explode( proximityMine ) { local explodeTime = Time() + PROXIMITY_MINE_EXPLOSION_DELAY EmitSoundOnEntity( proximityMine, TRIGGERED_ALARM_SFX ) wait PROXIMITY_MINE_EXPLOSION_DELAY if ( IsValid( proximityMine ) ) proximityMine.GrenadeExplode( proximityMine.GetForwardVector() ) } bool function ShouldSetOffProximityMine( entity proximityMine, entity ent ) { if ( !IsAlive( ent ) ) return false if ( ent.IsPhaseShifted() ) return false TraceResults results = TraceLine( proximityMine.GetOrigin(), ent.EyePosition(), proximityMine, (TRACE_MASK_SHOT | CONTENTS_BLOCKLOS), TRACE_COLLISION_GROUP_NONE ) if ( results.fraction >= 1 || results.hitEnt == ent ) return true return false } #endif // SERVER float function GetMaxCookTime( entity weapon ) { var cookTime = weapon.GetWeaponInfoFileKeyField( "max_cook_time" ) if (cookTime == null ) return DEFAULT_MAX_COOK_TIME expect float ( cookTime ) return cookTime } function GetGrenadeThrowSound_1p( weapon ) { return weapon.GetWeaponInfoFileKeyField( "sound_throw_1p" ) ? weapon.GetWeaponInfoFileKeyField( "sound_throw_1p" ) : "" } function GetGrenadeDeploySound_1p( weapon ) { return weapon.GetWeaponInfoFileKeyField( "sound_deploy_1p" ) ? weapon.GetWeaponInfoFileKeyField( "sound_deploy_1p" ) : "" } function GetGrenadeThrowSound_3p( weapon ) { return weapon.GetWeaponInfoFileKeyField( "sound_throw_3p" ) ? weapon.GetWeaponInfoFileKeyField( "sound_throw_3p" ) : "" } function GetGrenadeDeploySound_3p( weapon ) { return weapon.GetWeaponInfoFileKeyField( "sound_deploy_3p" ) ? weapon.GetWeaponInfoFileKeyField( "sound_deploy_3p" ) : "" } string function GetGrenadeProjectileSound( weapon ) { return expect string( weapon.GetWeaponInfoFileKeyField( "sound_grenade_projectile" ) ? weapon.GetWeaponInfoFileKeyField( "sound_grenade_projectile" ) : "" ) }
Squirrel
5
GeckoEidechse/NorthstarMods
Northstar.CustomServers/mod/scripts/vscripts/weapons/_grenade.nut
[ "MIT" ]
; CLW file contains information for the MFC ClassWizard [General Info] Version=1 LastClass=CControlSurfaceProbePropPage LastTemplate=CDialog NewFileInclude1=#include "stdafx.h" NewFileInclude2=#include "controlsurfaceprobe.h" LastPage=0 ClassCount=3 Class1=CCapabilitiesDialog Class2=CControlSurfaceProbeApp Class3=CControlSurfaceProbePropPage ResourceCount=2 Resource1=IDD_PROPPAGE (English (U.S.)) Resource2=IDD_CAPABILITIES [CLS:CCapabilitiesDialog] Type=0 BaseClass=CDialog HeaderFile=CapabilitiesDialog.h ImplementationFile=CapabilitiesDialog.cpp LastObject=CCapabilitiesDialog [CLS:CControlSurfaceProbeApp] Type=0 BaseClass=CWinApp HeaderFile=ControlSurfaceProbe.h ImplementationFile=ControlSurfaceProbeSurfaceGen.cpp [CLS:CControlSurfaceProbePropPage] Type=0 BaseClass=CDialog HeaderFile=ControlSurfaceProbePropPage.h ImplementationFile=ControlSurfaceProbePropPage.cpp Filter=D VirtualFilter=dWC LastObject=IDC_TS_SCRUB_SET [DLG:IDD_CAPABILITIES] Type=1 Class=CCapabilitiesDialog ControlCount=2 Control1=IDOK,button,1342242817 Control2=IDC_CAPABILITIES,edit,1352730756 [DLG:IDD_PROPPAGE] Type=1 Class=CControlSurfaceProbePropPage [DLG:IDD_PROPPAGE (English (U.S.))] Type=1 Class=CControlSurfaceProbePropPage ControlCount=100 Control1=IDC_STATIC,button,1342177287 Control2=IDC_STATIC,static,1342308354 Control3=IDC_UPDATE_COUNT,static,1342308352 Control4=IDC_STATIC,static,1342308354 Control5=IDC_NUM_TRACKS,static,1342308352 Control6=IDC_STATIC,static,1342308354 Control7=IDC_NUM_AUXS,static,1342308352 Control8=IDC_STATIC,static,1342308354 Control9=IDC_NUM_MAINS,static,1342308352 Control10=IDC_STATIC,static,1342308354 Control11=IDC_NUM_BUSES,static,1342308352 Control12=IDC_STATIC,static,1342308354 Control13=IDC_NUM_MASTER,static,1342308352 Control14=IDC_STATIC,button,1342177287 Control15=IDC_MIX_STRIP,combobox,1344339971 Control16=IDC_STATIC,static,1342308354 Control17=IDC_STRIP_NAME,static,1342308352 Control18=IDC_STATIC,static,1342308352 Control19=IDC_STRIP_NUM,edit,1350639744 Control20=IDC_STATIC,static,1342308354 Control21=IDC_MIX_VALUE_LABEL,static,1342308352 Control22=IDC_MIX_PARAM,combobox,1344339971 Control23=IDC_STATIC,static,1342308354 Control24=IDC_MIX_VALUE,static,1342308352 Control25=IDC_STATIC,static,1342308352 Control26=IDC_PARAM_NUM,edit,1350639744 Control27=IDC_STATIC,static,1342308354 Control28=IDC_MIX_VALUE_TEXT,static,1342308352 Control29=IDC_STATIC,static,1342308352 Control30=IDC_PARAM_NUM_HIGH,edit,1350639744 Control31=IDC_STATIC,static,1342308352 Control32=IDC_PARAM_NUM_LOW,edit,1350639744 Control33=IDC_STATIC,static,1342308354 Control34=IDC_MIX_VALUE_ARM,static,1342308352 Control35=IDC_STRIP_NUM_SPIN,msctls_updown32,1342177316 Control36=IDC_PARAM_NUM_SPIN,msctls_updown32,1342177316 Control37=IDC_MIX_SEND,button,1342242816 Control38=IDC_MIX_NEW_VAL,edit,1350631552 Control39=IDC_PARAM_NUM_SPIN_HIGH,msctls_updown32,1342177316 Control40=IDC_PARAM_NUM_SPIN_LOW,msctls_updown32,1342177316 Control41=IDC_MIX_ARM,button,1342242816 Control42=IDC_MIX_DISARM,button,1342242816 Control43=IDC_STATIC,static,1342308352 Control44=IDC_STRIP_NUM_METERS,static,1342308352 Control45=IDC_STATIC,static,1342308352 Control46=IDC_STRIP_METER_VALUES,static,1342308352 Control47=IDC_STATIC,button,1342177287 Control48=IDC_STATIC,static,1342308354 Control49=IDC_TS_AUDIO,static,1342308352 Control50=IDC_TS_AUDIO_SET,button,1342242816 Control51=IDC_TS_AUDIO_CLEAR,button,1342242816 Control52=IDC_STATIC,static,1342308354 Control53=IDC_TS_PLAY,static,1342308352 Control54=IDC_TS_PLAY_SET,button,1342242816 Control55=IDC_TS_PLAY_CLEAR,button,1342242816 Control56=IDC_STATIC,static,1342308354 Control57=IDC_TS_SCRUB,static,1342308352 Control58=IDC_TS_SCRUB_SET,button,1342242816 Control59=IDC_TS_SCRUB_CLEAR,button,1342242816 Control60=IDC_STATIC,static,1342308354 Control61=IDC_TS_REC,static,1342308352 Control62=IDC_TS_REC_SET,button,1342242816 Control63=IDC_TS_REC_CLEAR,button,1342242816 Control64=IDC_STATIC,static,1342308354 Control65=IDC_TS_REC_AUTO,static,1342308352 Control66=IDC_TS_REC_AUTO_SET,button,1342242816 Control67=IDC_TS_REC_AUTO_CLEAR,button,1342242816 Control68=IDC_STATIC,static,1342308354 Control69=IDC_TS_LOOP,static,1342308352 Control70=IDC_TS_LOOP_SET,button,1342242816 Control71=IDC_TS_LOOP_CLEAR,button,1342242816 Control72=IDC_STATIC,static,1342308354 Control73=IDC_TS_AUTOPUNCH,static,1342308352 Control74=IDC_TS_AUTOPUNCH_SET,button,1342242816 Control75=IDC_TS_AUTOPUNCH_CLEAR,button,1342242816 Control76=IDC_STATIC,button,1342177287 Control77=IDC_DO_COMMAND,button,1342242816 Control78=IDC_COMMANDS,combobox,1344339971 Control79=IDC_STATIC,button,1342177287 Control80=IDC_STATIC,static,1342308352 Control81=IDC_UNIQUE_ID,static,1342308352 Control82=IDC_STATIC,static,1342308352 Control83=IDC_HOST_VERSION,static,1342308352 Control84=IDC_STATIC,static,1342308352 Control85=IDC_HOST_NAME,static,1342308352 Control86=IDC_CAPABILITIES,button,1342242816 Control87=IDC_STATIC,button,1342177287 Control88=IDC_STATIC,static,1342308352 Control89=IDC_MARKER_COUNT,static,1342308352 Control90=IDC_MARKER_LIST,edit,1352730756 Control91=IDC_MARKER_MEAS_SPIN,msctls_updown32,1342177316 Control92=IDC_MARKER_BEAT_SPIN,msctls_updown32,1342177316 Control93=IDC_MARKER_TICK_SPIN,msctls_updown32,1342177316 Control94=IDC_MARKER_MEASURES,edit,1350639616 Control95=IDC_MARKER_BEATS,edit,1350639616 Control96=IDC_MARKER_TICKS,edit,1350639616 Control97=IDC_MARKER_GET_NEAREST,button,1342242816 Control98=IDC_MARKER_THE_NEAREST,static,1342308352 Control99=IDC_STATIC,static,1342308352 Control100=IDC_STATIC,static,1342308352
Clarion
3
Schrankee/Cakewalk-Control-Surface-SDK
Surfaces/ControlSurfaceProbe/ControlSurfaceProbe.clw
[ "MIT" ]
//##1. this one is ok from java.lang.Math import sin, round mymatrix = [ 60. 120. ; 90. 360.] def mysin(arg double, toRand boolean) => round(sin(arg)*100)/100. calledD = 0 def getF() => calledD++; true def doings(){ res = mysin(mymatrix^, getF()) "" + [res, calledD] } ~~~~~ //##2. onyl one arg vec self from java.lang.Math import sin, round mymatrix = [ 60. 120. ; 90. 360.] def mysin(arg double, toRand boolean) => round(sin(arg)*100)/100. calledD = 0 def getF() => calledD++; true def doings(){ res = mysin(mymatrix^^, [false, true]^^)//no "" + [res, calledD] } ~~~~~ //##3. all args same dimention def mysin(arg double, arg2 double) => 'ok' ve = [ 1 2. ] ar = [ 1. 2; 3 4.] def doings(){ res = mysin(ve^, ar^) "" } ~~~~~ //##4. correct type to write back cast needed from java.lang.Math import sin, round Mvec = [ 60 120 ] callmyseincnt = 0 def mysin(arg double, toRand boolean) => callmyseincnt++; round(sin(arg)*100)/100. calledD = 0 def getF() => calledD++; true def doings(){ c1 = Mvec@ c2 = Mvec@ c3 = Mvec@ c4 = Mvec@ mysin(c1^, getF())//fine mysin(c2^^, getF())//nope r1= mysin(c3^, getF())//fine r2 =mysin(c4^^, getF())//nope "" + [r1, r2, c1, c2, c3, c4, callmyseincnt, calledD] } ~~~~~ //##5. only one arg in ensted call may be of ^^ form def fcall(prec String, arg1 String, arg2 int) => "fcall: {prec} {arg1} => {arg2}" def outercall(an String) => "outer: {an}" vec = ["a", "b"] calledD = 0 def getF() => calledD++; calledD def doings(){ fcall('pre', outercall(vec^^)^^, getF()) "" } ~~~~~ //##6. only vec array and lists def fcall(prec String, arg1 String, arg2 int) => "fcall: {prec} {arg1} => {arg2}" def outercall(an String) => "outer: {an}" vec = ['a', 'b'] calledD = 0 def getF() => calledD++; calledD def doings(){ fcall('pre', 'david'^, getF()) "" } ~~~~~ //##7. only vectorize certain places def doings(){ fail = [ 1 2 3 ]^ "" } ~~~~~ //##8. expr element non self ref def fcall(prec String, arg1 String, arg2 int) => "fcall: {prec} {arg1} => {arg2}" def outercall(an String) => "outer: {an}" vec = ["a", "b"] calledD = 0 def getF() => calledD++; calledD def doings(){ vec5 = vec@ vec6 = vec@ r3 = fcall('pre', outercall(vec5^)^^, getF()) fcall('pre', outercall(vec6^)^^, getF()) "" } ~~~~~ //##9. Expression to vectorize has already been vectorized def getF() => 100 def mysin(a double, an int) => a + an def doings(){ c4 = [ 1 2 ] "" +( mysin((c4^)^, getF())^ as int) } ~~~~~ //##10. Expression to vectorize has already been vectorized vect func invoke class MyClass{ def anOp() => 22 } myAr = [MyClass() MyClass() ; MyClass() MyClass()] def doings(){ res = (myAr^)^anOp() "" + res } ~~~~~ //##11. Only array and lists can be vectorized vect func invoke class MyClass{ def anOp() => 22 } myAr = MyClass() def doings(){ res = myAr^anOp() "" + res } ~~~~~ //##12. Unable to find method with matching name func invoke class MyClass{ def anOp() => 22 } myAr = [MyClass() MyClass() ; MyClass() MyClass()] def doings(){ res = myAr^anOpx() "" + res } ~~~~~ //##13. only one self ref on func invoke vect chain cnt = 0 class MyClass(val value = "ok"){ def anOp() => cnt++; MyClass("anOp called") override toString() => "MyClass-{value}" def op2() => value.length() } myAr = [MyClass() MyClass()] def doings(){ res = myAr^^anOp()^^op2() "{cnt} {res} {myAr}" } ~~~~~ //##14. Vectorized arguments must all be to the same degree def getFunc(){ def (a int, b int) => a + 100 } myAr1 = [1 2 3 4] myAr2 = [myAr1 ; myAr1] def doings(){ xx = getFunc()(myAr1^, myAr2^) "" + xx } ~~~~~ //##15. When both elements of sublist array reference are vectorized, they must be vectorized to the same degree origArray = [1 2 3 4 5 6 7 8 9 10] ele = [ 0 1 0 1 0 2] ele2 = [[ 0 1 0 1 0 2]] def doings(){ got = origArray[ (ele^) ... (ele2^) ] "" + got } ~~~~~ //##16. op overload only one may inplace origArray = [1 2 3 4 5 6 7 8 9 10] def doings(){ got = origArray^^ + origArray^^ //no "" + [origArray, got] } ~~~~~ //##17. Vectorized Expression cannot appear on its own line myAr = [ 1 2 3 4 ] def doings(){ myAr^ + 1//cannot be on its own "" + myAr } ~~~~~ //##18. vectorized assignment lhs must be array or list myAr = [ 1 2 3 4 ] thing = [9] def doings(){ thing[0] += myAr^ "" + myAr } ~~~~~ //##19. when vect no direct myAr = [ 1 2 3 4 ] thing = [9] def doings(){ myAr = myAr^ "" + myAr } ~~~~~ //##20. all sides of operation need to be vectoried if arrays or lists myAr1 = [ 1 2 3 4 ] def doings(){ myAr1^^ + myAr1 //no, rhs must be vectoried - ah but it doesnt as it gets auto vectorized "" } ~~~~~ //##21. rhs must be vectoried if list ass //gets auto vectorized myAr1 = [ 1 2 3 4 ] myAr2 = [ 10 20 30 40 ] myAr3 = [ 1 2 3 4 ] myAr4 = [ 1 2 3 4 ] def doings(){ myAr1^ += myAr1 myAr2 += myAr2^ myAr3^ += 1 //fine myAr4^ += myAr4 "" + myAr1//[myAr1 myAr2 myAr3 myAr4] } ~~~~~ //##22. Vectorized calls in assignment may only be of myAr1 = [ 1 2 3 4 ] def doings(){ myAr1^ += myAr1^^ //nope! "" + myAr1 } ~~~~~ //##23. new must act on class not a function or method def MyClass(a int){ 8 } def doings(){ myAr1 = new MyClass(3)//err "" } ~~~~~ //##24. cannot vectorize this 1 class MyClass(public ~x Integer){ override equals(an Object) => false override hashCode() => 1 override toString() => ""+x } def doings() String { ax = [new MyClass(1) new MyClass(3) ] ax^x = [Integer(1) 2]//really should map to: ax^x = [Integer(1) 2]^ return "" + ax } ~~~~~ //##25. cannot vectorize this 2 class MyClass<Xxx >(~x Xxx){ override equals(an Object) => false override hashCode() => 1 } def doings() String { a = new MyClass<Integer>([Integer(1) 3]) a.x = [Integer(1) 3] //setter return "" }
Augeas
2
michaeldesu/Concurnas
tests/com/concurnas/compiler/scopeAndType/vectorizationSATC.conc.aug
[ "MIT" ]
from datetime import datetime from django.conf import settings from django.utils.crypto import constant_time_compare, salted_hmac from django.utils.http import base36_to_int, int_to_base36 class PasswordResetTokenGenerator: """ Strategy object used to generate and check tokens for the password reset mechanism. """ key_salt = "django.contrib.auth.tokens.PasswordResetTokenGenerator" algorithm = None _secret = None def __init__(self): self.algorithm = self.algorithm or 'sha256' def _get_secret(self): return self._secret or settings.SECRET_KEY def _set_secret(self, secret): self._secret = secret secret = property(_get_secret, _set_secret) def make_token(self, user): """ Return a token that can be used once to do a password reset for the given user. """ return self._make_token_with_timestamp(user, self._num_seconds(self._now())) def check_token(self, user, token): """ Check that a password reset token is correct for a given user. """ if not (user and token): return False # Parse the token try: ts_b36, _ = token.split("-") except ValueError: return False try: ts = base36_to_int(ts_b36) except ValueError: return False # Check that the timestamp/uid has not been tampered with if not constant_time_compare(self._make_token_with_timestamp(user, ts), token): return False # Check the timestamp is within limit. if (self._num_seconds(self._now()) - ts) > settings.PASSWORD_RESET_TIMEOUT: return False return True def _make_token_with_timestamp(self, user, timestamp): # timestamp is number of seconds since 2001-1-1. Converted to base 36, # this gives us a 6 digit string until about 2069. ts_b36 = int_to_base36(timestamp) hash_string = salted_hmac( self.key_salt, self._make_hash_value(user, timestamp), secret=self.secret, algorithm=self.algorithm, ).hexdigest()[::2] # Limit to shorten the URL. return "%s-%s" % (ts_b36, hash_string) def _make_hash_value(self, user, timestamp): """ Hash the user's primary key, email (if available), and some user state that's sure to change after a password reset to produce a token that is invalidated when it's used: 1. The password field will change upon a password reset (even if the same password is chosen, due to password salting). 2. The last_login field will usually be updated very shortly after a password reset. Failing those things, settings.PASSWORD_RESET_TIMEOUT eventually invalidates the token. Running this data through salted_hmac() prevents password cracking attempts using the reset token, provided the secret isn't compromised. """ # Truncate microseconds so that tokens are consistent even if the # database doesn't support microseconds. login_timestamp = '' if user.last_login is None else user.last_login.replace(microsecond=0, tzinfo=None) email_field = user.get_email_field_name() email = getattr(user, email_field, '') or '' return f'{user.pk}{user.password}{login_timestamp}{timestamp}{email}' def _num_seconds(self, dt): return int((dt - datetime(2001, 1, 1)).total_seconds()) def _now(self): # Used for mocking in tests return datetime.now() default_token_generator = PasswordResetTokenGenerator()
Python
4
KaushikSathvara/django
django/contrib/auth/tokens.py
[ "BSD-3-Clause", "0BSD" ]
import "moment"; console.log("Hello from scoped!");
TypeScript
0
Preta-Crowz/deno
cli/tests/import_maps/scope/scoped.ts
[ "MIT" ]
<meta property="og:title" content="Cryptee, Encrypted & Private Photos & Documents" /> <meta property="og:description" content="Cryptee is a safe, encrypted place to write personal documents, privately store photos and more." /> <meta property="og:image" content="https://crypt.ee/imgs/hero/cryptee-photos-docs-hero.jpg" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:title" content="Cryptee, Encrypted & Private Photos & Documents" /> <meta name="twitter:description" content="Cryptee is a safe, encrypted place to write personal documents, privately store photos and more." /> <meta name="twitter:image" content="https://crypt.ee/imgs/hero/cryptee-photos-docs-hero.jpg" />
Kit
3
pws1453/web-client
source/imports/www/schema-json.kit
[ "MIT" ]
(pr a) (pr b)
Shen
0
ragnard/shen-truffle
src/test/resources/custom-test-programs/test.shen
[ "BSD-3-Clause" ]
### /role/create 成功 POST {{baseUrl}}/role/create Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} #Authorization: Bearer 9d250d9b6c034a6c88bf4034cdf1d4cc name=测试角色 ### /role/update 成功 POST {{baseUrl}}/role/update Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} id=14&name=test ### /resource/delete 成功 POST {{baseUrl}}/role/delete Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} roleId=14 ### /role/get 成功 GET {{baseUrl}}/role/get?roleId=13 Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} ### /role/list-all 成功 GET {{baseUrl}}/role/list-all Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} ### /role/list 成功 GET {{baseUrl}}/role/list?roleIds=1,13 Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} ### /role/page 成功 GET {{baseUrl}}/role/page?pageNo=1&pageSize=10 Content-Type: application/x-www-form-urlencoded Authorization: Bearer {{accessToken}} ###
HTTP
3
ssSlowDown/onemall
management-web-app/src/main/java/cn/iocoder/mall/managementweb/controller/permission/RoleController.http
[ "MulanPSL-1.0" ]
<?Lassoscript // Last modified 3/7/10 by ECL, Landmann InterActive // FUNCTIONALITY // This is the place where images, files and templates are managed // DataTypes are self-named. // CHANGE NOTES // 10/12/07 // Recoded for CMS v. 3.0 // First implementation // 4/30/08 // Changed logout_dialog URL // 9/26/08 // Added $vImageType to accommodate Media // 6/16/09 // Removed unused $Status // 7/23/09 // Added Robot Check // 3/7/10 // Added ImageType for Templates Include:'/siteconfig.lasso'; // Robot check Include:($svLibsPath)'robotcheck.inc'; // Start the Admin session Session_Start: -Name=$svSessionAdminName, -Expires=$svSessionTimeout; // Debugging // Var:'svDebug' = 'Y'; // Page head Include:($svLibsPath)'page_header_admin.inc'; If: $svDebug == 'Y'; '<p class="debug"><strong>/admin/library</strong></p>\n'; /If; // Setting variables Var:'ULpath' = '/site/files/'; Var:'Process' = (Action_Param:'Process'); Var:'vError' = (Action_Param:'Error'); Var:'vOption' = (Action_Param:'Option'); Var:'vDataType' = (Action_Param:'DataType'); // Set the default datatype if it is blank If: $vDatatype == ''; $vDatatype = 'Images'; /If; // This contains the filename if coming from show_files.inc Var:'vID' = (Action_Param:'ID'); // Used to pass the untouched filename to the error tag Var:'vIDOriginal' = $vID; // This contains the action. The only action is Delete, coming from show_files.inc Var:'vAction' = (Action_Param:'Action'); // This is used to determine if it is an Image or Media // Used mainly for deletion Var:'ImageType' = (Action_Param:'ImageType'); // Check the DataType. If no parameter passed, assume it is Images. If: $vDatatype == 'Files'; Var:'ULpath' = $svFilesUploadPath; Var:'MainHead' = 'File Library'; Else: $vDataType == 'Images'; Var:'ULpath' = $svImagesUploadPath; Var:'MainHead' = 'Image Library'; Else: $vDataType == 'Templates'; Var:'ULpath' = $svTmpltsPath; Var:'MainHead' = 'Template Library'; Else; Var:'ULpath' = $svImagesUploadPath; Var:'MainHead' = 'Image Library'; /If; ?><table width="780"> <tr> <td width="170"> [Include:($svLibsPath)'navbar_main.inc'] </td> <td> <?Lassoscript // Login check If: (Var:'svUser_ID') != ''; // If form not submit, do the popup menus to select area, crag and route If: $Process != '1'; If: $svDebug == 'Y'; '<p class="debug">41: Process = ' $Process '</p>\n'; /If; // Include the Upload Files form. If no parameter passed, assume it is Images. If: $vDataType == 'Files'; Include:'/admin/frm_uploadfiles.inc'; Include:($svLibsPath)'show_files.inc'; Else: $vDataType == 'images'; Include:'/admin/frm_uploadimages.inc'; Include:($svLibsPath)'show_images.inc'; Else: $vDataType == 'Templates'; Include:'/admin/frm_uploadtmplts.inc'; Include:($svLibsPath)'show_tmplts.inc'; Else; Include:'/admin/frm_uploadimages.inc'; Include:($svLibsPath)'show_images.inc'; /If; // Upload form submitted, now do the process Else; // Process the Upload If: $vDataType == 'Files'; Include:($svLibsPath)'process_fileupload.inc'; Else: $vDataType == 'images'; Include:($svLibsPath)'process_imageupload.inc'; Else: $vDataType == 'Templates'; Include:($svLibsPath)'process_tmpltupload.inc'; Else; Include:($svLibsPath)'process_imageupload.inc'; /If; // Show the files on the server. If no parameter passed, assume it is Images. If: $vDataType == 'Files'; Include:'/admin/frm_uploadfiles.inc'; Include:($svLibsPath)'show_files.inc'; Else: $vDataType == 'images'; Include:'/admin/frm_uploadimages.inc'; Include:($svLibsPath)'show_images.inc'; Else: $vDataType == 'Templates'; Include:'/admin/frm_uploadtmplts.inc'; Include:($svLibsPath)'show_tmplts.inc'; Else; Include:'/admin/frm_uploadimages.inc'; Include:($svLibsPath)'show_images.inc'; /If; /If; // Not logged in Else; // If not logged in, redirect to the login page with error 6003 "Session Expired" Redirect_URL: 'http://' ($svDomain) '/admin/login.lasso?Error=6003'; /If; ?> </td> </tr> </table> [Include:($svIncludesPath)'build_footer.inc'] [OutputFooter] </body> [LI_CMSatend] </html>
Lasso
4
fourplusone/SubEthaEdit
Documentation/ModeDevelopment/Reference Files/LassoScript-HTML/itpage/admin/library.lasso
[ "MIT" ]
package com.baeldung.jpa.IdGeneration; import javax.persistence.EntityManager; import javax.transaction.Transactional; public class UserService { EntityManager entityManager; public UserService(EntityManager entityManager) { this.entityManager = entityManager; } @Transactional public long saveUser(User user){ entityManager.persist(user); return user.getId(); } }
Java
4
DBatOWL/tutorials
persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/IdGeneration/UserService.java
[ "MIT" ]
""" BCE0101-2.boo(9,9): BCE0101: Return type 'void' cannot be used on a generator. Did you mean 'void*'? You can also use 'System.Collections.IEnumerable' or 'object'. """ class A: virtual def SpawnBalls(): pass class B(A): def SpawnBalls(): yield
Boo
3
popcatalin81/boo
tests/testcases/errors/BCE0101-2.boo
[ "BSD-3-Clause" ]
team,group,wspi,wspi_offense,wspi_defense,group_first,group_second,group_third_advance,group_third_no_advance,group_fourth,sixteen,quarter,semi,final,win Germany,B,95.90262448,3.83583948,0.38574662,1.00000,0.00000,0.00000,0.00000,0.00000,1.00000,1.00000,1.00000,0.59410,0.44560 USA,D,95.16692363,3.54303547,0.39614129,1.00000,0.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.88085,0.39360,0.28120 Japan,C,92.30291546,2.77264893,0.55466902,1.00000,0.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.62480,0.35990,0.11565 Canada,A,89.37313338,2.15570625,0.64994640,1.00000,0.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.56590,0.28065,0.07575 Australia,D,89.48586625,2.40620512,0.89762100,0.00000,1.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.37520,0.17605,0.03985 England,F,89.46667375,2.27365874,0.75703674,0.00000,1.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.43410,0.18340,0.03825 China,A,85.39312901,1.48348768,0.74778628,0.00000,1.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.11915,0.01230,0.00370 France,F,92.45116427,2.86003449,0.60576144,1.00000,0.00000,0.00000,0.00000,0.00000,1.00000,1.00000,0.00000,0.00000,0.00000 Brazil,E,91.68974466,2.59373660,0.53549108,1.00000,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Netherlands,A,86.35205314,1.87835095,0.99574360,0.00000,0.00000,1.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Cameroon,C,81.15770062,1.28944049,1.26855833,0.00000,1.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Colombia,F,80.23792179,1.07933369,1.18658269,0.00000,0.00000,1.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Norway,B,88.89702352,2.20602725,0.81504964,0.00000,1.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Sweden,D,91.33216868,2.68035071,0.72938569,0.00000,0.00000,1.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 South Korea,E,83.18386455,1.68057257,1.35998767,0.00000,1.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Switzerland,C,83.69289643,1.87657968,1.48663322,0.00000,0.00000,1.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000 Spain,E,83.45638090,1.46412094,1.07605978,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000 Thailand,B,68.34465847,0.89781204,2.70667886,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 New Zealand,A,82.81777140,1.48014893,1.20273585,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000 Ivory Coast,B,71.86376106,1.38089876,2.75934875,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000 Costa Rica,E,74.73420122,0.93499261,1.86439691,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 Mexico,F,80.39728269,1.48459434,1.60483429,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000 Nigeria,D,85.86716548,1.71625315,0.91274326,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000 Ecuador,C,57.67669771,0.48593473,3.60753731,0.00000,0.00000,0.00000,0.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000
CSV
2
h4ckfu/data
womens-world-cup-predictions/wwc-forecast-20150626-184421.csv
[ "CC-BY-4.0" ]
if (beresp.status >= 500 && beresp.status < 600) { /* deliver stale if the object is available */ if (stale.exists) { return(deliver_stale); } if (req.restarts < 1 && (req.request == "GET" || req.request == "HEAD")) { restart; } /* else go to vcl_error to deliver a synthetic */ error beresp.status beresp.response; } if (beresp.http.X-Esi) { # enable ESI feature for Magento response by default esi; if (!beresp.http.Vary ~ "Fastly-Cdn-Env,Https") { if (beresp.http.Vary) { set beresp.http.Vary = beresp.http.Vary ",Fastly-Cdn-Env,Https"; } else { set beresp.http.Vary = "Fastly-Cdn-Env,Https"; } } # Since varnish doesn't compress ESIs we need to hint to the HTTP/2 terminators to # compress it set beresp.http.x-compress-hint = "on"; } else { # enable gzip for all static content if (http_status_matches(beresp.status, "200,404") && (beresp.http.content-type ~ "^(application\/x\-javascript|text\/css|text\/html|application\/javascript|text\/javascript|application\/json|application\/vnd\.ms\-fontobject|application\/x\-font\-opentype|application\/x\-font\-truetype|application\/x\-font\-ttf|application\/xml|font\/eot|font\/opentype|font\/otf|image\/svg\+xml|image\/vnd\.microsoft\.icon|text\/plain)\s*($|;)" || req.url.ext ~ "(?i)(css|js|html|eot|ico|otf|ttf|json)" ) ) { # always set vary to make sure uncompressed versions dont always win if (!beresp.http.Vary ~ "Accept-Encoding") { if (beresp.http.Vary) { set beresp.http.Vary = beresp.http.Vary ", Accept-Encoding"; } else { set beresp.http.Vary = "Accept-Encoding"; } } if (req.http.Accept-Encoding == "gzip") { set beresp.gzip = true; } } } # Just in case the Request Setting for x-pass is missing if (req.http.x-pass) { return (pass); } # Force any responses with private, no-cache or no-store in Cache-Control to pass if (beresp.http.Cache-Control ~ "private|no-cache|no-store") { set req.http.Fastly-Cachetype = "PRIVATE"; return (pass); } # Varnish sets default TTL if none of these are present. Assume if they are not present that we don't want to cache if (!beresp.http.Expires && !beresp.http.Surrogate-Control ~ "max-age" && !beresp.http.Cache-Control ~ "(s-maxage|max-age)") { set beresp.ttl = 0s; set beresp.cacheable = false; } # If origin provides TTL for an object we cache it if ( beresp.ttl > 0s && (req.request == "GET" || req.request == "HEAD") && !req.http.x-pass ) { # Don't cache cookies - this is here because Magento sets cookies even for anonymous users # which busts cache unset beresp.http.set-cookie; # If surrogate keys have been set do not set them again if ( !beresp.http.surrogate-keys-set ) { if (beresp.http.x-esi) { # init surrogate keys if (beresp.http.Surrogate-Key) { set beresp.http.Surrogate-Key = beresp.http.Surrogate-Key " text"; } else { set beresp.http.Surrogate-Key = "text"; } } else if (beresp.http.Content-Type ~ "(image|script|css)") { # set surrogate keys by content type if they are image/script or CSS if (beresp.http.Surrogate-Key) { set beresp.http.Surrogate-Key = beresp.http.Surrogate-Key " " re.group.1; } else { set beresp.http.Surrogate-Key = re.group.1; } } set beresp.http.surrogate-keys-set = "1"; } } # If for whatever reason we get a 404 on static asset requests make sure we strip out set-cookies. Otherwise we run # the risk of resetting the session since we strip out user cookies for static paths if (beresp.status == 404 && req.url.path ~ "^/(media|js|skin)/.*\.(png|jpg|jpeg|gif|css|js|swf|ico|webp|svg)$") { unset beresp.http.set-cookie; }
VCL
4
dimitar-ivanov-tryzens/fastly-magento
app/code/community/Fastly/CDN/etc/vcl_snippets/fetch.vcl
[ "BSD-3-Clause" ]
<?xml version="1.0" encoding="UTF-8"?> <scheme name="Github" version="124" parent_scheme="Default"> <option name="LINE_SPACING" value="1.6" /> <option name="EDITOR_FONT_SIZE" value="13" /> <option name="CONSOLE_FONT_NAME" value="Menlo" /> <option name="CONSOLE_FONT_SIZE" value="10" /> <option name="CONSOLE_LINE_SPACING" value="1.4" /> <option name="EDITOR_FONT_NAME" value="SourceCodePro-Regular" /> <colors> <option name="ADDED_LINES_COLOR" value="86b6a7" /> <option name="ANNOTATIONS_COLOR" value="8b999f" /> <option name="CARET_COLOR" value="b43c7a" /> <option name="CARET_ROW_COLOR" value="e7e5de" /> <option name="CONSOLE_BACKGROUND_KEY" value="2b303b" /> <option name="FILESTATUS_ADDED" value="629755" /> <option name="FILESTATUS_DELETED" value="6c6c6c" /> <option name="FILESTATUS_IDEA_FILESTATUS_DELETED_FROM_FILE_SYSTEM" value="6c6c6c" /> <option name="FILESTATUS_IDEA_FILESTATUS_IGNORED" value="848504" /> <option name="FILESTATUS_IDEA_FILESTATUS_MERGED_WITH_BOTH_CONFLICTS" value="d5756c" /> <option name="FILESTATUS_IDEA_FILESTATUS_MERGED_WITH_CONFLICTS" value="d5756c" /> <option name="FILESTATUS_IDEA_FILESTATUS_MERGED_WITH_PROPERTY_CONFLICTS" value="d5756c" /> <option name="FILESTATUS_MERGED" value="d3643b" /> <option name="FILESTATUS_MODIFIED" value="f4d370" /> <option name="FILESTATUS_NOT_CHANGED" value="" /> <option name="FILESTATUS_NOT_CHANGED_IMMEDIATE" value="f4d370" /> <option name="FILESTATUS_NOT_CHANGED_RECURSIVE" value="f4d370" /> <option name="FILESTATUS_UNKNOWN" value="d1675a" /> <option name="FILESTATUS_addedOutside" value="629755" /> <option name="FILESTATUS_changelistConflict" value="d5756c" /> <option name="FILESTATUS_modifiedOutside" value="f4d370" /> <option name="GUTTER_BACKGROUND" value="edebe4" /> <option name="HTML_TAG_TREE_LEVEL0" value="" /> <option name="HTML_TAG_TREE_LEVEL1" value="" /> <option name="HTML_TAG_TREE_LEVEL2" value="" /> <option name="HTML_TAG_TREE_LEVEL3" value="" /> <option name="HTML_TAG_TREE_LEVEL4" value="" /> <option name="HTML_TAG_TREE_LEVEL5" value="" /> <option name="INDENT_GUIDE" value="94979b" /> <option name="LINE_NUMBERS_COLOR" value="bdbbb5" /> <option name="METHOD_SEPARATORS_COLOR" value="4d4d4d" /> <option name="MODIFIED_LINES_COLOR" value="8196b6" /> <option name="NOTIFICATION_BACKGROUND" value="dfddd6" /> <option name="READONLY_FRAGMENT_BACKGROUND" value="" /> <option name="RECURSIVE_CALL_ATTRIBUTES" value="574300" /> <option name="RIGHT_MARGIN_COLOR" value="" /> <option name="SELECTED_INDENT_GUIDE" value="505050" /> <option name="SELECTED_TEARLINE_COLOR" value="787878" /> <option name="SELECTION_BACKGROUND" value="3e9c95" /> <option name="SELECTION_FOREGROUND" value="fffdf5" /> <option name="TEARLINE_COLOR" value="303134" /> <option name="WHITESPACES" value="505050" /> </colors> <attributes> <option name="ANNOTATION_ATTRIBUTE_NAME_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d0d0ff" /> </value> </option> <option name="ANNOTATION_NAME_ATTRIBUTES"> <value> <option name="FOREGROUND" value="bbb529" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="ATTR_INTERNAL_CALL_ID"> <value> <option name="FOREGROUND" value="a2cff5" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="BAD_CHARACTER"> <value> <option name="EFFECT_COLOR" value="c81414" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="BASH.EXTERNAL_COMMAND"> <value> <option name="FOREGROUND" value="c57633" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="BASH.INTERNAL_COMMAND"> <value> <option name="FOREGROUND" value="b0c95" /> </value> </option> <option name="BNF_EXTERNAL"> <value> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="BNF_ILLEGAL"> <value> <option name="FOREGROUND" value="ff0000" /> </value> </option> <option name="BNF_KEYWORD"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="BNF_NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="BNF_RULE"> <value> <option name="FOREGROUND" value="da4939" /> </value> </option> <option name="BNF_STRING"> <value> <option name="FOREGROUND" value="629755" /> </value> </option> <option name="BNF_TOKEN"> <value /> </option> <option name="BREAKPOINT_ATTRIBUTES"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="BROWSEWORDATCARET"> <value> <option name="EFFECT_COLOR" value="526da5" /> <option name="ERROR_STRIPE_COLOR" value="273955" /> </value> </option> <option name="Bad character"> <value> <option name="FOREGROUND" value="ff0000" /> <option name="EFFECT_TYPE" value="2" /> <option name="ERROR_STRIPE_COLOR" value="ff0000" /> </value> </option> <option name="CLASS_REFERENCE"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="COFFEESCRIPT.EXPRESSIONS_SUBSTITUTION_MARK"> <value> <option name="FOREGROUND" value="dee3ec" /> <option name="EFFECT_TYPE" value="5" /> </value> </option> <option name="COFFEESCRIPT.GLOBAL_VARIABLE"> <value> <option name="FONT_TYPE" value="2" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="COFFEESCRIPT.JAVASCRIPT_CONTENT"> <value> <option name="FOREGROUND" value="dee3ec" /> <option name="EFFECT_TYPE" value="5" /> </value> </option> <option name="COFFEESCRIPT.LOCAL_VARIABLE"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="COFFEESCRIPT.PARAMETER"> <value> <option name="EFFECT_COLOR" value="dee3ec" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="CONDITIONALLY_NOT_COMPILED"> <value> <option name="FOREGROUND" value="536c46" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="CONSOLE_BLACK_OUTPUT"> <value> <option name="FOREGROUND" value="0" /> </value> </option> <option name="CONSOLE_BLUE_BRIGHT_OUTPUT"> <value> <option name="FOREGROUND" value="7eaef1" /> </value> </option> <option name="CONSOLE_BLUE_OUTPUT"> <value> <option name="FOREGROUND" value="5394ec" /> </value> </option> <option name="CONSOLE_CYAN_BRIGHT_OUTPUT"> <value> <option name="FOREGROUND" value="6cdada" /> </value> </option> <option name="CONSOLE_CYAN_OUTPUT"> <value> <option name="FOREGROUND" value="33cccc" /> </value> </option> <option name="CONSOLE_DARKGRAY_OUTPUT"> <value> <option name="FOREGROUND" value="555555" /> </value> </option> <option name="CONSOLE_ERROR_OUTPUT"> <value> <option name="FOREGROUND" value="ff6b68" /> </value> </option> <option name="CONSOLE_GRAY_OUTPUT"> <value> <option name="FOREGROUND" value="999999" /> </value> </option> <option name="CONSOLE_GREEN_BRIGHT_OUTPUT"> <value> <option name="FOREGROUND" value="70ff70" /> </value> </option> <option name="CONSOLE_GREEN_OUTPUT"> <value> <option name="FOREGROUND" value="7f00" /> </value> </option> <option name="CONSOLE_MAGENTA_BRIGHT_OUTPUT"> <value> <option name="FOREGROUND" value="ff99ff" /> </value> </option> <option name="CONSOLE_MAGENTA_OUTPUT"> <value> <option name="FOREGROUND" value="ff70ff" /> </value> </option> <option name="CONSOLE_NORMAL_OUTPUT"> <value> <option name="FOREGROUND" value="f8f8f0" /> </value> </option> <option name="CONSOLE_OUTPUT"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="CONSOLE_RANGE_TO_EXECUTE"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="CONSOLE_RED_BRIGHT_OUTPUT"> <value> <option name="FOREGROUND" value="ff8785" /> </value> </option> <option name="CONSOLE_RED_OUTPUT"> <value> <option name="FOREGROUND" value="ff6b68" /> </value> </option> <option name="CONSOLE_SYSTEM_OUTPUT"> <value> <option name="FOREGROUND" value="f8f8f0" /> </value> </option> <option name="CONSOLE_USER_INPUT"> <value> <option name="FOREGROUND" value="7f00" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="CONSOLE_WHITE_OUTPUT"> <value> <option name="FOREGROUND" value="f8f8f0" /> </value> </option> <option name="CONSOLE_YELLOW_BRIGHT_OUTPUT"> <value> <option name="FOREGROUND" value="ffff00" /> </value> </option> <option name="CONSOLE_YELLOW_OUTPUT"> <value> <option name="FOREGROUND" value="cdcd00" /> </value> </option> <option name="CSS.COLOR"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="CSS.COMMENT"> <value> <option name="FOREGROUND" value="808080" /> </value> </option> <option name="CSS.FUNCTION"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="CSS.IDENT"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="CSS.IMPORTANT"> <value> <option name="FOREGROUND" value="c8408a" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="CSS.KEYWORD"> <value> <option name="FOREGROUND" value="454a51" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="CSS.NUMBER"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="CSS.PROPERTY_NAME"> <value> <option name="FOREGROUND" value="35806e" /> </value> </option> <option name="CSS.PROPERTY_VALUE"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="CSS.STRING"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="CSS.TAG_NAME"> <value> <option name="FOREGROUND" value="454a51" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="CTRL_CLICKABLE"> <value> <option name="FOREGROUND" value="589df6" /> <option name="EFFECT_COLOR" value="589df6" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="CUSTOM_INVALID_STRING_ESCAPE_ATTRIBUTES"> <value> <option name="FOREGROUND" value="8000" /> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="CUSTOM_KEYWORD1_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="CUSTOM_KEYWORD2_ATTRIBUTES"> <value> <option name="FOREGROUND" value="ab51ba" /> </value> </option> <option name="CUSTOM_KEYWORD3_ATTRIBUTES"> <value> <option name="FOREGROUND" value="f9795" /> </value> </option> <option name="CUSTOM_KEYWORD4_ATTRIBUTES"> <value> <option name="FOREGROUND" value="c93b48" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="CUSTOM_LINE_COMMENT_ATTRIBUTES"> <value> <option name="FOREGROUND" value="808080" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="CUSTOM_MULTI_LINE_COMMENT_ATTRIBUTES"> <value> <option name="FOREGROUND" value="808080" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="CUSTOM_NUMBER_ATTRIBUTES"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="CUSTOM_STRING_ATTRIBUTES"> <value> <option name="FOREGROUND" value="6a8759" /> </value> </option> <option name="CUSTOM_VALID_STRING_ESCAPE_ATTRIBUTES"> <value> <option name="FOREGROUND" value="4646f1" /> </value> </option> <option name="Class"> <value /> </option> <option name="DBNavigator.TextAttributes.SQL.Chameleon"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="DEFAULT_BLOCK_COMMENT"> <value> <option name="FOREGROUND" value="a8acae" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="DEFAULT_BRACES"> <value /> </option> <option name="DEFAULT_BRACKETS"> <value> <option name="FOREGROUND" value="c8408a" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="DEFAULT_CLASS_NAME"> <value> <option name="FOREGROUND" value="2c565d" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="DEFAULT_CLASS_REFERENCE"> <value> <option name="FOREGROUND" value="2c565d" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="DEFAULT_COMMA"> <value /> </option> <option name="DEFAULT_CONSTANT"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="DEFAULT_DOC_COMMENT"> <value> <option name="FOREGROUND" value="a8acae" /> </value> </option> <option name="DEFAULT_DOC_COMMENT_TAG"> <value> <option name="FOREGROUND" value="727678" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="DEFAULT_DOC_MARKUP"> <value> <option name="FOREGROUND" value="727678" /> </value> </option> <option name="DEFAULT_DOT"> <value /> </option> <option name="DEFAULT_FUNCTION_CALL"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="DEFAULT_FUNCTION_DECLARATION"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="DEFAULT_IDENTIFIER"> <value> <option name="FOREGROUND" value="edebe6" /> </value> </option> <option name="DEFAULT_INSTANCE_FIELD"> <value> <option name="FOREGROUND" value="454a51" /> </value> </option> <option name="DEFAULT_INSTANCE_METHOD"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="DEFAULT_INTERFACE_NAME"> <value> <option name="FOREGROUND" value="2c565d" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="DEFAULT_INVALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="dee3ec" /> <option name="EFFECT_COLOR" value="c81414" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="DEFAULT_KEYWORD"> <value> <option name="FOREGROUND" value="418c8c" /> </value> </option> <option name="DEFAULT_LINE_COMMENT"> <value> <option name="FOREGROUND" value="a8acae" /> </value> </option> <option name="DEFAULT_METADATA"> <value> <option name="FOREGROUND" value="bbb529" /> </value> </option> <option name="DEFAULT_NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="DEFAULT_OPERATION_SIGN"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="DEFAULT_PARENTHS"> <value /> </option> <option name="DEFAULT_SEMICOLON"> <value /> </option> <option name="DEFAULT_STATIC_FIELD"> <value> <option name="FOREGROUND" value="454a51" /> </value> </option> <option name="DEFAULT_STATIC_METHOD"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="DEFAULT_STRING"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="DEFAULT_TEMPLATE_LANGUAGE_COLOR"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="BACKGROUND" value="23201c" /> <option name="EFFECT_TYPE" value="5" /> </value> </option> <option name="DEFAULT_VALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="DELETED_TEXT_ATTRIBUTES"> <value> <option name="FOREGROUND" value="f8f8f0" /> <option name="BACKGROUND" value="f5f3ec" /> <option name="EFFECT_COLOR" value="c3c3c3" /> <option name="EFFECT_TYPE" value="3" /> </value> </option> <option name="DEPRECATED_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d14756" /> <option name="EFFECT_COLOR" value="c3c3c3" /> <option name="EFFECT_TYPE" value="3" /> </value> </option> <option name="DIFF_CONFLICT"> <value> <option name="BACKGROUND" value="23201c" /> <option name="ERROR_STRIPE_COLOR" value="8f5247" /> </value> </option> <option name="DIFF_DELETED"> <value> <option name="BACKGROUND" value="23201c" /> <option name="ERROR_STRIPE_COLOR" value="656e76" /> </value> </option> <option name="DIFF_INSERTED"> <value> <option name="BACKGROUND" value="23201c" /> <option name="ERROR_STRIPE_COLOR" value="447152" /> </value> </option> <option name="DIFF_MODIFIED"> <value> <option name="BACKGROUND" value="23201c" /> <option name="ERROR_STRIPE_COLOR" value="43698d" /> </value> </option> <option name="DOC_COMMENT_TAG_VALUE"> <value> <option name="FOREGROUND" value="827766" /> </value> </option> <option name="DUPLICATE_FROM_SERVER"> <value /> </option> <option name="ENUM_CONST"> <value> <option name="FOREGROUND" value="9373a5" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="ERRORS_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d14756" /> <option name="EFFECT_COLOR" value="bc3f3c" /> <option name="EFFECT_TYPE" value="1" /> <option name="ERROR_STRIPE_COLOR" value="bc3f3c" /> </value> </option> <option name="EXECUTIONPOINT_ATTRIBUTES"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="FOLDED_TEXT_ATTRIBUTES"> <value> <option name="FOREGROUND" value="8c8c8c" /> <option name="BACKGROUND" value="f5f3ec" /> </value> </option> <option name="FOLLOWED_HYPERLINK_ATTRIBUTES"> <value> <option name="FOREGROUND" value="379dde" /> <option name="EFFECT_COLOR" value="379dde" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="GENERIC_SERVER_ERROR_OR_WARNING"> <value> <option name="EFFECT_COLOR" value="f49810" /> <option name="EFFECT_TYPE" value="1" /> <option name="ERROR_STRIPE_COLOR" value="f49810" /> </value> </option> <option name="GHERKIN_REGEXP_PARAMETER"> <value> <option name="FOREGROUND" value="297bde" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="GRADLE_CHANGE_CONFLICT"> <value> <option name="FOREGROUND" value="db4233" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="GRADLE_NO_CHANGE"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="GROOVY_KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="GString"> <value> <option name="FOREGROUND" value="6a8759" /> </value> </option> <option name="Groovy method declaration"> <value /> </option> <option name="Groovydoc comment"> <value> <option name="FOREGROUND" value="629755" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="Groovydoc tag"> <value> <option name="FOREGROUND" value="7cb36f" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="HAML_CLASS"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="HAML_COMMENT"> <value> <option name="FOREGROUND" value="bc9458" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="HAML_FILTER"> <value /> </option> <option name="HAML_FILTER_CONTENT"> <value /> </option> <option name="HAML_ID"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="HAML_RUBY_CODE"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="HAML_RUBY_START"> <value /> </option> <option name="HAML_TAG"> <value> <option name="FOREGROUND" value="edebe6" /> </value> </option> <option name="HAML_TEXT"> <value> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="HAML_XHTML"> <value /> </option> <option name="HTML_ATTRIBUTE_NAME"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="HTML_ATTRIBUTE_VALUE"> <value> <option name="FOREGROUND" value="909395" /> </value> </option> <option name="HTML_COMMENT"> <value> <option name="FOREGROUND" value="9fa3a5" /> </value> </option> <option name="HTML_ENTITY_REFERENCE"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="HTML_TAG"> <value> <option name="FOREGROUND" value="2c565d" /> </value> </option> <option name="HTML_TAG_NAME"> <value> <option name="FOREGROUND" value="35806e" /> </value> </option> <option name="HYPERLINK_ATTRIBUTES"> <value> <option name="FOREGROUND" value="379dde" /> <option name="EFFECT_COLOR" value="379dde" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="IDENTIFIER_UNDER_CARET_ATTRIBUTES"> <value> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="IMPLICIT_ANONYMOUS_CLASS_PARAMETER_ATTRIBUTES"> <value> <option name="FOREGROUND" value="b389c5" /> <option name="EFFECT_COLOR" value="b389c5" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="INCLUDE_JAVA_CALL"> <value> <option name="FOREGROUND" value="f7b891" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="INFO_ATTRIBUTES"> <value> <option name="BACKGROUND" value="f5f3ec" /> <option name="EFFECT_COLOR" value="d6cd70" /> <option name="EFFECT_TYPE" value="1" /> <option name="ERROR_STRIPE_COLOR" value="aeae80" /> </value> </option> <option name="INJECTED_LANGUAGE_FRAGMENT"> <value> <option name="BACKGROUND" value="f5f3ec" /> </value> </option> <option name="INSPECTION_MULTIPLE_RESOLVE_WARNING_ID"> <value /> </option> <option name="INSTANCE_FIELD_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="INTELLIJ_LOCAL_CHANGE"> <value> <option name="FOREGROUND" value="d0d0ff" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="IVAR"> <value> <option name="FOREGROUND" value="9373a5" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="Implicit conversion first part"> <value> <option name="FOREGROUND" value="1a5746" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="Implicit conversion second part"> <value> <option name="FOREGROUND" value="1e7866" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="Instance field"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="Instance property reference ID"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="Invalid string escape"> <value> <option name="EFFECT_COLOR" value="ff0000" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="JAVA_COMMA"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="JAVA_DOC_COMMENT"> <value> <option name="FOREGROUND" value="585146" /> </value> </option> <option name="JAVA_DOC_MARKUP"> <value /> </option> <option name="JAVA_DOC_TAG"> <value> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="JAVA_INVALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="6a8759" /> <option name="EFFECT_COLOR" value="ff0000" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="JAVA_KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="JAVA_LINE_COMMENT"> <value> <option name="FOREGROUND" value="808080" /> </value> </option> <option name="JAVA_NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="JAVA_SEMICOLON"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="JAVA_STRING"> <value> <option name="FOREGROUND" value="6a8759" /> </value> </option> <option name="JAVA_VALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="JFLEX.JAVA_CODE"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX.OPTION_KEYWORD"> <value> <option name="FOREGROUND" value="c69d9d" /> <option name="FONT_TYPE" value="1" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX.OPTION_PARAMETER"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX.OPTION_SIGN"> <value> <option name="EFFECT_TYPE" value="4" /> </value> </option> <option name="JFLEX.SECTION_SIGN"> <value> <option name="FONT_TYPE" value="1" /> <option name="EFFECT_TYPE" value="3" /> </value> </option> <option name="JFLEX_ANGLE_BRACKETS"> <value> <option name="FOREGROUND" value="658665" /> </value> </option> <option name="JFLEX_COMMA"> <value /> </option> <option name="JFLEX_MACROS"> <value> <option name="FOREGROUND" value="c63c41" /> <option name="FONT_TYPE" value="1" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX_MACROS_REF"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX_OPTION_BACKGROUND"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX_REGEXP_BACKGROUND"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX_REGEXP_CLASS_SYMBOL"> <value> <option name="FOREGROUND" value="999975" /> <option name="FONT_TYPE" value="1" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX_REGEXP_SYMBOL"> <value> <option name="FOREGROUND" value="999975" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JFLEX_STATE_REF"> <value> <option name="FOREGROUND" value="658665" /> <option name="FONT_TYPE" value="1" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JS.ATTRIBUTE"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="JS.BLOCK_COMMENT"> <value> <option name="FOREGROUND" value="a8acae" /> </value> </option> <option name="JS.NUMBER"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="JS.PARAMETER"> <value> <option name="EFFECT_COLOR" value="dee3ec" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="JS.REGEXP"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="JS.STRING"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="JS.VALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="JSP_DIRECTIVE_NAME"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="JSP_SCRIPTING_BACKGROUND"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="LABEL"> <value> <option name="FONT_TYPE" value="2" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="LESS_VARIABLE"> <value> <option name="FOREGROUND" value="d0d0ff" /> </value> </option> <option name="LINE_FULL_COVERAGE"> <value> <option name="FOREGROUND" value="485848" /> </value> </option> <option name="LINE_NONE_COVERAGE"> <value> <option name="FOREGROUND" value="715353" /> </value> </option> <option name="LINE_PARTIAL_COVERAGE"> <value> <option name="FOREGROUND" value="80805a" /> </value> </option> <option name="LIVE_TEMPLATE_ATTRIBUTES"> <value> <option name="EFFECT_COLOR" value="ff0000" /> </value> </option> <option name="LOG_ERROR_OUTPUT"> <value> <option name="FOREGROUND" value="ff6b68" /> </value> </option> <option name="LOG_EXPIRED_ENTRY"> <value> <option name="FOREGROUND" value="555555" /> </value> </option> <option name="LOG_WARNING_OUTPUT"> <value> <option name="FOREGROUND" value="ffa500" /> </value> </option> <option name="List/map to object conversion"> <value> <option name="FOREGROUND" value="e8bf6a" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="MACRONAME"> <value> <option name="FOREGROUND" value="908b25" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="MACRO_PARAMETER"> <value> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="MATCHED_BRACE_ATTRIBUTES"> <value> <option name="FOREGROUND" value="bf668e" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="MESSAGE_ARGUMENT"> <value> <option name="FOREGROUND" value="c4b3a3" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="METHOD_DECLARATION_ATTRIBUTES"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="Map key"> <value> <option name="FOREGROUND" value="d0d0ff" /> </value> </option> <option name="NOT_USED_ELEMENT_ATTRIBUTES"> <value> <option name="FOREGROUND" value="141723" /> <option name="EFFECT_COLOR" value="808080" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="Number"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="OC.CPP_KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="OC.DIRECTIVE"> <value> <option name="FOREGROUND" value="80b000" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="OC.KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="OC.NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="OC.PROPERTY"> <value> <option name="FOREGROUND" value="cdbcac" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="OC.SELFSUPERTHIS"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="OC.STRING"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="OC.STRUCT_FIELD"> <value> <option name="FOREGROUND" value="9373a5" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="OC_FORMAT_TOKEN"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="PHP_BRACKETS"> <value> <option name="FOREGROUND" value="c8408a" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="PHP_CLASS"> <value> <option name="FOREGROUND" value="2c565d" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="PHP_COMMA"> <value> <option name="FOREGROUND" value="b47381" /> </value> </option> <option name="PHP_COMMENT"> <value> <option name="FOREGROUND" value="a8acae" /> </value> </option> <option name="PHP_CONSTANT"> <value> <option name="FOREGROUND" value="9a626e" /> </value> </option> <option name="PHP_DOC_COMMENT_ID"> <value> <option name="FOREGROUND" value="9fa3a5" /> </value> </option> <option name="PHP_DOC_TAG"> <value> <option name="FOREGROUND" value="727678" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="PHP_ESCAPE_SEQUENCE"> <value> <option name="FOREGROUND" value="b47381" /> </value> </option> <option name="PHP_EXEC_COMMAND_ID"> <value> <option name="FOREGROUND" value="31363d" /> <option name="BACKGROUND" value="f5f3ec" /> </value> </option> <option name="PHP_FUNCTION"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="PHP_FUNCTION_CALL"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="PHP_HEREDOC_ID"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="PHP_IDENTIFIER"> <value> <option name="FOREGROUND" value="649eac" /> </value> </option> <option name="PHP_INSTANCE_FIELD"> <value> <option name="FOREGROUND" value="626474" /> </value> </option> <option name="PHP_INSTANCE_METHOD"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="PHP_INTERFACE"> <value> <option name="FOREGROUND" value="35806e" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="PHP_KEYWORD"> <value> <option name="FOREGROUND" value="418c8c" /> </value> </option> <option name="PHP_MARKUP_ID"> <value> <option name="FOREGROUND" value="4a4f58" /> </value> </option> <option name="PHP_NUMBER"> <value> <option name="FOREGROUND" value="9a626e" /> </value> </option> <option name="PHP_OPERATION_SIGN"> <value> <option name="FOREGROUND" value="1f242e" /> </value> </option> <option name="PHP_PARAMETER"> <value> <option name="FOREGROUND" value="454a51" /> </value> </option> <option name="PHP_PREDEFINED SYMBOL"> <value> <option name="FOREGROUND" value="35806e" /> </value> </option> <option name="PHP_SCRIPTING_BACKGROUND"> <value> <option name="FOREGROUND" value="1f242e" /> <option name="BACKGROUND" value="f5f3ec" /> <option name="EFFECT_TYPE" value="5" /> </value> </option> <option name="PHP_SEMICOLON"> <value> <option name="FOREGROUND" value="b47381" /> </value> </option> <option name="PHP_STATIC_FIELD"> <value> <option name="FOREGROUND" value="626474" /> </value> </option> <option name="PHP_STATIC_METHOD"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="PHP_STRING"> <value> <option name="FOREGROUND" value="c8408a" /> </value> </option> <option name="PHP_TAG"> <value> <option name="FOREGROUND" value="94979b" /> </value> </option> <option name="PHP_VAR"> <value> <option name="FOREGROUND" value="454a51" /> </value> </option> <option name="PROPERTIES.INVALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="f4d370" /> <option name="BACKGROUND" value="23201c" /> <option name="EFFECT_COLOR" value="ff0000" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="PROPERTIES.KEY"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="PROPERTIES.KEY_VALUE_SEPARATOR"> <value> <option name="FOREGROUND" value="edebe6" /> </value> </option> <option name="PROPERTIES.VALID_STRING_ESCAPE"> <value /> </option> <option name="PROPERTIES.VALUE"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="PROTOCOL_REFERENCE"> <value> <option name="FOREGROUND" value="219598" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="PY.BUILTIN_NAME"> <value> <option name="FOREGROUND" value="8888c6" /> </value> </option> <option name="REGEXP.BRACES"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="REGEXP.BRACKETS"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="REGEXP.CHAR_CLASS"> <value> <option name="FOREGROUND" value="e8bf6a" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REGEXP.ESC_CHARACTER"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REGEXP.INVALID_STRING_ESCAPE"> <value> <option name="FOREGROUND" value="4cd6a3" /> <option name="BACKGROUND" value="23201c" /> <option name="EFFECT_COLOR" value="bc3f3c" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="REGEXP.META"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REGEXP.PARENTHS"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="REGEXP.QUOTE_CHARACTER"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REGEXP.REDUNDANT_ESCAPE"> <value> <option name="FOREGROUND" value="9396c0" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REQUIRE_GEM_CALL"> <value> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REST.BOLD"> <value> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="REST.FIXED"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="REST.INLINE"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="REST.INTERPRETED"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="REST.ITALIC"> <value> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="SASS_ATTRIBUTE"> <value> <option name="FOREGROUND" value="6d9cbe" /> </value> </option> <option name="SASS_COMMENT"> <value> <option name="FOREGROUND" value="bc9455" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="SASS_CONSTANT"> <value> <option name="FOREGROUND" value="d0d0ff" /> </value> </option> <option name="SASS_DIRECTIVE"> <value> <option name="FOREGROUND" value="cc7833" /> </value> </option> <option name="SASS_MIXIN"> <value> <option name="FOREGROUND" value="d0d0ff" /> </value> </option> <option name="SASS_NUMBER"> <value> <option name="FOREGROUND" value="a5c261" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="SASS_RULE"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="SASS_STRING"> <value> <option name="FOREGROUND" value="a5c261" /> </value> </option> <option name="SASS_VARIABLE"> <value> <option name="FOREGROUND" value="6d9cbe" /> </value> </option> <option name="SCOPE_KEY_All"> <value /> </option> <option name="SCOPE_KEY_CIDR"> <value /> </option> <option name="SCOPE_KEY_CVS plugin"> <value /> </option> <option name="SCOPE_KEY_Changed Files"> <value /> </option> <option name="SCOPE_KEY_Default"> <value /> </option> <option name="SCOPE_KEY_Evaluation fixes."> <value /> </option> <option name="SCOPE_KEY_IDEA Test Sources"> <value /> </option> <option name="SCOPE_KEY_IDEA sources"> <value /> </option> <option name="SCOPE_KEY_JDK"> <value /> </option> <option name="SCOPE_KEY_JavaEE openapi"> <value /> </option> <option name="SCOPE_KEY_Non-Project Files"> <value /> </option> <option name="SCOPE_KEY_Problems"> <value /> </option> <option name="SCOPE_KEY_Production"> <value /> </option> <option name="SCOPE_KEY_Project Files"> <value /> </option> <option name="SCOPE_KEY_Ruby"> <value /> </option> <option name="SCOPE_KEY_Tests"> <value /> </option> <option name="SCOPE_KEY_Weblogic sources"> <value /> </option> <option name="SCOPE_KEY_community"> <value /> </option> <option name="SCOPE_KEY_community except testdata"> <value /> </option> <option name="SCOPE_KEY_copyright"> <value /> </option> <option name="SCOPE_KEY_evaluation"> <value /> </option> <option name="SCOPE_KEY_everywhere except JavaEE"> <value /> </option> <option name="SCOPE_KEY_everywhere except junit4"> <value /> </option> <option name="SCOPE_KEY_flask plugin"> <value /> </option> <option name="SCOPE_KEY_foreach debugging"> <value /> </option> <option name="SCOPE_KEY_foreach debugging "> <value /> </option> <option name="SCOPE_KEY_gdb device timeout on start"> <value /> </option> <option name="SCOPE_KEY_idea openapi"> <value /> </option> <option name="SCOPE_KEY_ignore"> <value /> </option> <option name="SCOPE_KEY_introduce typedef"> <value /> </option> <option name="SCOPE_KEY_javascript"> <value /> </option> <option name="SCOPE_KEY_junit 4 features"> <value /> </option> <option name="SCOPE_KEY_libraries.except.jdk"> <value /> </option> <option name="SCOPE_KEY_lldb-92"> <value /> </option> <option name="SCOPE_KEY_platform API"> <value /> </option> <option name="SCOPE_KEY_psi"> <value /> </option> <option name="SCOPE_KEY_runtime.classes"> <value /> </option> <option name="SCOPE_KEY_stl"> <value /> </option> <option name="SCOPE_KEY_svnPlugins"> <value /> </option> <option name="SCOPE_KEY_type name construction"> <value /> </option> <option name="SCOPE_KEY_types resolve"> <value /> </option> <option name="SCOPE_KEY_util-rt"> <value /> </option> <option name="SEARCH_RESULT_ATTRIBUTES"> <value> <option name="BACKGROUND" value="d9d7d0" /> <option name="ERROR_STRIPE_COLOR" value="246e00" /> </value> </option> <option name="SQL_COLUMN"> <value> <option name="FOREGROUND" value="d0d0ff" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="SQL_KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="SQL_NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="SQL_STRING"> <value> <option name="FOREGROUND" value="f4d370" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="SQL_SYNTHETIC_ENTITY"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="STATIC_FIELD_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="FONT_TYPE" value="2" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="STATIC_FINAL_FIELD_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="FONT_TYPE" value="2" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="STATIC_METHOD_ATTRIBUTES"> <value> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="Scala Type Alias"> <value> <option name="FOREGROUND" value="4e807d" /> </value> </option> <option name="Scala Type parameter"> <value> <option name="FOREGROUND" value="4e807d" /> </value> </option> <option name="Static field"> <value> <option name="FOREGROUND" value="d0d0ff" /> <option name="FONT_TYPE" value="3" /> <option name="EFFECT_COLOR" value="ffffff" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="Static method access"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="Static property reference ID"> <value> <option name="FOREGROUND" value="d3643b" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="String"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="TAPESTRY_COMPONENT_PARAMATER"> <value> <option name="FOREGROUND" value="d0d0ff" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="TAPESTRY_COMPONENT_TAG"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="TEMPLATE_VARIABLE_ATTRIBUTES"> <value> <option name="FOREGROUND" value="ae8abe" /> </value> </option> <option name="TEXT"> <value> <option name="FOREGROUND" value="1f242e" /> <option name="BACKGROUND" value="f5f3ec" /> <option name="EFFECT_TYPE" value="5" /> </value> </option> <option name="TEXT_SEARCH_RESULT_ATTRIBUTES"> <value> <option name="BACKGROUND" value="c7c5be" /> <option name="EFFECT_COLOR" value="56ac48" /> <option name="ERROR_STRIPE_COLOR" value="425f44" /> </value> </option> <option name="TODO_DEFAULT_ATTRIBUTES"> <value> <option name="FOREGROUND" value="606265" /> <option name="FONT_TYPE" value="2" /> <option name="ERROR_STRIPE_COLOR" value="a74c0" /> </value> </option> <option name="TYPEDEF"> <value> <option name="FOREGROUND" value="c7c8f5" /> <option name="EFFECT_TYPE" value="-1" /> </value> </option> <option name="TYPE_PARAMETER_NAME_ATTRIBUTES"> <value> <option name="FOREGROUND" value="507874" /> </value> </option> <option name="TYPO"> <value> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="Type parameter"> <value> <option name="FOREGROUND" value="507874" /> </value> </option> <option name="UNMATCHED_BRACE_ATTRIBUTES"> <value> <option name="FOREGROUND" value="d14756" /> </value> </option> <option name="Unresolved reference access"> <value> <option name="FOREGROUND" value="808080" /> <option name="EFFECT_COLOR" value="808080" /> <option name="EFFECT_TYPE" value="1" /> </value> </option> <option name="VELOCITY_DIRECTIVE"> <value> <option name="FOREGROUND" value="e8bf6a" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="VELOCITY_KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="VELOCITY_NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="VELOCITY_REFERENCE"> <value> <option name="FOREGROUND" value="d0d0ff" /> </value> </option> <option name="VELOCITY_SCRIPTING_BACKGROUND"> <value> <option name="BACKGROUND" value="23201c" /> </value> </option> <option name="VELOCITY_STRING"> <value> <option name="FOREGROUND" value="6a8759" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="Valid string escape"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="WARNING_ATTRIBUTES"> <value> <option name="BACKGROUND" value="f5f3ec" /> <option name="EFFECT_COLOR" value="d6cd70" /> <option name="EFFECT_TYPE" value="1" /> <option name="ERROR_STRIPE_COLOR" value="cc8c62" /> </value> </option> <option name="WRITE_IDENTIFIER_UNDER_CARET_ATTRIBUTES"> <value> <option name="EFFECT_COLOR" value="94c7b6" /> <option name="EFFECT_TYPE" value="1" /> <option name="ERROR_STRIPE_COLOR" value="94c7b6" /> </value> </option> <option name="WRITE_SEARCH_RESULT_ATTRIBUTES"> <value> <option name="BACKGROUND" value="c7c5be" /> <option name="ERROR_STRIPE_COLOR" value="c55450" /> </value> </option> <option name="WRONG_REFERENCES_ATTRIBUTES"> <value> <option name="FOREGROUND" value="bc3f3c" /> </value> </option> <option name="XML_ATTRIBUTE_NAME"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="XML_ATTRIBUTE_VALUE"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="XML_COMMENT"> <value> <option name="FOREGROUND" value="585146" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="XML_ENTITY_REFERENCE"> <value> <option name="FOREGROUND" value="6d9cbe" /> </value> </option> <option name="XML_PROLOGUE"> <value> <option name="FOREGROUND" value="e8bf6a" /> </value> </option> <option name="XML_TAG"> <value> <option name="FOREGROUND" value="edebe6" /> </value> </option> <option name="XML_TAG_DATA"> <value /> </option> <option name="XML_TAG_NAME"> <value> <option name="FOREGROUND" value="94c7b6" /> </value> </option> <option name="XPATH.KEYWORD"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="XPATH.NUMBER"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="XPATH.STRING"> <value> <option name="FOREGROUND" value="f4d370" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="XPATH.XPATH_NAME"> <value> <option name="FOREGROUND" value="d3643b" /> </value> </option> <option name="XPATH.XPATH_VARIABLE"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="YAML_COMMENT"> <value> <option name="FOREGROUND" value="585146" /> <option name="FONT_TYPE" value="2" /> </value> </option> <option name="YAML_SCALAR_DSTRING"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="YAML_SCALAR_KEY"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="YAML_SCALAR_LIST"> <value> <option name="FOREGROUND" value="a5c261" /> </value> </option> <option name="YAML_SCALAR_STRING"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="YAML_SCALAR_VALUE"> <value> <option name="FOREGROUND" value="f4d370" /> </value> </option> <option name="YAML_SCALAR_VALUE4"> <value> <option name="FOREGROUND" value="e8d3d3" /> </value> </option> <option name="YAML_SIGN"> <value> <option name="FOREGROUND" value="a5c261" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="YAML_TEXT"> <value> <option name="FOREGROUND" value="a5c261" /> <option name="EFFECT_TYPE" value="2" /> </value> </option> <option name="osmorc.attributeName"> <value> <option name="FOREGROUND" value="d0d0ff" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="osmorc.directiveName"> <value> <option name="FOREGROUND" value="d0d0ff" /> <option name="FONT_TYPE" value="1" /> </value> </option> <option name="osmorc.headerName"> <value> <option name="FOREGROUND" value="94c7b6" /> <option name="FONT_TYPE" value="1" /> </value> </option> </attributes> </scheme>
Clean
2
ajnavarro/language-dataset
data/github.com/bagwaa/intellij-settings/3cfc420abc95ad1d7b66a410add277ecb4ad67dc/colors/Fleure_0.icl
[ "MIT" ]
// aux-build:issue-20727.rs // ignore-cross-compile extern crate issue_20727; // @has issue_20727_4/trait.Index.html pub trait Index<Idx: ?Sized> { // @has - '//*[@class="rust trait"]' 'trait Index<Idx: ?Sized> {' // @has - '//*[@class="rust trait"]' 'type Output: ?Sized' type Output: ?Sized; // @has - '//*[@class="rust trait"]' \ // 'fn index(&self, index: Idx) -> &Self::Output' fn index(&self, index: Idx) -> &Self::Output; } // @has issue_20727_4/trait.IndexMut.html pub trait IndexMut<Idx: ?Sized>: Index<Idx> { // @has - '//*[@class="rust trait"]' \ // 'trait IndexMut<Idx: ?Sized>: Index<Idx> {' // @has - '//*[@class="rust trait"]' \ // 'fn index_mut(&mut self, index: Idx) -> &mut Self::Output;' fn index_mut(&mut self, index: Idx) -> &mut Self::Output; } pub mod reexport { // @has issue_20727_4/reexport/trait.Index.html // @has - '//*[@class="rust trait"]' 'trait Index<Idx> where Idx: ?Sized, {' // @has - '//*[@class="rust trait"]' 'type Output: ?Sized' // @has - '//*[@class="rust trait"]' \ // 'fn index(&self, index: Idx) -> &Self::Output' pub use issue_20727::Index; // @has issue_20727_4/reexport/trait.IndexMut.html // @has - '//*[@class="rust trait"]' \ // 'trait IndexMut<Idx>: Index<Idx> where Idx: ?Sized, {' // @has - '//*[@class="rust trait"]' \ // 'fn index_mut(&mut self, index: Idx) -> &mut Self::Output;' pub use issue_20727::IndexMut; }
Rust
4
Eric-Arellano/rust
src/test/rustdoc/issue-20727-4.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
.stringContentIsNotModifiedEvenIfInvalid { background: url('@images'); background: url("$images"); background: url('/+0PX!/"\a?~^[]{} $%#'); background: url("/+0PX!/'\a?~^[]{} $%#"); background: url( "whitespace-around-string" ); } .validUnquotedUrls { background: url( whitespace-around-string ); background-image: url(/images/product/simple_product_manager/breadcrumb/chevron_right.png); background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mO4/B8AAqgB0yr7dJgAAAAASUVORK5CYII=); background-image: url(data:application/font-woff;charset=utf-8;base64,ThisIsNormalBut/+0ThisIsLowerCased); background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mO4/B8AAqgB0yr7dJgAAAAASUVORK5CYII=) center center no-repeat; background: url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%229%22%20height=%229%22%3E%3Cpath%20d=%22M0%203h3%22%20stroke=%22red%22/%3E%3C/svg%3E); offset-path: url(#path); background: url(data/+0ThisShouldNotBeLowerCased); background: url(https://foo/A*3I8oSY6AKRMAAAAAAAAAAABkARQnAQ); background: url(https://example.com/some/quite,long,url,with,commas.jpg); background: url(http://123.example.com); } @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap); .validUnqotedUrlsThatAreParsedByLess { background: url(@foo); } .validUnquotedUrlsThatAreParsedBySass { background: url($foo); background: url($foo+$bar); background: url($foo*3); background: url($foo/$bar); } .invalidUnquotedUrlsButWeParseThemAnyway { background: url(--var(foo-bar,#dadce0)); -fb-sprite: url(fbglyph:cross-outline, fig-white); } .number { background-image: url(http://123.com); background: url(path/to/123.jpg); background: url(#123.foo); background: no-repeat center/80% url(http://123.com); background: no-repeat center/80% url(path/to/123.jpg); background: no-repeat center/80% url(#123.foo); }
CSS
3
tumido/prettier
tests/format/css/inline-url/inline_url.css
[ "MIT" ]
const cmp = @import("cmp.zig"); const testing = @import("std").testing; fn test__cmpdi2(a: i64, b: i64, expected: i64) !void { var result = cmp.__cmpdi2(a, b); try testing.expectEqual(expected, result); } test "cmpdi2" { // minInt == -9223372036854775808 // maxInt == 9223372036854775807 // minInt/2 == -4611686018427387904 // maxInt/2 == 4611686018427387903 // 1. equality minInt, minInt+1, minInt/2, 0, maxInt/2, maxInt-1, maxInt try test__cmpdi2(-9223372036854775808, -9223372036854775808, 1); try test__cmpdi2(-9223372036854775807, -9223372036854775807, 1); try test__cmpdi2(-4611686018427387904, -4611686018427387904, 1); try test__cmpdi2(-1, -1, 1); try test__cmpdi2(0, 0, 1); try test__cmpdi2(1, 1, 1); try test__cmpdi2(4611686018427387903, 4611686018427387903, 1); try test__cmpdi2(9223372036854775806, 9223372036854775806, 1); try test__cmpdi2(9223372036854775807, 9223372036854775807, 1); // 2. cmp minInt, { minInt + 1, minInt/2, -1, 0, 1, maxInt/2, maxInt-1, maxInt} try test__cmpdi2(-9223372036854775808, -9223372036854775807, 0); try test__cmpdi2(-9223372036854775808, -4611686018427387904, 0); try test__cmpdi2(-9223372036854775808, -1, 0); try test__cmpdi2(-9223372036854775808, 0, 0); try test__cmpdi2(-9223372036854775808, 1, 0); try test__cmpdi2(-9223372036854775808, 4611686018427387903, 0); try test__cmpdi2(-9223372036854775808, 9223372036854775806, 0); try test__cmpdi2(-9223372036854775808, 9223372036854775807, 0); // 3. cmp minInt+1, {minInt, minInt/2, -1,0,1, maxInt/2, maxInt-1, maxInt} try test__cmpdi2(-9223372036854775807, -9223372036854775808, 2); try test__cmpdi2(-9223372036854775807, -4611686018427387904, 0); try test__cmpdi2(-9223372036854775807, -1, 0); try test__cmpdi2(-9223372036854775807, 0, 0); try test__cmpdi2(-9223372036854775807, 1, 0); try test__cmpdi2(-9223372036854775807, 4611686018427387903, 0); try test__cmpdi2(-9223372036854775807, 9223372036854775806, 0); try test__cmpdi2(-9223372036854775807, 9223372036854775807, 0); // 4. cmp minInt/2, {minInt, minInt + 1, -1,0,1, maxInt/2, maxInt-1, maxInt} try test__cmpdi2(-4611686018427387904, -9223372036854775808, 2); try test__cmpdi2(-4611686018427387904, -9223372036854775807, 2); try test__cmpdi2(-4611686018427387904, -1, 0); try test__cmpdi2(-4611686018427387904, 0, 0); try test__cmpdi2(-4611686018427387904, 1, 0); try test__cmpdi2(-4611686018427387904, 4611686018427387903, 0); try test__cmpdi2(-4611686018427387904, 9223372036854775806, 0); try test__cmpdi2(-4611686018427387904, 9223372036854775807, 0); // 5. cmp -1, {minInt, minInt + 1, minInt/2, 0,1, maxInt/2, maxInt-1, maxInt} try test__cmpdi2(-1, -9223372036854775808, 2); try test__cmpdi2(-1, -9223372036854775807, 2); try test__cmpdi2(-1, -4611686018427387904, 2); try test__cmpdi2(-1, 0, 0); try test__cmpdi2(-1, 1, 0); try test__cmpdi2(-1, 4611686018427387903, 0); try test__cmpdi2(-1, 9223372036854775806, 0); try test__cmpdi2(-1, 9223372036854775807, 0); // 6. cmp 0, {minInt, minInt + 1, minInt/2, -1, 1, maxInt/2, maxInt-1, maxInt} try test__cmpdi2(0, -9223372036854775808, 2); try test__cmpdi2(0, -9223372036854775807, 2); try test__cmpdi2(0, -4611686018427387904, 2); try test__cmpdi2(0, -1, 2); try test__cmpdi2(0, 1, 0); try test__cmpdi2(0, 4611686018427387903, 0); try test__cmpdi2(0, 9223372036854775806, 0); try test__cmpdi2(0, 9223372036854775807, 0); // 7. cmp 1, {minInt, minInt + 1, minInt/2, -1,0, maxInt/2, maxInt-1, maxInt} try test__cmpdi2(1, -9223372036854775808, 2); try test__cmpdi2(1, -9223372036854775807, 2); try test__cmpdi2(1, -4611686018427387904, 2); try test__cmpdi2(1, -1, 2); try test__cmpdi2(1, 0, 2); try test__cmpdi2(1, 4611686018427387903, 0); try test__cmpdi2(1, 9223372036854775806, 0); try test__cmpdi2(1, 9223372036854775807, 0); // 8. cmp maxInt/2, {minInt, minInt + 1, minInt/2, -1,0,1, maxInt-1, maxInt} try test__cmpdi2(4611686018427387903, -9223372036854775808, 2); try test__cmpdi2(4611686018427387903, -9223372036854775807, 2); try test__cmpdi2(4611686018427387903, -4611686018427387904, 2); try test__cmpdi2(4611686018427387903, -1, 2); try test__cmpdi2(4611686018427387903, 0, 2); try test__cmpdi2(4611686018427387903, 1, 2); try test__cmpdi2(4611686018427387903, 9223372036854775806, 0); try test__cmpdi2(4611686018427387903, 9223372036854775807, 0); // 9. cmp maxInt-1, {minInt, minInt + 1, minInt/2, -1,0,1, maxInt/2, maxInt} try test__cmpdi2(9223372036854775806, -9223372036854775808, 2); try test__cmpdi2(9223372036854775806, -9223372036854775807, 2); try test__cmpdi2(9223372036854775806, -4611686018427387904, 2); try test__cmpdi2(9223372036854775806, -1, 2); try test__cmpdi2(9223372036854775806, 0, 2); try test__cmpdi2(9223372036854775806, 1, 2); try test__cmpdi2(9223372036854775806, 4611686018427387903, 2); try test__cmpdi2(9223372036854775806, 9223372036854775807, 0); // 10.cmp maxInt, {minInt, minInt + 1, minInt/2, -1,0,1, maxInt/2, maxInt-1, } try test__cmpdi2(9223372036854775807, -9223372036854775808, 2); try test__cmpdi2(9223372036854775807, -9223372036854775807, 2); try test__cmpdi2(9223372036854775807, -4611686018427387904, 2); try test__cmpdi2(9223372036854775807, -1, 2); try test__cmpdi2(9223372036854775807, 0, 2); try test__cmpdi2(9223372036854775807, 1, 2); try test__cmpdi2(9223372036854775807, 4611686018427387903, 2); try test__cmpdi2(9223372036854775807, 9223372036854775806, 2); }
Zig
5
lukekras/zig
lib/std/special/compiler_rt/cmpdi2_test.zig
[ "MIT" ]
key botID; default { state_entry() { //Creates the bot in the sim at the given position botID = botCreateBot("Test", "Bot", "", llGetPos(), BOT_CREATE_DEFAULT); //The center of the allowed wandering area vector origin = llGetPos(); //The distance away from the origin along the x-axis that the bot is allowed to wander float xDistance = 10; //The distance away from the origin along the y-axis that the bot is allowed to wander float yDistance = 10; //The list of options that will be passed into botWanderWithin // This can contain BOT_WANDER_MOVEMENT_TYPE and BOT_WANDER_TIME_BETWEEN_NODES // BOT_WANDER_MOVEMENT_TYPE sets what form of movement the bot will utilize to wander // around. The valid parameters for this are BOT_TRAVELMODE_WALK, BOT_TRAVELMODE_RUN, // BOT_TRAVELMODE_FLY, BOT_TRAVELMODE_TELEPORT. // BOT_WANDER_TIME_BETWEEN_NODES sets the amount of time that the bot will wait // (in seconds) before moving on to the next position. list options = [BOT_WANDER_MOVEMENT_TYPE, BOT_TRAVELMODE_WALK, BOT_WANDER_TIME_BETWEEN_NODES, 1]; //Sets the allowed area that the bot can wander in botWanderWithin(botID, origin, xDistance, yDistance, options); } touch_start(integer n) { //Stop the bots movement botStopMovement(botID); } bot_update(string botID, integer flag, list parameters) { if(flag == BOT_MOVE_COMPLETE) { vector currentBotPosition = llList2Vector(parameters, 0); llSay(0, "Move completed - Bot position: " + (string)currentBotPosition); } else if(flag == BOT_MOVE_UPDATE) { integer nextNode = llList2Integer(parameters, 0); vector currentBotPosition = llList2Vector(parameters, 1); llSay(0, "Move to next node " + (string)nextNode + " completed - Bot position: " + (string)currentBotPosition); } else if(flag == BOT_MOVE_FAILED) { integer nextNode = llList2Integer(parameters, 0); vector currentBotPosition = llList2Vector(parameters, 1); llSay(0, "Move to next node " + (string)nextNode + " failed, teleporting to next node - Bot position: " + (string)currentBotPosition); } else if(flag == BOT_MOVE_FAILED) { integer nextNode = llList2Integer(parameters, 0); vector currentBotPosition = llList2Vector(parameters, 1); llSay(0, "Move to next node " + (string)nextNode + " failed, teleporting to next node - Bot position: " + (string)currentBotPosition); } else if(flag == BOT_MOVE_AVATAR_LOST) { vector avatarPosition = llList2Vector(parameters, 0); float distanceAway = llList2Float(parameters, 1); vector currentBotPosition = llList2Vector(parameters, 2); llSay(0, "Lost avatar at " + (string)avatarPosition + ", avatar is " + (string)distanceAway + "m away - Bot position: " + (string)currentBotPosition); } } }
LSL
5
Asterionworld/ether
doc/bot LSL Functions/Examples/bot Wander Within.lsl
[ "BSD-3-Clause" ]
/* * Copyright 2014-2019 Jiří Janoušek <janousek.jiri@gmail.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ namespace Nuvola { public class ActionsKeyBinderServer : GLib.Object { private Drt.RpcBus ipc_bus; private ActionsKeyBinder keybinder; private unowned Queue<AppRunner> app_runners; public class ActionsKeyBinderServer(Drt.RpcBus ipc_bus, ActionsKeyBinder keybinder, Queue<AppRunner> app_runners) { this.ipc_bus = ipc_bus; this.keybinder = keybinder; this.app_runners = app_runners; keybinder.action_activated.connect(on_action_activated); Drt.RpcRouter router = ipc_bus.router; router.add_method("/nuvola/actionkeybinder/get-keybinding", Drt.RpcFlags.PRIVATE|Drt.RpcFlags.READABLE, null, handle_get_keybinding, { new Drt.StringParam("action", true, false) }); router.add_method("/nuvola/actionkeybinder/set-keybinding", Drt.RpcFlags.PRIVATE|Drt.RpcFlags.WRITABLE, null, handle_set_keybinding, { new Drt.StringParam("action", true, false), new Drt.StringParam("keybinding", true, true), }); router.add_method("/nuvola/actionkeybinder/bind", Drt.RpcFlags.PRIVATE|Drt.RpcFlags.WRITABLE, null, handle_bind, { new Drt.StringParam("action", true, false), }); router.add_method("/nuvola/actionkeybinder/unbind", Drt.RpcFlags.PRIVATE|Drt.RpcFlags.WRITABLE, null, handle_unbind, { new Drt.StringParam("action", true, false), }); router.add_method("/nuvola/actionkeybinder/is-available", Drt.RpcFlags.PRIVATE|Drt.RpcFlags.READABLE, null, handle_is_available, { new Drt.StringParam("keybinding", true, false), }); router.add_method("/nuvola/actionkeybinder/get-action", Drt.RpcFlags.PRIVATE|Drt.RpcFlags.READABLE, null, handle_get_action, { new Drt.StringParam("keybinding", true, false), }); } private void handle_get_keybinding(Drt.RpcRequest request) throws Drt.RpcError { string? action = request.pop_string(); request.respond(new Variant("ms", keybinder.get_keybinding(action))); } private void handle_set_keybinding(Drt.RpcRequest request) throws Drt.RpcError { string? action = request.pop_string(); string? keybinding = request.pop_string(); request.respond(new Variant.boolean(keybinder.set_keybinding(action, keybinding))); } private void handle_bind(Drt.RpcRequest request) throws Drt.RpcError { string? action = request.pop_string(); request.respond(new Variant.boolean(keybinder.bind(action))); } private void handle_unbind(Drt.RpcRequest request) throws Drt.RpcError { string? action = request.pop_string(); request.respond(new Variant.boolean(keybinder.unbind(action))); } private void handle_get_action(Drt.RpcRequest request) throws Drt.RpcError { string? keybinding = request.pop_string(); request.respond(new Variant("ms", keybinder.get_action(keybinding))); } private void handle_is_available(Drt.RpcRequest request) throws Drt.RpcError { string? keybinding = request.pop_string(); request.respond(new Variant.boolean(keybinder.is_available(keybinding))); } private void on_action_activated(string name) { unowned List<AppRunner> head = app_runners.head; var handled = false; foreach (AppRunner app_runner in head) { try { Variant? response = app_runner.call_sync("/nuvola/actionkeybinder/action-activated", new Variant("(s)", name)); bool call_handled = false; if (!Drt.VariantUtils.get_bool(response, out call_handled)) { warning("Got invalid response from %s instance %s: %s\n", Nuvola.get_app_name(), app_runner.app_id, response == null ? "null" : response.print(true)); } else if (call_handled) { handled = call_handled; debug("Action %s was handled in %s.", name, app_runner.app_id); break; } } catch (GLib.Error e) { warning("Communication with app runner %s for action %s failed. %s", app_runner.app_id, name, e.message); } } if (!handled) { warning("Action %s was not handled by any app runner.", name); } } } } // namespace Nuvola
Vala
4
xcffl/nuvolaruntime
src/nuvolakit-runner/components/keybindings/ActionsKeyBinderServer.vala
[ "BSD-2-Clause" ]
-- test cases for bitwise functions -- null select bit_count(null); -- boolean select bit_count(true); select bit_count(false); -- byte/tinyint select bit_count(cast(1 as tinyint)); select bit_count(cast(2 as tinyint)); select bit_count(cast(3 as tinyint)); -- short/smallint select bit_count(1S); select bit_count(2S); select bit_count(3S); -- int select bit_count(1); select bit_count(2); select bit_count(3); -- long/bigint select bit_count(1L); select bit_count(2L); select bit_count(3L); -- negative num select bit_count(-1L); -- edge value select bit_count(9223372036854775807L); select bit_count(-9223372036854775808L); -- other illegal arguments select bit_count("bit count"); select bit_count('a'); -- test for bit_xor -- CREATE OR REPLACE TEMPORARY VIEW bitwise_test AS SELECT * FROM VALUES (1, 1, 1, 1L), (2, 3, 4, null), (7, 7, 7, 3L) AS bitwise_test(b1, b2, b3, b4); -- empty case SELECT BIT_XOR(b3) AS n1 FROM bitwise_test where 1 = 0; -- null case SELECT BIT_XOR(b4) AS n1 FROM bitwise_test where b4 is null; -- the suffix numbers show the expected answer SELECT BIT_XOR(cast(b1 as tinyint)) AS a4, BIT_XOR(cast(b2 as smallint)) AS b5, BIT_XOR(b3) AS c2, BIT_XOR(b4) AS d2, BIT_XOR(distinct b4) AS e2 FROM bitwise_test; -- group by SELECT bit_xor(b3) FROM bitwise_test GROUP BY b1 & 1; --having SELECT b1, bit_xor(b2) FROM bitwise_test GROUP BY b1 HAVING bit_and(b2) < 7; -- window SELECT b1, b2, bit_xor(b2) OVER (PARTITION BY b1 ORDER BY b2) FROM bitwise_test; -- getbit select getbit(11L, 3), getbit(11L, 2), getbit(11L, 1), getbit(11L, 0); select getbit(11L, 2 + 1), getbit(11L, 3 - 1), getbit(10L + 1, 1 * 1), getbit(cast(11L / 1 AS long), 1 - 1); select getbit(11L, 63); select getbit(11L, -1); select getbit(11L, 64);
SQL
5
kesavanvt/spark
sql/core/src/test/resources/sql-tests/inputs/bitwise.sql
[ "BSD-2-Clause", "Apache-2.0", "CC0-1.0", "MIT", "MIT-0", "ECL-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
; Copyright (C) 2010 The Android Open Source Project ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. .class blort .super java/lang/Object .method public static zorch(ZLjava/lang/Object;)Ljava/lang/Object; .limit locals 3 .limit stack 1 iload_0 ifeq thenBlock jsr subroutine goto endBlock thenBlock: jsr subroutine goto endBlock subroutine: astore_2 aload_1 invokestatic java/lang/String/valueOf(Ljava/lang/Object;)Ljava/lang/String; astore_1 ret 2 endBlock: aload_1 areturn .end method
Jasmin
3
Unknoob/buck
third-party/java/dx/tests/112-dex-return-jsr-result/blort.j
[ "Apache-2.0" ]
#!/bin/sh # 884 # capture-pane should send colours after SGR 0 PATH=/bin:/usr/bin TERM=screen [ -z "$TEST_TMUX" ] && TEST_TMUX=$(readlink -f ../tmux) TMUX="$TEST_TMUX -Ltest" $TMUX kill-server 2>/dev/null TMP=$(mktemp) trap "rm -f $TMP" 0 1 15 $TMUX -f/dev/null new -d " printf '\033[31;42;1mabc\033[0;31mdef\n' printf '\033[m\033[100m bright bg \033[m' $TMUX capturep -peS0 -E1 >>$TMP" sleep 1 ( printf '\033[1m\033[31m\033[42mabc\033[0m\033[31m\033[49mdef\033[39m\n' printf '\033[100m bright bg \033[49m\n' ) | cmp - $TMP || exit 1 $TMUX has 2>/dev/null && exit 1 exit 0
Shell
4
listx/tmux
regress/capture-pane-sgr0.sh
[ "ISC" ]
# ====================================================================================================================== # Exports # - Armington demand for exports of both domestically produced and imported goods # ====================================================================================================================== # ====================================================================================================================== # Variable definition # - Define variables and group them based on endogeneity, inflation or growth adjustment, and how they should be forecast (if exogenous) # ====================================================================================================================== $IF %stage% == "variables": $GROUP G_exports_prices empty_group_dummy[t] ; $GROUP G_exports_quantities qX[x_,t]$(x[x_] and t.val > 2015) "Eksport, Kilde: ADAM[fE] og ADAM[fE<i>]" qXy[x,t]$(not sameas['xEne',x]) "Direkte eksport." qXm[x,t]$(d1Xm[x,t]) "Import til reeksport." qCTurist[c,t]$(d1CTurist[c,t]) "Turisters forbrug i Danmark (imputeret)" qXMarked[x,t] "Eksportmarkedsstørrelse, Kilde: ADAM[fEe<i>]" qXSkala[x,t] "Endogen udbudseffekt på eksport." qXTraek[x,t] "Eksporttræk fra eksportmarkederne." ; $GROUP G_exports_values empty_group_dummy ; $GROUP G_exports_endo G_exports_quantities, -qXMarked G_exports_values rpXUdl2pXy[x,t] "Relative eksportpriser - dvs. eksportkonkurrerende priser over eksportpriser." rpXy2pXUdl[x,t] "Relative eksportpriser - dvs. eksportpriser over eksportkonkurrerende priser." uXy[x,t]$(sameas['xEne',x]) "Skalaparameter for direkte eksport." uCturisme[c,t] "Skalaparameter til fordeling af udenlandske turisters forbrug i Danmark på forbrugsgrupper." rpM2pXm[x,t] "Relativ pris på import vs. export fordelt på eksportgrupper." ; $GROUP G_exports_endo G_exports_endo$(tx0[t]); # Restrict endo group to tx0[t] $GROUP G_exports_exogenous_forecast qXy$(sameas['xEne',x]) ; $GROUP G_exports_other rXTraeghed "Træghed i på gennemslag fra eksportmarkedsvækst." upXyTraeghed "Træghed i pris-effekt på eksportefterspørgsel." rXSkalaTraeghed "Træghed i skalaeffekt på eksportefterspørgsel." eXUdl[x] "Eksportpriselasticitet." cpXyTraeghed[x,t] "Parameter som kalibreres for at fjerne træghed i pris-effekt på eksportefterspørgsel i grundforløb." ; $GROUP G_exports_ARIMA_forecast qXMarked uXTur[t] "Skalaparameter for eksport af turisme." uXy uXm[x,t] "Skalaparameter for import til reeksport." fuCturisme[t] "Korrektionsfaktor for skalaparametrene til fordeling af udenlandske turisters forbrug i Danmark på forbrugsgrupper." uCturisme0[c,t] "Skalaparameter til fordeling af udenlandske turisters forbrug i Danmark på forbrugsgrupper før endelig skalering." ; $ENDIF # ====================================================================================================================== # Equations # ====================================================================================================================== $IF %stage% == "equations": $BLOCK B_exports # We model domestically produced exports and imports-to-exports separately. # There is no substitution between the two. E_qXy[x,t]$(tx0[t] and d1Xy[x,t]).. qXy[x,t] =E= uXy[x,t] * qXTraek[x,t] * qXSkala[x,t] * (rpXy2pXUdl[x,t])**(-eXUdl[x]); E_qXm[x,t]$(tx0[t] and d1Xm[x,t]).. qXm[x,t] =E= uXm[x,t] * qXMarked[x,t] * rpM2pXm[x,t]**eXUdl[x]; # Tourist consumption is produced in the same way as domestic consumption with substitution between domestic production and imports E_qX_xTur[x,t]$(tx0[t] and sameas[x,'xTur']).. qX[x,t] =E= uXTur[t] * qXTraek[x,t] * qXSkala[x,t] * (rpXy2pXUdl[x,t])**(-eXUdl[x]); # Domestic production and imports to exports are aggregated in a Laspeyres index E_qX[x,t]$(tx0[t] and d1X[x,t] and not sameas[x,'xTur'] and t.val > 2015).. qX[x,t] * pX[x,t-1]/fp =E= qXy[x,t] * pXy[x,t-1]/fp + qXm[x,t] * pXm[x,t-1]/fp; # Rigidity in relative price effect on foreign demand E_rpXy2pXUdl[x,t]$(tx0E[t] and d1Xy[x,t]).. rpXy2pXUdl[x,t] =E= pXy[x,t] / pXUdl[x,t] - upXyTraeghed * rpXy2pXUdl[x,t] * (rpXy2pXUdl[x,t] / rpXy2pXUdl[x,t-1] - cpXyTraeghed[x,t]) * rpXy2pXUdl[x,t] / rpXy2pXUdl[x,t-1] + upXyTraeghed * rpXy2pXUdl[x,t+1] * (rpXy2pXUdl[x,t+1] / rpXy2pXUdl[x,t] - cpXyTraeghed[x,t+1]) * (rpXy2pXUdl[x,t+1] / rpXy2pXUdl[x,t]) * qXy[x,t+1]*fq / qXy[x,t] * pXUdl[x,t+1]*fp / pXUdl[x,t] / (1 + rOmv['UdlAktier',t+1] + rRente['UdlAktier',t+1]); E_rpXy2pXUdl_tEnd[x,t]$(tEnd[t] and d1Xy[x,t]).. rpXy2pXUdl[x,t] =E= pXy[x,t] / pXUdl[x,t]; E_rpXy2pXUdl_xTur[x,t]$(tx0E[t] and sameas[x,'xTur']).. rpXy2pXUdl[x,t] =E= pX[x,t] / pXUdl[x,t] - upXyTraeghed * rpXy2pXUdl[x,t] * (rpXy2pXUdl[x,t] / rpXy2pXUdl[x,t-1] - cpXyTraeghed[x,t]) * rpXy2pXUdl[x,t] / rpXy2pXUdl[x,t-1] + upXyTraeghed * rpXy2pXUdl[x,t+1] * (rpXy2pXUdl[x,t+1] / rpXy2pXUdl[x,t] - cpXyTraeghed[x,t+1]) * (rpXy2pXUdl[x,t+1] / rpXy2pXUdl[x,t]) * qX[x,t+1]*fq / qX[x,t] * pXUdl[x,t+1]*fp / pXUdl[x,t] / (1 + rOmv['UdlAktier',t+1] + rRente['UdlAktier',t+1]); E_rpXy2pXUdl_xTur_tEnd[x,t]$(tEnd[t] and sameas[x,'xTur']).. rpXy2pXUdl[x,t] =E= pX[x,t] / pXUdl[x,t]; # The price ratio for imports-to-exports only varies due to tariffs E_rpM2pXm[x,t]$(tx0[t] and d1Xm[x,t]).. rpM2pXm[x,t] =E= sum(s$(d1IOm[x,s,t]), uIOXm[x,s,t] * pM[s,t]) / pXm[x,t]; # Rigidity in spill over from increased foreign activity (qXMarked) to increased demand for domestically produced exports E_qXTraek[x,t]$(tx0[t]).. qXTraek[x,t] =E= qXMarked[x,t]**(1-rXTraeghed) * (fq * qXTraek[x,t-1]/fq)**rXTraeghed; # Scale effect: increased supply in the long run increases demand for exports E_qXSkala[x,t]$(tx0[t] and d1X[x,t]).. qXSkala[x,t] =E= sqL[spTot,t]**(1-rXSkalaTraeghed) * (fq * qXSkala[x,t-1]/fq)**rXSkalaTraeghed; # Tourist consumption in Denmark is split into different consumption groups. We currently do not model any substitution. E_qCTurist[c,t]$(tx0[t] and d1CTurist[c,t]).. qCTurist[c,t] =E= uCturisme[c,t] * qX['xTur',t]; E_uCturisme[c,t]$(tx0[t] and d1CTurist[c,t]).. uCturisme[c,t] =E= fuCturisme[t] * uCturisme0[c,t] / sum(cc, uCturisme0[cc,t]); $ENDBLOCK $ENDIF
GAMS
5
gemal/MAKRO
Model/exports.gms
[ "MIT" ]
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include <cstdint> #include "tensorflow/cc/experimental/libtf/object.h" #include "tensorflow/cc/experimental/libtf/value.h" #include "tensorflow/cc/experimental/libtf/value_iostream.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/platform/test_benchmark.h" namespace tf { namespace libtf { namespace { // AddTagged using tagged values TaggedValue AddTagged(TaggedValue args, TaggedValue kwargs) { return TaggedValue(args.tuple()[0].i64() + args.tuple()[1].i64()); } int64_t AddRaw(int64_t a, int64_t b) { return a + b; } } // namespace // Add numbers in a loop by calling a callable. void CallFunctions(::testing::benchmark::State& state) { Integer sum(0); Callable callable((impl::TaggedValue(impl::Func(AddTagged)))); *callable.Call<Integer>(sum, Integer(30)); size_t i = 0; for (auto dummy : state) { sum = *callable.Call<Integer>(sum, Integer(i)); i++; } } // Add numbers in a loop by calling a callable, looking up method every // time by tokenized string. void CallFunctionsIndirect(::testing::benchmark::State& state) { Integer sum(0); Callable callable((impl::TaggedValue(impl::Func(AddTagged)))); Object o; String name("f"); o.Set(name, callable); size_t i = 0; for (auto dummy : state) { sum = *(o.Get<Callable>(name))->Call<Integer>(sum, Integer(i)); i++; } } // Add numbers in a loop by calling a callable, looking up method every // time by non-tokenized string. void CallFunctionsIndirectNaive(::testing::benchmark::State& state) { Integer sum(0); Callable callable((impl::TaggedValue(impl::Func(AddTagged)))); Object o; o.Set(String("f"), callable); size_t i = 0; for (auto dummy : state) { sum = *(o.Get<Callable>(String("f")))->Call<Integer>(sum, Integer(i)); i++; } } // Add numbers in a loop by calling a raw C++ function with a function // pointer. void CallFunctionsBase(::testing::benchmark::State& state) { int64_t sum = 0; typedef int64_t (*Func)(int64_t a, int64_t b); volatile Func f_raw = AddRaw; Func f = f_raw; size_t i = 0; for (auto dummy : state) { sum = f(sum, i); i++; } // volatile int64_t result = sum; } BENCHMARK(CallFunctions)->Arg(1 << 10); BENCHMARK(CallFunctionsIndirect)->Arg(1 << 10); BENCHMARK(CallFunctionsIndirectNaive)->Arg(1 << 10); BENCHMARK(CallFunctionsBase)->Arg(1 << 10); } // namespace libtf } // namespace tf
C++
4
EricRemmerswaal/tensorflow
tensorflow/cc/experimental/libtf/tests/perf_test.cc
[ "Apache-2.0" ]
---------------------------------------------------------------------------------- -- Engineer: Mike Field <hamster@snap.net.nz> -- -- Module Name: tx_add_crc32 - Behavioral -- -- Description: Add the required 8 bytes of preamble to the data packet. -- ------------------------------------------------------------------------------------ -- FPGA_Webserver from https://github.com/hamsternz/FPGA_Webserver ------------------------------------------------------------------------------------ -- The MIT License (MIT) -- -- Copyright (c) 2015 Michael Alan Field <hamster@snap.net.nz> -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -- THE SOFTWARE. -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity tx_add_crc32 is Port ( clk : in STD_LOGIC; data_valid_in : in STD_LOGIC := '0'; data_in : in STD_LOGIC_VECTOR (7 downto 0); data_valid_out : out STD_LOGIC := '0'; data_out : out STD_LOGIC_VECTOR (7 downto 0) := (others => '0')); end tx_add_crc32; architecture Behavioral of tx_add_crc32 is signal crc : std_logic_vector(31 downto 0) := (others => '1'); signal trailer_left : std_logic_vector(3 downto 0) := (others => '0'); begin add_crc_proc: process(clk) variable v_crc : std_logic_vector(31 downto 0) := (others => '1'); begin if rising_edge(clk) then if data_valid_in = '1' then -- Pass the data through data_out <= data_in; data_valid_out <= '1'; -- Flag that we need to output 8 bytes of CRC trailer_left <= (others => '1'); ---------------------------------------- -- Update the CRC -- -- This uses a variable to make the code -- simple to follow and more compact ---------------------------------------- v_crc := crc; for i in 0 to 7 loop if data_in(i) = v_crc(31) then v_crc := v_crc(30 downto 0) & '0'; else v_crc := (v_crc(30 downto 0)& '0') xor x"04C11DB7"; end if; end loop; crc <= v_crc; elsif trailer_left(trailer_left'high)= '1' then -- append the CRC data_out <= not (crc(24) & crc(25) & crc(26) & crc(27) & crc(28) & crc(29) & crc(30) & crc(31)); crc <= crc(23 downto 0) & "11111111"; trailer_left <= trailer_left(trailer_left'high-1 downto 0) & '0'; data_valid_out <= '1'; else -- Idle data_out <= "00000000"; data_valid_out <= '0'; end if; end if; end process; end Behavioral;
VHDL
5
hamsternz/FPGA_Webserver
hdl/tx/tx_add_crc32.vhd
[ "MIT" ]
# Convert a bcs date to an jq compatible date. # The bcs date should already be in UTC. # https://stedolan.github.io/jq/manual/v1.5/#Dates def bcsToEpochSeconds(bcs_date): bcs_date | sub(" "; "T") | sub("\\..*$"; "Z") | fromdateiso8601; # Returns true if the jq function `now` is more than `seconds` ahead of `epoch_date_seconds`. # https://stedolan.github.io/jq/manual/v1.5/#Dates def isMoreThanSecondsOld(epoch_date_seconds; seconds): now - epoch_date_seconds > seconds; # Filters the bcs date `key` if it is more than `seconds` old. # https://stedolan.github.io/jq/manual/v1.5/#select(boolean_expression) def filterMoreThanSecondsOld(key; seconds): map(select(isMoreThanSecondsOld( bcsToEpochSeconds(key); seconds ))); # Returns items under `key` that were created more than `seconds` ago. # For bcs jobs and clusters the key is usually `.`. # Expects `key` to be able to parse `{ Items: [ .Items[] | {Id, CreationTime} ] }` def printIdsMoreThanSecondsOld(key; seconds): key | .Items | filterMoreThanSecondsOld(.CreationTime; seconds) | .[] | .Id;
JSONiq
5
ljyanesm/cromwell
src/ci/resources/bcs.jq
[ "Apache-2.0", "BSD-3-Clause" ]
#!/bin/bash # This script helps identify pull requests that were merged without a what's # new entry, where one would be appropriate. if [ $# -ne 2 ] then echo "Usage: GITHUB_TOKEN=... $0 <prev_release_ref> <whats_new_version>" >&2 exit 1 fi from_branch=$1 to_file=$2 logged_prs() { git log --oneline $from_branch..main sklearn/ | grep -wv -e CLN -e TST -e CI -e DOC -e doc -e MNT -e MAINT -e BLD -e COSMIT -e EXA -e examples -e example -e minor -e STY -e Style -e docstring | grep -o '(#[0-9][0-9]\+)$' | grep -o '[0-9]\+' } mentioned_issues() { cat doc/whats_new/v$to_file.rst | grep -o 'issue:`[0-9]\+`\|pr:`[0-9]\+`' | grep -o '[0-9]\+' } get_closed_issues() { pr=$1 url=https://api.github.com/repos/scikit-learn/scikit-learn/pulls/$pr python - $url <<EOF import json import sys import re import os from urllib import request req = request.Request(sys.argv[1], headers={"Authorization": "token %s" % os.environ['GITHUB_TOKEN']}) body = json.loads(request.urlopen(req).read().decode('utf8'))['body'] body = re.sub('<!--.*?-->', '', body, flags=re.DOTALL) matches = re.findall(r'(?i)\\b(?:fix|fixes|resolve|resolves|close|closes) +(?:https?://github.com/scikit-learn/scikit-learn/(?:pull|issues)/|#)?([0-9]+)', body) print(' '.join(matches)) EOF } pr_numbers=$(diff <(logged_prs | sort) <(mentioned_issues | sort) | grep '<' | cut -c3- | grep -v -w -Ff <(git log --oneline $from_branch | grep -o '(#[0-9][0-9]\+)$' | grep -o '[0-9]\+') ) # drop things already released filtered_pr_numbers=$( for pr in $pr_numbers do echo $pr $(get_closed_issues $pr) done | grep -v -wFf <(mentioned_issues) | cut -d' ' -f1 ) echo $filtered_pr_numbers | sed 's/[^ ]*/--grep (#&)/g' | xargs git log
Shell
5
emarkou/scikit-learn
maint_tools/whats_missing.sh
[ "BSD-3-Clause" ]
constant f : nat → nat → nat constant g : string → string → string infix ` & `:60 := f infix ` & `:60 := g set_option pp.notation false #check 0 & 1 #check "a" & "b" #check tt & ff notation `[[`:max l:(foldr `, ` (h t, f h t) 0 `]]`:0) := l notation `[[`:max l:(foldr `, ` (h t, g h t) "" `]]`:0) := l #check [[ (1:nat), 2, 3 ]] #check [[ "a", "b", "c" ]]
Lean
4
ericrbg/lean
tests/lean/over_notation.lean
[ "Apache-2.0" ]
destruction 1.8786468305915567 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2272447190584243 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1165067785446601 0.29819645503070868 0.0 0.0 1.1165067785446601 0.0 0.0 1.3396503298588698 0.0 0.0 0.0 0.0 0.0 1.3396503298588698 0.0 0.0 0.0 0.0 1.8786468305915567 1.8786468305915567 0.0 0.0 0.0 0.0 0.0 1.4731817224833923 0.0 0.0 1.1854996500316115 0.0 0.0 0.0 0.56646044162538822 0.0 0.0 0.0 0.0 0.0 1.8786468305915567 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1198088874084449 0.0 1.8096539591046055 1.8786468305915567 1.7451154379670344 0.0 0.0 Levels 0.0 1.9150144747624316 0.0 0.0 0.0 0.55689099060923752 0.0 0.0 1.2080739720701505 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0973360315563863 1.3501216297261651 1.4041888509964411 0.0 3.1959483202244963 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0973360315563863 0.0 0.61573149063217092 0.0 0.0 0.0 0.0 0.0 0.16099533351722387 0.0 0.0 2.2404368751970596 0.0 0.0 0.0 0.0 1.5095493666542672 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 darkness 0.0 0.0 1.665072730293498 0.0 0.0 0.0 0.0 0.0 0.0 1.555873438328506 0.0 1.5219718866528245 0.0 0.0031883424868550613 1.5219718866528245 0.5043286605183821 0.0 0.0 0.0 0.0 0.0 1.0730216666049213 0.0 0.0 0.0 0.0 1.4266617068484997 0.0 0.0 0.0 0.0 0.0 1.5219718866528245 2.5252739955166095 0.0 0.0 0.0 0.0 0.0 1.555873438328506 0.0 0.0 0.0 1.555873438328506 0.0 0.0 1.1854996500316115 0.0 0.97192554973355261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 kill 0.18150333773835092 1.0288011981255545 0.0 0.0 0.0 0.0 0.0 0.0594006409374511 0.92799649900358905 0.0 0.11251046625139943 0.0 0.35670742676344164 0.0 0.0 0.0 0.11251046625139943 0.10513035895377694 0.80565764681134477 0.058443244981123653 0.51797557435956387 0.0 1.2111227549195092 0.48980469739286753 0.0 0.0 0.0 0.0 0.11251046625139943 0.3356540175656092 0.7411191256737738 0.0 0.0 0.0 0.18150333773835092 0.18150333773835092 0.047971945113828456 0.0 0.0 0.0 1.2111227549195092 0.0 0.24034383776128451 0.0 0.0 0.51797557435956387 0.0 0.2178709819092258 0.0 0.0 0.0 1.3542235985601827 0.0 0.51797557435956387 0.18150333773835092 0.0 0.91101816246917111 0.0 0.87465051829829621 0.0 0.3356540175656092 1.0288011981255545 0.0 0.047971945113828456 0.42266539455523899 0.25561130989207281 0.11251046625139943 0.18150333773835092 0.047971945113828456 0.0 0.0 it 0.0 0.0 0.0 0.0 3.1959483202244963 0.04606536684324683 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.067726863624426259 0.0 0.0 0.0 0.76820008427644437 0.0 0.43383089785201012 0.0 0.0 0.0 1.4041888509964411 0.0 3.1959483202244963 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34331689031117857 0.0 0.0 0.0 0.0 0.0 0.0 2.3486504598372924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2796575883503412 2.3486504598372924 0.0 4.2945606088926054 0.0 measure 0.0 0.0 0.69999183424991085 0.0 0.0 0.0 1.2500381711691826 0.59079254228491873 0.0 0.59079254228491884 0.0 0.55689099060923741 0.0 0.6475453588773683 0.55689099060923741 0.0 1.2500381711691826 0.0 0.0 0.0 0.0 0.10794077056133411 0.0 0.0 0.69999183424991085 0.0 0.46158081080491259 0.0 1.943185351729128 0.0 0.0 0.0 0.55689099060923741 1.5601930994730222 0.0 0.0 0.0 0.0 0.0 0.59079254228491884 0.0 0.0 0.46158081080491259 0.59079254228491884 0.0 1.6555032792773472 0.22041875398802449 0.0 0.41230976179812989 1.8180222087751221 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1663289030433379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 earthquake 0.24858963095472092 0.40274031078197914 0.035015530656662061 0.0 0.4027403107819793 0.0 0.17959675946776957 0.0 0.20662543185568891 0.0 0.58506186757593381 0.0 0.0 0.0 0.0 0.07824426520748215 0.17959675946776957 0.0 0.58506186757593381 0.47383623246570927 0.4027403107819793 0.29026232735528884 0.58506186757593392 0.0 0.035015530656662061 0.4027403107819793 0.0 0.0 0.17959675946776957 0.0 0.11505823833019835 0.0 0.0 0.48975168777160899 0.24858963095472092 0.24858963095472092 0.0 0.0 1.0958874913419245 0.0 0.17959675946776957 0.0 0.20206961531982817 0.0 0.0 0.58506186757593392 0.0 0.0 0.0 0.054433616513763418 0.0 0.32269760310844287 0.80820541889014363 0.0 0.24858963095472092 0.65405473906288525 0.28495727512559588 0.21349831114345103 0.24858963095472092 0.0 0.4027403107819793 0.4027403107819793 0.0 0.0 0.48975168777160899 0.0 0.0 0.0 0.52052334643836273 0.0 0.0 blackout 0.0 0.0 0.0 0.0 0.0 0.26920891815745657 0.0 0.74494322211217712 0.0 0.0 0.0 0.0 1.3607037390567023 0.29087041493863586 0.0 0.79201073297016289 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9341852217507054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4382626185269798 0.0 0.0 0.0 0.0 0.0 1.0211965987403353 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4382626185269798 0.0 2.6459019833052242 0.0 0.0 0.0 0.0 0.0 provide 0.0 0.0 1.7296112514310691 0.0 0.0 0.04606536684324683 0.0 0.0 0.0 1.6204119594660771 0.0 0.0 0.0 0.067726863624426259 1.5865104077903958 0.0 0.0 0.075052903716499059 0.0 0.0 0.0 1.1375601877424923 0.0 0.0 0.0 0.0 1.4912002279860708 0.0 0.0 0.0 0.0 0.0 1.5865104077903958 2.5898125166541806 0.0 0.0 0.0 0.0 0.0 1.6204119594660771 0.0 0.0 0.0 1.6204119594660771 0.0 0.0 1.2500381711691826 0.0 1.0364640708711239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 quake 0.0 0.0 0.0 0.54636457762225021 0.0 0.0 0.14089946951408577 0.0 0.0 0.0 0.0 0.0 0.79056153813429209 0.41387539457617112 0.0 0.10408549639136944 0.14089946951408577 0.16988700638733803 0.0 0.0 0.0 0.0 0.0 0.36404302082829532 0.0 0.0 0.0 0.59765787200980069 0.0 0.65172509328007644 0.36404302082829548 0.0 0.0 0.0 0.0 0.0 0.36404302082829548 0.83404665007403112 0.0 0.0 0.0 0.092109305344653655 0.3332713621615418 0.0 0.0 0.14089946951408577 0.0 0.53394205762369296 0.0 0.70888350712002501 0.59765787200980069 0.0 0.0 0.14089946951408577 0.0 0.0 0.0 0.0 0.49757441345281794 1.0571902013882408 1.0571902013882408 0.65172509328007644 1.0571902013882408 0.36404302082829548 0.0 0.57168238560653994 0.42858154196586662 0.49757441345281794 0.0 0.0 0.0 jolt 0.0 0.0 0.63099896276295953 0.0 0.0 0.33374743929502776 1.1810452996822314 0.33947811400401284 0.0 0.52179967079796752 0.0 0.48789811912228603 0.0 0.067726863624426259 0.48789811912228603 0.0 0.48789811912228603 0.0 0.0 0.0 0.0 1.1375601877424923 0.0 0.0 0.63099896276295953 0.0 1.0857351198779066 0.0 1.1810452996822314 0.0 0.0 1.2500381711691826 0.48789811912228603 0.0 0.0 0.0 0.0 0.0 0.0 0.52179967079796752 0.0 0.0 0.0 0.52179967079796752 0.55689099060923741 1.5865104077903958 1.2500381711691826 0.0 0.0 1.0558821567282253 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.52179967079796752 0.0 0.0 1.4041888509964411 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 wound 1.655503279277347 0.0 0.0 0.0 0.0 0.04606536684324683 0.0 0.0 0.0 0.92726477890613179 1.5865104077903958 0.89336322723045047 0.0 0.0 0.89336322723045047 0.0 0.89336322723045047 0.0 0.0 0.0 0.89336322723045047 0.44441300718254712 0.0 0.017894489876550432 1.0364640708711239 0.0 0.79805304742612559 0.0 0.0 0.0 0.0 1.655503279277347 0.89336322723045047 0.0 1.655503279277347 1.655503279277347 0.0 0.0 0.0 0.92726477890613179 0.0 0.0 0.0 0.92726477890613179 0.0 0.0 0.55689099060923741 0.0 0.34331689031117857 0.0 0.0 0.0 0.0 0.0 1.655503279277347 0.0 0.0 0.92726477890613179 0.0 0.0 0.0 0.0 0.0 0.0 1.8966653360942352 0.0 0.0 0.0 1.5219718866528245 0.0 0.0 tremor 0.0 0.0 0.44867740596900474 0.7110416704364958 0.0 0.37456943381528279 0.3055765623283313 0.0 0.0 0.33947811400401284 0.0 0.3055765623283313 0.0 0.0 0.3055765623283313 0.0 0.0 0.18041341937432537 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.21026638252400656 0.76233496482404617 0.0 0.0 0.0 0.0 0.3055765623283313 1.3088786711921163 0.0 0.0 0.93418522175070551 0.0 0.0 0.33947811400401284 0.0 0.0 0.61573149063217092 0.33947811400401284 0.0 0.0 0.0 1.104084258546103 0.16099533351722387 0.0 0.76233496482404617 0.0 2.320479582870596 1.4041888509964411 0.0 1.7608637949351733 0.41093707798615769 1.0326252945639582 0.0 0.0 0.0 0.0 0.0 0.93418522175070551 0.0 0.0 0.0 0.0 0.0 0.0 0.0 sustain 0.0 2.1663289030433375 0.0 0.0 0.0 0.11505823833019814 0.0 0.0 1.4593884003510567 0.0 0.0 0.0 0.0 0.13671973511137755 0.0 0.0 0.0 0.14404577520345047 2.3486504598372924 1.1959709498989068 1.655503279277347 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3486504598372924 0.0 0.86704591891307692 0.0 0.0 0.0 0.0 0.0 0.41230976179812989 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7608637949351735 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 injure 0.0 1.2938407938275756 0.0 0.4953330976098041 0.0 0.0 0.089867989501639781 0.0 0.0 0.0 0.0 0.0 0.73953005812184602 0.0 0.0 0.0 0.0 0.65785202710757895 0.78301517006158505 0.54662639199735452 0.089867989501639781 0.0 1.8816274587296946 0.31301154081584942 0.0 0.0 0.0 0.54662639199735452 0.0 1.0061587213757948 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3924530824956856 0.0 1.4761623506215305 0.4465429334403721 0.0 0.0 0.0 0.0 0.0 0.88837568571941128 0.23296883314231315 0.0 0.54662639199735452 1.6192631942622038 0.0 1.1884802781697494 0.0 0.0 1.2938407938275756 0.0 1.5451552221084817 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.78301517006158505 0.85200804154853627 0.0 0.0 0.0 stop 0.0 0.0 1.7296112514310691 0.0 0.0 0.04606536684324683 0.0 0.0 0.0 1.6204119594660771 0.0 1.5865104077903958 0.0 0.067726863624426259 1.5865104077903958 0.0 0.0 0.0 0.0 0.0 0.0 1.1375601877424923 0.0 0.0 0.0 0.0 1.4912002279860708 0.0 0.0 0.0 0.0 0.0 0.0 2.5898125166541806 0.0 0.0 0.0 0.0 0.0 1.6204119594660771 0.0 0.0 0.0 1.6204119594660771 0.0 0.0 1.2500381711691826 0.0 1.0364640708711239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 death 0.0 0.0 1.2187856276650784 0.0 0.0 0.51606899608898238 0.0 0.010974047031976649 0.0 1.1095863357000866 0.0 1.075684784024405 0.0 0.0 1.075684784024405 0.058041557889962535 0.0 0.25737446051045371 0.0 0.0 0.0 0.62673456397650174 0.0 0.0 1.2187856276650784 0.0 1.2680566766718613 0.0 0.0 0.0 0.0 1.8378248360713016 1.075684784024405 0.0 0.0 0.0 0.0 0.0 0.0 1.1095863357000866 0.0 0.0 0.0 1.1095863357000866 1.1446776555113565 0.0 1.0268946198549731 0.0 0.12017333899696878 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1095863357000866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 panic 2.2841119386997213 2.0327975104188152 0.0 0.0 0.0 0.0 0.0 0.0 1.3258570077265341 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5219718866528245 0.010514382578927872 0.0 1.0624395572743843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2841119386997213 2.2841119386997213 0.0 0.0 0.0 0.0 2.2151190672127696 0.0 0.0 0.0 1.5909647581397759 0.0 0.0 0.0 0.27877836917360732 0.0 0.0 2.3582199108534434 0.0 0.0 2.2841119386997213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1505805460751986 0.0 0.0 6_._0 0.0 0.0 0.0 0.0 0.0 0.45153047495141119 0.0 0.92726477890613179 0.0 0.0 0.0 0.0 0.0 0.4731919717325907 0.0 0.97433228976411768 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1165067785446603 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6205841753209342 0.0 0.0 0.0 0.0 0.0 1.20351815553429 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6205841753209342 0.0 0.0 0.0 0.0 0.0 0.0 0.0 magnitude 2.2234873168832863 0.0 0.0 0.0 0.0 0.0 1.4613472648363897 0.0 0.57208520535015395 0.0 0.0 0.0 0.0 0.0 0.0 0.44370403870194719 1.4613472648363897 0.0 0.0 0.30866775489800413 1.4613472648363897 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2234873168832863 2.2234873168832863 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5303401363233411 0.0 0.0 1.566707780494216 0.0 0.0 0.0 0.0 0.0 2.5599595535044992 2.2234873168832863 0.0 1.566707780494216 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4646493737001745 0.0 0.0 0.0 0.0 0.0 0.0 shake 0.0 0.0 0.67646133683971676 0.0 0.0 0.091527740920004083 0.0 0.38494048808077003 0.0 0.56726204487472476 0.0 0.53336049319904333 0.0 0.11318923770118353 0.53336049319904333 0.0 0.53336049319904333 0.12051527779325638 0.0 0.0 0.0 0.77755745371108542 0.0 0.0 0.67646133683971676 0.0 0.4380503133947185 0.0 1.2265076737589886 0.0 0.0 1.29550054524594 0.53336049319904333 0.0 0.0 0.0 0.0 0.0 0.0 0.56726204487472476 0.0 0.0 0.0 0.56726204487472476 0.60235336468599465 1.6319727818671532 0.89003543713777566 0.63872100885686967 0.0 1.1013445308049825 0.0 0.0 0.0 1.6319727818671532 0.0 0.0 0.63872100885686967 0.56726204487472476 0.0 0.0 1.4496512250731985 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 rock 0.0 0.0 1.604448108477063 0.0 0.0 0.61404940444918621 0.0 0.0 0.0 1.4952488165120712 0.0 1.4613472648363897 0.0 0.0 1.4613472648363897 0.44370403870194719 0.0 0.0 0.0 0.0 0.0 1.0123970447884865 0.0 0.0 1.604448108477063 0.0 1.3660370850320649 0.0 0.0 0.0 0.0 0.0 1.4613472648363897 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4952488165120712 0.0 0.0 1.1248750282151767 0.0 0.21815374735717247 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4952488165120712 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 feel 0.0 0.85414251407716912 0.0 0.74878199841934301 0.0 0.18916621048392027 0.34331689031117857 0.0 0.14720201138488814 0.0 0.0 0.0 0.0 0.43397125857930935 0.0 0.4242859528448456 0.34331689031117857 0.0 1.0364640708711239 0.2892496690409026 0.34331689031117857 0.5875138508232205 0.0 0.0 0.0 0.0 0.0 0.80007529280689338 1.0364640708711239 0.56646044162538822 0.0 0.0 0.0 0.0 0.0 0.0 0.97192554973355261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4419291789792883 0.0 0.44867740596900474 0.0 0.91130092791711781 0.80007529280689338 0.0 1.665072730293498 0.0 0.0 1.1054569423580751 0.44867740596900474 0.37721844198685983 0.0 0.0 1.2596076221853336 0.0 0.0 0.97192554973355261 0.0 1.1795649145117972 0.0 0.0 0.0 0.0 3.7445142719733338 pour 0.0 2.5028011396645509 0.0 0.0 0.0 0.0 0.0 0.0 1.7958606369722696 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.48051801182466353 0.0 1.53244318652012 1.9919755158985601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6851226964585053 0.0 1.20351815553429 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8282235400991791 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 dead 0.0 0.0 0.0 1.7042934434467794 0.0 0.0 0.0 0.639582706454351 0.40956627585237904 0.0 0.0 0.0 1.5430252958506567 0.4731919717325907 0.0 0.28118510920417233 0.0 0.48051801182466353 0.0 0.14614882540022936 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7555867378343297 0.0 1.5219718866528245 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.51037097497434469 0.0 0.0 0.0 0.0 1.4041888509964411 0.055634817859397646 0.0 1.7555867378343297 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 restore 0.0 0.0 0.0 0.0 0.0 0.26920891815745657 0.0 0.74494322211217712 0.0 0.0 0.0 0.0 1.3607037390567023 0.29087041493863586 0.0 0.79201073297016289 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9341852217507054 0.0 0.0 0.0 0.0 0.0 0.0 3.1314097990869247 0.0 0.0 0.0 0.0 0.0 2.4382626185269798 0.0 0.0 0.0 0.0 0.0 1.0211965987403353 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6459019833052242 0.0 0.0 0.0 0.0 0.0 damage 0.0 0.28359765560955602 0.0 0.87138432051167525 0.0 0.31176853257625248 0.4659192124035107 0.31749920728523739 0.0 0.0 0.4659192124035107 0.0 0.42243410046377194 0.0 0.0 0.0 0.4659192124035107 0.0 0.4659192124035107 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.92267761489922562 1.1590663929634559 0.68906276371772057 0.0 0.0 0.0 0.77607414070735026 0.0 0.0 0.40138069126593962 1.5645315010716205 0.0 0.0 0.4659192124035107 0.12944697578229789 0.77607414070735048 0.0 0.0 0.0 0.0 0.57127972806133709 0.13901642679844856 1.03390325000945 0.92267761489922562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7876750523858302 0.0 0.0 0.0 0.40138069126593962 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Jolts 2.4917513034779657 0.0 0.0 0.0 0.0 0.18916621048392027 0.0 0.0 0.0 0.0 2.4227584319910145 0.0 0.0 0.0 0.0 0.0 1.7296112514310691 0.0 0.0 0.57693174149268356 1.7296112514310691 0.0 0.0 0.85414251407716912 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4917513034779657 2.4917513034779657 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7986041229180205 0.0 0.0 0.0 0.48641773395185184 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7329133602948539 0.0 0.0 0.0 2.3582199108534434 0.0 0.0 damaged 0.0 0.0 0.0 0.0 0.0 0.04606536684324683 0.0 0.0 0.69724834830415994 0.0 2.2796575883503412 0.0 0.0 0.067726863624426259 0.0 0.0 0.0 0.76820008427644437 0.0 0.43383089785201012 0.0 0.0 0.0 1.4041888509964411 0.0 0.0 0.0 0.0 0.0 1.8096539591046055 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.943185351729128 0.0 0.0 0.0 0.0 0.0 0.0 0.34331689031117857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2796575883503412 2.3486504598372924 0.0 0.0 0.0 spend 0.0 0.0 0.0 0.0 0.0 0.18916621048392027 0.0 0.66490051443864073 0.0 0.0 0.0 0.0 1.2806610313831657 0.21082770726509961 0.0 0.71196802529662673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.85414251407716912 0.0 0.0 0.0 0.0 0.0 0.0 3.0513670914133884 0.0 0.0 0.0 0.0 0.0 2.3582199108534434 0.0 0.0 0.0 0.0 0.0 0.94115389106679903 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3582199108534434 0.0 2.5658592756316878 0.0 0.0 0.0 0.0 0.0 flatten 0.0 0.0 0.0 0.0 0.0 0.0 1.7296112514310691 1.0703656225468052 0.0 0.0 0.0 0.0 0.0 0.90397488782504498 0.0 0.0 1.7296112514310691 0.0 0.0 0.57693174149268356 0.0 1.2806610313831657 0.0 0.0 0.0 0.0 0.0 0.0 2.4227584319910145 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.94115389106679903 0.0 0.0 0.0 0.0 0.0 0.0 2.2975952890370084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6459019833052242 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 knock_down 0.0 0.0 1.604448108477063 0.0 0.0 0.61404940444918621 0.0 0.0 0.0 1.4952488165120712 0.0 1.4613472648363897 0.0 0.0 1.4613472648363897 0.44370403870194719 0.0 0.0 0.0 0.0 0.0 1.0123970447884865 0.0 0.0 1.604448108477063 0.0 1.3660370850320649 0.0 0.0 0.0 0.0 0.0 1.4613472648363897 2.4646493737001745 0.0 0.0 0.0 0.0 0.0 1.4952488165120712 0.0 0.0 0.0 0.0 0.0 0.0 1.1248750282151767 0.0 0.91130092791711781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Shelter 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.45726114966039616 0.0 0.0 0.0 0.0 1.0730216666049213 0.0031883424868550613 0.0 0.5043286605183821 0.0 0.0 0.0 0.36929237671443899 0.0 0.0 0.0 0.64650314929892461 0.0 0.0 0.0 0.0 0.0 0.0 2.8437277266351439 0.0 0.0 0.0 0.0 0.0 2.1505805460751986 0.0 0.0 0.0 0.0 0.0 0.73351452628855451 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5368749071950893 0.0 3.1314097990869247 0.0 2.1505805460751986 0.0 2.3582199108534434 0.0 0.0 0.0 0.0 0.0 come 0.0 0.0 0.0 0.0 0.0 0.35622029514708642 0.0 0.13880741854186157 0.0 1.2374197072099713 0.0 1.20351815553429 0.0 0.0 1.20351815553429 0.1858749293998474 0.0 0.38520783202033865 0.0 0.0 0.0 0.75456793548638668 0.0 0.0 1.3466189991749633 0.0 1.1082079757299652 0.0 0.0 0.0 0.0 1.9656582075811866 1.20351815553429 0.0 0.0 0.0 0.0 0.0 0.0 1.2374197072099713 0.0 0.0 0.0 1.2374197072099713 1.2725110270212412 0.0 0.86704591891307692 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2374197072099713 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 level 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5028011396645509 0.0 0.0 0.0 0.0 0.0 1.8096539591046055 0.0 0.0 0.65697444916621983 1.8096539591046055 0.0 0.0 0.9341852217507054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5717940111515021 2.5717940111515021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8786468305915567 0.0 0.0 0.0 0.56646044162538822 0.0 0.0 0.0 0.0 0.0 2.5717940111515021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8129560679683903 0.0 0.0 0.0 2.4382626185269798 0.0 0.0 affect 0.0 0.0 0.0 1.5645315010716205 0.0 0.0 0.0 0.094355655971027602 0.26980433347722033 0.0 0.0 0.0 0.71011617291555285 0.33343002935743193 0.0 0.14142316682901357 0.0 1.03390325000945 0.0 0.0 0.0 0.0 0.0 0.97674483616950136 0.0 0.0 0.0 1.6158247954591709 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5157413369021886 0.0 0.0 0.0 0.0 0.0 1.2644269086212823 0.60902005604418419 0.0 1.6158247954591709 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8522135735234013 1.9212064450103528 0.0 0.0 0.0 die' 0.0 0.0 0.0 0.0 0.0 0.45153047495141119 0.0 0.92726477890613179 1.1027134564123244 0.0 0.0 0.0 1.5430252958506567 0.0 0.0 0.0 0.0 0.48051801182466353 0.0 1.53244318652012 0.0 0.0 0.0 1.8096539591046055 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 temblor 2.1663289030433375 0.0 0.0 0.0 0.0 0.0 1.4041888509964411 0.74494322211217712 0.0 0.0 0.0 0.0 0.0 0.57855248739041687 0.0 0.0 0.0 0.0 0.0 0.0 1.4041888509964411 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0973360315563863 0.0 0.0 0.0 0.0 0.0 2.1663289030433375 2.1663289030433375 0.0 0.0 0.0 0.0 0.0 0.0 0.61573149063217092 0.0 1.4731817224833923 0.0 0.0 0.0 0.16099533351722387 1.9721728886023804 0.0 0.0 0.0 0.0 2.1663289030433375 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4074909598602261 0.0 0.0 0.0 2.0327975104188152 0.0 0.0 destroy 1.1648803628288757 0.0 0.0 0.0 0.0 0.0 0.0 0.59079254228491873 0.20662543185568871 0.0 1.0958874913419243 0.0 0.0 0.0 0.0 0.0 0.40274031078197897 0.0 0.0 0.63635516196348418 0.40274031078197897 0.0 0.0 0.62588386209618885 0.0 0.0 0.0 0.0 0.0 0.62588386209618885 0.0 0.0 0.0 0.0 1.1648803628288757 1.1648803628288757 1.0313489702043532 2.1944997800100339 0.0 0.0 0.0 0.75941525472071147 0.0 0.0 0.47173318226893046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1648803628288757 0.0 0.0 0.0 1.8580275433888211 2.417643331324244 0.0 0.0 3.1107905118841894 1.0313489702043532 1.4060424196457639 0.0 1.0958874913419243 1.1648803628288757 1.0313489702043532 0.0 0.0 hit 0.0 0.0 0.0 0.5809885421882981 0.0 0.021372754252875492 0.0 0.027103428961860385 0.20255210646805308 0.20942498575581511 0.17552343408013363 0.17552343408013363 0.41972039459217581 0.0 0.17552343408013363 0.41064317644105919 0.0 0.0 0.0 0.12145621280985781 0.0 0.0 1.2741357227482435 0.39866698539434331 0.31862427772080704 0.0 0.080213254275808943 0.63228183657584858 0.0 0.80413209350250781 0.0 0.24451630556708512 0.17552343408013363 0.0 0.0 0.0 0.0 0.0 1.784961346514234 0.20942498575581511 0.17552343408013363 0.0 0.0 0.20942498575581511 0.0 0.0 0.0 0.68634905784612432 0.18509288509628447 0.0 0.63228183657584858 0.31862427772080704 0.80413209350250781 0.5809885421882981 0.0 0.24451630556708512 0.2808839497379601 0.61489009386397941 0.93766348612703043 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.868670614640079 0.93766348612703043 0.0 0.0 0.0 Hurt 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.63270982716658886 0.0 2.2151190672127696 0.0 0.0 0.0031883424868550613 0.0 0.0 0.0 0.70366156313887318 0.0 0.36929237671443899 0.0 0.0 0.0 1.3396503298588698 0.0 0.0 0.0 0.0 0.0 1.7451154379670344 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3137313558808796 0.0 0.0 0.0 1.8786468305915569 0.0 0.0 0.0 0.0 0.0 0.0 0.27877836917360732 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2151190672127696 2.2841119386997213 0.0 0.0 0.0 service 0.0 0.0 1.7296112514310691 0.0 0.0 0.73921254740319209 1.5865104077903958 0.0 0.0 0.0 0.0 1.5865104077903958 0.0 0.067726863624426259 0.0 0.0 0.0 0.075052903716499059 0.0 0.0 0.0 0.0 0.0 0.0 1.7296112514310691 0.0 1.4912002279860708 0.0 0.0 0.0 0.0 0.0 1.5865104077903958 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.943185351729128 0.0 0.34331689031117857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6204119594660771 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 sink 0.0 0.0 1.665072730293498 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5219718866528245 0.0 0.0031883424868550613 1.5219718866528245 0.5043286605183821 0.0 0.0 0.0 0.0 0.0 1.0730216666049213 0.0 0.0 1.665072730293498 0.0 1.4266617068484997 0.0 0.0 0.0 0.0 0.0 1.5219718866528245 2.5252739955166095 0.0 0.0 0.0 0.0 0.0 1.555873438328506 0.0 0.0 0.0 1.555873438328506 0.0 0.0 1.1854996500316115 0.0 0.97192554973355261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 increase 3.110790511884189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3486504598372924 0.0 0.0 0.0 2.3486504598372924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.110790511884189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4176433313242436 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.110790511884189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9772591192596667 0.0 0.0 register 0.0 0.0 1.3466189991749633 0.0 0.0 0.0 0.0 0.0 0.0 1.2374197072099713 0.0 1.20351815553429 0.0 0.0 1.20351815553429 1.284487218067957 0.0 0.0 0.0 0.0 0.0 0.75456793548638668 0.0 0.0 1.3466189991749633 0.0 1.1082079757299652 0.0 0.0 0.0 0.0 0.0 1.20351815553429 0.0 0.0 0.0 0.0 0.0 0.0 1.2374197072099713 0.0 0.0 0.41506079517001992 1.2374197072099713 0.0 0.0 0.86704591891307692 0.0 0.65347181861501802 0.0 0.0 0.0 2.5252739955166095 0.0 0.0 1.9656582075811866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 force 0.0 0.0 0.0 0.0 0.0 0.31176853257625248 0.0 0.78750283653097286 0.0 0.0 0.0 0.0 0.71011617291555285 0.33343002935743193 0.0 0.83457034738895886 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.97674483616950136 0.0 0.0 0.0 0.0 0.0 0.0 2.4808222329457754 0.0 0.0 0.0 0.0 0.0 1.7876750523858302 0.0 0.0 0.0 0.0 0.0 1.0637562131591314 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7685043053975567 0.0 2.4808222329457754 0.0 2.6884615977240203 0.0 0.0 0.0 0.0 0.0 hand_out 0.0 0.0 0.0 0.0 0.0 0.04606536684324683 0.0 0.52179967079796741 0.0 0.0 0.0 0.0 1.1375601877424923 0.067726863624426259 0.0 0.56886718165595329 0.0 0.0 0.0 0.43383089785201012 0.0 0.0 0.0 0.7110416704364958 0.0 0.0 0.0 0.0 0.0 0.0 2.908266247772715 0.0 0.0 0.0 0.0 0.0 2.2151190672127696 0.0 0.0 0.0 0.0 0.0 0.79805304742612559 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1959483202244963 0.0 2.2151190672127696 0.0 2.4227584319910145 0.0 0.0 0.0 0.0 0.0 -_6_._1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2374197072099711 0.0 0.0 0.0 0.0 0.0 1.0710289724882112 0.0 0.0 1.8966653360942352 0.0 0.0 0.0 0.0 1.447715116046332 0.0 0.0 0.0 0.0 0.0 0.0 2.5898125166541806 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1082079757299652 0.0 0.0 2.9952776247623452 0.0 0.0 0.0 2.4646493737001745 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 strong 0.0 0.0 0.0 0.0 0.0 0.67467402626562101 1.5219718866528245 0.0 1.3258570077265341 0.0 0.0 0.0 0.0 0.0031883424868550613 0.0 0.0 0.0 0.70366156313887318 2.2151190672127696 1.4679046653825487 1.5219718866528245 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.73351452628855451 0.0 0.0 0.0 0.0 1.6273324023106508 0.0 0.0 0.0 0.0 0.0 2.6205841753209342 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 experience 0.0 0.0 0.0 0.0 4.2945606088926054 1.1446776555113565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.2945606088926054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0417976403972378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4472627485054019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 aftershock 0.32050221254500699 0.069187784264100868 0.80007529280689338 0.0 0.0 0.21514169688718079 0.2515093410580555 0.0 0.0 0.69087600084190137 0.0 0.65697444916621994 0.0 0.0 0.65697444916621994 0.0 0.0 0.24412923376043305 0.2515093410580555 0.0 0.2515093410580555 0.20802422911831658 0.0 0.0 0.80007529280689338 0.0 0.84934634181367608 0.0 0.0 0.0 0.0 1.0136493931049524 0.65697444916621994 0.56166426936189506 0.32050221254500699 0.32050221254500699 0.0 0.0 0.0 0.69087600084190137 0.0 0.0 0.0 0.69087600084190137 0.72596732065317138 0.0 1.0136493931049524 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.32050221254500699 0.0 0.0 0.69087600084190137 0.0 0.0 0.0 0.0 0.0 0.0 0.56166426936189506 0.0 0.2515093410580555 0.32050221254500699 0.18697081992048437 0.0 0.0 3_._6 2.9772591192596667 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2151190672127696 0.0 0.0 0.0 2.2151190672127696 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9772591192596667 2.9772591192596667 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2841119386997213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9772591192596667 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8437277266351439 0.0 0.0 4_._3 3.110790511884189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3486504598372924 0.0 0.0 0.0 2.3486504598372924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.110790511884189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4176433313242436 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.110790511884189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9772591192596667 0.0 0.0 be 0.0 0.0 0.0 2.3974406240067245 0.0 0.45153047495141119 0.0 0.23411759834618651 1.1027134564123244 0.0 0.0 0.0 1.5430252958506567 0.0 0.0 0.97433228976411768 0.0 1.1736651923846089 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.74878199841934301 0.0 2.4487339183942751 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 result 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.8053862326585968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5526232641632283 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9580883722713929 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -_6_._0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3327298870142963 0.0 0.0 0.0 0.0 0.0 1.1663391522925359 0.0 0.0 1.9919755158985601 0.0 0.0 0.0 0.0 1.5430252958506567 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.20351815553429 0.0 0.0 3.0905878045666699 0.0 0.0 0.0 2.5599595535044992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 find 0.0 0.0 0.0 0.0 0.0 0.40274031078197914 0.0 0.18532743417675446 0.0 1.2839397228448641 0.0 1.2500381711691826 0.0 0.0 1.2500381711691826 0.23239494503474029 0.0 0.43172784765523142 0.0 0.0 0.0 0.8010879511212794 0.0 0.0 1.3931390148098561 0.0 1.1547279913648578 0.0 0.0 0.0 0.0 0.0 1.2500381711691826 0.0 0.0 0.0 0.0 0.0 0.0 1.2839397228448641 0.0 0.0 0.0 1.2839397228448641 1.319031042656134 0.0 0.91356593454796975 0.0 0.0068446536899654988 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2839397228448641 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Kills 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.63270982716658886 0.0 2.2151190672127696 0.0 0.0 0.0031883424868550613 0.0 0.0 0.0 0.70366156313887318 0.0 0.36929237671443899 0.0 0.0 0.0 1.3396503298588698 0.0 0.0 0.0 0.0 0.0 1.7451154379670344 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3137313558808796 0.0 0.0 0.0 1.8786468305915569 0.0 0.0 0.0 0.0 0.0 0.0 0.27877836917360732 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5368749071950893 0.0 0.0 0.0 2.2151190672127696 0.0 0.0 0.0 0.0 appear 0.0 0.0 0.0 2.2151190672127696 0.0 0.0 0.0 0.74494322211217712 0.0 0.0 0.0 0.0 1.3607037390567023 0.29087041493863586 0.0 0.79201073297016289 0.0 0.99134363559065397 0.0 0.65697444916621983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2664123616003202 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9150144747624316 0.56646044162538822 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 cut 0.0 0.0 0.0 0.0 0.0 0.55689099060923752 0.0 1.032625294563958 1.2080739720701505 0.0 2.7904832121163317 0.0 0.0 0.57855248739041687 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9150144747624316 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4540109754951187 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 last 0.0 0.0 0.0 1.9274369947609891 0.0 0.0 1.5219718866528245 0.0 0.63270982716658886 0.0 0.0 0.0 1.0730216666049213 0.0031883424868550613 0.0 0.5043286605183821 0.0 1.1091266712470376 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9787302891485394 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.27877836917360732 0.0 1.9787302891485394 0.0 0.0 2.6205841753209342 0.0 0.0 1.6273324023106508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 rise 0.0 0.0 1.2187856276650784 0.0 0.0 0.45153047495141119 0.3825376034644597 0.010974047031976649 0.0 1.1095863357000866 0.0 1.075684784024405 0.0 0.0 1.075684784024405 0.058041557889962535 0.0 0.25737446051045371 0.0 0.0 0.0 0.62673456397650174 0.0 0.0 1.2187856276650784 0.0 0.28722742366013493 0.0 0.0 0.0 0.0 1.8378248360713016 1.075684784024405 0.0 0.0 0.0 0.0 0.0 0.0 1.1095863357000866 0.0 0.0 0.0 1.1095863357000866 1.1446776555113565 0.0 1.4323597279631375 0.0 0.23795637465335215 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1095863357000866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 &quot;tremor&quot; 0.0 0.0 0.0 0.0 4.517704160206816 1.3678212068255662 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2649411917114475 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.6704062998196116 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 collapse 0.0 2.2404368751970596 0.0 0.0 0.0 0.18916621048392027 0.0 0.0 1.5334963725047788 0.0 0.0 0.0 0.0 0.21082770726509961 0.0 0.0 0.0 0.21815374735717247 2.4227584319910145 1.270078922052629 1.7296112514310691 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.94115389106679903 0.0 0.0 0.0 0.0 0.0 0.48641773395185184 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8349717670888954 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 hurt 0.0 1.9721728886023804 0.0 0.0 0.0 0.61404940444918621 0.0 0.0 1.2652323859100993 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1544944453963351 1.4072800435661139 1.4613472648363897 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1544944453963351 0.0 0.6728899044721196 0.0 0.0 0.0 0.0 0.0 0.21815374735717247 0.0 0.0 2.2975952890370084 0.0 0.0 0.0 0.0 1.566707780494216 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 topple 0.0 0.0 0.0 0.0 0.0 0.0 2.3486504598372924 0.0 1.4593884003510567 0.0 0.0 0.0 0.0 0.0 0.0 1.33100723370285 0.0 0.83719295576339581 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4540109754951187 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4540109754951187 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9772591192596667 0.0 0.0 move 0.0 0.0 0.0 0.0 4.1122390520986514 0.96235609871740191 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.1122390520986514 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8594760836032829 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2649411917114475 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.2108513407667605 0.0 raze 0.0 0.0 0.0 0.0 0.0 0.11505823833019814 0.0 0.0 1.4593884003510567 0.0 0.0 0.0 0.0 0.13671973511137755 0.0 0.0 0.0 0.14404577520345047 2.3486504598372924 1.1959709498989068 1.655503279277347 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3486504598372924 0.0 0.86704591891307692 0.0 0.0 0.0 0.0 0.0 0.41230976179812989 0.0 0.0 2.4917513034779657 0.0 0.0 0.0 0.0 1.7608637949351735 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 affair 0.0 0.0 0.0 0.0 0.0 0.67467402626562101 2.2151190672127696 0.45726114966039616 0.0 0.0 0.0 0.0 0.0 0.69633552304680035 0.0 0.0 0.0 0.0 0.0 1.0624395572743843 0.0 1.7661688471648667 0.0 0.0 0.0 0.0 0.0 0.0 2.908266247772715 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4266617068484997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 strike 0.0 0.0 0.0 1.5865104077903958 0.0 0.04606536684324683 0.0 0.0 0.0 0.0 0.0 0.0 0.03894789907438289 0.57855248739041698 0.0 0.56886718165595329 0.0 0.58587852748248981 0.0 0.028365789743845946 0.0 0.0 0.0 0.30557656232833147 0.0 0.0 0.0 1.6378037021779464 0.0 1.4041888509964411 0.0 0.0 0.0 0.0 0.0 0.0 1.1165067785446603 0.0 0.0 0.0 0.0 0.0 0.79805304742612559 0.0 0.0 0.0 0.0 1.2864058153400577 0.0 0.0 1.6378037021779464 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.943185351729128 0.0 0.0 0.0 0.0 1.1165067785446603 0.0 1.3241461433229047 0.0 0.0 0.0 0.0 0.0 4_._0 0.0 0.0 0.0 0.0 0.0 0.45153047495141119 0.0 0.23411759834618651 0.0 0.0 0.0 0.0 1.5430252958506567 0.4731919717325907 0.0 0.97433228976411768 0.0 1.1736651923846089 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4487339183942751 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.74878199841934301 0.0 2.4487339183942751 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 evacuation 0.0 0.0 0.0 0.0 3.9580883722713929 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0241544142627954 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9580883722713929 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7053254037760248 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.6704062998196116 0.0 0.0 0.0 0.0 2.3825520115129737 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 prompt 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5837702021982181 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.6704062998196116 0.0 2.9421677994483968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
DM
0
tommasoc80/EventStoryLine
ppmi_events_ecb+_test/20/full_corpus_ppmi.dm
[ "CC-BY-3.0" ]
.. _multiprocessing-best-practices: Multiprocessing best practices ============================== :mod:`torch.multiprocessing` is a drop in replacement for Python's :mod:`python:multiprocessing` module. It supports the exact same operations, but extends it, so that all tensors sent through a :class:`python:multiprocessing.Queue`, will have their data moved into shared memory and will only send a handle to another process. .. note:: When a :class:`~torch.Tensor` is sent to another process, the :class:`~torch.Tensor` data is shared. If :attr:`torch.Tensor.grad` is not ``None``, it is also shared. After a :class:`~torch.Tensor` without a :attr:`torch.Tensor.grad` field is sent to the other process, it creates a standard process-specific ``.grad`` :class:`~torch.Tensor` that is not automatically shared across all processes, unlike how the :class:`~torch.Tensor`'s data has been shared. This allows to implement various training methods, like Hogwild, A3C, or any others that require asynchronous operation. .. _multiprocessing-cuda-note: CUDA in multiprocessing ----------------------- The CUDA runtime does not support the ``fork`` start method; either the ``spawn`` or ``forkserver`` start method are required to use CUDA in subprocesses. .. note:: The start method can be set via either creating a context with ``multiprocessing.get_context(...)`` or directly using ``multiprocessing.set_start_method(...)``. Unlike CPU tensors, the sending process is required to keep the original tensor as long as the receiving process retains a copy of the tensor. It is implemented under the hood but requires users to follow the best practices for the program to run correctly. For example, the sending process must stay alive as long as the consumer process has references to the tensor, and the refcounting can not save you if the consumer process exits abnormally via a fatal signal. See :ref:`this section <multiprocessing-cuda-sharing-details>`. See also: :ref:`cuda-nn-ddp-instead` Best practices and tips ----------------------- Avoiding and fighting deadlocks ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are a lot of things that can go wrong when a new process is spawned, with the most common cause of deadlocks being background threads. If there's any thread that holds a lock or imports a module, and ``fork`` is called, it's very likely that the subprocess will be in a corrupted state and will deadlock or fail in a different way. Note that even if you don't, Python built in libraries do - no need to look further than :mod:`python:multiprocessing`. :class:`python:multiprocessing.Queue` is actually a very complex class, that spawns multiple threads used to serialize, send and receive objects, and they can cause aforementioned problems too. If you find yourself in such situation try using a :class:`~python:multiprocessing.queues.SimpleQueue`, that doesn't use any additional threads. We're trying our best to make it easy for you and ensure these deadlocks don't happen but some things are out of our control. If you have any issues you can't cope with for a while, try reaching out on forums, and we'll see if it's an issue we can fix. Reuse buffers passed through a Queue ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Remember that each time you put a :class:`~torch.Tensor` into a :class:`python:multiprocessing.Queue`, it has to be moved into shared memory. If it's already shared, it is a no-op, otherwise it will incur an additional memory copy that can slow down the whole process. Even if you have a pool of processes sending data to a single one, make it send the buffers back - this is nearly free and will let you avoid a copy when sending next batch. Asynchronous multiprocess training (e.g. Hogwild) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Using :mod:`torch.multiprocessing`, it is possible to train a model asynchronously, with parameters either shared all the time, or being periodically synchronized. In the first case, we recommend sending over the whole model object, while in the latter, we advise to only send the :meth:`~torch.nn.Module.state_dict`. We recommend using :class:`python:multiprocessing.Queue` for passing all kinds of PyTorch objects between processes. It is possible to e.g. inherit the tensors and storages already in shared memory, when using the ``fork`` start method, however it is very bug prone and should be used with care, and only by advanced users. Queues, even though they're sometimes a less elegant solution, will work properly in all cases. .. warning:: You should be careful about having global statements, that are not guarded with an ``if __name__ == '__main__'``. If a different start method than ``fork`` is used, they will be executed in all subprocesses. Hogwild ~~~~~~~ A concrete Hogwild implementation can be found in the `examples repository`__, but to showcase the overall structure of the code, there's also a minimal example below as well:: import torch.multiprocessing as mp from model import MyModel def train(model): # Construct data_loader, optimizer, etc. for data, labels in data_loader: optimizer.zero_grad() loss_fn(model(data), labels).backward() optimizer.step() # This will update the shared parameters if __name__ == '__main__': num_processes = 4 model = MyModel() # NOTE: this is required for the ``fork`` method to work model.share_memory() processes = [] for rank in range(num_processes): p = mp.Process(target=train, args=(model,)) p.start() processes.append(p) for p in processes: p.join() .. __: https://github.com/pytorch/examples/tree/master/mnist_hogwild
reStructuredText
5
Hacky-DH/pytorch
docs/source/notes/multiprocessing.rst
[ "Intel" ]
-- Copyright 2017-2021 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. name = "RapidDNS" type = "scrape" function start() set_rate_limit(5) end function vertical(ctx, domain) scrape(ctx, {url=build_url(domain)}) end function build_url(domain) return "https://rapiddns.io/subdomain/" .. domain .. "?full=1" end
Ada
4
Elon143/Amass
resources/scripts/scrape/rapiddns.ads
[ "Apache-2.0" ]
{-# LANGUAGE BangPatterns #-} {-# LANGUAGE CPP #-} {-# LANGUAGE EmptyDataDecls #-} {-# LANGUAGE ForeignFunctionInterface #-} {-# LANGUAGE TemplateHaskell #-} -------------------------------------------------------------------------------- -- | -- Module : Foreign.CUDA.Driver.Graph.Build -- Copyright : [2018..2020] Trevor L. McDonell -- License : BSD -- -- Graph construction functions for the low-level driver interface -- -- Requires CUDA-10 -- -------------------------------------------------------------------------------- module Foreign.CUDA.Driver.Graph.Build ( Graph(..), Node(..), NodeType(..), HostCallback, create, destroy, clone, remove, -- ** Construction addChild, addEmpty, addHost, addKernel, addMemcpy, addMemset, addDependencies, removeDependencies, -- ** Querying getType, getChildGraph, getEdges, getNodes, getRootNodes, getDependencies, getDependents, findInClone, ) where #include "cbits/stubs.h" {# context lib="cuda" #} import Foreign.CUDA.Driver.Context.Base ( Context(..) ) import Foreign.CUDA.Driver.Error import Foreign.CUDA.Driver.Exec ( Fun(..), FunParam(..) ) import Foreign.CUDA.Driver.Graph.Base import Foreign.CUDA.Driver.Marshal ( useDeviceHandle ) import Foreign.CUDA.Driver.Stream ( Stream(..) ) import Foreign.CUDA.Driver.Unified ( MemoryType(..) ) import Foreign.CUDA.Internal.C2HS import Foreign.CUDA.Ptr ( DevicePtr(..) ) import Control.Monad ( liftM ) import Unsafe.Coerce import Data.Word import Foreign import Foreign.C import Foreign.Storable -- | Callback function executed on the host -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__TYPES.html#group__CUDA__TYPES_1g262cd3570ff5d396db4e3dabede3c355> -- -- @since 0.10.0.0 -- #if CUDA_VERSION < 10000 type HostCallback = FunPtr () #else type HostCallback = {# type CUhostFn #} #endif -------------------------------------------------------------------------------- -- Graph creation -------------------------------------------------------------------------------- -- | Create an empty task graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gd885f719186010727b75c3315f865fdf> -- -- @since 0.10.0.0 -- {-# INLINEABLE create #-} #if CUDA_VERSION < 10000 create :: [GraphFlag] -> IO Graph create = requireSDK 'create 10.0 #else {# fun unsafe cuGraphCreate as create { alloca- `Graph' peekGraph* , combineBitMasks `[GraphFlag]' } -> `()' checkStatus*- #} #endif -- | Destroy a graph, as well as all of its nodes -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g718cfd9681f078693d4be2426fd689c8> -- -- @since 0.10.0.0 {-# INLINEABLE destroy #-} #if CUDA_VERSION < 10000 destroy :: Graph -> IO () destroy = requireSDK 'destroy 10.0 #else {# fun unsafe cuGraphDestroy as destroy { useGraph `Graph' } -> `()' checkStatus*- #} #endif -- | Clone a graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g3603974654e463f2231c71d9b9d1517e> -- -- @since 0.10.0.0 -- {-# INLINEABLE clone #-} #if CUDA_VERSION < 10000 clone :: Graph -> IO Graph clone = requireSDK 'clone 10.0 #else {# fun unsafe cuGraphClone as clone { alloca- `Graph' peekGraph* , useGraph `Graph' } -> `()' checkStatus*- #} #endif -- | Remove a node from the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g00ed16434d983d8f0011683eacaf19b9> -- -- @since 0.10.0.0 -- {-# INLINEABLE remove #-} #if CUDA_VERSION < 10000 remove :: Node -> IO () remove = requireSDK 'remove 10.0 #else {# fun unsafe cuGraphDestroyNode as remove { useNode `Node' } -> `()' checkStatus*- #} #endif -- | Create a child graph node and add it to the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g3f27c2e56e3d568b09f00d438e61ceb1> -- -- @since 0.10.0.0 -- {-# INLINEABLE addChild #-} addChild :: Graph -> Graph -> [Node] -> IO Node #if CUDA_VERSION < 10000 addChild = requireSDK 'addChild 10.0 #else addChild parent child dependencies = cuGraphAddChildGraphNode parent dependencies child where {# fun unsafe cuGraphAddChildGraphNode { alloca- `Node' peekNode* , useGraph `Graph' , withNodeArrayLen* `[Node]'& , useGraph `Graph' } -> `()' checkStatus*- #} #endif -- | Add dependency edges to the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g81bf1a6965f881be6ad8d21cfe0ee44f> -- -- @since 0.10.0.0 -- {-# INLINEABLE addDependencies #-} addDependencies :: Graph -> [(Node,Node)] -> IO () #if CUDA_VERSION < 10000 addDependencies = requireSDK 'addDependencies 10.0 #else addDependencies !g !deps = cuGraphAddDependencies g from to where (from, to) = unzip deps {# fun unsafe cuGraphAddDependencies { useGraph `Graph' , withNodeArray* `[Node]' , withNodeArrayLen* `[Node]'& } -> `()' checkStatus*- #} #endif -- | Remove dependency edges from the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g8ab696a6b3ccd99db47feba7e97fb579> -- -- @since 0.10.0.0 -- {-# INLINE removeDependencies #-} removeDependencies :: Graph -> [(Node,Node)] -> IO () #if CUDA_VERSION < 10000 removeDependencies = requireSDK 'removeDependencies 10.0 #else removeDependencies !g !deps = cuGraphRemoveDependencies g from to where (from, to) = unzip deps {# fun unsafe cuGraphRemoveDependencies { useGraph `Graph' , withNodeArray* `[Node]' , withNodeArrayLen* `[Node]'& } -> `()' checkStatus*- #} #endif -- | Create an empty node and add it to the graph. -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g8a8681dbe97dbbb236ea5ebf3abe2ada> -- -- @since 0.10.0.0 -- {-# INLINEABLE addEmpty #-} #if CUDA_VERSION < 10000 addEmpty :: Graph -> [Node] -> IO Node addEmpty = requireSDK 'addEmpty 10.0 #else {# fun unsafe cuGraphAddEmptyNode as addEmpty { alloca- `Node' peekNode* , useGraph `Graph' , withNodeArrayLen* `[Node]'& } -> `()' checkStatus*- #} #endif -- | Creates a host execution node and adds it to the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g1ba15c2fe1afb8897091ecec4202b597> -- -- @since 0.10.0.0 -- {-# INLINEABLE addHost #-} #if CUDA_VERSION < 10000 addHost :: Graph -> [Node] -> HostCallback -> Ptr () -> IO Node addHost = requireSDK 'addHost 10.0 #else {# fun unsafe cuGraphAddHostNode_simple as addHost { alloca- `Node' peekNode* , useGraph `Graph' , withNodeArrayLen* `[Node]'& , id `HostCallback' , `Ptr ()' } -> `()' checkStatus*- #} #endif -- | Create a kernel execution node and adds it to the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g886a9096293238937f2f3bc7f2d57635> -- -- @since 0.10.0.0 -- {-# INLINEABLE addKernel #-} addKernel :: Graph -> [Node] -> Fun -> (Int, Int, Int) -- ^ grid dimension -> (Int, Int, Int) -- ^ thread block dimensions -> Int -- ^ shared memory (bytes) -> [FunParam] -> IO Node #if CUDA_VERSION < 10000 addKernel = requireSDK 'addKernel 10.0 #else addKernel !g !ns !fun (!gx,!gy,!gz) (!tx,!ty,!tz) !sm !args = withMany withFP args $ \pa -> withArray pa $ \pp -> cuGraphAddKernelNode_simple g ns fun gx gy gz tx ty tz sm pp where withFP :: FunParam -> (Ptr () -> IO b) -> IO b withFP !p !f = case p of IArg v -> with' v (f . castPtr) FArg v -> with' v (f . castPtr) VArg v -> with' v (f . castPtr) -- can't use the standard 'with' because 'alloca' will pass an undefined -- dummy argument when determining 'sizeOf' and 'alignment', but sometimes -- instances in Accelerate need to evaluate this argument. -- with' :: Storable a => a -> (Ptr a -> IO b) -> IO b with' !val !f = allocaBytes (sizeOf val) $ \ptr -> do poke ptr val f ptr {# fun unsafe cuGraphAddKernelNode_simple { alloca- `Node' peekNode* , useGraph `Graph' , withNodeArrayLen* `[Node]'& , useFun `Fun' , `Int' , `Int' , `Int' , `Int' , `Int' , `Int' , `Int' , id `Ptr (Ptr ())' } -> `()' checkStatus*- #} #endif -- | Create a memcpy node and add it to the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gdd521e1437c1c3ea8822f66a32ff1f94> -- -- @since 0.10.0.0 -- #if CUDA_VERSION < 10000 addMemcpy :: Graph -> [Node] -> Context -> Int -> Int -> Int -> Int -> MemoryType -> Ptr a -> Int -> Int -> Int -> Int -> Int -> Int -> MemoryType -> Ptr a -> Int -> Int -> Int -> Int -> Int -> IO Node addMemcpy = requireSDK 'addMemcpy 10.0 #else {# fun unsafe cuGraphAddMemcpyNode_simple as addMemcpy { alloca- `Node' peekNode* , useGraph `Graph' , withNodeArrayLen* `[Node]'& , useContext `Context' , `Int' -- ^ srcXInBytes , `Int' -- ^ srcY , `Int' -- ^ srcZ , `Int' -- ^ srcLOD , cFromEnum `MemoryType' -- ^ source memory type , castPtr `Ptr a' -- ^ source ptr , `Int' -- ^ srcPitch , `Int' -- ^ srcHeight , `Int' -- ^ dstXInBytes , `Int' -- ^ dstY , `Int' -- ^ dstZ , `Int' -- ^ dstLOD , cFromEnum `MemoryType' -- ^ destination memory type , castPtr `Ptr a' -- ^ destination ptr , `Int' -- ^ dstPitch , `Int' -- ^ dstHeight , `Int' -- ^ widthInBytes , `Int' -- ^ height , `Int' -- ^ depth } -> `()' checkStatus*- #} #endif -- | Create a memset node and add it to the graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gac7f59961798f14a9f94f9f6b53cc3b7> -- -- @since 0.10.0.0 -- {-# INLINEABLE addMemset #-} addMemset :: Storable a => Graph -> [Node] -> Context -> DevicePtr a -> a -> Int -- ^ height -> Int -- ^ pitch -> Int -- ^ width -> IO Node #if CUDA_VERSION < 10000 addMemset = requireSDK 'addMemset 10.0 #else addMemset !g !ns !ctx !dptr !val !h !p !w = cuGraphAddMemsetNode_simple g ns ctx dptr bytes h p val' w where bytes = sizeOf val val' :: Word32 val' = case bytes of 1 -> fromIntegral (unsafeCoerce val :: Word8) 2 -> fromIntegral (unsafeCoerce val :: Word16) 4 -> fromIntegral (unsafeCoerce val :: Word32) _ -> cudaError "can only memset 8-, 16-, and 32-bit values" {# fun unsafe cuGraphAddMemsetNode_simple { alloca- `Node' peekNode* , useGraph `Graph' , withNodeArrayLen* `[Node]'& , useContext `Context' , useDeviceHandle `DevicePtr a' , `Int' , `Int' , `Int' , `Word32' , `Int' } -> `()' checkStatus*- #} #endif -------------------------------------------------------------------------------- -- Query -------------------------------------------------------------------------------- -- | Return the type of a node -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gdb1776d97aa1c9d5144774b29e4b8c3e> -- -- @since 0.10.0.0 -- {-# INLINEABLE getType #-} #if CUDA_VERSION < 10000 getType :: Node -> IO NodeType getType = requireSDK 'getType 10.0 #else {# fun unsafe cuGraphNodeGetType as getType { useNode `Node' , alloca- `NodeType' peekEnum* } -> `()' checkStatus*- #} #endif -- | Retrieve the embedded graph of a child sub-graph node -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gbe9fc9267316b3778ef0db507917b4fd> -- -- @since 0.10.0.0 -- {-# INLINEABLE getChildGraph #-} #if CUDA_VERSION < 10000 getChildGraph :: Node -> IO Graph getChildGraph = requireSDK 'getChildGraph 10.0 #else {# fun unsafe cuGraphChildGraphNodeGetGraph as getChildGraph { useNode `Node' , alloca- `Graph' peekGraph* } -> `()' checkStatus*- #} #endif -- | Return a graph's dependency edges -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g2b7bd71b0b2b8521f141996e0975a0d7> -- -- @since 0.10.0.0 -- {-# INLINEABLE getEdges #-} getEdges :: Graph -> IO [(Node, Node)] #if CUDA_VERSION < 10000 getEdges = requireSDK 'getEdges 10.0 #else getEdges !g = alloca $ \p_count -> do cuGraphGetEdges g nullPtr nullPtr p_count count <- peekIntConv p_count allocaArray count $ \p_from -> do allocaArray count $ \p_to -> do cuGraphGetEdges g p_from p_to p_count from <- peekArray count p_from to <- peekArray count p_to return $ zip from to where {# fun unsafe cuGraphGetEdges { useGraph `Graph' , castPtr `Ptr Node' , castPtr `Ptr Node' , id `Ptr CULong' } -> `()' checkStatus*- #} #endif -- | Return a graph's nodes -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gfa35a8e2d2fc32f48dbd67ba27cf27e5> -- -- @since 0.10.0.0 -- {-# INLINEABLE getNodes #-} getNodes :: Graph -> IO [Node] #if CUDA_VERSION < 10000 getNodes = requireSDK 'getNodes 10.0 #else getNodes !g = alloca $ \p_count -> do cuGraphGetNodes g nullPtr p_count count <- peekIntConv p_count allocaArray count $ \p_nodes -> do cuGraphGetNodes g p_nodes p_count peekArray count p_nodes where {# fun unsafe cuGraphGetNodes { useGraph `Graph' , castPtr `Ptr Node' , id `Ptr CULong' } -> `()' checkStatus*- #} #endif -- | Returns the root nodes of a graph -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gf8517646bd8b39ab6359f8e7f0edffbd> -- -- @since 0.10.0.0 -- {-# INLINEABLE getRootNodes #-} getRootNodes :: Graph -> IO [Node] #if CUDA_VERSION < 10000 getRootNodes = requireSDK 'getRootNodes 10.0 #else getRootNodes g = alloca $ \p_count -> do cuGraphGetRootNodes g nullPtr p_count count <- peekIntConv p_count allocaArray count $ \p_nodes -> do cuGraphGetRootNodes g p_nodes p_count peekArray count p_nodes where {# fun unsafe cuGraphGetRootNodes { useGraph `Graph' , castPtr `Ptr Node' , id `Ptr CULong' } -> `()' checkStatus*- #} #endif -- | Return the dependencies of a node -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g048f4c0babcbba64a933fc277cd45083> -- -- @since 0.10.0.0 -- {-# INLINEABLE getDependencies #-} getDependencies :: Node -> IO [Node] #if CUDA_VERSION < 10000 getDependencies = requireSDK 'getDependencies 10.0 #else getDependencies !n = alloca $ \p_count -> do cuGraphNodeGetDependencies n nullPtr p_count count <- peekIntConv p_count allocaArray count $ \p_deps -> do cuGraphNodeGetDependencies n p_deps p_count peekArray count p_deps where {# fun unsafe cuGraphNodeGetDependencies { useNode `Node' , castPtr `Ptr Node' , id `Ptr CULong' } -> `()' checkStatus*- #} #endif -- | Return a node's dependent nodes -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1g4b73d9e3b386a9c0b094a452b8431f59> -- -- @since 0.10.0.0 -- {-# INLINEABLE getDependents #-} getDependents :: Node -> IO [Node] #if CUDA_VERSION < 10000 getDependents = requireSDK 'getDependents 10.0 #else getDependents n = alloca $ \p_count -> do cuGraphNodeGetDependentNodes n nullPtr p_count count <- peekIntConv p_count allocaArray count $ \p_deps -> do cuGraphNodeGetDependentNodes n p_deps p_count peekArray count p_deps where {# fun unsafe cuGraphNodeGetDependentNodes { useNode `Node' , castPtr `Ptr Node' , id `Ptr CULong' } -> `()' checkStatus*- #} #endif -- | Find a cloned version of a node -- -- Requires CUDA-10.0 -- -- <https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__GRAPH.html#group__CUDA__GRAPH_1gf21f6c968e346f028737c1118bfd41c2> -- -- @since 0.10.0.0 -- {-# INLINEABLE findInClone #-} #if CUDA_VERSION < 10000 findInClone :: Node -> Graph -> IO Node findInClone = requireSDK 'findInClone 10 #else {# fun unsafe cuGraphNodeFindInClone as findInClone { alloca- `Node' peekNode* , useNode `Node' , useGraph `Graph' } -> `()' checkStatus*- #} #endif -------------------------------------------------------------------------------- -- Internal -------------------------------------------------------------------------------- #if CUDA_VERSION >= 10000 {-# INLINE peekGraph #-} peekGraph :: Ptr {# type CUgraph #} -> IO Graph peekGraph = liftM Graph . peek {-# INLINE peekNode #-} peekNode :: Ptr {# type CUgraphNode #} -> IO Node peekNode = liftM Node . peek {-# INLINE withNodeArray #-} withNodeArray :: [Node] -> (Ptr {# type CUgraphNode #} -> IO a) -> IO a withNodeArray ns f = withArray ns (f . castPtr) {-# INLINE withNodeArrayLen #-} withNodeArrayLen :: [Node] -> ((Ptr {# type CUgraphNode #}, CULong) -> IO a) -> IO a withNodeArrayLen ns f = withArrayLen ns $ \i p -> f (castPtr p, cIntConv i) #endif
C2hs Haskell
5
jmatsushita/cuda
src/Foreign/CUDA/Driver/Graph/Build.chs
[ "BSD-3-Clause" ]
/** Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ parser grammar PrepareStatementParser; options { output=AST; ASTLabelType=ASTNode; backtrack=false; k=3; } @members { @Override public Object recoverFromMismatchedSet(IntStream input, RecognitionException re, BitSet follow) throws RecognitionException { throw re; } @Override public void displayRecognitionError(String[] tokenNames, RecognitionException e) { gParent.errors.add(new ParseError(gParent, e, tokenNames)); } } @rulecatch { catch (RecognitionException e) { throw e; } } //----------------------- Rules for parsing Prepare statement----------------------------- prepareStatement @init { gParent.pushMsg("prepare statement ", state); } @after { gParent.popMsg(state); } : KW_PREPARE identifier KW_FROM queryStatementExpression -> ^(TOK_PREPARE queryStatementExpression identifier) ; executeStatement @init { gParent.pushMsg("execute statement ", state); } @after { gParent.popMsg(state); } : KW_EXECUTE identifier KW_USING executeParamList -> ^(TOK_EXECUTE executeParamList identifier) ; //TODO: instead of constant using expression will provide richer and broader parameters executeParamList @init { gParent.pushMsg("execute param list", state); } @after { gParent.popMsg(state); } : constant (COMMA constant)* -> ^(TOK_EXECUTE_PARAM_LIST constant+) ;
G-code
4
FANsZL/hive
parser/src/java/org/apache/hadoop/hive/ql/parse/PrepareStatementParser.g
[ "Apache-2.0" ]
size: 1024px 60px; dpi: 96; margin: 1em; axis { scale: logarithmic(10); tick-placement: exponential-steps(10 10); label-format: base(10); limit: 0 10000; }
CLIPS
3
asmuth-archive/travistest
test/examples/charts_reference_scale_layout_exponential_steps.clp
[ "Apache-2.0" ]
set datafile separator whitespace set datafile commentschar "" set xlabel "Runtime (s)" set ylabel "Memory (kB)" set terminal pngcairo size 1280,800 set xtics rotate set yrange [0:*] set key below set grid set style fill solid 1.0 border -1 set linetype 1 lc rgb '#ff0000' set linetype 2 lc rgb '#00ff39' set linetype 3 lc rgb '#4d00ff' set linetype 4 lc rgb '#ff00fb' set linetype 5 lc rgb '#00ffff' set linetype 6 lc rgb '#f7ff00'
Gnuplot
4
rmartinc/keycloak
testsuite/performance/tests/src/main/gnuplot/jstat/common.gp
[ "Apache-2.0" ]
// run-pass #![allow(unused_variables)] // Regression test for #40951. const FOO: [&'static str; 1] = ["foo"]; fn find<T: PartialEq>(t: &[T], element: &T) { } fn main() { let x = format!("hi"); find(&FOO, &&*x); }
Rust
4
Eric-Arellano/rust
src/test/ui/issues/issue-40951.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
--TEST-- Test date_offset_get() function : basic functionality --FILE-- <?php //Set the default time zone date_default_timezone_set('Europe/London'); echo "*** Testing date_offset_get() : basic functionality ***\n"; $winter = date_create('2008-12-25 14:25:41'); $summer = date_create('2008-07-02 14:25:41'); echo "Winter offset: " . date_offset_get($winter) / 3600 . " hours\n"; echo "Summer offset: " . date_offset_get($summer) / 3600 . " hours\n"; ?> --EXPECT-- *** Testing date_offset_get() : basic functionality *** Winter offset: 0 hours Summer offset: 1 hours
PHP
4
NathanFreeman/php-src
ext/date/tests/date_offset_get_basic1.phpt
[ "PHP-3.01" ]
% BSD 3-Clause License % % Copyright (c) 2017, Ali ElShakankiry % All rights reserved. % % Redistribution and use in source and binary forms, with or without % modification, are permitted provided that the following conditions are met: % % * Redistributions of source code must retain the above copyright notice, this % list of conditions and the following disclaimer. % % * Redistributions in binary form must reproduce the above copyright notice, % this list of conditions and the following disclaimer in the documentation % and/or other materials provided with the distribution. % % * Neither the name of the copyright holder nor the names of its % contributors may be used to endorse or promote products derived from % this software without specific prior written permission. % % THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" % AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE % IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE % DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE % FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL % DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR % SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER % CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, % OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE % OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. include "../GRM/ASNOne.Grm" %redefine decl % [id] [opt hashID] %end redefine %define hashID % '^ [id] %end define redefine construction_assignment_statement [decl] '::= [type_decision] [opt scl_additions] [NL] end redefine function main replace [program] P [program] by P [noUnderscores] [doDecls] end function rule noUnderscores replace $ [id] ID [id] construct US [number] _ [index ID "_"] deconstruct not US 0 construct Err [id] _ [+ "Warning, \""] [+ US] [+ "\" declaration \""] [+ ID] [+ "\" contains underscore '_' "] construct Message [id] _ [message Err] %[quit 99] construct LenS [number] _ [# ID] construct sub1 [number] US[- 1] construct sub2 [number] US[+ 1] construct ID2 [id] ID[:sub2 LenS] construct NEWID [id] ID[:0 sub1] [+ "$"] [+ ID2] by NEWID %ID end rule rule doDecls replace $ [module_definition] ID [id] 'DEFINITIONS TAG [opt tag_default] ::= 'BEGIN EX [opt export_block] IM [opt import_block] RERULE [repeat rule_definition] 'END by ID 'DEFINITIONS TAG ::= 'BEGIN EX IM RERULE [renameTypeRule ID] [renameValueRule ID] [renameConstAssignment ID] 'END end rule rule renameValueRule ModName [id] skipping [value_rule_definition] replace $ [value_rule_definition] ID [id] TYPE [type] '::= V [value] construct UniqueRuleName [id] ID [+ '_ ] [+ ModName] by UniqueRuleName '^ ID TYPE '::= V end rule rule renameConstAssignment ModName [id] skipping [construction_assignment_statement] replace $ [construction_assignment_statement] ID [id] '::= TYPE [type_decision] OPT [opt scl_additions] construct UniqueRuleName [id] ID [+ '_ ] [+ ModName] by UniqueRuleName '^ ID '::= TYPE OPT end rule rule renameTypeRule ModName [id] skipping [type_rule_definition] replace $ [type_rule_definition] ID [id] '::= TYPE [type] ADD [opt scl_additions] construct UniqueRuleName [id] ID [+ '_ ] [+ ModName] by UniqueRuleName '^ ID '::= TYPE [renameType UniqueRuleName] ADD end rule function renameType RuleName [id] replace [type] T [type] by T [renameSequenceType RuleName] [renameSetType RuleName] % end function rule renameSequenceType RuleName [id] skipping [sequence_type] replace $ [sequence_type] 'SEQUENCE OS [opt size_constraint] '{ LE [list element_type] OC [opt ',] '} by 'SEQUENCE OS '{ LE [renameElementType RuleName] OC '} end rule rule renameSetType RuleName [id] skipping [set_type] replace $ [set_type] 'SET OS [opt size_constraint] '{ LE [list element_type] '} by 'SET OS '{ LE [renameElementType RuleName] '} end rule rule renameElementType RuleName [id] skipping [element_type] replace $ [element_type] E [element_type] by E [renameNamedType RuleName] end rule rule renameNamedType RuleName [id] skipping [named_type] replace $ [named_type] ID [id] TYPE [type] construct UniqueElementName [id] ID [+ '_ ] [+ RuleName] [+ " ^ "] [+ ID] by UniqueElementName TYPE end rule
TXL
4
alishak/TAG
TXL/UID_declarations.txl
[ "BSD-3-Clause" ]
ruleset io.picolabs.collection { meta { description << Wrapper around subscription ruleset for managing a collection of member picos. Raises collection:new_member and collection:member_removed events. Intended to be wrapped by a developer-supplied ruleset which uses it as a module, and shields them from the complexities of the subscription ruleset. >> use module io.picolabs.subscription alias Subs provides members // uniquely identified by {"Id"} shares __testing, members } global { __testing = { "queries": [ { "name": "__testing" }, { "name": "members" } ], "events": [ {"domain": "wrangler", "type": "send_event_to_collection_members", "attrs":["domain","type"]} ] } members = function(){ Subs:established("Tx_role",ent:Tx_role) } check_roles = function(attrs){ attrs{"Rx_role"}==ent:Rx_role && attrs{"Tx_role"}==ent:Tx_role } } rule initialize_role_names { select when wrangler ruleset_added where event:attr("rids") >< meta:rid if ent:Tx_role.isnull() && ent:Rx_role.isnull() then noop() fired { ent:Tx_role := "member"; ent:Rx_role := "collection" } } rule establish_new_role_names { select when collection new_role_names Tx_role re#(.+)# Rx_role re#(.+)# setting(Tx_role,Rx_role) if ent:Tx_role.isnull() || members().length() == 0 then noop() fired { ent:Tx_role := Tx_role; ent:Rx_role := Rx_role } } rule auto_accept { select when wrangler inbound_pending_subscription_added pre { acceptable = check_roles(event:attrs); } if acceptable then noop(); fired { raise wrangler event "pending_subscription_approval" attributes event:attrs } else { raise wrangler event "inbound_rejection" attributes { "Rx": event:attr("Rx") } } } rule send_to_all_members { select when wrangler send_event_to_collection_members always { raise wrangler event "send_event_on_subs" attributes event:attrs.put("Rx_role", ent:Rx_role) } } rule new_member { select when wrangler subscription_added pre { pertinent = check_roles(event:attrs); } if pertinent then noop(); fired { raise collection event "new_member" attributes event:attrs } } rule member_removed { select when wrangler subscription_removed pre { pertinent = check_roles(event:attr("bus")); } if pertinent then noop(); fired { raise collection event "member_removed" attributes event:attrs } } }
KRL
4
CambodianCoder/pico-engine
packages/pico-engine/legacy/krl/io.picolabs.collection.krl
[ "MIT" ]
<mt:If name="comment_confirmation"> <$mt:Var name="page_title" value="<__trans phrase="Confirmation...">"$> <$mt:Var name="message" value="<p class="message success"><__trans phrase="Your comment has been submitted!"></p>"$> <mt:Else name="comment_pending"> <$mt:Var name="page_title" value="<__trans phrase="Thank you for commenting.">"$> <$mt:Var name="message" value="<p class="message success"><__trans phrase="Your comment has been received and held for approval by the blog owner."></p>"$> <mt:Else name="comment_error"> <$mt:Var name="page_title" value="<__trans phrase="Comment Submission Error">"$> <mt:SetVarBlock name="message"><p class="message error"><__trans phrase="Your comment submission failed for the following reasons: [_1]" params="<$mt:ErrorMessage encode_html="1"$>"></p></mt:SetVarBlock> </mt:If> <!DOCTYPE html> <html> <head> <meta charset="<$mt:PublishCharset$>"> <meta name="description" content="<$mt:EntryExcerpt remove_html="1" encode_html="1"$>"> <title><$mt:BlogName encode_html="1"$>: <__trans phrase="Previewing your Comment"></title> <$mt:Include module="<__trans phrase="HTML Head">"$> </head> <body> <header role="banner"> <$mt:Include module="<__trans phrase="Banner Header">"$> <$mt:Include module="<__trans phrase="Navigation">"$> </header> <div class="content"> <ul class="breadcrumb"> <li><a href="<$mt:BlogURL encode_html="1"$>"><__trans phrase="Home"></a></li> <li><a href="<$mt:Link template="main_index" encode_html="1"$>"><__trans phrase="Blog"></a></li> <li><$mt:EntryTitle$></li> </ul> <div role="main"> <section> <h2 class="title"><$mt:Var name="page_title"$></h2> <$mt:Var name="message"$> <p><__trans phrase="Return to the <a href="[_1]">original entry</a>." params="<mt:If name="comment_error">javascript:history.back()<mt:Else><$mt:EntryLink$></mt:If>"></p> </section> </div> <div class="related"> <$mt:WidgetSet name="<__trans phrase="Related Contents (Blog)">"$> </div> </div> <footer role="contentinfo"> <$mt:Include module="<__trans phrase="Banner Footer">"$> </footer> <script src="<$mt:StaticWebPath encode_html="1"$>jquery/jquery.min.js"></script> <script src="<$mt:Link template="javascript_theme" encode_html="1">"></script> </body> </html>
MTML
3
movabletype/mt-theme-eiger
themes/eiger/templates/comment_response.mtml
[ "MIT" ]
INTERFACE zif_abapgit_data_deserializer PUBLIC . TYPES: BEGIN OF ty_result, table TYPE tadir-obj_name, deletes TYPE REF TO data, updates TYPE REF TO data, inserts TYPE REF TO data, END OF ty_result. TYPES: ty_results TYPE STANDARD TABLE OF ty_result WITH KEY table. METHODS deserialize IMPORTING !ii_config TYPE REF TO zif_abapgit_data_config !it_files TYPE zif_abapgit_definitions=>ty_files_tt RETURNING VALUE(rt_result) TYPE ty_results RAISING zcx_abapgit_exception . METHODS actualize IMPORTING it_result TYPE ty_results RAISING zcx_abapgit_exception . ENDINTERFACE.
ABAP
4
Manny27nyc/abapGit
src/data/zif_abapgit_data_deserializer.intf.abap
[ "MIT" ]
/////////////////////////////////////////////////////////////////////// // File: tablerecog.h // Description: Functions to detect structure of tables. // Author: Nicholas Beato // // (C) Copyright 2010, Google Inc. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // /////////////////////////////////////////////////////////////////////// #ifndef TABLERECOG_H_ #define TABLERECOG_H_ #include "colpartitiongrid.h" namespace tesseract { // There are 2 classes in this file. They have 2 different purposes. // - StructuredTable contains the methods to find the structure given // a specific bounding box and grow that structure. // - TableRecognizer contains the methods to adjust the possible positions // of a table without worrying about structure. // // To use these classes, the assumption is that the TableFinder will // have a guess of the location of a table (or possibly over/undersegmented // tables). The TableRecognizer is responsible for finding the table boundaries // at a high level. The StructuredTable class is responsible for determining // the structure of the table and trying to maximize its bounds while retaining // the structure. // (The latter part is not implemented yet, but that was the goal). // // While on the boundary discussion, keep in mind that this is a first pass. // There should eventually be some things like internal structure checks, // and, more importantly, surrounding text flow checks. // // Usage: // The StructuredTable class contains methods to query a potential table. // It has functions to find structure, count rows, find ColPartitions that // intersect gridlines, etc. It is not meant to blindly find a table. It // is meant to start with a known table location and enhance it. // Usage: // ColPartitionGrid text_grid, line_grid; // init // TBOX table_box; // known location of table location // // StructuredTable table; // table.Init(); // construction code // table.set_text_grid(/* text */); // These 2 grids can be the same! // table.set_line_grid(/* lines */); // table.set_min_text_height(10); // Filter vertical and tall text. // // IMPORTANT! The table needs to be told where it is! // table.set_bounding_box(table_box); // Set initial table location. // if (table.FindWhitespacedStructure()) { // // process table // table.column_count(); // number of columns // table.row_count(); // number of rows // table.cells_count(); // number of cells // table.bounding_box(); // updated bounding box // // etc. // } // class TESS_API StructuredTable { public: StructuredTable(); ~StructuredTable() = default; // Initialization code. Must be called after the constructor. void Init(); // Sets the grids used by the table. These can be changed between // calls to Recognize. They are treated as read-only data. void set_text_grid(ColPartitionGrid *text); void set_line_grid(ColPartitionGrid *lines); // Filters text partitions that are ridiculously tall to prevent // merging rows. void set_max_text_height(int height); // Basic accessors. Some are treated as attributes despite having indirect // representation. bool is_lined() const; unsigned row_count() const; unsigned column_count() const; unsigned cell_count() const; void set_bounding_box(const TBOX &box); const TBOX &bounding_box() const; int median_cell_height(); int median_cell_width(); int row_height(unsigned row) const; int column_width(unsigned column) const; int space_above() const; int space_below() const; // Given enough horizontal and vertical lines in a region, create this table // based on the structure given by the lines. Return true if it worked out. // Code assumes the lines exist. It is the caller's responsibility to check // for lines and find an appropriate bounding box. bool FindLinedStructure(); // The main subroutine for finding generic table structure. The function // finds the grid structure in the given box. Returns true if a good grid // exists, implying that "this" table is valid. bool FindWhitespacedStructure(); //////// //////// Functions to query table info. //////// // Returns true if inserting part into the table does not cause any // cell merges. bool DoesPartitionFit(const ColPartition &part) const; // Checks if a sub-table has multiple data cells filled. int CountFilledCells(); int CountFilledCellsInRow(int row); int CountFilledCellsInColumn(int column); int CountFilledCells(unsigned row_start, unsigned row_end, unsigned column_start, unsigned column_end); // Makes sure that at least one cell in a row has substantial area filled. // This can filter out large whitespace caused by growing tables too far // and page numbers. // (currently bugged for some reason). bool VerifyRowFilled(int row); // Finds the filled area in a cell. double CalculateCellFilledPercentage(unsigned row, unsigned column); // Debug display, draws the table in the given color. If the table is not // valid, the table and "best" grid lines are still drawn in the given color. void Display(ScrollView *window, ScrollView::Color color); protected: // Clear the structure information. void ClearStructure(); //////// //////// Lined tables //////// // Verifies the lines do not intersect partitions. This happens when // the lines are in column boundaries and extend the full page. As a result, // the grid lines go through column text. The condition is detectable. bool VerifyLinedTableCells(); //////// //////// Tables with whitespace //////// // This is the function to change if you want to filter resulting tables // better. Right now it just checks for a minimum cell count and such. // You could add things like maximum number of ColPartitions per cell or // similar. bool VerifyWhitespacedTable(); // Find the columns of a table using whitespace. void FindWhitespacedColumns(); // Find the rows of a table using whitespace. void FindWhitespacedRows(); //////// //////// Functions to provide information about the table. //////// // Calculates the whitespace around the table using the table boundary and // the supplied grids (set_text_grid and set_line_grid). void CalculateMargins(); // Update the table margins with the supplied grid. This is // only called by calculate margins to use multiple grid sources. void UpdateMargins(ColPartitionGrid *grid); int FindVerticalMargin(ColPartitionGrid *grid, int start_x, bool decrease) const; int FindHorizontalMargin(ColPartitionGrid *grid, int start_y, bool decrease) const; // Calculates stats on the table, namely the median cell height and width. void CalculateStats(); //////// //////// Functions to try to "fix" some table errors. //////// // Given a whitespaced table, this looks for bordering lines that might // be page layout boxes around the table. It is necessary to get the margins // correct on the table. If the lines are not joined, the margins will be // the distance to the line, which is not right. void AbsorbNearbyLines(); // Nice utility function for finding partition gaps. You feed it a sorted // list of all of the mins/maxes of the partitions in the table, and it gives // you the gaps (middle). This works for both vertical and horizontal // gaps. // // If you want to allow slight overlap in the division and the partitions, // just scale down the partitions before inserting them in the list. // Likewise, you can force at least some space between partitions. // This trick is how the horizontal partitions are done (since the page // skew could make it hard to find splits in the text). // // As a result, "0 distance" between closest partitions causes a gap. // This is not a programmatic assumption. It is intentional and simplifies // things. // // "max_merged" indicates both the minimum number of stacked partitions // to cause a cell (add 1 to it), and the maximum number of partitions that // a grid line can intersect. For example, if max_merged is 0, then lines // are inserted wherever space exists between partitions. If it is 2, // lines may intersect 2 partitions at most, but you also need at least // 2 partitions to generate a line. static void FindCellSplitLocations(const std::vector<int> &min_list, const std::vector<int> &max_list, int max_merged, std::vector<int> *locations); //////// //////// Utility function for table queries //////// // Counts the number of ColPartitions that intersect vertical cell // division at this x value. Used by VerifyLinedTable. int CountVerticalIntersections(int x); int CountHorizontalIntersections(int y); // Counts how many text partitions are in this box. int CountPartitions(const TBOX &box); //////// //////// Data members. //////// // Input data, used as read only data to make decisions. ColPartitionGrid *text_grid_; // Text ColPartitions ColPartitionGrid *line_grid_; // Line ColPartitions // Table structure. // bounding box is a convenient external representation. // cell_x_ and cell_y_ indicate the grid lines. TBOX bounding_box_; // Bounding box std::vector<int> cell_x_; // Locations of vertical divisions (sorted) std::vector<int> cell_y_; // Locations of horizontal divisions (sorted) bool is_lined_; // Is the table backed up by a line structure // Table margins, set via CalculateMargins int space_above_; int space_below_; int space_left_; int space_right_; int median_cell_height_; int median_cell_width_; // Filters, used to prevent awkward partitions from destroying structure. int max_text_height_; }; class TESS_API TableRecognizer { public: TableRecognizer() = default; ~TableRecognizer() = default; // Initialization code. Must be called after the constructor. void Init(); //////// //////// Pre-recognize methods to initial table constraints. //////// // Sets the grids used by the table. These can be changed between // calls to Recognize. They are treated as read-only data. void set_text_grid(ColPartitionGrid *text); void set_line_grid(ColPartitionGrid *lines); // Sets some additional constraints on the table. void set_min_height(int height); void set_min_width(int width); // Filters text partitions that are ridiculously tall to prevent // merging rows. Note that "filters" refers to allowing horizontal // cells to slice through them on the premise that they were // merged text rows during previous layout. void set_max_text_height(int height); // Given a guess location, the RecognizeTable function will try to find a // structured grid in the area. On success, it will return a new // StructuredTable (and assumes you will delete it). Otherwise, // nullptr is returned. // // Keep in mind, this may "overgrow" or "undergrow" the size of guess. // Ideally, there is a either a one-to-one correspondence between // the guess and table or no table at all. This is not the best of // assumptions right now, but was made to try to keep things simple in // the first pass. // // If a line structure is available on the page in the given region, // the table will use the linear structure as it is. // Otherwise, it will try to maximize the whitespace around it while keeping // a grid structure. This is somewhat working. // // Since the combination of adjustments can get high, effort was // originally made to keep the number of adjustments linear in the number // of partitions. The underlying structure finding code used to be // much more complex. I don't know how necessary this constraint is anymore. // The evaluation of a possible table is kept within O(nlogn) in the size of // the table (where size is the number of partitions in the table). // As a result, the algorithm is capable of O(n^2 log n). Depending // on the grid search size, it may be higher. // // Last note: it is possible to just try all partition boundaries at a high // level O(n^4) and do a verification scheme (at least O(nlogn)). If there // area 200 partitions on a page, this could be too costly. Effort could go // into pruning the search, but I opted for something quicker. I'm confident // that the independent adjustments can get similar results and keep the // complextiy down. However, the other approach could work without using // TableFinder at all if it is fast enough. It comes down to properly // deciding what is a table. The code currently relies on TableFinder's // guess to the location of a table for that. StructuredTable *RecognizeTable(const TBOX &guess_box); protected: //////// //////// Lined tables //////// // Returns true if the given box has a lined table within it. The // table argument will be updated with the table if the table exists. bool RecognizeLinedTable(const TBOX &guess_box, StructuredTable *table); // Returns true if the given box has a large number of horizontal and // vertical lines present. If so, we assume the extent of these lines // uniquely defines a table and find that table via SolveLinedTable. bool HasSignificantLines(const TBOX &guess); // Given enough horizontal and vertical lines in a region, find a bounding // box that encloses all of them (as well as newly introduced lines). // The bounding box is the smallest box that encloses the lines in guess // without having any lines sticking out of it. // bounding_box is an in/out parameter. // On input, it in the extents of the box to search. // On output, it is the resulting bounding box. bool FindLinesBoundingBox(TBOX *bounding_box); // Iteration in above search. // bounding_box is an in/out parameter. // On input, it in the extents of the box to search. // On output, it is the resulting bounding box. bool FindLinesBoundingBoxIteration(TBOX *bounding_box); //////// //////// Generic "whitespaced" tables //////// // Returns true if the given box has a whitespaced table within it. The // table argument will be updated if the table exists. Also note // that this method will fail if the guess_box center is not // mostly within the table. bool RecognizeWhitespacedTable(const TBOX &guess_box, StructuredTable *table); // Finds the location of a horizontal split relative to y. // This function is mostly unused now. If the SolveWhitespacedTable // changes much, it can be removed. Note, it isn't really as reliable // as I thought. I went with alternatives for most of the other uses. int NextHorizontalSplit(int left, int right, int y, bool top_to_bottom); // Indicates that a table row is weak. This means that it has // many missing data cells or very large cell heights compared. // to the rest of the table. static bool IsWeakTableRow(StructuredTable *table, int row); // Input data, used as read only data to make decisions. ColPartitionGrid *text_grid_ = nullptr; // Text ColPartitions ColPartitionGrid *line_grid_ = nullptr; // Line ColPartitions // Table constraints, a "good" table must satisfy these. int min_height_ = 0; int min_width_ = 0; // Filters, used to prevent awkward partitions from destroying structure. int max_text_height_ = INT32_MAX; // Horizontal lines may intersect taller text. }; } // namespace tesseract #endif /* TABLERECOG_H_ */
C
5
quangzinhh/tesseract
src/textord/tablerecog.h
[ "Apache-2.0" ]
#!/usr/bin/env bash ## # @license Copyright 2020 The Lighthouse Authors. All Rights Reserved. # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ## set -euxo pipefail DATE=$(date --date=yesterday '+%Y%m%d') PATCH=$(node -e "console.log(require('./package.json').version)") node lighthouse-core/scripts/release/bump-versions.js "$PATCH-dev.$DATE"
Shell
3
martin-maunoury/lighthouse
.github/scripts/bump-nightly-version.sh
[ "Apache-2.0" ]
// run-rustfix #![allow(clippy::unnecessary_operation)] #![warn(clippy::bytes_nth)] fn main() { let s = String::from("String"); s.bytes().nth(3); let _ = &s.bytes().nth(3); s[..].bytes().nth(3); }
Rust
3
narpfel/rust-clippy
tests/ui/bytes_nth.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#include <print.h> #include "usb_std_requests.h" void USB_ParseSetupPacket(unsigned char b[], USB_SetupPacket_t &p) { // Byte 0: bmRequestType. p.bmRequestType.Recipient = b[0] & 0x1f; p.bmRequestType.Type = (b[0] & 0x60) >> 5; p.bmRequestType.Direction = b[0] >> 7; // Byte 1: bRequest p.bRequest = b[1]; // Bytes [2:3] wValue p.wValue = (b[3] << 8) | (b[2]); // Bytes [4:5] wIndex p.wIndex = (b[5] << 8) | (b[4]); // Bytes [6:7] wLength p.wLength = (b[7] << 8) | (b[6]); } void USB_ComposeSetupBuffer(USB_SetupPacket_t sp, unsigned char buffer[]) { buffer[0] = sp.bmRequestType.Recipient | (sp.bmRequestType.Type << 5) | (sp.bmRequestType.Direction << 7); buffer[1] = sp.bRequest; buffer[2] = sp.wValue & 0xff; buffer[3] = (sp.wValue & 0xff00)>>8; buffer[4] = sp.wIndex & 0xff; buffer[5] = (sp.wIndex & 0xff00)>>8; buffer[6] = sp.wLength & 0xff; buffer[7] = (sp.wLength & 0xff00)>>8; } void USB_PrintSetupPacket(USB_SetupPacket_t sp) { printstr("Setup data\n"); printstr("bmRequestType.Recipient: "); printhexln(sp.bmRequestType.Recipient); printstr("bmRequestType.Type: "); printhexln(sp.bmRequestType.Type); printstr("bmRequestType.Direction: "); printhexln(sp.bmRequestType.Direction); printstr("bRequest: "); printhexln(sp.bRequest); printstr("bmRequestType.wValue: "); printhexln(sp.wValue); printstr("bmRequestType.wIndex: "); printhexln(sp.wIndex); printstr("bmRequestType.wLength: "); printhexln(sp.wLength); }
XC
4
simongapp/xmos_usb_mems_interface
01Firmware/PDM_USB/module_usb_shared/src/usb_std_requests.xc
[ "Unlicense" ]
package foo fun test() { println(f()) println(g()) } inline fun f(): Int = 1 inline fun g(): Int = 1
Groff
3
qussarah/declare
jps-plugin/testData/incremental/pureKotlin/inlineUsedWhereDeclared/inline.kt.new.2
[ "Apache-2.0" ]
@DependencyManagementBom("foo:bar:1.0") @DependencyManagementBom("alpha:bravo:2.0") class DuplicateDependencyManagement { }
Groovy
2
Martin-real/spring-boot-2.1.0.RELEASE
spring-boot-project/spring-boot-cli/src/test/resources/grab-samples/duplicateDependencyManagementBom.groovy
[ "Apache-2.0" ]
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.spark.api.r import org.apache.spark.SparkFunSuite class JVMObjectTrackerSuite extends SparkFunSuite { test("JVMObjectId does not take null IDs") { intercept[IllegalArgumentException] { JVMObjectId(null) } } test("JVMObjectTracker") { val tracker = new JVMObjectTracker assert(tracker.size === 0) withClue("an empty tracker can be cleared") { tracker.clear() } val none = JVMObjectId("none") assert(tracker.get(none) === None) intercept[NoSuchElementException] { tracker(JVMObjectId("none")) } val obj1 = new Object val id1 = tracker.addAndGetId(obj1) assert(id1 != null) assert(tracker.size === 1) assert(tracker.get(id1).get.eq(obj1)) assert(tracker(id1).eq(obj1)) val obj2 = new Object val id2 = tracker.addAndGetId(obj2) assert(id1 !== id2) assert(tracker.size === 2) assert(tracker(id2).eq(obj2)) val Some(obj1Removed) = tracker.remove(id1) assert(obj1Removed.eq(obj1)) assert(tracker.get(id1) === None) assert(tracker.size === 1) assert(tracker(id2).eq(obj2)) val obj3 = new Object val id3 = tracker.addAndGetId(obj3) assert(tracker.size === 2) assert(id3 != id1) assert(id3 != id2) assert(tracker(id3).eq(obj3)) tracker.clear() assert(tracker.size === 0) assert(tracker.get(id1) === None) assert(tracker.get(id2) === None) assert(tracker.get(id3) === None) } }
Scala
4
OlegPt/spark
core/src/test/scala/org/apache/spark/api/r/JVMObjectTrackerSuite.scala
[ "Apache-2.0" ]
ALTER TABLE hdb_catalog.event_log ADD COLUMN archived BOOLEAN NOT NULL DEFAULT FALSE; UPDATE hdb_catalog.event_log SET archived = 't' WHERE trigger_name NOT IN (SELECT name from hdb_catalog.event_triggers); CREATE INDEX ON hdb_catalog.event_log (delivered);
SQL
3
gh-oss-contributor/graphql-engine-1
server/src-rsr/migrations/26_to_27.sql
[ "Apache-2.0", "MIT" ]
namespace Ryujinx.Graphics.Gpu.Shader.Cache.Definition { /// <summary> /// Graphics API type accepted by the shader cache. /// </summary> enum CacheGraphicsApi : byte { /// <summary> /// OpenGL Core /// </summary> OpenGL, /// <summary> /// OpenGL ES /// </summary> OpenGLES, /// <summary> /// Vulkan /// </summary> Vulkan, /// <summary> /// DirectX /// </summary> DirectX, /// <summary> /// Metal /// </summary> Metal, /// <summary> /// Guest, used to cache games raw shader programs. /// </summary> Guest } }
C#
4
BSoDGamingYT/Ryujinx
Ryujinx.Graphics.Gpu/Shader/Cache/Definition/CacheGraphicsApi.cs
[ "MIT" ]
.className { background: red; color: yellow; } .subClass { composes: className; background: blue; }
CSS
3
blomqma/next.js
test/integration/css-fixtures/composes-basic/pages/index.module.css
[ "MIT" ]
@inproceedings{zhu2016generative, title={Generative Visual Manipulation on the Natural Image Manifold}, author={Zhu, Jun-Yan and Kr{\"a}henb{\"u}hl, Philipp and Shechtman, Eli and Efros, Alexei A.}, booktitle={Proceedings of European Conference on Computer Vision (ECCV)}, year={2016} } @InProceedings{xie15hed, author = {"Xie, Saining and Tu, Zhuowen"}, Title = {Holistically-Nested Edge Detection}, Booktitle = "Proceedings of IEEE International Conference on Computer Vision", Year = {2015}, }
TeX
1
chuxiuhong/ganilla
datasets/bibtex/handbags.tex
[ "BSD-3-Clause" ]
exec("swigtest.start", -1); a = new_A(); delete_A(a); aa = new_AA(); delete_AA(aa); try b = new_B(); swigtestswigtesterror("new_BB created.") catch end del_b = delete_B; try bb = new_BB(); swigtesterror("new_BB created.") catch end del_bb = delete_BB; try c = new_C(); swigtesterror("new_C created.") catch end del_c = delete_C; cc = new_CC(); delete_CC(cc); try d = new_D(); swigtesterror("new_D created") catch end del_d = delete_D; try dd = new_DD(); swigtesterror("new_DD created") catch end dd = delete_DD; try ad = new_AD(); swigtesterror("new_AD created") catch end del_ad = delete_AD; exec("swigtest.start", -1); e = new_E(); delete_E(e); ee = new_EE(); delete_EE(ee); try eb = new_EB(); swigtesterror("new_EB created") catch end del_eb = delete_EB; f = new_F(); try del_f = delete_F; swigtesterror("delete_F created") catch end F_destroy(f); g = new_G(); try del_g = delete_G; swigtesterror("delete_G created") catch end G_destroy(g); gg = new_GG(); delete_GG(gg); hh = new_HH(1,1); exec("swigtest.quit", -1);
Scilab
3
kyletanyag/LL-Smartcard
cacreader/swig-4.0.2/Examples/test-suite/scilab/default_constructor_runme.sci
[ "BSD-3-Clause" ]
#!/usr/bin/env python # coding=utf8 # Nerd Fonts Version: 2.1.0 # Script Version: 1.1.0 # Example Usage: # ./generate-glyph-info-from-set.py --font ../../src/glyphs/materialdesignicons-webfont.ttf --start f001 --end f847 --offset 4ff --prefix mdi # ./generate-glyph-info-from-set.py --font ../../src/glyphs/weathericons-regular-webfont.ttf --start f000 --end f0eb --negoffset d00 --prefix weather --nogaps from __future__ import absolute_import, print_function, unicode_literals version = "1.0.0" projectName = "Nerd Fonts" projectNameAbbreviation = "NF" projectNameSingular = projectName[:-1] import sys try: import psMat except ImportError: sys.exit(projectName + ": FontForge module is probably not installed. [See: http://designwithfontforge.com/en-US/Installing_Fontforge.html]") import re import os import argparse from argparse import RawTextHelpFormatter import errno import subprocess try: #Load the module import fontforge except ImportError: sys.exit(projectName + ": FontForge module could not be loaded. Try installing fontforge python bindings [e.g. on Linux Debian or Ubuntu: `sudo apt install fontforge python-fontforge`]") parser = argparse.ArgumentParser(description='Nerd Fonts Glyph Info Generator: displays code point and glyph names from given set\n\n* Website: https://www.nerdfonts.com\n* Version: ' + version + '\n* Development Website: https://github.com/ryanoasis/nerd-fonts\n* Changelog: https://github.com/ryanoasis/nerd-fonts/blob/master/changelog.md', formatter_class=RawTextHelpFormatter) parser.add_argument('-start', '--start', type=str, nargs='?', dest='symbolFontStart', help='The starting unicode hex codepoint') parser.add_argument('-end', '--end', type=str, nargs='?', dest='symbolFontEnd', help='The ending unicode hex codepoint') parser.add_argument('-offset', '--offset', type=str, nargs='?', dest='symbolOffset', help='The amount (in hex) to offset the range by for the source font') parser.add_argument('-negoffset', '--negoffset', type=str, nargs='?', dest='negSymbolOffset', help='The amount (in hex) to negative offset the range by for the source font') parser.add_argument('-prefix', '--prefix', type=str, nargs='?', dest='prefix', help='The prefix to use for the shell variables and css names') parser.add_argument('-nogaps', '--nogaps', action='store_true', dest='nogaps', help='Generates the codepoints in a continous codepoints with the given range (no empties/gaps)') parser.add_argument('-font', '--font', type=str, nargs='?', dest='filepath', help='The file path to the font file to open') args = parser.parse_args() print(args.symbolFontStart, args.symbolFontEnd) symbolFont = fontforge.open(args.filepath) args.symbolFontStart = int("0x" + args.symbolFontStart, 16) args.symbolFontEnd = int("0x" + args.symbolFontEnd, 16) ctr = 0 if args.negSymbolOffset: args.negSymbolOffset = int("0x" + args.negSymbolOffset, 16) sign = '-' offset = args.negSymbolOffset elif args.symbolOffset: args.symbolOffset = int("0x" + args.symbolOffset, 16) sign = '' offset = args.symbolOffset signedOffset = int(sign+'0x'+format(offset, 'X'), 16) hexPosition = args.symbolFontStart + signedOffset symbolFont.selection.select((str("ranges"),str("unicode")),args.symbolFontStart,args.symbolFontEnd) for index, sym_glyph in enumerate(symbolFont.selection.byGlyphs): slot = format(sym_glyph.unicode, 'X') name = sym_glyph.glyphname sh_name = "i_" + args.prefix + "_" + name.replace("-", "_") if args.nogaps: char = unichr(hexPosition) else: char = unichr(int('0x'+slot, 16) + signedOffset) print("i='" + char + "' " + sh_name + "=$i" + " //" + str(hexPosition)) ctr += 1 hexPosition += 1 print("Done, generated " + str(ctr) + " glyphs")
Python
4
th3cyb3rc0p/nerd-fonts
bin/scripts/generate-glyph-info-from-set.py
[ "MIT" ]
Extension { #name : #RGBehavior } { #category : #'*GToolkit-Extensions' } RGBehavior >> gtLocalMethodsFor: aView [ <gtView> ^ aView list title: 'Local methods'; priority: 10; items: [ self localMethods sorted: [ :a :b | a name < b name ] ]; itemText: [ :eachMethod | eachMethod name ] ]
Smalltalk
4
feenkcom/gtoolk
src/GToolkit-Extensions/RGBehavior.extension.st
[ "MIT" ]
# A query which carries a lot of data query rows_50_nesting_level_1 { hge_events(limit: 50){ event_status last_update affiliations_events_by_event_id(limit: 2) { affiliation{ publisher{ publisher_name } } } } } # Simple query which returns one row with its object foreign key relationship query one_row_nesting_level_1 { hge_events_by_pk(id: 1) { id attendance duration event_status last_update publisher { id publisher_name } } } # Query with nesting level of 4 query one_row_nesting_level_4 { hge_baseball_action_plays_by_pk(id: 1) { play_type baseball_event_state { current_state pitcher { person_key publisher { publisher_key } } } } } # Query with nesting level of 7 query one_row_nesting_level_7 { hge_baseball_action_plays_by_pk(id: 1) { play_type baseball_event_state { current_state pitcher { person_key publisher { publisher_key persons_by_publisher_id(limit: 1){ person_key baseball_event_states_by_batter_id { current_state event { event_status } } } } } } } } # Remote query query remote_one_row { remote_hge_events_by_pk(id: 1) { id attendance duration event_status last_update publisher { id publisher_name } } } # Remote query with two top level fields query remote_two_fields { events_1: remote_hge_events_by_pk(id: 1) { id attendance duration event_status last_update publisher { id publisher_name } } events_2: remote_hge_events_by_pk(id: 2) { id attendance duration event_status last_update publisher { id publisher_name } } } # Remote query lot of data query remote_50_rows { remote_hge_events(limit: 50){ event_status last_update affiliations_events_by_event_id(limit: 2) { affiliation{ publisher{ publisher_name } } } } }
GraphQL
3
gh-oss-contributor/graphql-engine-1
server/bench-wrk/queries.graphql
[ "Apache-2.0", "MIT" ]
export { getStaticPaths, a as getStaticProps } from '.' export default function Test() { return <div /> }
JavaScript
2
blomqma/next.js
packages/next-swc/crates/core/tests/fixture/ssg/getStaticProps/should-remove-combined-named-export-specifiers/input.js
[ "MIT" ]
#include "caffe2/core/context_gpu.h" #include "caffe2/operators/lpnorm_op.h" #include "caffe2/operators/operator_fallback_gpu.h" namespace caffe2 { REGISTER_CUDA_OPERATOR(LpNorm, GPUFallbackOp); REGISTER_CUDA_OPERATOR(LpNormGradient, GPUFallbackOp); } // namespace caffe2
Cuda
3
Hacky-DH/pytorch
caffe2/operators/lpnorm_op.cu
[ "Intel" ]
# Copyright 2015 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. .class public La/a; .super Landroid/app/Activity; .implements L_; .method public constructor <init>()V .locals 0 invoke-direct {p0}, Landroid/app/Activity;-><init>()V return-void .end method .method public toString()Ljava/lang/String; .locals 0 const-string v0, "I like to move it move it" return-object v0 .end method .method public testMovesSub(IDCJF)V .locals 32767 const v0, 0 const v1, 0xDEA45E80 const-wide v2, 0x7828B7E3722EBB90L ############################################################################ move/16 v18204, v32774 move/16 v31981, v1 move/16 v12478, v18204 move-object/16 v22776, v0 move/16 v10648, v1 move/16 v32238, v32768 move-wide/16 v3359, v32772 move/16 v23874, v32238 move/16 v30594, v12478 move/16 v32428, v18204 move/16 v26844, v0 move-wide/16 v31696, v32769 move-wide/16 v252, v32772 move-object/16 v11409, v26844 move-wide/16 v28578, v32769 move-wide/16 v25340, v31696 move-wide/16 v28578, v2 move/16 v24664, v32771 move/16 v747, v18204 move-wide/16 v19825, v31696 move-wide/16 v26127, v252 move-wide/16 v7434, v2 move/16 v20596, v12478 move-object/16 v7319, v32767 move/16 v11982, v26844 move-wide/16 v14783, v25340 move/16 v9194, v20596 move/16 v20448, v32238 move-wide/16 v24893, v2 move/16 v20119, v32768 move-wide/16 v6300, v7434 move/16 v26794, v12478 move-object/16 v3672, v11409 move/16 v18986, v20448 move-wide/16 v31523, v32769 move/16 v21751, v11409 move/16 v5924, v10648 move-object/16 v18289, v21751 move/16 v31561, v20596 move-wide/16 v23185, v26127 move/16 v30759, v24664 move-object/16 v11064, v11409 move-wide/16 v20420, v31523 move-wide/16 v6049, v3359 move/16 v959, v12478 move/16 v11840, v30594 move-wide/16 v8822, v6300 move-object/16 v3150, v21751 move-wide/16 v25008, v26127 move/16 v26480, v32428 move/16 v26798, v31981 move/16 v4208, v30759 move-object/16 v25135, v32767 move-wide/16 v19585, v3359 move/16 v32158, v32771 move/16 v14161, v1 move/16 v15255, v30594 move/16 v25008, v4208 move-object/16 v872, v25135 move/16 v32179, v9194 move-wide/16 v29347, v6300 move-object/16 v13015, v7319 move/16 v23812, v11409 move/16 v23880, v9194 move-object/16 v28205, v32767 move-object/16 v7977, v32767 move/16 v3679, v32428 move/16 v32645, v30759 move-object/16 v25063, v13015 move/16 v16372, v24664 move-wide/16 v27422, v19825 move-wide/16 v7674, v8822 move/16 v18455, v32645 move-object/16 v4338, v28205 move-wide/16 v23962, v14783 move/16 v5841, v10648 move-object/16 v5372, v11982 move/16 v7172, v11982 move/16 v29433, v32645 move-wide/16 v28718, v19585 move-wide/16 v9197, v23185 move/16 v30056, v25008 move/16 v22238, v10648 move/16 v30781, v23874 move-wide/16 v475, v28578 move/16 v8918, v18986 move/16 v18273, v20448 move-wide/16 v1411, v7674 move-wide/16 v4290, v475 move-object/16 v24916, v26844 move-object/16 v5181, v3672 move/16 v32708, v24664 move-object/16 v10737, v25063 move-object/16 v27625, v24916 move/16 v16026, v18455 move/16 v8699, v23812 move/16 v15229, v30781 move-wide/16 v5774, v475 move-wide/16 v26350, v3359 move/16 v23459, v18986 move-wide/16 v5290, v23185 move-wide/16 v26715, v5290 move-wide/16 v13702, v6300 move-object/16 v12055, v25135 move/16 v17971, v1 move/16 v4839, v20448 move-object/16 v20103, v7319 move/16 v13381, v30056 move/16 v14876, v31561 move-wide/16 v23436, v29347 move-wide/16 v5517, v4290 move/16 v18374, v1 move-object/16 v24925, v25135 move-wide/16 v30779, v23962 move/16 v2913, v9194 move-object/16 v21848, v20103 move/16 v9639, v24916 move/16 v7434, v10648 move/16 v27907, v14876 move-wide/16 v22688, v6049 move-wide/16 v13784, v28578 move/16 v25470, v31561 move-wide/16 v4258, v29347 move/16 v4815, v3679 move-wide/16 v28720, v31523 move/16 v24824, v18455 move/16 v7534, v1 move/16 v13476, v16372 move/16 v1186, v24664 move/16 v29736, v2913 move/16 v31566, v26798 move-object/16 v8574, v21751 move/16 v25118, v7172 move-wide/16 v23688, v22688 move-object/16 v1983, v7172 move-wide/16 v10370, v19825 move/16 v31202, v26798 move-object/16 v4851, v20103 move-wide/16 v15255, v23962 move/16 v18929, v30759 move/16 v6241, v18273 move-wide/16 v31691, v29347 move/16 v28609, v18986 move-wide/16 v10564, v26350 move/16 v26704, v23874 move-wide/16 v476, v252 move/16 v26898, v18289 move-wide/16 v14537, v31691 move-wide/16 v14891, v5290 move-wide/16 v28811, v14783 move/16 v6905, v18455 move-object/16 v17599, v10737 move-wide/16 v1109, v1411 move-wide/16 v10157, v23688 move/16 v14993, v2913 move/16 v14467, v3679 move/16 v10135, v31561 move-wide/16 v2132, v28578 move-wide/16 v25814, v5774 move/16 v11916, v15229 move/16 v5467, v8918 move-wide/16 v28960, v26715 move/16 v3082, v31981 move/16 v18978, v18273 move/16 v17971, v12478 move/16 v3234, v23812 move-wide/16 v7443, v28960 move/16 v29952, v30056 move-wide/16 v21369, v28578 move-object/16 v18130, v21848 move-object/16 v5635, v3234 move/16 v4524, v11064 move/16 v26502, v13381 move-wide/16 v15166, v29347 move/16 v4668, v32768 move/16 v7118, v9194 move-object/16 v16651, v26898 move-wide/16 v7058, v28960 move/16 v8214, v31202 move/16 v17943, v20448 move/16 v13289, v23880 move-wide/16 v18819, v26127 move/16 v11197, v18929 move/16 v6979, v30594 move-object/16 v29088, v28205 move-object/16 v11875, v11409 move-object/16 v30981, v7977 move/16 v21702, v22238 move/16 v14040, v3082 move/16 v30611, v3234 move/16 v5583, v26798 move/16 v9027, v13289 move-object/16 v24503, v29088 move-wide/16 v23105, v25340 move/16 v27717, v31202 move-wide/16 v23213, v31523 move-wide/16 v10140, v23962 move-object/16 v27545, v9639 move-wide/16 v4736, v23213 move-object/16 v5403, v26844 move-wide/16 v10157, v23962 move/16 v32092, v31561 move-wide/16 v13267, v10157 move-wide/16 v30905, v13702 move/16 v5452, v13381 move-wide/16 v24038, v5290 move-object/16 v9249, v4524 move-wide/16 v22738, v27422 move/16 v19998, v16026 move-object/16 v32117, v24925 move-wide/16 v10716, v10564 move/16 v5629, v18204 move/16 v14005, v747 move-object/16 v26879, v5372 move/16 v21215, v32428 move/16 v32028, v32428 move-wide/16 v23279, v24038 move/16 v21981, v21215 move-wide/16 v16032, v3359 move/16 v21306, v11064 move-wide/16 v31304, v26127 move-wide/16 v32572, v19825 move/16 v24407, v28609 move/16 v3532, v31202 move-wide/16 v29381, v23279 move/16 v30525, v5467 move/16 v15998, v8214 move-wide/16 v23225, v5774 move-wide/16 v14219, v7058 move-wide/16 v2785, v28811 move-wide/16 v13784, v5774 move-object/16 v30905, v27545 move/16 v6298, v29736 move-wide/16 v11832, v23279 move-wide/16 v15201, v11832 move-wide/16 v10737, v8822 move-object/16 v23992, v32117 move/16 v31442, v20119 move-object/16 v31286, v872 move/16 v15690, v5629 move-wide/16 v4925, v252 move/16 v30307, v23880 move/16 v32020, v26480 move/16 v20170, v32771 move-object/16 v25010, v25135 move/16 v20836, v6905 move-object/16 v16295, v28205 move/16 v2247, v8214 move-object/16 v32728, v31286 move-object/16 v22773, v4338 move/16 v29004, v26704 move-object/16 v27410, v4851 move/16 v8817, v17971 move/16 v24916, v18273 move-wide/16 v29024, v6049 move-wide/16 v14562, v10716 move/16 v26741, v5403 move-wide/16 v15544, v4258 move/16 v18978, v28609 move-wide/16 v29284, v13702 move/16 v20103, v7534 move-wide/16 v6087, v30779 move-wide/16 v6179, v23436 move-object/16 v3940, v4524 move-object/16 v26161, v28205 move/16 v2147, v23459 move-wide/16 v16403, v2 move-wide/16 v7143, v23225 move-wide/16 v6010, v2785 move/16 v24273, v31981 move/16 v14055, v7118 move/16 v29526, v30594 move-object/16 v21106, v11409 move-wide/16 v15443, v31523 move/16 v19541, v24916 move-object/16 v8872, v32728 move-object/16 v1106, v22773 move-wide/16 v5390, v21369 move/16 v18486, v5467 move-wide/16 v26226, v19825 move/16 v24432, v13476 move/16 v27972, v30759 move-wide/16 v24893, v23962 move-wide/16 v6124, v15166 move/16 v24802, v18374 move/16 v6653, v18929 move/16 v20894, v26480 move/16 v9714, v19998 move/16 v16429, v14161 move-wide/16 v18387, v3359 move/16 v29780, v24664 move/16 v4661, v25118 move/16 v4086, v32020 move-wide/16 v3291, v5517 move-wide/16 v26105, v15443 move/16 v14328, v8574 move/16 v23578, v24664 move/16 v28469, v24273 move-wide/16 v14827, v5390 move/16 v12343, v29952 move/16 v2001, v5841 move-object/16 v14262, v13015 move-wide/16 v15617, v10370 move-wide/16 v17999, v4925 move-wide/16 v23082, v29347 move-wide/16 v21454, v29284 move/16 v21983, v959 move/16 v14804, v5452 move-wide/16 v15272, v23185 move/16 v12918, v7118 move/16 v20482, v32645 move-object/16 v32547, v32728 move-object/16 v3548, v25010 move/16 v16335, v27907 move/16 v25731, v24824 move/16 v31900, v23874 move-wide/16 v3274, v2132 move/16 v22392, v16335 move-wide/16 v29163, v2785 move/16 v2894, v32768 move-object/16 v11269, v3548 move-wide/16 v19164, v5390 move-object/16 v27366, v13015 move-wide/16 v15557, v32572 move-object/16 v30307, v17599 move-object/16 v23968, v14262 move-wide/16 v3765, v7143 move-wide/16 v2674, v14537 move-object/16 v21573, v31286 move-wide/16 v4651, v26127 move-object/16 v6748, v30307 move-wide/16 v19496, v32769 move-object/16 v16169, v32767 move-wide/16 v6114, v14562 move-object/16 v21563, v16295 move-wide/16 v728, v16032 move/16 v24327, v5841 move/16 v28303, v3672 move-object/16 v17215, v5181 move-wide/16 v29209, v23225 move-wide/16 v11166, v26350 move-wide/16 v24193, v6300 move/16 v16352, v3532 move-object/16 v15170, v21573 move-wide/16 v2285, v11832 move/16 v5600, v23880 move/16 v10800, v20596 move/16 v5541, v5467 move-wide/16 v12966, v15617 move/16 v7629, v2247 move-wide/16 v22104, v29284 move-wide/16 v28590, v3359 move/from16 v117, v26844 move/16 v3725, v6905 move/16 v12358, v17943 move-wide/16 v11376, v25340 move/16 v5629, v24916 move/16 v5290, v25008 move-wide/16 v515, v5517 move/16 v31598, v4661 move-object/16 v7976, v25135 move/16 v10439, v0 move/16 v8649, v29004 move/16 v4258, v4524 move-wide/16 v3932, v29163 move/16 v1981, v21306 move-wide/16 v23283, v2785 move-object/16 v26546, v17215 move-object/16 v21868, v15170 move-object/16 v12274, v32117 move/16 v29003, v32158 move-object/16 v31463, v4851 move-wide/16 v19639, v5774 move-object/16 v352, v8872 move/16 v31696, v20170 move/16 v8761, v16651 move/16 v21580, v10648 move/16 v16933, v3082 move-object/16 v17876, v30981 move/16 v11782, v20103 move/16 v23283, v20482 move/16 v21163, v5403 move/16 v28296, v5629 move-wide/16 v3274, v23436 move-object/16 v836, v4338 move/16 v30446, v30781 move/from16 v240, v26502 move-object/16 v5981, v32547 move/16 v11166, v11197 move-wide/16 v7914, v10737 move-wide/16 v1971, v21369 move/16 v12032, v27907 move-object/16 v1800, v7976 move/16 v30772, v20482 move-wide/16 v28642, v14891 move/16 v15761, v29003 move/16 v12826, v3082 move-wide/16 v30026, v19164 move-object/16 v29131, v7977 move-object/16 v9934, v12055 move/16 v6026, v12478 move/16 v13702, v8761 move/16 v26841, v3234 move/16 v2492, v15229 move-wide/16 v7177, v26350 move/16 v29054, v10135 move-object/16 v8961, v30611 move/16 v27471, v24273 move/16 v5981, v23812 move/16 v16092, v7118 move-wide/16 v14650, v2785 move/16 v18675, v19998 move/16 v18722, v32028 move/16 v8214, v30759 move-object/16 v28386, v29131 move/16 v19639, v5924 move/16 v15446, v31900 move-object/16 v7058, v12055 move/16 v23264, v30772 move-wide/16 v14065, v11376 move/16 v24788, v117 move/16 v7428, v8649 move/16 v29249, v18273 move/16 v22307, v18986 move/16 v19357, v27717 move/16 v14579, v21702 move-wide/16 v1095, v16403 move-object/16 v20985, v352 move-wide/16 v16055, v5390 move/16 v23160, v28469 move/16 v25957, v2001 move-wide/16 v20033, v7143 move/16 v4548, v27717 move/16 v617, v4548 move/16 v17620, v25008 move/16 v10865, v20448 move-wide/16 v1523, v26715 move/16 v4453, v9714 move/16 v15391, v24824 move/16 v10772, v6026 move-wide/16 v14871, v2285 move/16 v18378, v4086 move-wide/16 v1084, v3765 move/16 v2896, v25470 move/16 v25808, v10648 move-wide/16 v2262, v26105 move/16 v19102, v17215 move/16 v2497, v31900 move/16 v13593, v26704 move-wide/16 v13775, v14562 move-wide/16 v23839, v728 move-wide/16 v17396, v6179 move-object/16 v3175, v9639 move-object/16 v691, v4258 move/16 v32363, v15229 move-object/16 v6489, v9934 move/16 v12971, v4661 move/16 v11200, v15446 move-object/16 v2093, v7319 move-wide/16 v20067, v11832 move-wide/16 v16380, v23839 move-wide/16 v31439, v27422 move/16 v12482, v12971 move/16 v342, v19639 move/16 v13865, v6905 move-wide/16 v5756, v7177 move-wide/16 v3430, v26715 move-object/16 v13281, v7058 move-wide/16 v32534, v28718 move-object/16 v9766, v8872 move/16 v29704, v3679 move/16 v6690, v31442 move/16 v2964, v32092 move-object/16 v30535, v4338 move-wide/16 v21494, v1084 move/16 v1673, v5600 move-wide/16 v30069, v3430 move-wide/16 v28276, v20033 move-object/16 v31807, v6748 move/16 v28049, v5452 move/16 v8633, v5541 move/16 v19856, v25118 move-object/16 v28982, v32547 move/16 v15581, v24273 move-wide/16 v5517, v3765 move/16 v19164, v28296 move-wide/16 v6326, v23688 move/16 v29187, v21702 move-wide/16 v11379, v21494 move-object/16 v6654, v4851 move/16 v19750, v20119 move-wide/16 v32632, v28578 move/16 v11200, v9194 move-wide/16 v27584, v11379 move/16 v1713, v2492 move/16 v6517, v32028 move-wide/16 v10534, v20420 move/16 v25073, v17620 move-wide/16 v2104, v6010 move/16 v6862, v20170 move-wide/16 v382, v1411 move/16 v2773, v3725 move-wide/16 v8685, v6326 move-wide/16 v21605, v14783 move-wide/16 v20034, v2132 move-wide/16 v16632, v15544 move-wide/16 v7058, v13267 move/16 v14761, v26841 move/16 v23472, v32092 move/16 v21573, v2497 move-object/16 v24422, v11409 move-wide/16 v7073, v25340 move/16 v18418, v18986 move/16 v1029, v31202 move-wide/16 v14579, v21454 move/16 v31240, v21702 move/16 v20860, v12358 move-wide/16 v17132, v14065 move/16 v5982, v13593 move-object/16 v15983, v691 move/16 v32061, v5541 move/16 v18642, v23874 move/16 v11219, v5841 move/16 v31400, v31981 move/16 v10700, v30446 move/16 v22104, v2894 move/16 v21276, v25470 move-wide/16 v1415, v28960 move/16 v32627, v21580 move-object/16 v9674, v25063 move/16 v19429, v27545 move/16 v2479, v19998 move/16 v4462, v15761 move-object/16 v27671, v4524 move/16 v17659, v30056 move-wide/16 v5760, v20420 move/16 v26129, v28469 move-object/16 v18734, v9934 move-object/16 v30227, v30981 move-object/16 v13784, v13281 move-wide/16 v9648, v16055 move-object/16 v20103, v25118 move/16 v2900, v9639 move-wide/16 v16942, v31523 move/16 v22208, v19639 move/16 v14510, v30525 move/16 v10737, v2913 move-object/16 v13717, v7319 move-wide/16 v20531, v1109 move-object/16 v26841, v30535 move-wide/16 v18331, v5760 move-wide/16 v20644, v15255 move-wide/16 v25057, v20420 move/16 v617, v12358 move/16 v24926, v27907 move-wide/16 v18273, v8822 move-object/16 v464, v12971 move-wide/16 v7440, v16055 move-wide/16 v18170, v6124 move/16 v3651, v29249 move-object/16 v24787, v5635 move-object/16 v18172, v13281 move/16 v7819, v28049 move-object/16 v16477, v14262 move/16 v17359, v25008 move-wide/16 v23584, v21369 move-wide/16 v1106, v1095 move/16 v17217, v32627 move/16 v1298, v20170 move/16 v5528, v19998 move-wide/16 v14391, v6114 move/16 v27101, v8817 move/16 v19699, v19856 move-object/16 v17524, v21868 move/16 v2698, v26480 move/16 v7630, v1 move/16 v25063, v32238 move/16 v11517, v21702 move-object/16 v30290, v32547 move/16 v28332, v2896 move/16 v30781, v24407 move-wide/16 v1973, v10140 move/16 v1141, v18986 move/16 v8256, v10648 move-wide/16 v29511, v29381 move-wide/16 v27642, v3932 move-wide/16 v26233, v32772 move/16 v28060, v21702 move-wide/16 v26273, v1523 move/16 v7627, v16026 move-wide/16 v5248, v4290 move-wide/16 v16769, v21369 move-object/16 v32155, v21868 move/16 v3086, v31442 move-object/16 v32253, v32547 move/16 v1184, v14005 move/16 v7637, v2900 move/16 v28871, v30759 move-wide/16 v24407, v2285 move-wide/16 v11211, v5517 move-wide/16 v6709, v27422 move-wide/16 v16639, v10534 move-wide/16 v10924, v14391 move/16 v6405, v7534 move/16 v32193, v32771 move/16 v7058, v24327 move-wide/16 v8000, v4651 move/16 v2195, v2900 move/16 v8303, v8574 move-object/16 v2656, v9249 move/16 v23698, v7630 move-wide/16 v16340, v515 move/16 v2220, v21981 move/16 v6124, v17971 move/16 v15558, v5452 move/16 v6577, v16429 move/16 v23618, v21981 move/16 v22078, v3725 move-wide/16 v12754, v4651 move-wide/16 v20792, v14219 move/16 v23423, v26480 move/16 v18734, v30781 move-wide/16 v27869, v10157 move/16 v12717, v27717 move/16 v2785, v25731 move/16 v31619, v6653 move/16 v14862, v17659 move-object/16 v8481, v13702 move-object/16 v9265, v6654 move/16 v21677, v18486 move/16 v6096, v2247 move-wide/16 v27794, v10564 move-wide/16 v23600, v17396 move-object/16 v27464, v21868 move/16 v21344, v5841 move-wide/16 v11521, v515 move/16 v3978, v1186 move/16 v21919, v6905 move/16 v8897, v19164 move-object/16 v28548, v32728 move/16 v19126, v5583 move/16 v7056, v32020 move-wide/16 v20386, v20792 move/16 v812, v6517 move-wide/16 v31442, v30069 move-object/16 v28148, v28205 move/16 v1106, v2492 move-wide/16 v2993, v15544 move-wide/16 v27382, v30779 move-object/16 v26829, v13702 move-wide/16 v15685, v6087 move-object/16 v32333, v5981 move/16 v12183, v29187 move/16 v29287, v29003 move-wide/16 v3840, v19825 move/16 v22293, v15761 move/16 v4934, v24432 move/16 v12164, v27471 move/16 v24380, v22293 move-wide/16 v11355, v1973 move/16 v12965, v30056 move-wide/16 v28143, v28811 move-wide/16 v24420, v19496 move-wide/16 v29823, v15166 move/16 v2976, v28609 move/16 v783, v23812 move/16 v8264, v17943 move-wide/16 v8054, v11832 move/16 v16739, v1141 move-wide/16 v11219, v1095 move/16 v1054, v25731 move-wide/16 v2195, v28143 move/16 v15612, v16335 move/16 v11166, v21306 move/16 v7970, v6405 move/16 v19844, v7630 move/16 v3946, v23160 move/16 v23265, v32158 move-object/16 v6382, v9249 move/16 v12557, v32238 move-object/16 v7935, v2900 move-wide/16 v25010, v28720 move/16 v4248, v10772 move/16 v20237, v14510 move-wide/16 v20123, v4736 move/16 v25846, v26741 move/16 v19429, v1713 move-object/16 v11928, v28205 move/16 v7393, v8633 move-wide/16 v13029, v20067 move-wide/16 v28351, v31523 move/16 v11240, v28469 move/16 v7930, v6653 move-wide/16 v25104, v25814 move-wide/16 v22908, v12966 move-object/16 v10641, v6654 move/16 v5943, v11064 move-wide/16 v6974, v22688 move/16 v25924, v14040 move-wide/16 v26590, v3274 move-wide/16 v2953, v14783 move-wide/16 v10952, v25104 move-wide/16 v17562, v27869 move/16 v31278, v14804 move/16 v6300, v20836 move/16 v7169, v1713 move/16 v4947, v18289 move/16 v946, v21276 move-wide/16 v6081, v11832 move/16 v32051, v8574 move/16 v14493, v5541 move/16 v152, v23459 move-object/16 v3491, v8699 move-wide/16 v24950, v27794 move-wide/16 v14582, v1971 move-wide/16 v176, v19825 move-object/16 v17437, v2093 move-object/16 v32559, v24503 move-wide/16 v5390, v2953 move-wide/16 v9644, v5774 move/16 v20863, v29736 move-wide/16 v29928, v7177 move-wide/16 v24499, v15617 move-wide/16 v19301, v28590 move/16 v30576, v6096 move/16 v23830, v5600 move-object/16 v19115, v27545 move/16 v9001, v11064 move-wide/16 v2777, v7674 move/16 v12596, v31900 move/16 v29684, v2785 move/16 v7356, v28871 move-wide/16 v19830, v28718 move/16 v22459, v27625 move-wide/16 v9831, v26226 move/16 v16894, v19844 move/16 v10188, v22459 move/16 v1033, v27717 move-object/16 v25651, v5372 move/16 v1481, v152 move-wide/16 v19103, v14065 move/16 v14493, v12965 move/16 v3884, v6405 move/16 v2182, v6517 move/16 v10341, v6653 move/16 v10229, v29249 move/16 v30781, v18722 move-wide/16 v17886, v5248 move-wide/16 v3973, v6010 move-wide/16 v5959, v28351 move/16 v4908, v7819 move/16 v27373, v26502 move/16 v14535, v3884 move/16 v12302, v13865 move-object/16 v3192, v3491 move-object/16 v293, v24925 move/16 v2976, v24824 move-object/16 v14936, v30227 move/16 v29344, v29704 move/16 v22459, v15998 move/16 v19643, v24664 move/16 v6646, v2497 move-object/16 v28648, v23812 move/16 v453, v18486 move/16 v32308, v2147 move-wide/16 v11744, v27584 move/16 v1386, v24432 move/16 v15265, v7819 move-wide/16 v29780, v1095 move-wide/16 v11458, v23436 move/16 v21893, v3651 move-object/16 v10645, v28205 move/16 v16553, v14876 move-wide/16 v32225, v10564 move-wide/16 v24955, v32572 move-object/16 v7113, v17524 move-wide/16 v11788, v24893 move-wide/16 v16739, v31523 move/16 v4077, v31598 move-wide/16 v6427, v24193 move/16 v18786, v18486 move-wide/16 v31900, v28351 move-wide/16 v31071, v17999 move-wide/16 v14659, v27642 move-object/16 v8289, v31286 move-wide/16 v4887, v24193 move/16 v4220, v6690 move/16 v4018, v23618 move-wide/16 v29004, v20792 move/16 v6862, v8264 move-wide/16 v31441, v26105 move/16 v20794, v15998 move/16 v23109, v5541 move-wide/16 v4462, v29024 move-wide/16 v8209, v14871 move/16 v10531, v14040 move/16 v31859, v32333 move/16 v27495, v25118 move-object/16 v26068, v30290 move-wide/16 v22552, v10924 move/16 v28357, v32158 move/16 v30734, v20237 move/16 v20119, v12478 move-object/16 v30057, v32728 move/16 v15122, v5943 move/16 v24031, v5583 move-wide/16 v2071, v26350 move-wide/16 v12715, v32632 move-wide/16 v17169, v15443 move/16 v5086, v4934 move/16 v13906, v5924 move/16 v27161, v5467 move-object/16 v31089, v15170 move-object/16 v11982, v2656 move-object/16 v4540, v11409 move/16 v14339, v16372 move-wide/16 v17749, v2195 move/16 v25542, v5583 move/16 v25831, v25073 move/16 v14749, v23283 move/16 v13281, v31859 move-wide/16 v3705, v28578 move/16 v3413, v20863 move/16 v28578, v4540 move-object/16 v4031, v28148 move-wide/16 v13267, v29004 move/16 v15849, v30594 move/16 v7303, v27101 move-wide/16 v11879, v24499 move-wide/16 v21736, v24038 move-wide/16 v18138, v14562 move-wide/16 v1753, v16739 move/16 v17538, v5086 move/16 v9384, v4077 move-wide/16 v12937, v14562 move/16 v18130, v29526 move/16 v7372, v19429 move/16 v11662, v29287 move/16 v18033, v12557 move-object/16 v26631, v5181 move-wide/16 v240, v16632 move/16 v3585, v10800 move/16 v10531, v32061 move-wide/16 v14434, v7914 move-object/16 v19429, v31089 move/16 v1769, v12032 move-wide/16 v1732, v10716 move-wide/16 v4993, v1109 move/16 v924, v8481 move/16 v23883, v8761 move-wide/16 v12937, v11832 move-object/16 v7450, v19856 move/16 v4258, v7372 move-wide/16 v24669, v23105 move/16 v5600, v8897 move/16 v31807, v16335 move/16 v30779, v2492 move-wide/16 v26669, v7440 move-wide/16 v28609, v19830 move-wide/16 v18041, v4925 move/16 v15849, v6653 move-wide/16 v6741, v19830 move/16 v11928, v12826 move-wide/16 v5193, v32572 move/16 v19312, v6298 move-object/16 v24296, v5181 move/16 v1529, v24327 move-wide/16 v30790, v4290 move/16 v10698, v5086 move/16 v21138, v15265 move-object/16 v29725, v15170 move/16 v14026, v32708 move/16 v7754, v6653 move-wide/16 v22315, v9644 move/16 v14276, v24031 move-object/16 v22611, v836 move/16 v9318, v9194 move/16 v4001, v5086 move-wide/16 v10341, v12937 move/16 v32093, v24422 move/16 v28223, v7534 move/16 v11057, v4668 move/16 v26796, v11057 move-wide/16 v7254, v17396 move/16 v23997, v28332 move-wide/16 v7970, v15544 move-object/16 v7794, v4031 move/16 v22937, v16352 move/16 v11332, v16352 move/16 v18802, v3978 move/16 v10353, v14993 move/16 v4805, v15849 move-wide/16 v18564, v26669 move-object/16 v13340, v27545 move-object/16 v21276, v11166 move-wide/16 v17348, v16380 move/16 v28449, v29187 move/16 v27277, v24788 move-object/16 v19562, v28386 move/16 v9764, v17943 move/16 v29559, v5841 move-object/16 v240, v836 move/16 v22523, v30446 move/16 v17865, v16933 move-wide/16 v5866, v11376 move-wide/16 v4388, v23105 move/16 v9065, v8649 move/16 v1938, v1 move/16 v29276, v24273 move/16 v18226, v959 move/16 v10032, v24422 move-wide/16 v1033, v16055 move/16 v2907, v32093 move-wide/16 v10411, v28811 move/16 v26564, v25808 move-wide/16 v22517, v1415 move-object/16 v6049, v30290 move-object/16 v10012, v7794 move/16 v20985, v14493 move/16 v21538, v30759 move/16 v23754, v23264 move/16 v2009, v26564 move-wide/16 v5952, v24038 move-wide/16 v7990, v31441 move-wide/16 v677, v28351 move/16 v14535, v25846 move-wide/16 v31034, v4290 move-object/16 v19613, v31089 move/16 v29418, v22238 move-object/16 v24357, v10645 move/16 v27130, v15690 move/16 v10045, v20860 move/16 v6100, v15558 move-wide/16 v30838, v31304 move/16 v28386, v14493 move-wide/16 v7205, v14579 move-object/16 v15906, v293 move-object/16 v15298, v30535 move/16 v27869, v23618 move-wide/16 v7002, v18170 move/16 v18972, v6241 move-wide/16 v16947, v16739 move-wide/16 v10676, v11744 move/16 v4875, v9384 move/16 v9336, v23997 move/16 v25857, v5467 move/16 v3946, v18204 move-wide/16 v7626, v8209 move/16 v208, v8264 move/16 v22764, v22776 move/16 v3939, v30772 move/16 v10380, v19115 move/16 v12537, v17217 move-wide/16 v783, v23185 move-wide/16 v3297, v15544 move-object/16 v13263, v4524 move-wide/16 v12113, v18041 move/16 v30728, v1386 move/16 v24726, v7372 move-wide/16 v24499, v32772 move/16 v14013, v12717 move-wide/16 v19690, v24669 move/from16 v132, v18929 move-object/16 v923, v19115 move/16 v27331, v24273 move/16 v26563, v11916 move-object/16 v19735, v117 move-wide/16 v150, v28590 move/16 v15375, v28060 move/16 v27376, v15375 move/16 v28713, v32774 move-object/16 v19262, v15170 move/16 v18348, v20860 move/16 v19048, v1529 move/16 v7819, v28223 move/16 v3974, v29187 move-wide/16 v21702, v17169 move/16 v16891, v30734 move-wide/16 v27352, v18170 move/16 v21806, v23160 move-wide/16 v12855, v14582 move-object/16 v14396, v27464 move/16 v19891, v15761 move-wide/16 v1621, v8054 move/16 v19136, v4248 move/16 v6415, v1983 move/16 v17095, v1481 move-wide/16 v8149, v10370 move-object/16 v28143, v16169 move/16 v23066, v16553 move-wide/16 v27545, v27642 move/16 v17401, v23880 move/16 v6115, v17217 move-wide/16 v3840, v2104 move-wide/16 v5354, v26233 move-wide/16 v16877, v23600 move/16 v31029, v32771 move/16 v28129, v16891 move-object/16 v16430, v32547 move/16 v26330, v3651 move/16 v1735, v31696 move/16 v31789, v30056 move-wide/16 v5732, v16403 move-object/16 v21542, v22773 move-object/16 v24919, v30290 move/16 v3418, v27717 move/16 v7022, v32627 move-wide/16 v28734, v24193 move-object/16 v488, v3175 move-object/16 v23252, v14396 move/16 v18587, v15849 move-object/16 v6690, v14328 move/16 v12474, v5629 move-wide/16 v10151, v14391 move-wide/16 v15451, v7073 move-wide/16 v9403, v20067 move-object/16 v727, v26741 move/16 v13944, v1106 move/16 v26973, v22392 move-object/16 v19600, v2656 move-object/16 v25282, v4947 move/16 v19639, v21573 move-object/16 v2515, v16430 move-wide/16 v21670, v2104 move/16 v9033, v5981 move/16 v15170, v21573 move/16 v27640, v6382 move-wide/16 v22392, v1095 move/16 v27344, v17971 move-object/16 v3296, v6049 move/16 v10012, v7169 move/16 v3475, v15998 move-wide/16 v5732, v15451 move/16 v5808, v13263 move-object/16 v18267, v11166 move/16 v7838, v32428 move-wide/16 v14625, v8054 move-wide/16 v10645, v6427 move-object/16 v21563, v25135 move-wide/16 v24091, v20531 move-wide/16 v453, v6087 move/16 v28909, v6577 move/16 v4970, v18378 move/16 v25819, v3679 move/16 v20711, v21677 move/16 v26003, v20711 move-wide/16 v3064, v14582 move/16 v5282, v29433 move/16 v11711, v19048 move/16 v6790, v25831 move-wide/16 v10941, v11879 move-wide/16 v14685, v18564 move-wide/16 v23862, v11355 move-object/16 v31334, v23883 move/16 v19060, v17659 move/16 v14633, v19541 move/16 v10041, v24432 move-wide/16 v28275, v18041 move-wide/16 v21755, v2285 move/16 v8216, v7450 move/16 v16751, v26631 move/16 v30515, v26563 move-object/16 v6584, v29725 move-wide/16 v3303, v2104 move-wide/16 v6669, v15166 move-object/16 v29565, v28143 move-object/16 v23441, v21542 move-wide/16 v4855, v13267 move-object/16 v12230, v9249 move-wide/16 v774, v25010 move-object/16 v14337, v2900 move-wide/16 v11710, v28590 move-wide/16 v26047, v26273 move/16 v31872, v18374 move-object/16 v15925, v26898 move-wide/16 v11861, v25340 move-wide/16 v9477, v13029 move/16 v3875, v924 move-wide/16 v29992, v1109 move-wide/16 v8483, v2104 move-wide/16 v17211, v17886 move-wide/16 v28357, v24038 move-wide/16 v28767, v13775 move-wide/16 v3869, v17886 move-object/16 v17943, v924 move/16 v19559, v11517 move/16 v14177, v10648 move/16 v18843, v20794 move-wide/16 v29288, v27382 move/16 v9104, v2894 move-wide/16 v21989, v11879 move-wide/16 v4875, v31071 move-wide/16 v29400, v18387 move-object/16 v21577, v19562 move-object/16 v29511, v6584 move/16 v20202, v22078 move/16 v19004, v30905 move-wide/16 v16748, v29024 move/16 v19828, v26330 move/16 v6470, v18348 move-wide/16 v32730, v14579 move/16 v6245, v27869 move/16 v10839, v26829 move-object/16 v4804, v24357 move/16 v6979, v12478 move-wide/16 v6374, v29400 move/16 v19226, v11197 move-object/16 v28129, v3672 move-wide/16 v29324, v15685 move-object/16 v24643, v10641 move/16 v14650, v25470 move-wide/16 v12395, v11355 move/16 v501, v5943 move-object/16 v16552, v17215 move-wide/16 v15951, v1033 move/16 v10221, v12302 move-wide/16 v23975, v14685 move-object/16 v18036, v26161 move/16 v15476, v2247 move/16 v9271, v4453 move/16 v13728, v22937 move-object/16 v5575, v26631 move/16 v29172, v28469 move/16 v21866, v14876 move-wide/16 v597, v21454 move-wide/16 v27892, v11788 move-wide/16 v22523, v2 move-wide/16 v20931, v22392 move-object/16 v15139, v28129 move/16 v21935, v18267 move/16 v27228, v21806 move-wide/16 v27735, v27382 move-wide/16 v6879, v10370 move/16 v2515, v29344 move/16 v27723, v6096 move/16 v12042, v21866 move/16 v20992, v3940 move-object/16 v18564, v872 move/16 v28882, v7629 move-wide/16 v14877, v14579 move-wide/16 v6123, v7143 move/16 v23082, v32028 move/16 v3145, v14040 move/16 v28723, v2147 move/16 v10165, v23082 move-object/16 v18630, v14936 move/16 v23713, v24664 move-object/16 v30639, v28548 move-wide/16 v14477, v31304 move-wide/16 v523, v2071 move-wide/16 v12501, v28590 move/16 v17048, v32627 move-object/16 v852, v27410 move-object/16 v138, v19115 move-wide/16 v19550, v19585 move/16 v10476, v6517 move-wide/16 v4327, v1084 move/16 v19974, v16891 move/16 v19102, v12478 move/16 v6255, v24432 move/16 v25135, v21580 move-object/16 v11384, v10641 move-wide/16 v1716, v6123 move-wide/16 v18999, v2993 move/16 v10894, v3939 move-wide/16 v4429, v29163 move/16 v12745, v19891 move/16 v16196, v20985 move-object/16 v8685, v17599 move/16 v6277, v24031 move/16 v19559, v2515 move/16 v30356, v27625 move/16 v4253, v18972 move/16 v24912, v10041 move-object/16 v12554, v5635 move/16 v22168, v19048 move/16 v32768, v14013 move/16 v8158, v3651 move-wide/16 v25746, v14783 move-wide/16 v28922, v23105 move/16 v26024, v7838 move/16 v19989, v12826 move/16 v25880, v10531 move/16 v6298, v30759 move-wide/16 v26003, v16947 move-wide/16 v4603, v17999 move-wide/16 v30298, v23688 move/16 v9582, v7372 move-wide/16 v8224, v2071 move-wide/16 v29762, v20420 move/16 v19541, v19998 move/16 v23511, v11928 move/16 v19825, v29418 move/16 v4859, v20202 move/16 v10265, v10045 move-object/16 v16941, v28548 move-object/16 v15378, v17876 move/16 v26024, v7118 move/16 v7956, v18587 move-wide/16 v6305, v7443 move/16 v29254, v9271 move-wide/16 v5706, v20644 move/16 v16360, v6690 move-wide/16 v30981, v28922 move-wide/16 v12184, v6974 move/16 v16909, v20863 move-wide/16 v6065, v5390 move/16 v9751, v20596 move/16 v5137, v18722 move-object/16 v20838, v23992 move/16 v23651, v25957 move/16 v15685, v8633 move-wide/16 v2800, v1084 move/16 v19237, v19825 move-object/16 v14024, v32559 move-wide/16 v4319, v21454 move/16 v14806, v24380 move/16 v32625, v4668 move-object/16 v17524, v32051 move/16 v18642, v3672 move-wide/16 v5583, v19496 move/16 v4906, v29526 move-wide/16 v11935, v29992 move/16 v4031, v30779 move-object/16 v4479, v25282 move/16 v1694, v18802 move-object/16 v12611, v7113 move-wide/16 v19914, v4993 move/16 v22731, v2913 move-object/16 v20253, v3175 move-wide/16 v7000, v4462 move-wide/16 v8415, v2071 move/16 v26161, v3145 move/16 v18641, v3940 move-wide/16 v14616, v2777 move-wide/16 v27584, v16340 move/16 v15085, v21677 move/16 v20482, v6300 move-wide/16 v4036, v16739 move-wide/16 v12826, v453 move/16 v6257, v1184 move-wide/16 v18610, v14659 move/16 v21289, v11200 move-wide/16 v30752, v6065 move-wide/16 v13483, v26105 move-object/16 v10688, v19562 move/16 v29163, v9764 move-object/16 v15584, v28205 move-object/16 v6961, v19262 move/16 v9032, v30734 move/16 v5331, v16429 move-wide/16 v25251, v16403 move-object/16 v30406, v22773 move/16 v1811, v18986 move/16 v5473, v11662 move-wide/16 v2001, v5866 move-wide/16 v16192, v14065 move/16 v28825, v3475 move-wide/16 v29811, v2195 move/16 v4487, v25808 move-wide/16 v31553, v26226 move/16 v19899, v27471 move-wide/16 v6826, v22688 move-wide/16 v31885, v15617 move/16 v1025, v10737 move/16 v1529, v25857 move-object/16 v23105, v7976 move/16 v29368, v32238 move-wide/16 v7818, v14625 move-wide/16 v2697, v12826 move-object/16 v19065, v24643 move/16 v12506, v18986 move-wide/16 v20985, v21702 move/16 v20660, v10772 move-object/16 v18417, v24787 move-object/16 v11879, v4479 move-object/16 v20691, v5808 move-wide/16 v27838, v19914 move/16 v15960, v16429 move/16 v32196, v15265 move-wide/16 v28982, v4429 move-wide/16 v20505, v9477 move/16 v24100, v152 move/16 v30728, v23698 move-wide/16 v19652, v5517 move/16 v17505, v10648 move-wide/16 v24166, v21702 move-object/16 v2431, v8685 move-wide/16 v3651, v29004 move/16 v1386, v2656 move-wide/16 v27211, v2953 move/16 v14413, v29249 move-wide/16 v22785, v15166 move/16 v31900, v5635 move/16 v1523, v11875 move-wide/16 v25572, v19652 move/16 v553, v29003 move-object/16 v26794, v21563 move/16 v26885, v7629 move/16 v21342, v29054 move/16 v16611, v3585 move/16 v21135, v19856 move/16 v12190, v13381 move/16 v18388, v11332 move/16 v21984, v32363 move-object/16 v28825, v19613 move/16 v7744, v29287 move/16 v26899, v15925 move-wide/16 v28285, v11935 move/16 v4290, v29172 move/16 v5374, v553 move-object/16 v22238, v11384 move/16 v10551, v4258 move-wide/16 v26436, v16055 move-wide/16 v31155, v15443 move-object/16 v4255, v8574 move/16 v11788, v29526 move/16 v21369, v4548 move/16 v16579, v6470 move/16 v27708, v24912 move-wide/16 v27907, v26047 move-object/16 v6315, v11982 move-object/16 v25838, v30057 move-wide/16 v1386, v3064 move/16 v13527, v27228 move-wide/16 v4388, v30298 move-wide/16 v6974, v31441 move/16 v13158, v16909 move-wide/16 v26794, v14562 move/16 v22082, v16553 move-wide/16 v21559, v16639 move/16 v6896, v9336 move-object/16 v4197, v27366 move-wide/16 v10157, v17348 move-wide/16 v10732, v26105 move-wide/16 v26471, v16380 move-wide/16 v25696, v20386 move/16 v9735, v19559 move-wide/16 v21398, v476 move-wide/16 v7062, v22523 move/16 v12028, v13527 move-object/16 v19064, v13015 move/16 v12249, v6096 move/16 v18928, v3946 move-wide/16 v28187, v31523 move/16 v20007, v1713 move/16 v20418, v28049 move-object/16 v1922, v24357 move/16 v19735, v10551 move/16 v1579, v29344 move-object/16 v27322, v19613 move-wide/16 v8388, v8000 move-wide/16 v6498, v16769 move/16 v6442, v23066 move-wide/16 v10272, v29347 move/16 v19861, v31981 move-wide/16 v17749, v29992 move-wide/16 v4915, v6879 move-wide/16 v671, v4651 move-object/16 v8329, v24296 move-wide/16 v14609, v22738 move/16 v1490, v30611 move-wide/16 v16366, v6427 move/16 v25007, v28713 move-object/16 v27983, v3175 move-object/16 v4150, v7450 move-wide/16 v4495, v20420 move-wide/16 v24486, v10157 move-object/16 v14401, v10439 move/16 v18968, v22293 move-object/16 v22158, v8289 move/from16 v252, v5374 move/16 v6406, v15612 move-object/16 v29627, v4524 move-wide/16 v4557, v2285 move-wide/16 v19161, v29762 move/16 v15375, v20794 move/16 v15558, v6442 move-wide/16 v22761, v27735 move/16 v7754, v23698 move/16 v8879, v959 move/16 v17029, v1529 move/16 v32179, v14862 move/16 v21563, v6646 move/16 v24718, v13476 move/16 v23660, v7428 move/16 v16932, v23874 move-wide/16 v12221, v453 move-object/16 v6675, v8685 move/16 v13381, v20691 move/16 v16691, v18928 move/16 v19296, v28713 move-object/16 v29117, v23992 move/16 v19058, v18289 move-wide/16 v17864, v5952 move-wide/16 v13677, v15451 move-wide/16 v18294, v3064 move/16 v25828, v16335 move/16 v23653, v132 move-wide/16 v26841, v16366 move-wide/16 v20224, v20034 move-wide/16 v14339, v6081 move-object/16 v29870, v7319 move-object/16 v4934, v16941 move-wide/16 v6581, v4736 move/16 v7499, v30772 move-wide/16 v27787, v7440 move/16 v26113, v32238 move-wide/16 v7385, v7990 move/16 v29803, v31240 move/16 v11445, v14413 move-wide/16 v10525, v28590 move/16 v29649, v21981 move/16 v9104, v14650 move-wide/16 v27479, v20931 move/16 v19858, v26885 move-object/16 v4540, v6748 move/16 v7974, v10353 move/16 v29059, v21573 move/16 v4432, v20794 move-object/16 v17991, v19600 move-wide/16 v23026, v20644 move/16 v6738, v15476 move/16 v31096, v18734 move/16 v5104, v23812 move/16 v22101, v20103 move/16 v22776, v21893 move/16 v14519, v31789 move-object/16 v26096, v22611 move-wide/16 v29482, v9403 move/16 v19165, v10551 move-object/16 v8000, v352 move-object/16 v8818, v14024 move/16 v30666, v30446 move-wide/16 v32772, v2777 move-object/16 v22256, v30406 move-object/16 v21464, v22611 move-wide/16 v6347, v27479 move-object/16 v10486, v23252 move/16 v487, v25135 move-wide/16 v5279, v2195 move/16 v5650, v22168 move/16 v7641, v20711 move-object/16 v3145, v10032 move/16 v8526, v15085 move-wide/16 v15925, v11211 move/16 v32768, v18786 move-object/16 v523, v19115 move/16 v6218, v4487 move-wide/16 v22422, v20224 move/16 v29054, v16092 move-wide/16 v9644, v11376 move-wide/16 v1676, v23600 move-object/16 v6879, v26829 move/16 v28911, v19115 move-wide/16 v7122, v24669 move/16 v31194, v21138 move-wide/16 v29937, v10924 move-object/16 v1600, v924 move-wide/16 v24703, v21398 move-object/16 v6277, v19262 move-object/16 v28748, v8818 move-object/16 v3890, v8289 move/16 v15834, v2497 move/16 v10732, v13944 move-object/16 v30105, v32767 move/16 v677, v32428 move-wide/16 v16026, v18610 move-object/16 v31499, v30105 move-wide/16 v26371, v12395 move/16 v21182, v31807 move-wide/16 v27331, v30981 move-object/16 v10958, v16169 move-wide/16 v11556, v21670 move/16 v23562, v18130 move-object/16 v12461, v3548 move-wide/16 v31564, v22738 move-wide/16 v12689, v9831 move/16 v7620, v8918 move-object/16 v17528, v22101 move/16 v29627, v29704 move/16 v19365, v4432 move-object/16 v3735, v31900 move/16 v26795, v28882 move/16 v14245, v14161 move-object/16 v21850, v21848 move-wide/16 v32260, v27787 move/16 v21538, v24031 move/16 v26003, v25063 move-wide/16 v3856, v26669 move-wide/16 v24846, v7818 move/16 v7285, v10041 move/16 v12282, v11879 move/16 v11269, v21563 move/16 v24011, v25135 move-wide/16 v2907, v13029 move-wide/16 v31071, v23839 move/16 v9360, v17505 move/16 v22872, v29254 move-wide/16 v3296, v19652 move-wide/16 v20712, v11458 move-wide/16 v13279, v2195 move-wide/16 v12824, v4388 move/16 v4889, v4815 move-wide/16 v2278, v2132 move-wide/16 v8460, v20123 move-wide/16 v339, v24193 move-object/16 v2495, v924 move/16 v4253, v15265 move-object/16 v3559, v28129 move/16 v24905, v16553 move-wide/16 v17369, v4036 move-wide/16 v10385, v23688 move-object/16 v19643, v31499 move-wide/16 v691, v5774 move/16 v7449, v6382 move/16 v30742, v22764 move-object/16 v2060, v4524 move/16 v6714, v6298 move-wide/16 v8353, v9831 move/16 v31597, v29684 move/16 v14062, v21369 move-wide/16 v5959, v26226 move-wide/16 v4819, v14537 move/16 v28075, v8158 move-wide/16 v26050, v21559 move-wide/16 v32074, v27735 move-wide/16 v22780, v15201 move-object/16 v899, v15584 move-wide/16 v2711, v12501 move/16 v1222, v27671 move-wide/16 v27697, v8460 move/16 v7285, v4970 move/16 v11933, v2009 move/16 v17506, v31566 move-wide/16 v14853, v14625 move-wide/16 v3940, v10564 move/16 v28430, v14026 move-wide/16 v14957, v18170 move/16 v26093, v3974 move-wide/16 v31185, v23862 move/16 v10081, v18642 move/16 v22611, v22082 move-wide/16 v8533, v19301 move-wide/16 v20644, v29400 move/16 v16968, v9735 move-wide/16 v4307, v4462 move-wide/16 v27997, v20644 move/16 v18118, v21563 move-wide/16 v17956, v19830 move/16 v13808, v28060 move-wide/16 v12004, v28982 move/16 v26259, v10772 move-wide/16 v27065, v150 move-object/16 v4548, v31089 move-object/16 v6039, v7794 move-wide/16 v2896, v4887 move/16 v3559, v12302 move/16 v11770, v30594 move-object/16 v23781, v32093 move/16 v32275, v19899 move-wide/16 v4561, v15544 move/16 v12001, v7838 move-wide/16 v23337, v22517 move/16 v14213, v11445 move/16 v9623, v29054 move/16 v756, v10737 move/16 v2136, v4839 move-object/16 v20794, v11409 move/16 v17802, v5650 move-wide/16 v10841, v3064 move-wide/16 v19193, v3840 move/16 v1198, v23264 move/16 v27458, v21344 move-wide/16 v31660, v10525 move-wide/16 v11079, v6669 move-object/16 v28999, v14401 move-wide/16 v31334, v13279 move-wide/16 v20460, v28285 move-wide/16 v21580, v9644 move/16 v23309, v14245 move/16 v29762, v21677 move-object/16 v21270, v4540 move/16 v31887, v1523 move/16 v31336, v6790 move/16 v25367, v3725 move-wide/16 v32760, v12826 move-object/16 v23578, v26844 move/16 v17747, v29649 move/16 v29765, v3672 move/16 v17217, v6517 move-wide/16 v7301, v28187 move-object/16 v22177, v5575 move-wide/16 v2071, v22785 move-wide/16 v5376, v7990 move-wide/16 v26549, v17396 move-wide/16 v24327, v6123 move-wide/16 v23968, v27697 move/16 v3012, v4839 move/16 v23559, v26564 move-wide/16 v5840, v28609 move/16 v7630, v2479 move-object/16 v12506, v28825 move/16 v19102, v27458 move-wide/16 v1368, v339 move/16 v30270, v2147 move-object/16 v10822, v23252 move/16 v6714, v30728 move-wide/16 v5863, v6179 move/16 v30945, v30759 move/16 v19961, v16891 move/16 v18462, v2492 move/16 v25703, v21369 move-wide/16 v15805, v6741 move/16 v10320, v7372 move/16 v31062, v14749 move/16 v16788, v30666 move-wide/16 v16908, v12395 move/16 v3019, v2497 move-wide/16 v2811, v19161 move-wide/16 v16901, v1415 move-wide/16 v17896, v8224 move-wide/16 v25913, v3856 move/16 v1102, v11200 move-wide/16 v10621, v27584 move-wide/16 v28317, v2896 move/16 v29153, v7838 move/16 v30874, v10041 move-object/16 v31337, v32117 move-object/16 v14177, v18641 move/16 v10389, v32092 move/16 v1638, v10353 move/16 v16055, v12971 move-wide/16 v10990, v29400 move/16 v28457, v19861 move-wide/16 v26472, v16748 move-wide/16 v872, v14625 move/16 v31807, v2182 move-object/16 v3308, v10822 move/16 v4307, v6241 move/16 v5174, v20691 move-wide/16 v10743, v14685 move-wide/16 v10219, v20505 move-object/16 v19856, v19065 move/16 v27654, v1811 move/16 v11636, v14467 move/16 v30694, v1198 move/16 v6814, v5981 move/16 v18168, v23830 move/16 v9318, v25063 move/16 v24383, v6896 move-wide/16 v24977, v15201 move-object/16 v10684, v21577 move-object/16 v31618, v30227 move-object/16 v9751, v240 move/16 v17710, v20482 move-wide/16 v20860, v6347 move-wide/16 v23225, v12689 move/16 v8057, v8649 move/16 v9806, v6096 move/16 v8777, v19861 move-object/16 v9806, v30227 move-wide/16 v10157, v27331 move/16 v28181, v23651 move-wide/16 v5433, v14579 move-wide/16 v14815, v23600 move-wide/16 v7483, v10645 move/16 v14387, v23830 move-wide/16 v5583, v150 move/16 v4568, v14633 move/16 v10012, v10265 move-object/16 v30765, v3548 move/16 v13340, v20711 move/16 v11928, v11879 move-object/16 v25470, v23105 move/16 v12222, v28882 move/16 v16649, v6405 move/16 v15593, v2785 move/16 v15523, v24912 move/16 v26474, v18033 move-wide/16 v21344, v25814 move-wide/16 v31419, v20034 move-object/16 v26516, v26898 move/16 v3357, v29287 move-object/16 v4934, v8289 move/16 v29565, v487 move/16 v21819, v32179 move/16 v8508, v6115 move/16 v31691, v7372 move/16 v3157, v5137 move-wide/16 v18342, v6498 move/16 v28401, v4487 move/16 v19989, v31400 move-wide/16 v28260, v32760 move-wide/16 v7022, v18342 move/16 v12142, v16552 move-object/16 v26879, v25470 move/16 v3783, v6470 move/16 v14783, v4970 move/16 v924, v11269 move/16 v26373, v30772 move/16 v15179, v11269 move-wide/16 v30022, v339 move-wide/16 v19917, v12826 move/16 v2896, v14013 move-wide/16 v13593, v17562 move/16 v13569, v27495 move-object/16 v18610, v29117 move-wide/16 v18481, v27382 move-wide/16 v31807, v31439 move-wide/16 v23124, v18342 move/16 v15787, v30270 move/16 v3684, v6255 move-object/16 v20153, v852 move/16 v21258, v9271 move/16 v22445, v29704 move-wide/16 v14024, v26436 move/16 v20237, v9623 move/16 v14177, v18843 move-wide/16 v4603, v4036 move/16 v29360, v32179 move/16 v16295, v10320 move/16 v9353, v6026 move/16 v1694, v10221 move/16 v15659, v9764 move/16 v12252, v19312 move/16 v501, v26093 move-wide/16 v15446, v20034 move/16 v22136, v727 move-wide/16 v13238, v24327 move-wide/16 v2593, v3856 move-wide/16 v14001, v6741 move/16 v8280, v4453 move/16 v1960, v20253 move/16 v31004, v26003 move-wide/16 v5616, v24669 move/16 v23686, v4018 move/16 v28664, v28999 move-object/16 v10110, v30105 move/16 v27903, v2182 move/16 v20038, v6241 move-wide/16 v32627, v2811 move/16 v32232, v6241 move-wide/16 v4197, v5732 move-wide/16 v11521, v28982 move/16 v4487, v6241 move-object/16 v28664, v3145 move-object/16 v4750, v23992 move-wide/16 v21669, v26105 move/16 v24916, v29565 move-wide/16 v21119, v2278 move-wide/16 v20822, v7970 move/16 v26068, v11662 move/16 v27356, v20660 move-wide/16 v14749, v4915 move-wide/16 v6850, v11458 move/16 v29146, v117 move/16 v26857, v26795 move-wide/16 v17780, v29004 move/16 v31159, v10800 move/16 v1600, v26973 move/16 v23226, v1198 move/16 v8037, v15391 move-wide/16 v12013, v4887 move-wide/16 v795, v4388 move-object/16 v24128, v8761 move-object/16 v23265, v10486 move/16 v3087, v12164 move/16 v17798, v18033 move-wide/16 v20007, v26350 move/16 v11671, v15761 move/16 v16780, v18587 move-wide/16 v9514, v32760 move-wide/16 v31004, v4603 move/16 v6790, v25135 move-object/16 v12222, v16169 move-wide/16 v3418, v10370 move-wide/16 v24372, v7177 move/16 v4194, v24664 move-object/16 v6049, v29131 move/16 v12910, v17401 move/16 v23975, v21106 move/16 v12383, v1481 move-object/16 v445, v352 move/16 v20860, v29559 move-wide/16 v24846, v23436 move-object/16 v28010, v14761 move-object/16 v2620, v32767 move-wide/16 v7898, v6010 move/16 v29961, v13944 move-object/16 v10116, v15378 move-object/16 v516, v32253 move-object/16 v25916, v8872 move/16 v15670, v4258 move-wide/16 v31742, v2001 move/16 v757, v7056 move/16 v1306, v2479 move/16 v5829, v12554 move/16 v20158, v14213 move-wide/16 v32117, v5354 move-wide/16 v26330, v31660 move/16 v20218, v19559 move-object/16 v17169, v17943 move-wide/16 v15022, v7143 move-wide/16 v1688, v9831 move-wide/16 v16026, v31564 move/16 v888, v13569 move-wide/16 v14535, v5863 move-object/16 v31954, v17943 move-wide/16 v2262, v21989 move-object/16 v3192, v23992 move/16 v23678, v25880 move-wide/16 v31869, v24846 move/16 v240, v3974 move-wide/16 v15568, v2071 move/16 v31202, v2060 move/16 v5706, v16894 move-wide/16 v8516, v20931 move-wide/16 v14783, v8388 move/16 v19496, v32051 move-wide/16 v18972, v20505 move-wide/16 v14005, v28720 move/16 v15292, v18374 move-object/16 v28466, v445 move/16 v271, v1735 move/16 v24926, v30594 move/16 v26899, v2136 move/16 v13593, v26885 move/16 v10924, v5541 move-wide/16 v32186, v14685 move/16 v6471, v16933 move/16 v31034, v29163 move/16 v9872, v14862 move/16 v23596, v16553 move-object/16 v12754, v19643 move/16 v6661, v30594 move/16 v27360, v15476 move-object/16 v10580, v2656 move/16 v25632, v9032 move/16 v31731, v2182 move/16 v30298, v28223 move-wide/16 v2172, v2278 move-wide/16 v7483, v28734 move/16 v8774, v25542 move/16 v32428, v27373 move-object/16 v29017, v19562 move/16 v10391, v26093 move/16 v28597, v26003 move/16 v16157, v1029 move/16 v23592, v13728 move/16 v30311, v4248 move-wide/16 v1605, v5390 move/16 v28070, v553 move/16 v18130, v12164 move-wide/16 v14949, v3291 move/16 v26315, v23678 move-wide/16 v15366, v31185 move/16 v13164, v19844 move/16 v16038, v9764 move-object/16 v22828, v27410 move/16 v12518, v26093 move/16 v26342, v2785 move-wide/16 v10403, v1084 move-wide/16 v3725, v5193 move/16 v22574, v1306 move/16 v26885, v32308 move/16 v27014, v29287 move/16 v23558, v20119 move/16 v13238, v14519 move/16 v4925, v12965 move-object/16 v12274, v19562 move/16 v11710, v19974 move/16 v16941, v16649 move-wide/16 v1067, v16739 move-wide/16 v5962, v27787 move-wide/16 v27952, v27997 move-object/16 v29615, v6315 move/16 v31523, v17659 move/16 v29186, v677 move/16 v14783, v23283 move-object/16 v18294, v6039 move-wide/16 v23207, v24420 move-wide/16 v20764, v26715 move-wide/16 v10743, v2593 move-object/16 v29288, v22256 move-wide/16 v30714, v21454 move/16 v22562, v13527 move/16 v8158, v14013 move-wide/16 v28267, v25340 move-wide/16 v1105, v6374 move/16 v20711, v28909 move/16 v8209, v23686 move-object/16 v12055, v18172 move/16 v9865, v23592 move/16 v11198, v15292 move-wide/16 v23303, v9477 move-object/16 v6065, v19613 move-wide/16 v12458, v27907 move/16 v15170, v3087 move/16 v22505, v22082 move/16 v15912, v8280 move/16 v16277, v3559 move-wide/16 v11438, v31071 move/16 v18419, v27360 move/16 v32164, v29627 move-wide/16 v21367, v5866 move-object/16 v10842, v19856 move-object/16 v21552, v9265 move/16 v13326, v27101 move-object/16 v30783, v15584 move-wide/16 v31723, v18138 move-object/16 v14626, v9001 move-object/16 v2407, v30227 move-wide/from16 v56, v1415 move/16 v20584, v1811 move-object/16 v9106, v3735 move-wide/16 v15998, v3430 move/16 v8937, v9027 move-wide/16 v20270, v27952 move-object/16 v24054, v3890 move-wide/16 v23545, v4036 move-object/16 v5583, v6879 move-wide/16 v7838, v21736 move/16 v12759, v25282 move/16 v19876, v22611 move-wide/16 v14013, v28187 move/16 v4258, v17798 move-object/16 v15912, v23883 move-object/16 v4036, v20153 move/16 v4369, v15787 move-wide/16 v8526, v19917 move/16 v30250, v23713 move-wide/16 v12801, v15451 move/16 v25282, v3532 move/16 v52, v26003 move/16 v3138, v18587 move/16 v13099, v22574 move/16 v15125, v9582 move-object/16 v32048, v18036 move/16 v19026, v18587 move/16 v7974, v15670 move-wide/16 v25073, v7177 move/16 v24031, v2182 move/16 v29762, v2900 move-wide/16 v5114, v7022 move-wide/16 v16291, v6087 move/16 v24483, v11879 move-wide/16 v3643, v1109 move-wide/16 v2695, v31885 move-wide/16 v4132, v382 move-wide/16 v24939, v22688 move-object/16 v24291, v852 move/16 v5593, v4487 move/16 v29279, v23558 move-wide/16 v1950, v29324 move/16 v26350, v30576 move/16 v3946, v15761 move/16 v11141, v12745 move-object/16 v6105, v19064 move/16 v19405, v1029 move/16 v3444, v10732 move/16 v28734, v16891 move-object/16 v24503, v28548 move/from16 v33, v18168 move-wide/16 v31910, v12826 move/16 v1847, v28449 move-wide/16 v28871, v6326 move-object/16 v24195, v29131 move-object/16 v31475, v31463 move/16 v8045, v9104 move/16 v5588, v26704 move-wide/16 v0, v23600 move/16 v4031, v23678 move-object/16 v17802, v21464 move-object/16 v11006, v12506 move/16 v25686, v3532 move/16 v28971, v15476 move/16 v15903, v31691 move-wide/16 v19411, v21580 move-wide/16 v26899, v2811 move-object/16 v18617, v8685 move-wide/16 v27807, v23600 move/16 v24703, v23472 move-object/16 v7898, v5181 move/16 v5261, v28457 move-object/16 v27026, v523 move-wide/16 v7628, v2711 move/16 v20181, v10012 move-wide/16 v27066, v22688 move-wide/16 v24842, v17132 move-wide/16 v8475, v20420 move/16 v9685, v19998 move-wide/16 v23495, v28609 move-wide/16 v18145, v6179 move-wide/16 v13728, v15446 move/16 v30466, v8057 move/16 v8642, v6300 move/16 v21440, v28971 move/16 v1342, v19639 move-object/from16 v158, v24925 move/16 v32375, v4906 move-wide/16 v31441, v16340 move-object/16 v19419, v852 move-wide/16 v32155, v24669 move-wide/16 v9385, v10525 move-wide/16 v6852, v26273 move-wide/16 v4943, v3064 move/16 v19884, v15659 move/16 v29209, v20158 move-wide/16 v22299, v2993 move/16 v28769, v14519 move/16 v29244, v22078 move/16 v32186, v208 move-wide/16 v11775, v28642 move-wide/16 v5706, v31439 move/16 v4037, v6661 move-wide/16 v15346, v24407 move/16 v18158, v1141 move/16 v11141, v28401 move-wide/16 v29725, v3643 move-wide/16 v30772, v27807 move/16 v27092, v10698 move-wide/16 v32377, v9197 move/16 v26050, v12596 move-object/16 v27378, v6489 move-object/16 v6248, v12274 move/16 v28049, v22445 move-wide/16 v19044, v13029 move-wide/16 v31815, v25696 move/16 v16461, v24380 move-wide/16 v20253, v7990 move-wide/16 v4573, v24846 move-wide/16 v10486, v8353 move/16 v30300, v31336 move/16 v2744, v5650 move-wide/16 v5042, v10151 move-wide/16 v9132, v28187 move-wide/16 v8256, v12689 move/16 v9213, v2009 move/16 v12670, v13808 move-wide/16 v19904, v1716 move/16 v3643, v29684 move/16 v25499, v28469 move-object/16 v11103, v6049 move-object/16 v18722, v18641 move/16 v17839, v6714 move/16 v21138, v29172 move-wide/16 v8186, v2278 move-wide/16 v27635, v28590 move/16 v4847, v18226 move-wide/16 v19366, v14001 move/16 v31807, v9336 move-object/16 v31191, v16651 move-wide/16 v1877, v24955 move-object/16 v24380, v15584 move-wide/16 v11746, v28960 move-wide/16 v5559, v31660 move/16 v4208, v7356 move/16 v1713, v25007 move/16 v5259, v22731 move/16 v27479, v12910 move-object/16 v21491, v23265 move/16 v20547, v15375 move-wide/16 v14421, v22552 move/16 v30694, v11933 move-wide/16 v15751, v32117 move/16 v17762, v4369 move-object/16 v27742, v9249 move-object/16 v4541, v31337 move/16 v4993, v26259 move-wide/16 v24247, v1621 move/16 v4909, v10737 move/16 v22523, v32028 move-object/16 v13091, v20838 move-wide/16 v12969, v20931 move/16 v4029, v15179 move/16 v15849, v18348 move-wide/16 v29464, v22552 move-wide/16 v20308, v28590 move-wide/16 v7304, v7970 move/16 v32559, v8699 move/16 v26879, v1735 move-wide/16 v26923, v16639 move-wide/16 v23552, v6498 move-wide/16 v16788, v14891 move-wide/16 v19064, v56 move-object/16 v19652, v17215 move/16 v432, v29961 move-wide/16 v3820, v23968 move/16 v13177, v32428 move/16 v29541, v5467 move-wide/16 v28122, v31439 move-wide/16 v20657, v29937 move-wide/16 v10714, v8483 move-wide/16 v26564, v12824 move-wide/16 v19319, v27545 move/16 v2809, v27471 move-wide/16 v12478, v3303 move-object/16 v21868, v11103 move-wide/16 v10924, v11079 move/16 v5433, v5261 move/16 v2873, v14650 move-wide/16 v19891, v7205 move-wide/16 v3019, v17896 move/16 v208, v25063 move/16 v28073, v20158 move-wide/16 v28640, v5248 move-wide/16 v27917, v16192 move-wide/16 v23309, v1084 move/16 v22526, v11517 move/16 v13892, v31872 move-object/16 v9552, v7794 move-object/16 v27952, v8872 move/16 v8602, v3444 move/16 v22662, v4839 move-wide/16 v19370, v7143 move/from16 v2, v18928 move-object/16 v12184, v21577 move/16 v26508, v32193 move-object/16 v24018, v18630 move/16 v7483, v6577 move/16 v27735, v27869 move/16 v25117, v2009 move-wide/16 v15981, v14391 move/16 v14763, v9033 move-wide/16 v28442, v20123 move-wide/16 v17107, v11355 move/16 v14871, v18418 move/16 v16170, v21258 move/16 v24232, v19126 move/16 v13980, v4290 move/16 v24714, v20860 move-wide/16 v26270, v14339 move/16 v5391, v16751 move-wide/16 v23686, v20253 move-wide/16 v26279, v25340 move-object/16 v21681, v27983 move-object/16 v17911, v10032 move/16 v23052, v11166 move/16 v19891, v21182 move-wide/16 v29433, v13267 move/16 v7187, v8214 move/16 v7825, v8817 move-wide/16 v27211, v8224 move/16 v14761, v12557 move/16 v14113, v3684 move-wide/16 v20696, v21580 move-wide/16 v23592, v31723 move-wide/16 v18734, v6852 move-object/16 v2172, v7319 move-object/16 v15451, v19613 move/16 v8200, v17943 move-object/16 v11744, v16169 move/16 v25537, v11198 move-object/16 v10716, v10110 move/16 v3856, v4001 move/16 v25914, v31696 move/16 v32604, v26829 move/16 v1285, v9714 move-wide/16 v3579, v31004 move-wide/16 v24345, v22688 move/16 v2010, v15787 move-object/16 v22197, v27277 move-wide/16 v13224, v30714 move-object/16 v23277, v899 move-wide/16 v10074, v7990 move/16 v26966, v17029 move/16 v17538, v9353 move/16 v6805, v15523 move-wide/16 v7257, v1605 move-object/16 v8587, v5174 move-wide/16 v10139, v11521 move/16 v30484, v19750 move/16 v26686, v14113 move/16 v9289, v28060 move-object/16 v17762, v24787 move/16 v9064, v25008 move-wide/16 v23144, v1105 move/16 v10260, v22078 move/16 v31955, v3679 move/16 v3881, v19365 move/16 v14296, v25367 move-wide/16 v10260, v27635 move/16 v31286, v6218 move-object/16 v8054, v11384 move/16 v9322, v28597 move-wide/16 v20868, v7628 move/16 v1716, v24824 move/16 v19006, v28449 move-wide/16 v16769, v12395 move-wide/16 v19499, v20931 move/16 v16472, v12383 move/16 v15489, v12670 move/16 v16688, v2896 move-object/16 v14652, v30105 move-wide/16 v8876, v12855 move-wide/16 v19014, v29780 move-wide/16 v6028, v27422 move/16 v7105, v501 move/16 v138, v32375 move/16 v25838, v4906 move/16 v3472, v14062 move/16 v634, v20482 move/16 v20808, v23082 move/16 v26411, v13326 move/16 v15805, v10698 move-wide/16 v7021, v20657 move-wide/16 v22838, v24950 move/16 v24922, v10732 move-wide/16 v25808, v16366 move-object/16 v12313, v14262 move/16 v1909, v32428 move-object/16 v18273, v15298 move-object/16 v2150, v28825 move-wide/16 v7385, v5756 move/16 v25889, v27479 move-wide/16 v9651, v16026 move/16 v17273, v23754 move/16 v23707, v11141 move/16 v27146, v27101 move/16 v20634, v7434 move-wide/16 v5250, v24669 move-object/16 v23688, v12230 move-wide/16 v9751, v24247 move-wide/16 v19201, v22838 move-wide/16 v27584, v16380 move-wide/16 v25936, v8876 move-object/16 v22846, v31337 move-object/16 v29464, v24643 move/16 v14466, v19296 move-wide/16 v27584, v1973 move/16 v32590, v24726 move-object/16 v7281, v31954 move-wide/16 v19639, v18972 move/16 v2172, v6805 move-wide/16 v2930, v31439 move/16 v6555, v8777 move/16 v13601, v4369 move/16 v21563, v4906 move-wide/16 v16622, v10370 move/16 v3720, v22136 move-wide/16 v10421, v14853 move-wide/16 v25632, v16901 move/16 v27356, v31597 move-object/16 v18659, v15122 move/16 v8497, v13569 move-wide/16 v20067, v23495 move-wide/16 v21681, v7440 move-object/16 v11458, v4851 move/16 v8877, v4029 move/16 v28298, v27228 move/16 v4689, v10265 move-object/16 v30674, v19429 move-wide/16 v29937, v7818 move-wide/16 v32377, v19161 move-object/16 v19006, v26516 move/16 v30503, v20863 move-object/16 v3099, v6489 move-wide/16 v8038, v2674 move-object/16 v8339, v12055 move/16 v17455, v11269 move/16 v19139, v19559 move/16 v16762, v24916 move-object/16 v523, v18722 move-object/16 v3917, v3735 move/16 v11242, v617 move/16 v1451, v23109 move-object/16 v28590, v13091 move/16 v20622, v24714 move-wide/16 v25696, v7914 move/16 v18383, v6905 move/16 v1556, v4906 move-wide/16 v15544, v2104 move-wide/16 v213, v15925 move-wide/16 v23105, v31869 move/16 v13717, v19312 move/16 v17211, v7450 move/16 v792, v25118 move/16 v14517, v28049 move-wide/16 v7443, v26127 move/16 v24710, v19139 move-object/16 v5433, v12222 move-object/16 v16335, v21491 move/16 v7153, v23109 move/16 v928, v25957 move-wide/16 v8388, v14582 move-object/16 v17325, v8961 move-wide/16 v3820, v7122 move/16 v7935, v9582 move/16 v28401, v3413 move/16 v16793, v12028 move/16 v8138, v24296 move/16 v19830, v10265 move/16 v29186, v10353 move/16 v3321, v4815 move/16 v31742, v21981 move-wide/16 v24514, v23962 move/16 v276, v15179 move/16 v7974, v13340 move-object/16 v9623, v21935 move-wide/16 v19060, v14957 move/16 v21822, v15612 move-object/16 v10842, v30783 move/16 v5181, v2976 move-object/16 v6714, v23277 move-object/16 v13593, v30057 move-wide/16 v18311, v31419 move/16 v15834, v7372 move/16 v24611, v10265 move/16 v9735, v8918 move-wide/16 v29530, v8256 move/16 v22958, v14876 move-wide/16 v30846, v28720 move/16 v13380, v7434 move/16 v6654, v21106 move/16 v23548, v7058 move/16 v30666, v22872 move/16 v8306, v31955 move/16 v391, v10012 move-wide/from16 v162, v15617 move/16 v19958, v30694 move-wide/16 v2132, v25808 move/16 v9865, v19699 move/16 v25436, v10580 move/16 v7238, v9353 move/16 v8167, v22293 move/16 v29968, v30446 move/16 v10045, v14296 move/16 v7534, v20170 move/16 v23660, v29649 move-object/16 v15235, v18036 move/16 v23043, v2009 move/16 v10611, v1713 move-wide/16 v17383, v12801 move-wide/16 v19496, v6374 move/16 v2852, v24383 move/16 v7045, v20170 move-wide/16 v14993, v25073 move-object/16 v4935, v6961 move-wide/16 v9261, v4561 move-wide/16 v19417, v28640 move-wide/16 v10743, v20985 move/16 v14891, v22872 move-wide/16 v24922, v19585 move/16 v8788, v6555 move-wide/16 v20992, v6669 move/16 v27655, v6896 move-wide/16 v17510, v29530 move/16 v32558, v28457 move-wide/16 v25814, v22785 move-object/16 v12921, v31499 move/16 v21821, v29526 move-wide/16 v23754, v18170 move-object/16 v8694, v21848 move/16 v6738, v32158 move/16 v8209, v31566 move/16 v31408, v19899 move/16 v26893, v14761 move-object/16 v20525, v8289 move/16 v30652, v23511 move/16 v26686, v7118 move-wide/16 v10157, v2001 move-wide/16 v25831, v19914 move-wide/16 v17593, v3940 move-wide/16 v16299, v3430 move-wide/16 v22526, v25073 move/16 v10154, v21893 move-wide/16 v31875, v9651 move/16 v10403, v3086 move-wide/16 v20314, v19370 move-object/16 v15469, v18617 move-wide/16 v10564, v18342 move-wide/16 v15053, v32769 move/16 v6768, v3881 move/16 v691, v29187 move/16 v24675, v8497 move/16 v21534, v20158 move-wide/16 v21984, v26590 move-wide/16 v19643, v28260 move/16 v16654, v29186 move-object/16 v9010, v8818 move-wide/16 v1938, v26564 move-wide/16 v1284, v10645 move/16 v7990, v30652 move/16 v3946, v20622 move-wide/16 v9164, v29780 move/16 v16100, v7058 move-object/16 v1909, v11384 move/16 v16748, v8329 move/16 v17396, v8216 move-wide/16 v20432, v8149 move-wide/16 v32239, v872 move/16 v20714, v30874 move-wide/16 v14855, v21702 move-object/16 v16937, v22764 move/16 v16278, v3413 move/16 v12698, v19858 move/16 v15346, v10380 move/16 v2894, v7744 move/16 v4402, v28971 move-wide/16 v2883, v3296 move/16 v24166, v6814 move-wide/16 v6517, v4943 move-object/16 v26556, v11928 move/16 v7517, v9735 move-wide/16 v16167, v19496 move-wide/16 v3490, v23144 move/16 v3664, v27717 move-object/16 v21866, v27952 move-wide/16 v9010, v14659 move/16 v9557, v25436 move/16 v20069, v3472 move-wide/16 v2811, v29004 move/16 v1382, v14519 move-wide/16 v17562, v19417 move-object/16 v24977, v7977 move/16 v30727, v18802 move/16 v17201, v5650 move/16 v25994, v14062 move-wide/16 v4019, v20420 move/16 v20069, v4839 move-wide/16 v21904, v8186 move/16 v3706, v18033 move/16 v25285, v13099 move/16 v15307, v24273 move-object/16 v13487, v31618 move-wide/16 v26096, v2674 move/16 v17924, v25828 move/16 v2182, v10012 move/16 v4784, v12518 move/16 v2593, v11198 move-wide/16 v27138, v22838 move-object/16 v11674, v30639 move-wide/16 v4062, v20792 move-object/16 v5140, v11875 move-object/16 v29433, v11744 move-wide/16 v20686, v25632 move/16 v26928, v9685 move-wide/16 v580, v17348 move/16 v29689, v2479 move-object/16 v3562, v852 move-wide/16 v31155, v1732 move-wide/16 v9907, v21494 move/16 v3227, v5588 move/16 v17659, v16649 move-wide/16 v5181, v19044 move/16 v31700, v19974 move-wide/16 v13029, v32534 move-object/16 v13266, v16430 move-object/16 v30645, v29464 move-object/16 v27545, v1222 move/16 v4632, v23562 move-wide/16 v7637, v6081 move-wide/16 v26704, v16192 move/16 v1287, v21563 move-wide/16 v32061, v2695 move/16 v28636, v8937 move/16 v1157, v15761 move/16 v20263, v17839 move-wide/16 v13726, v10743 move/16 v4804, v1382 move-wide/16 v30471, v17780 move/16 v31679, v10403 move-wide/16 v11597, v26472 move/16 v21106, v20263 move-wide/16 v7205, v1877 move/16 v17679, v8937 move-object/16 v23312, v6065 move/16 v16788, v138 move/16 v29598, v29627 move/16 v25482, v1769 move/16 v9060, v23651 move/16 v27405, v24905 move/16 v8633, v3856 move-object/16 v6295, v18417 move-object/16 v18411, v21464 move/16 v24422, v138 move/16 v25651, v8642 move/16 v26879, v2976 move/16 v32208, v31034 move/16 v6973, v17839 move/16 v28974, v27903 move/16 v19964, v15685 move/16 v28911, v12918 move-object/16 v14005, v12611 move-wide/16 v26499, v28720 move-wide/16 v2905, v3418 move/16 v12038, v6979 move-wide/16 v10961, v1877 move/16 v11211, v25828 move/16 v18472, v20622 move-object/16 v16748, v22773 move/16 v26546, v11662 move-object/16 v304, v15346 move-wide/16 v1047, v4573 move-wide/16 v16102, v15201 move/16 v4784, v5374 move/16 v29684, v21538 move-wide/16 v304, v19585 move/16 v23862, v14026 move/16 v26326, v16933 move/16 v117, v13717 move-object/16 v17510, v15378 move-wide/16 v7858, v23213 move-wide/16 v1715, v28317 move/16 v19750, v10580 move/16 v12966, v2896 move-wide/16 v7285, v22315 move/16 v12614, v8280 move-wide/16 v11741, v10952 move/16 v29536, v26093 move/16 v8694, v14026 move/16 v32650, v12557 move/16 v273, v22082 move/16 v24333, v24432 move/16 v32164, v26350 move-object/16 v16167, v15451 move/16 v20997, v22662 move/16 v30652, v3946 move/16 v18388, v8264 move/16 v29559, v28049 move-wide/16 v16100, v14024 move-wide/16 v30256, v4573 move/16 v20848, v29952 move/16 v5246, v1451 move-object/16 v21310, v21552 move-object/16 v16859, v888 move-wide/16 v25354, v16942 move/16 v28201, v21538 move/16 v24589, v6979 move/16 v15298, v20714 move-object/16 v16352, v12274 move-wide/16 v8038, v8822 move-object/16 v152, v7794 move/16 v2289, v1481 move/16 v20158, v24422 move/16 v30898, v7356 move-object/16 v16366, v7977 move/16 v16585, v29059 move/16 v7483, v25063 move-object/16 v16386, v5403 move/16 v7673, v12482 move-object/16 v7722, v21868 move/16 v29511, v10041 move/16 v24345, v17505 move/16 v21968, v4804 move/16 v23270, v21677 move/16 v12539, v1847 move-object/16 v16021, v1909 move/16 v16871, v30759 move-object/16 v25441, v29088 move/16 v3869, v32559 move/16 v20686, v17273 move-wide/16 v28648, v3274 move/16 v4429, v8045 move/16 v10517, v23160 move/16 v4307, v14761 move-wide/16 v30965, v3418 move-wide/16 v31035, v29823 move/16 v8138, v23558 move/16 v8832, v5473 move/16 v11878, v5650 move-object/16 v8858, v17802 move-wide/16 v12760, v22517 move-object/from16 v58, v24018 move-wide/16 v18490, v29284 move/16 v9865, v18462 move-wide/16 v13707, v12458 move-object/16 v20547, v152 move/16 v28285, v19750 move/16 v31233, v11242 move-object/16 v7772, v32253 move-wide/16 v26846, v20696 move/16 v15684, v24166 move-object/16 v26422, v30765 move/16 v18014, v15787 move/16 v28075, v23975 move/16 v13795, v12670 move/16 v32256, v22168 move-wide/16 v8371, v31553 move-object/16 v29563, v6879 move-wide/16 v25887, v4062 move/16 v13282, v26480 move/16 v14750, v21342 move-wide/16 v22204, v22422 move/16 v16654, v15391 move-wide/16 v31029, v28982 move-wide/16 v9831, v16380 move-object/16 v7797, v20794 move-object/16 v18138, v28590 move-object/16 v11601, v8685 move-object/16 v21426, v31202 move-object/16 v19141, v8329 move-object/16 v6967, v9106 move-wide/16 v7356, v26472 move-wide/16 v2913, v7626 move/16 v2278, v8777 move/16 v32183, v27458 move-object/16 v26796, v8054 move-object/16 v13091, v12461 move-object/16 v32391, v8872 move-object/16 v9735, v27464 move-wide/16 v16932, v23686 move-object/16 v7532, v10842 move-wide/16 v4453, v1971 move-object/16 v26035, v26796 move-wide/16 v2873, v0 move/16 v18511, v28449 move-object/16 v14834, v4338 move/16 v32590, v4487 move-object/16 v4423, v27983 move-wide/16 v3490, v23105 move/16 v30664, v14177 move/16 v11355, v26893 move-object/16 v12761, v23883 move/16 v31062, v24100 move/16 v32045, v31034 move/16 v3138, v25924 move-wide/16 v28911, v1938 move-wide/16 v25731, v2104 move-wide/16 v23091, v6028 move/16 v7786, v20894 move-wide/16 v11710, v10564 move-wide/16 v29765, v23686 move/16 v14240, v10012 move-wide/16 v7303, v3296 move/16 v15617, v31700 move/16 v28085, v21819 move/16 v173, v8774 move/16 v4790, v11636 move-wide/16 v20782, v21344 move-object/16 v10210, v6049 move/16 v10294, v11332 move-wide/16 v16120, v31815 move/16 v31275, v9714 move-object/16 v11960, v23688 move-object/16 v7450, v6967 move/16 v13888, v14891 move/16 v6208, v2515 move/16 v1825, v18417 move/16 v9334, v32238 move-object/16 v2953, v30105 move/16 v2031, v26893 move-object/16 v7908, v32728 move/16 v6973, v23511 move-wide/16 v23309, v4327 move-object/16 v13441, v6714 move-wide/16 v4150, v2777 move-wide/16 v16170, v13279 move/16 v9375, v28073 move/16 v17774, v28734 move/16 v6719, v18388 move/16 v10525, v23688 move-wide/16 v1955, v2711 move/16 v21583, v7372 move-wide/16 v7238, v25887 move-wide/16 v3586, v20432 move-wide/16 v3490, v14949 move-wide/16 v29464, v21989 move-wide/16 v13857, v26704 move-wide/16 v19069, v19060 move/16 v7156, v9865 move/16 v747, v19830 move-wide/16 v20153, v17107 move-wide/16 v18077, v6347 move-wide/16 v2964, v3064 move-wide/16 v27584, v28642 move/16 v5212, v7898 move-wide/16 v16751, v2001 move/16 v3881, v31597 move/16 v20386, v32028 move/16 v25880, v11445 move/16 v11684, v3559 move/16 v18488, v2 move/16 v10621, v15805 move-wide/16 v17399, v32572 move/16 v13064, v23618 move/16 v31032, v24611 move-object/16 v30231, v16021 move-object/16 v10337, v28075 move/16 v19064, v10380 move-object/16 v6850, v24977 move/16 v15893, v2220 move/16 v795, v6905 move/16 v23781, v4290 move-wide/16 v10249, v20308 move-wide/16 v12592, v19193 move/from16 v223, v1141 move/16 v6590, v16552 move/16 v24788, v6805 move-wide/16 v3974, v30752 move/16 v25323, v9375 move/16 v26270, v26024 move/16 v7653, v27654 move/16 v24832, v29968 move/16 v11875, v25537 move/16 v4855, v29803 move-wide/16 v12285, v28767 move-wide/16 v7646, v32632 move-wide/16 v29400, v27907 move/16 v23009, v13601 move-wide/16 v27471, v597 move-wide/16 v5528, v24372 move-wide/16 v9601, v21904 move/16 v22238, v3875 move-wide/16 v15880, v176 move-object/16 v28547, v6489 move/16 v8320, v9353 move-wide/16 v12147, v24939 move/16 v21289, v5629 move-wide/16 v31467, v18999 move-wide/16 v29107, v3418 move-object/16 v24077, v158 move/16 v5120, v14891 move/16 v6752, v5120 move/16 v1108, v18118 move/16 v25008, v14062 move/16 v26474, v8817 move-wide/16 v25076, v6852 move/16 v4001, v26003 move/16 v24514, v12343 move/16 v20691, v26270 move-wide/16 v3308, v31564 move-wide/16 v20596, v26846 move/16 v22084, v1529 move-wide/16 v24791, v10534 move-object/16 v26024, v6654 move/16 v15761, v22078 move-object/16 v31358, v792 move-wide/16 v26079, v25076 move-wide/16 v17864, v476 move-wide/16 v16038, v30026 move-object/16 v20889, v12184 move-wide/16 v8118, v10249 move/16 v20153, v13702 move-object/16 v27286, v4661 move-wide/16 v1247, v4453 move/16 v17985, v17455 move/16 v3141, v21306 move/16 v14880, v32093 move-wide/16 v25731, v25104 move-wide/16 v11578, v5866 move-wide/16 v1067, v18972 move-object/16 v29288, v9249 move/16 v6836, v19136 move-wide/16 v13282, v15568 move/16 v293, v25857 move/16 v15574, v6300 move/16 v15736, v14055 move-wide/16 v32239, v7628 move-wide/16 v16794, v19366 move-object/16 v6223, v18617 move-wide/16 v8649, v30069 move/16 v26436, v11198 move-wide/16 v12762, v18311 move/16 v16277, v26556 move/16 v12855, v28457 move/16 v2295, v3321 move-object/16 v16894, v21491 move-object/16 v28974, v4524 move-wide/16 v24892, v6974 move-wide/16 v11438, v1950 move/16 v31982, v7653 move/16 v6515, v23559 move/16 v32772, v31034 move-wide/16 v3330, v9601 move-object/16 v10249, v6654 move/16 v30152, v2900 move-wide/16 v28424, v21989 move-object/16 v5137, v18564 move-object/from16 v208, v5635 move/16 v23388, v10551 move-object/16 v23562, v32604 move-object/16 v19613, v899 move-wide/16 v19370, v5354 move/16 v3661, v11782 move-wide/16 v27242, v27892 move/16 v9531, v26411 move/16 v26893, v3884 move-wide/16 v1298, v2104 move-wide/16 v24966, v2777 move/16 v6958, v17798 move-object/16 v21342, v32391 move/16 v5354, v21534 move/16 v3099, v19102 move-wide/16 v229, v8388 move-wide/16 v4925, v2071 move-wide/16 v14013, v24091 move/16 v14200, v24664 move/16 v19129, v16891 move/16 v9218, v24916 move/16 v9167, v24802 move-wide/16 v32749, v213 move/16 v8511, v23578 move/16 v14177, v8214 move-object/16 v5732, v30611 move-object/16 v6854, v30227 move/16 v4819, v7499 move-wide/16 v25924, v27331 move/16 v16793, v31691 move/16 v22130, v18388 move/16 v5496, v16277 move-wide/16 v21681, v8038 move/16 v22731, v8694 move-wide/16 v12810, v2262 move-wide/16 v13612, v10260 move-object/16 v8961, v14005 move/16 v31636, v29689 move-object/16 v15981, v16651 move-wide/16 v5374, v20822 move/16 v21446, v6442 move/16 v10464, v13289 move/16 v19734, v10380 move/16 v9104, v8167 move/16 v21666, v8280 move/16 v24075, v17911 move/16 v16299, v23830 move/16 v31488, v14040 move-wide/16 v29575, v20931 move-wide/16 v30298, v27211 move/16 v24926, v18968 move-wide/16 v9032, v16932 move/16 v26536, v19226 move/16 v29071, v9384 move/16 v2408, v21369 move/16 v23494, v24718 move-wide/16 v6555, v12762 move-object/16 v13579, v516 move/16 v8388, v10894 move-wide/16 v13165, v5042 move-object/16 v5114, v15912 move-wide/16 v15736, v14579 move/16 v31742, v273 move/16 v7427, v27344 move/16 v812, v30874 move/16 v4402, v8777 move-wide/16 v18041, v30471 move/16 v617, v26966 move/16 v8825, v31358 move/16 v9261, v15179 move-wide/16 v25808, v1938 move/16 v11636, v27356 move/16 v24772, v9065 move-wide/16 v52, v7356 move/16 v1127, v19365 move/16 v2136, v5246 move/16 v18486, v29146 move-wide/16 v2220, v14562 move/16 v3707, v23160 move/16 v21536, v19884 move-object/16 v23559, v21848 move/16 v15925, v19064 move/16 v10527, v9322 move/16 v28723, v9027 move/16 v9098, v28070 move-object/16 v18630, v11674 move/16 v19679, v3141 move/16 v4197, v5403 move-wide/16 v29589, v19690 move/16 v6873, v30666 move/16 v5986, v812 move-object/16 v26409, v20889 move-wide/16 v30186, v8516 move-wide/16 v13113, v9132 move-object/16 v9751, v6039 move/16 v8329, v29615 move/16 v7252, v13888 move-wide/16 v25633, v6179 move-wide/16 v29952, v24193 move/16 v3078, v26879 move-wide/16 v2220, v25010 move-wide/16 v27212, v15443 move/16 v11741, v28713 move/16 v5331, v19559 move/16 v24669, v11636 move-wide/16 v31233, v5042 move/16 v11770, v10165 move-object/16 v30611, v19419 move/16 v4327, v10265 move/16 v1396, v31982 move-wide/from16 v121, v8483 move/16 v11671, v12383 move-wide/16 v27903, v6581 move/16 v18033, v7974 move/16 v28675, v29736 move-wide/16 v15593, v4319 move/16 v31807, v4369 move-object/16 v22720, v14880 move/16 v3227, v28449 move-wide/16 v391, v6326 move-wide/16 v3472, v27242 move-object/16 v30300, v14401 move/16 v3086, v30270 move/16 v4462, v26050 move/16 v30200, v16688 move-wide/16 v13857, v18734 move-wide/16 v13796, v774 move/16 v29209, v9060 move/16 v17667, v18419 move-wide/16 v27260, v26273 move/16 v3138, v30525 move/16 v15085, v7754 move/16 v4429, v4194 move-object/16 v7451, v27378 move/16 v25323, v12252 move-object/16 v8054, v9623 move-object/16 v15530, v7797 move-object/16 v22598, v28590 move-wide/16 v501, v18041 move/16 v27795, v9104 move/16 v14132, v9531 move-object/16 v11770, v5981 move-wide/16 v9194, v16794 move-wide/16 v29368, v5042 move-wide/16 v26418, v3725 move/16 v17608, v15581 move/16 v27513, v15685 move/16 v2289, v22776 move-wide/16 v7385, v12801 move/16 v10110, v20202 move-wide/16 v30069, v32769 move/16 v3890, v4307 move/16 v19847, v28469 move/16 v31131, v28469 move-object/16 v23760, v6961 move-wide/16 v30325, v27697 move/16 v12244, v9167 move-object/16 v6049, v888 move/16 v7601, v31636 move-object/16 v12982, v10839 move/16 v6049, v30484 move/16 v32579, v13326 move/16 v17211, v812 move-wide/16 v15530, v17780 move/16 v10421, v30200 move-wide/16 v11628, v30471 move-wide/16 v30547, v3418 move-wide/16 v4507, v7440 move/16 v32375, v10865 move/16 v4586, v31408 move/16 v5409, v15489 move-wide/16 v26621, v30547 move/16 v2479, v9064 move/16 v16026, v23707 move/16 v13613, v24664 move/16 v8149, v18786 move-object/16 v8251, v18642 move-wide/16 v14582, v27471 move-wide/16 v30282, v7062 move-wide/16 v25263, v26704 move-wide/16 v7990, v26233 move/16 v23279, v5120 move-wide/16 v17399, v30026 move/16 v30765, v19048 move-wide/16 v7641, v13029 move-wide/16 v27787, v3579 move-wide/16 v30535, v23968 move/16 v14949, v24714 move-object/16 v28873, v27640 move-wide/16 v23073, v14855 move-object/16 v29968, v12230 move/16 v27252, v17528 move-wide/16 v14643, v30471 move-wide/16 v22517, v22526 move/16 v10650, v19026 move-wide/16 v4204, v13113 move/16 v12918, v1025 move-wide/16 v794, v30022 move/16 v21882, v21538 move-wide/16 v10732, v16932 move-wide/16 v10468, v8371 move/16 v6100, v4568 move/16 v26925, v4197 move/16 v8642, v29627 move/16 v8371, v3413 move-wide/16 v16942, v3472 move-wide/16 v16100, v18041 move-wide/16 v25104, v16794 move-wide/16 v14880, v29823 move-object/16 v16550, v8339 move/16 v14747, v617 move/16 v32086, v4255 move/16 v5908, v6298 move-wide/16 v9966, v20308 move/16 v8225, v31034 move/16 v14841, v11916 move-object/16 v10331, v13263 move-wide/16 v25819, v20985 move/16 v12184, v32028 move-wide/16 v30752, v22204 move-wide/16 v8118, v176 move/16 v4586, v11064 move-wide/16 v1827, v25696 move/16 v31240, v31408 move/16 v22208, v6805 move-wide/16 v3978, v6374 move-wide/16 v21926, v12013 move-wide/16 v27161, v29952 move/16 v31700, v16553 move-wide/16 v27795, v28317 move/16 v17169, v27344 move-wide/16 v31869, v32769 move-wide/16 v26954, v19496 move-wide/16 v29482, v476 move-wide/16 v18014, v728 move-object/16 v17506, v25470 move-wide/16 v8280, v783 move/16 v24345, v29054 move-wide/16 v28974, v19060 move/16 v25915, v487 move-wide/16 v1054, v1688 move/16 v31013, v21563 move/16 v1381, v3917 move/from16 v0, v15085 move-wide/16 v3585, v16192 move/16 v15469, v8633 move/16 v31982, v8045 move/16 v7963, v4037 move-wide/16 v7045, v176 move-wide/16 v4037, v27331 move-object/16 v19861, v30290 move/16 v352, v4018 move/16 v6690, v10839 move/16 v26798, v2031 move/16 v25846, v11933 move/16 v31748, v9104 move-wide/16 v16200, v27917 move/16 v23477, v17608 move-wide/16 v27436, v16632 move-wide/16 v7434, v2907 move/16 v18946, v31278 move/16 v8879, v2593 move-wide/16 v10874, v17999 move/16 v11211, v12302 move/16 v2132, v4432 move-wide/16 v15166, v6709 move-wide/16 v20263, v56 move/16 v21163, v15179 move-wide/16 v13728, v4603 move-wide/16 v3072, v7177 move/16 v17659, v29598 move/16 v32299, v9271 move/16 v9720, v29276 move/16 v19830, v17667 move-wide/16 v30268, v10952 move/16 v11597, v32774 move-object/16 v26621, v23760 move-wide/16 v3634, v3359 move/16 v24925, v16762 move-object/16 v12004, v32728 move-object/16 v23494, v19262 move/16 v150, v13865 move/16 v1342, v10045 move/16 v15346, v4369 move-object/16 v14396, v5635 move-wide/16 v3536, v16739 move/16 v24344, v32208 move-wide/16 v32444, v16877 move-wide/16 v20274, v10732 move-wide/16 v11243, v30965 move/16 v13677, v22562 move-wide/16 v22293, v25073 move-wide/16 v28122, v6427 move-wide/16 v2136, v2777 move/16 v5698, v7499 move/16 v923, v1222 move-wide/16 v14466, v26715 move/16 v6324, v12596 move-wide/16 v18137, v14579 move-wide/16 v6783, v28720 move/16 v27713, v6896 move/16 v15414, v21822 move-wide/16 v30714, v16877 move/16 v15066, v13717 move/16 v2988, v31561 move/16 v29559, v2 move/16 v2623, v31597 move/16 v28748, v20181 move-wide/16 v30278, v13483 move/16 v27146, v10700 move/16 v16048, v24710 move-wide/16 v32636, v12478 move-object/16 v28457, v5403 move/16 v13164, v5593 move-wide/16 v432, v30790 move-object/16 v27049, v19562 move/16 v28881, v3157 move-wide/16 v30783, v18342 move-wide/16 v15378, v4736 move/16 v17071, v15690 move/16 v20863, v20158 move/16 v31698, v8694 move/16 v30278, v29704 move-object/16 v19129, v8858 move-wide/16 v17747, v23105 move/16 v2785, v4001 move-object/16 v13726, v32048 move/16 v10962, v27735 move-wide/16 v2073, v12810 move/16 v7346, v28129 move-wide/16 v17437, v6741 move/16 v14952, v18511 move-wide/16 v18929, v29464 move-wide/16 v2407, v17593 move-wide/16 v4487, v15378 move/16 v32418, v5732 move/16 v10116, v17924 move/16 v11521, v31286 move-wide/16 v10188, v7177 move/16 v23680, v10865 move-wide/16 v1878, v14609 move-wide/16 v20420, v19639 move-object/16 v30421, v22256 move/16 v7680, v1382 move/16 v7177, v4029 move-wide/16 v18014, v16632 move-wide/16 v21577, v14609 move/16 v11803, v30694 move-wide/16 v24643, v1411 move-object/16 v29003, v6065 move-wide/16 v28285, v25057 move/16 v28317, v14841 move/16 v15139, v18786 move/16 v6439, v8602 move/16 v158, v22082 move-wide/16 v25645, v15568 move/16 v18843, v21821 move/16 v32308, v26563 move/16 v18077, v5261 move/16 v16568, v19989 move/16 v18094, v19844 move-wide/16 v5467, v27892 move/16 v22168, v4889 move/16 v21126, v5114 move/16 v2913, v6905 move-wide/16 v13749, v12801 move/16 v30300, v24905 move/16 v31869, v28386 move-object/16 v16550, v8289 move/16 v9514, v12142 move-object/16 v5478, v28590 move/16 v16947, v32275 move-wide/16 v1579, v19417 move-wide/16 v23153, v32572 move/16 v14633, v5282 move-object/16 v12699, v7898 move-object/16 v2462, v58 move-wide/16 v12412, v31439 move/16 v14452, v27655 move-wide/16 v14949, v15530 move-wide/16 v23545, v31439 move/16 v14643, v5908 move/16 v31940, v14240 move/16 v15357, v31275 move-object/16 v25063, v8685 move/16 v3472, v26631 move-object/16 v26113, v18722 move/16 v19978, v20863 move-wide/16 v1950, v26923 move/16 v9457, v24011 move/16 v4487, v25914 move-wide/16 v18172, v26105 move-wide/16 v6218, v12395 move/16 v13693, v2497 move-object/16 v27277, v6675 move/16 v19224, v6738 move-wide/16 v30783, v25263 move/16 v11980, v15960 move-wide/16 v17802, v27352 move-object/16 v7732, v11006 move/16 v9751, v30270 move/16 v32645, v23830 move-wide/16 v24538, v24499 move/16 v9422, v16157 move/16 v3684, v20622 move-object/16 v9066, v3548 move/16 v26508, v20660 move/16 v1465, v4432 move/16 v26841, v19312 move-wide/16 v31020, v31815 move/16 v24128, v17608 move-wide/16 v2529, v15272 move/16 v26738, v7058 move/16 v21418, v10331 move/16 v18027, v19064 move/16 v29024, v924 move-wide/16 v3706, v26590 move-wide/16 v4208, v501 move-object/16 v32256, v10716 move-wide/16 v2683, v8038 move-wide/16 v12437, v1732 move/16 v28572, v26161 move/16 v5215, v10389 move/16 v5737, v5212 move/16 v7963, v14517 move/16 v2722, v18511 move-object/16 v19894, v18294 move-object/16 v19060, v19429 move-object/16 v3298, v19129 move/16 v8647, v14761 move-wide/16 v8649, v18137 move/16 v24149, v9353 move/16 v21821, v25499 move/16 v22574, v24589 move/16 v16026, v10116 move/16 v8401, v28070 move/16 v11793, v23558 move-wide/16 v11565, v7434 move/16 v12626, v1735 move/16 v5737, v26050 move-object/16 v2976, v32048 move/16 v785, v6406 move-object/16 v28471, v5174 move/16 v16401, v32559 move-wide/16 v16291, v21119 move-wide/16 v9318, v16291 move/16 v14871, v10389 move-object/16 v32768, v792 move/16 v17278, v2147 move/16 v2800, v10700 move/16 v31334, v7797 move/16 v669, v26857 move-wide/16 v19699, v22738 move/16 v23618, v2515 move/16 v32048, v23707 move/16 v15876, v9098 move/16 v1490, v5290 move-object/16 v22954, v22828 move/16 v19830, v271 move-wide/16 v8375, v18041 move-wide/16 v559, v728 move-wide/16 v3532, v31660 move/16 v31739, v27479 move-wide/16 v339, v2695 move/16 v23043, v19830 move/16 v9250, v11662 move-wide/16 v29057, v9010 move/16 v1073, v8832 move-wide/16 v29389, v21702 move-wide/16 v5575, v14065 move/16 v21406, v24149 move/16 v26422, v2247 move/16 v14505, v23698 move-wide/16 v15161, v19585 move/16 v20058, v14517 move-wide/16 v13099, v23091 move-wide/16 v16852, v3490 move/16 v6075, v17839 move/16 v31566, v15298 move-object/16 v20067, v20153 move-wide/16 v10221, v27584 move/16 v20243, v17071 move-wide/16 v3444, v25572 move-wide/16 v19164, v23091 move-wide/16 v17455, v671 move-wide/16 v23441, v27917 move/16 v29619, v18077 move-object/16 v4540, v10842 move/16 v13029, v19541 move-wide/16 v14919, v19366 move-wide/16 v18000, v2195 move-object/16 v32186, v24296 move-wide/16 v18436, v3840 move-wide/16 v5840, v16639 move-object/16 v9384, v15584 move-object/16 v17723, v10525 move-object/16 v31233, v13015 move/16 v18226, v22505 move-object/16 v27117, v3298 move-wide/16 v30517, v31419 move-object/16 v18253, v2620 move/16 v5629, v31636 move-wide/16 v24031, v30981 move-object/16 v24695, v21135 move/16 v24128, v20863 move/16 v23268, v29736 move/16 v5336, v276 move-object/16 v1298, v23883 move/16 v11840, v11671 move/16 v26795, v23883 move-wide/16 v23686, v15255 move-wide/16 v10716, v20782 move/16 v12717, v16278 move/16 v26893, v25957 move/16 v29004, v3917 move-wide/16 v15745, v25263 move-object/16 v25117, v13726 move-wide/16 v2228, v32760 move/16 v16038, v31679 move-wide/16 v2195, v10924 move-object/16 v6347, v25441 move/16 v10331, v14387 move/16 v4668, v23548 move-wide/16 v25008, v3634 move-wide/16 v6555, v8649 move/16 v28675, v2722 move/16 v29511, v22958 move/16 v6961, v924 move-wide/16 v23840, v9648 move-wide/16 v13579, v12762 move-object/16 v13752, v14262 move/16 v8271, v27869 move-wide/16 v3536, v23091 move-wide/16 v3756, v17749 move/16 v6382, v27373 move/16 v7449, v21583 move-wide/16 v12119, v25057 move/16 v14267, v15179 move-object/16 v17900, v4541 move-object/16 v25831, v19562 move-object/16 v13225, v19262 move-object/16 v27697, v15584 move/16 v11793, v12482 move-wide/16 v28287, v24966 move/16 v11355, v13980 move-wide/16 v18563, v22688 move/16 v20796, v32238 move-object/16 v26422, v6315 move-wide/16 v28628, v13099 move/16 v6010, v27723 move/16 v13726, v20202 move-object/16 v12249, v19600 move-object/16 v10388, v3562 move-object/16 v2339, v29131 move/16 v10149, v23283 move-wide/16 v18311, v23441 move-wide/16 v12511, v12285 move-wide/16 v26686, v32760 move/16 v24247, v29704 move/16 v29713, v4586 move/16 v16273, v15612 move/16 v11588, v6653 move-object/16 v21306, v7532 move/16 v32299, v20796 move-wide/16 v5575, v29937 move/16 v8994, v28971 move-wide/16 v28094, v23686 move/16 v30783, v31789 move/16 v12421, v15761 move-wide/16 v13323, v23441 move-wide/16 v2064, v16751 move/16 v25914, v17679 move/16 v31310, v17774 move-wide/16 v13726, v24939 move-object/16 v7118, v445 move-wide/16 v5403, v11376 move/16 v5943, v19958 move-object/16 v10265, v25441 move-wide/16 v17786, v13707 move-wide/16 v25645, v2907 move/16 v10151, v24344 move/16 v21975, v12028 move/16 v4253, v26502 move-object/16 v1231, v17900 move-wide/16 v24195, v32239 move/16 v29727, v25914 move-wide/16 v28586, v31564 move-wide/16 v14001, v14537 move/16 v17475, v25846 move/16 v20079, v4847 move-object/16 v1201, v9249 move-wide/16 v5134, v26233 move-wide/16 v1878, v12689 move-wide/16 v7005, v4037 move/16 v32348, v19296 move-wide/16 v11618, v13857 move/16 v12275, v9582 move/16 v12013, v11793 move/16 v9283, v7252 move/16 v8777, v29360 move-wide/16 v6653, v3820 move-wide/16 v13289, v2285 move-wide/16 v31723, v2811 move/16 v19161, v20863 move/16 v14327, v25703 move-wide/16 v23660, v19201 move/16 v15797, v11933 move-wide/16 v32534, v7818 move-wide/16 v30728, v9164 move/16 v20644, v30311 move/16 v7045, v18675 move-object/16 v30738, v10958 move/16 v28239, v30945 move-wide/16 v11368, v5616 move/16 v9587, v8401 move-wide/16 v31676, v24195 move-wide/16 v26829, v3651 move/16 v12230, v26113 move/16 v1397, v23862 move-object/16 v19189, v28547 move-wide/16 v8353, v10990 move/16 v11803, v9872 move-wide/16 v5227, v15366 move/16 v21736, v10551 move-object/16 v13508, v28578 move/16 v20181, v19828 move/16 v12962, v13177 move/16 v7105, v29619 move/16 v10237, v23830 move-wide/16 v5524, v28974 move/16 v16340, v22168 move-wide/16 v10403, v20270 move/16 v10802, v20418 move-wide/16 v21106, v21984 move/16 v11803, v21919 move/16 v29024, v24432 move-object/16 v22130, v15235 move/16 v27545, v7930 move/16 v12923, v27360 move/16 v19201, v29803 move-wide/16 v12557, v30471 move/16 v28094, v20181 move-wide/16 v11554, v10874 move/16 v19370, v6075 move/16 v9208, v3175 move-object/16 v14683, v2093 move-wide/16 v14510, v10645 move-object/16 v29750, v923 move-object/16 v22562, v24977 move/16 v6843, v10229 move/16 v22838, v22104 move-wide/16 v453, v2683 move-wide/from16 v33, v16192 move/16 v23459, v14040 move-wide/16 v13117, v27838 move/16 v29961, v12302 move-wide/16 v1673, v27066 move/16 v24291, v26161 move/16 v16654, v29288 move/16 v26566, v553 move-wide/16 v8526, v16032 move-wide/16 v21369, v9132 move/16 v21536, v32179 move-wide/16 v14452, v26273 move/16 v14827, v10865 move-wide/16 v4604, v6218 move/16 v21736, v1465 move-wide/16 v23926, v10564 move/16 v7628, v20584 move/16 v13487, v11793 move/16 v25340, v19559 move-wide/16 v19126, v19193 move-object/16 v15960, v8000 move-wide/16 v18294, v20432 move/16 v293, v8877 move-wide/16 v24075, v1971 move-wide/16 v669, v23552 move-object/16 v27708, v5583 move/16 v32534, v9322 move-wide/16 v14276, v16901 move-object/16 v28759, v19562 move-wide/16 v19382, v18999 move-wide/16 v18651, v15446 move-object/16 v3932, v14396 move/16 v21106, v26841 move-object/16 v24204, v15960 move-wide/16 v15951, v19917 move/16 v25803, v12745 move-wide/16 v8391, v15366 move/16 v271, v4586 move-object/16 v25731, v488 move/16 v30105, v16273 move-object/16 v3735, v3562 move/16 v18137, v11588 move/16 v11620, v25482 move/16 v1033, v23713 move-wide/16 v13552, v9477 move/16 v17839, v4462 move/16 v3490, v26563 move/16 v13622, v27869 move-object/16 v7000, v4750 move/16 v29831, v30666 move-wide/16 v29940, v24031 move/16 v23420, v16092 move/16 v3730, v26556 move/16 v13718, v7930 move-wide/16 v2913, v19301 move/16 v27461, v9249 move/16 v17359, v31731 move/16 v6065, v28881 move/16 v10176, v30503 move/16 v28049, v32418 move-wide/16 v23073, v26418 move/16 v22600, v12626 move/16 v7212, v18462 move/16 v19929, v24710 move-wide/16 v6854, v4037 move/16 v7185, v1157 move-wide/16 v11900, v31185 move/16 v9043, v14519 move/16 v3419, v14891 move/16 v30652, v27026 move-wide/16 v671, v10219 move/16 v17991, v11788 move/16 v8777, v23618 move/16 v26024, v14161 move-wide/16 v5186, v3651 move-wide/16 v16352, v25633 move/16 v15375, v16273 move-object/16 v30446, v30905 move/16 v15115, v22720 move-wide/16 v7435, v11368 move-object/16 v6442, v2953 move/16 v30232, v13064 move/16 v7970, v29418 move/16 v14919, v32158 move/16 v21064, v7601 move-wide/16 v10403, v14434 move-wide/16 v15481, v18929 move/16 v19067, v7156 move-object/16 v23872, v27117 move-wide/16 v5774, v25746 move/16 v10491, v4429 move-wide/16 v26472, v27161 move/16 v26365, v4290 move/16 v4859, v5246 move/16 v14540, v30270 move-object/16 v13544, v32559 move-object/16 v7269, v30406 move-object/16 v19978, v9623 move-object/16 v26844, v31598 move/16 v28748, v23698 move-wide/16 v22357, v10188 move-wide/16 v4604, v20868 move-object/16 v792, v13441 move/16 v4388, v3087 move/16 v441, v31981 move-wide/16 v1579, v26704 move/16 v8685, v22084 move/16 v11548, v15489 move/16 v21406, v21666 move/16 v17659, v19964 move-object/16 v18642, v31954 move-object/16 v17096, v19129 move/from16 v121, v22574 move/16 v18610, v2172 move/16 v13601, v8685 move/16 v12313, v10527 move-wide/16 v31001, v3291 move-object/16 v10898, v32391 move-wide/16 v5376, v6783 move-wide/16 v5336, v16632 move-object/16 v20038, v31337 move-wide/16 v6208, v24420 move-object/16 v10074, v8699 move/16 v2295, v21968 move/16 v25482, v15849 move-wide/16 v21481, v26499 move/16 v10389, v5452 move-wide/16 v5415, v6854 move/16 v2638, v19974 move/16 v4270, v20997 move/16 v28622, v1769 move/16 v28767, v25537 move-wide/16 v7930, v2683 move-wide/16 v26879, v9318 move/16 v17071, v13808 move-object/16 v9764, v15235 move-object/16 v18473, v6850 move-wide/16 v30833, v2883 move/16 v16170, v6100 move/16 v31233, v8209 move-wide/16 v3308, v17786 move/from16 v138, v16360 move-object/16 v324, v13091 move-object/16 v21028, v8289 move-object/16 v21868, v14683 move-wide/16 v28275, v22785 move-object/16 v2883, v7772 move/16 v30004, v13029 move-wide/16 v3049, v10534 move-wide/16 v20324, v22357 move/16 v23418, v28386 move-wide/16 v20437, v6081 move-wide/16 v24733, v10941 move/16 v28303, v15983 move/16 v20466, v12164 move-wide/16 v9104, v29530 move-wide/16 v2495, v12501 move-object/16 v31553, v13225 move-wide/16 v5363, v10716 move-object/16 v12437, v3145 move/16 v23600, v7105 move/16 v9476, v32020 move/16 v445, v30105 move/16 v5496, v21064 move/16 v30611, v29054 move-wide/16 v26228, v7990 move/16 v7557, v20466 move-object/16 v10716, v17510 move/16 v11368, v10353 move-wide/16 v13305, v30714 move/16 v19856, v4804 move/16 v26972, v15659 move/16 v26678, v1529 move/16 v32769, v17659 move-wide/16 v25342, v23436 move/16 v7886, v20158 move/16 v29471, v9250 move-object/16 v19249, v21135 move-wide/16 v30009, v12715 move-object/16 v25819, v27378 move/16 v15271, v31523 move-wide/16 v6577, v2195 move/16 v7970, v12183 move/16 v1067, v11332 move/16 v19661, v20218 move/16 v19453, v31310 move/16 v8264, v15581 move/16 v8673, v31131 move-object/16 v25474, v2883 move/16 v16299, v9249 move-wide/16 v24193, v31185 move/16 v26844, v12698 move-wide/16 v20617, v30838 move/16 v6973, v3884 move/16 v25647, v26480 move/16 v28971, v26480 move-wide/16 v27360, v13579 move-wide/16 v31004, v9197 move/16 v3937, v6470 move/16 v14752, v4839 move/16 v23944, v18077 move/16 v2752, v22776 move-wide/16 v15736, v3978 move/16 v2495, v23680 move-wide/16 v18928, v23213 move-object/16 v26536, v19429 move/16 v20834, v6382 move-wide/16 v8233, v15544 move/16 v1247, v28296 move/16 v18227, v6065 move/16 v23713, v31954 move-wide/16 v13345, v9385 move/16 v19370, v27742 move/16 v7281, v19600 move/16 v19490, v2809 move-object/16 v29619, v13441 move/16 v9039, v29276 move-object/16 v29674, v5478 move-wide/16 v19894, v5376 move/16 v29870, v158 move-wide/16 v7045, v13267 move/16 v18013, v11782 move-wide/16 v30209, v7021 move/16 v28578, v26563 move-object/16 v19661, v26556 move-wide/16 v30069, v3756 move/16 v8788, v14505 move/16 v29054, v19296 move-object/16 v10688, v30738 move-wide/16 v3622, v18563 move/16 v32377, v26844 move-object/16 v4541, v792 move/16 v23130, v32193 move-wide/16 v6100, v1753 move-wide/16 v16863, v30752 move/16 v21552, v28675 move-object/16 v29780, v14626 move-wide/from16 v158, v29937 move/16 v2001, v15476 move/16 v9173, v16649 move-wide/16 v25857, v25076 move/16 v1938, v17679 move-wide/16 v9582, v6852 move-wide/16 v29968, v4208 move-wide/16 v12885, v7021 move/16 v21806, v27101 move/16 v13165, v28767 move/16 v6511, v5943 move-wide/16 v16291, v21367 move-wide/16 v16277, v16739 move/16 v14001, v6298 move/16 v15993, v9065 move-wide/16 v15115, v32061 move-wide/16 v18481, v14466 move-wide/16 v31839, v17802 move/16 v6961, v23596 move/16 v1490, v4248 move-wide/16 v16852, v28911 move/16 v13870, v26885 move-wide/16 v1575, v7073 move-wide/16 v7974, v15998 move-wide/16 v10212, v22780 move/16 v1575, v31789 move-wide/16 v30356, v6852 move/16 v23264, v8777 move/16 v19098, v10580 move/16 v1756, v2010 move/16 v32127, v9039 move/16 v14626, v23997 move-wide/16 v7838, v20505 move/16 v13579, v1067 move-wide/16 v208, v1605 move/16 v27286, v28597 move/16 v17506, v6026 move-wide/16 v16780, v12762 move/16 v548, v8508 move-wide/16 v25880, v21681 move-wide/16 v11355, v10219 move/16 v28755, v22776 move-wide/16 v31723, v7646 move/16 v1102, v19679 move/16 v23616, v5354 move/16 v29762, v17201 move/16 v15981, v29736 move-object/16 v32127, v18036 move/16 v14276, v12249 move-object/16 v8474, v17723 move-wide/16 v8937, v17348 move/16 v26845, v1127 move/16 v24589, v7153 move/16 v21668, v2593 move-wide/16 v5336, v5403 move/16 v13892, v16038 move-object/16 v23268, v31553 move-object/16 v17455, v22828 move/16 v23486, v2 move-object/16 v30886, v29750 move/16 v23265, v16553 move-object/16 v17396, v3875 move-wide/16 v14040, v26704 move/16 v30742, v10527 move-wide/16 v9010, v15446 move-wide/16 v23511, v23303 move-object/16 v14683, v1231 move-wide/16 v30200, v22293 move/16 v23270, v8216 move-wide/16 v6590, v25076 move-wide/16 v19201, v5415 move/16 v18041, v3783 move/16 v4943, v15229 move-wide/16 v12458, v23105 move-wide/16 v5429, v16102 move-wide/16 v10388, v18294 move-wide/16 v20868, v13796 move-wide/16 v30398, v24922 move/16 v4975, v276 move-wide/16 v18253, v24327 move/16 v1357, v17071 move/16 v4032, v26003 move/16 v19323, v11517 move-wide/16 v29209, v25572 move/16 v28594, v15357 move-object/16 v18311, v5140 move-object/16 v4993, v11744 move/16 v27217, v23226 move-object/16 v22315, v11928 move-wide/16 v31982, v432 move-wide/16 v30965, v30256 move/16 v23975, v28622 move/16 v18511, v26845 move/16 v32016, v19161 move/16 v4943, v1638 move/16 v19481, v7427 move-wide/16 v27352, v21984 move/16 v31202, v946 move-wide/16 v7732, v29937 move/16 v8186, v7428 move/16 v9476, v26893 move/16 v6065, v11521 move-wide/16 v6123, v7073 move/16 v10260, v15375 move-object/16 v8832, v10958 move-wide/16 v21457, v20822 move/16 v23872, v31691 move/16 v26704, v29024 move/16 v5908, v20482 move-wide/16 v8483, v16852 move-wide/16 v3490, v432 move/16 v14327, v13888 move-object/16 v7914, v27640 move-wide/16 v20697, v14582 move-object/16 v23883, v18273 move/16 v26798, v23082 move-wide/16 v27495, v12458 move/16 v11166, v4668 move-wide/16 v11243, v28871 move/16 v24718, v1033 move/16 v9959, v3012 move-wide/16 v31310, v22785 move-object/16 v6471, v24919 move/16 v27077, v18417 move-object/16 v6709, v15235 move/16 v14927, v13569 move-object/16 v3562, v9764 move-wide/16 v22238, v14013 move-wide/16 v304, v12762 move/16 v22084, v6979 move/16 v27249, v8694 move-object/16 v21721, v20889 move-wide/16 v21418, v31839 move/16 v5456, v1357 move/16 v13226, v23052 move-wide/16 v27376, v3725 move/16 v10924, v20644 move-wide/16 v1943, v12937 move/16 v24397, v5541 move-wide/16 v2850, v32627 move-wide/16 v25914, v29324 move-wide/16 v15981, v10370 move-wide/16 v18539, v20531 move-wide/16 v31723, v26829 move/16 v14396, v21138 move-object/16 v4133, v14005 move/16 v16428, v4805 move/16 v11578, v928 move-object/16 v19281, v7898 move-object/16 v24802, v12971 move-wide/16 v28642, v15201 move-wide/16 v15803, v7637 move-wide/16 v27892, v5042 move/16 v16133, v2800 move/16 v19004, v25482 move-object/16 v13544, v14683 move/16 v13990, v9685 move-object/16 v7545, v28547 move-wide/16 v15102, v19301 move/16 v23653, v10353 move/16 v30004, v19048 move-wide/16 v18802, v4573 move/16 v31337, v10237 move-object/16 v7428, v7451 move/16 v30833, v15229 move-wide/16 v4723, v19411 move-object/16 v30525, v20525 move-object/16 v28982, v21866 move/16 v11516, v30874 move-wide/16 v16506, v28640 move/16 v20247, v29024 move-object/16 v24589, v9552 move-object/16 v1529, v30674 move-object/16 v18486, v24977 move-object/from16 v165, v31089 move-object/16 v29146, v3730 move/16 v5174, v32183 move-wide/16 v8481, v24791 move/16 v25731, v2010 move/16 v4319, v23423 move/16 v5976, v12965 move/16 v13340, v30783 move/16 v1999, v10320 move/16 v11900, v1713 move-object/16 v9525, v32186 move/16 v12142, v13340 move/16 v19961, v16968 move-object/16 v11397, v5391 move/16 v29689, v20153 move-wide/16 v22682, v4651 move-wide/16 v18968, v6081 move-wide/16 v20236, v18145 move/16 v7169, v17798 move-object/16 v5963, v27252 move-wide/16 v18094, v16632 move-wide/16 v32041, v3634 move/16 v18774, v21677 move-object/16 v2247, v2620 move/16 v22562, v22082 move/16 v31020, v8214 move-object/16 v14327, v22158 move/16 v25828, v14650 move/16 v24148, v23558 move-wide/16 v20337, v26330 move/16 v30231, v27654 move/16 v3009, v252 move-wide/16 v138, v26418 move-wide/16 v30864, v4208 move-object/16 v18374, v19060 move-wide/16 v11242, v3308 move/16 v29418, v6661 move-wide/16 v15149, v21367 move/16 v20434, v9422 move-wide/16 v2610, v15161 move/16 v8401, v24912 move-object/16 v22293, v852 move/16 v5259, v14276 move/16 v31441, v19989 move-object/16 v20596, v13569 move-wide/16 v18033, v3291 move-object/16 v6783, v20153 move-object/16 v12518, v19600 move/16 v14747, v16941 move-object/16 v4887, v11744 move/16 v26893, v23600 move/16 v27252, v18013 move-object/16 v10491, v23883 move/16 v13943, v29471 move-object/16 v21542, v5981 move/16 v27228, v1960 move-object/16 v28409, v9552 move/16 v10700, v23862 move/from16 v219, v28755 move-wide/from16 v73, v3634 move/16 v30783, v4784 move/16 v26373, v5588 move-object/16 v8768, v9623 move-wide/16 v2136, v12147 move/16 v7385, v14750 move-wide/16 v4194, v2697 move-object/16 v3098, v18722 move-object/16 v8872, v9735 move/16 v18659, v1287 move-object/16 v15469, v7113 move-wide/16 v29155, v30282 move/16 v25808, v23830 move-object/16 v29838, v10439 move-object/16 v324, v12282 move-wide/16 v9310, v15803 move-wide/16 v8031, v7732 move/16 v30886, v19296 move/16 v9977, v18118 move-wide/16 v931, v5706 move/16 v2774, v27344 move-object/16 v12611, v19419 move/16 v9213, v14783 move-object/16 v26057, v19652 move/16 v8054, v29762 move/16 v29563, v19161 move/16 v22779, v11982 move-wide/16 v27955, v18734 move-object/16 v27034, v15925 move-wide/16 v1102, v25251 move-wide/16 v18137, v10676 move-wide/16 v22523, v10990 move-wide/16 v19750, v14219 move/16 v3234, v7156 move-wide/16 v3720, v4561 move-wide/16 v7218, v476 move-wide/16 v4889, v12937 move-wide/16 v6881, v12501 move/16 v6748, v20622 move/from16 v252, v20153 move-wide/16 v16335, v23213 move/16 v18158, v19652 move-object/16 v15983, v10688 move/16 v19058, v25994 move-wide/16 v20218, v12824 move-wide/16 v30652, v5575 move-object/16 v15558, v24380 move-wide/16 v9959, v25263 move/16 v8832, v23283 move/16 v30781, v20691 move-wide/16 v9685, v26127 move-wide/16 v12147, v27066 move-object/16 v2976, v20794 move/16 v30300, v3098 move-wide/16 v28223, v10874 move-object/16 v2285, v12611 move-object/16 v27787, v24380 move/16 v28948, v17401 move/16 v9261, v634 move-wide/16 v20420, v15568 move/16 v29559, v25542 move/16 v32666, v28449 move-object/16 v19628, v6415 move/16 v32183, v32183 move-wide/16 v28401, v8475 move/16 v30576, v12537 move/16 v28409, v16688 move/16 v17809, v22197 move/16 v25814, v21983 move-wide/16 v4432, v28640 move-wide/16 v13452, v29928 move/16 v31240, v21446 move/16 v16947, v32650 move-wide/16 v10650, v7440 move-wide/16 v12038, v21369 move-wide/16 v29003, v6881 move-wide/16 v31176, v29324 move-object/16 v7483, v19652 move-wide/16 v9365, v24195 move/16 v21310, v20067 move/16 v8103, v8271 move/16 v18511, v8832 move/16 v13452, v26365 move-object/16 v14005, v19249 move-object/16 v20712, v4077 move-wide/16 v24846, v24643 move-object/16 v10385, v10641 move/16 v6096, v16428 move-wide/from16 v2, v580 move/16 v28723, v28767 move/16 v27952, v1769 move/16 v15066, v7963 move/16 v5559, v28469 move/16 v14463, v15849 move-wide/16 v24587, v26273 move/16 v12275, v32208 move/16 v8699, v32645 move/16 v15750, v23830 move/16 v10952, v4568 move-wide/16 v27212, v24955 move-wide/16 v1397, v20931 move/16 v27117, v29831 move/16 v31598, v785 move-object/16 v22828, v4255 move/16 v3726, v7499 move-object/16 v30446, v14936 move-wide/16 v24807, v23495 move-wide/16 v23153, v32632 move/16 v3615, v27723 move-object/16 v2835, v10716 move/16 v5600, v13906 move/16 v10482, v15659 move/16 v27697, v17278 move/16 v8045, v10294 move/16 v31025, v18978 move/16 v17138, v15797 move-object/16 v8872, v1909 move-wide/16 v22445, v23511 move-object/16 v29552, v17876 move-object/from16 v150, v13752 move/16 v11058, v10962 move-object/16 v24011, v21850 move/16 v3764, v488 move-object/16 v2774, v18273 move-wide/16 v12717, v18014 move/16 v26732, v31034 move/16 v28519, v9283 move/16 v16273, v19226 move/16 v3049, v24912 move-object/16 v16654, v11744 move-wide/16 v23441, v11219 move/16 v26898, v15307 move-wide/16 v28636, v3330 move/16 v31940, v8685 move/16 v2820, v7630 move-object/16 v21342, v516 move-wide/16 v3138, v15568 move/16 v17679, v18455 move/16 v4898, v9064 move-object/16 v27410, v13091 move-wide/16 v3238, v31310 move-object/16 v19201, v28143 move-object/16 v23874, v13225 move-wide/16 v31815, v13113 move/16 v3490, v20153 move/16 v16585, v19974 move-wide/16 v15489, v27242 move-wide/16 v24515, v22688 move-object/16 v19904, v10641 move/16 v30325, v12537 move-object/16 v6087, v2774 move/16 v16100, v30056 move/16 v19673, v32016 move/16 v26161, v23707 move-wide/16 v7794, v17780 move-wide/16 v15885, v14609 move-wide/16 v17211, v138 move-wide/16 v12038, v7674 move-object/16 v6163, v4077 move/16 v9105, v23862 move/16 v21310, v5981 move/16 v27807, v17538 move/16 v3349, v18267 move/16 v374, v21983 move-wide/16 v3840, v25857 move-wide/16 v13091, v27331 move-object/16 v5588, v29088 move-object/16 v1033, v10688 move-wide/16 v12302, v21605 move-wide/16 v25310, v14609 move/16 v16941, v26857 move/16 v25282, v16579 move/16 v27639, v19844 move-wide/16 v20860, v20764 move-wide/16 v13622, v28401 move/16 v15375, v29526 move-object/16 v24372, v21866 move/16 v13892, v8329 move/16 v11660, v14200 move-wide/16 v26069, v9831 move/16 v28597, v19989 move-wide/16 v28254, v24842 move/16 v20505, v1306 move-object/16 v12965, v21126 move/16 v20243, v7797 move-wide/16 v24669, v27138 move-wide/16 v20634, v2407 move/16 v29710, v11960 move-wide/16 v23436, v21669 move/16 v25846, v19628 move-wide/16 v17510, v12395 move/16 v25703, v7483 move-object/16 v3687, v22764 move-wide/16 v26928, v18651 move/16 v16258, v8994 move-wide/16 v23082, v26127 move/16 v10243, v28201 move-wide/16 v2785, v16032 move/16 v26954, v19673 move-object/16 v24304, v13266 move-object/16 v19098, v22315 move-wide/16 v21583, v20337 move-object/16 v32729, v1298 move-object/16 v10688, v8768 move-wide/16 v29713, v21904 move/16 v2809, v24905 move/16 v4719, v677 move/16 v15912, v23997 move/16 v7169, v10839 move-wide/16 v12343, v5517 move-wide/16 v24955, v27495 move/16 v29482, v3643 move-wide/16 v16510, v2104 move/16 v30161, v13888 move-object/16 v20224, v25831 move-wide/16 v26564, v9365 move/16 v10411, v240 move/16 v22090, v29627 move-wide/16 v30256, v11556 move-wide/16 v27066, v31815 move/16 v15685, v1811 move/16 v5890, v32768 move-object/16 v24031, v25846 move/16 v31564, v18472 move-object/16 v6367, v7169 move-wide/16 v12923, v24950 move-wide/16 v18077, v1109 move/16 v1298, v29172 move-wide/16 v15769, v20337 move-object/16 v27101, v11064 move/16 v31275, v20796 move/16 v20034, v14161 move/16 v14616, v24695 move/16 v30635, v4568 move-wide/16 v29858, v20868 move/16 v14912, v3082 move/16 v21306, v8225 move-object/16 v2724, v13015 move-wide/16 v17714, v7732 move/16 v21580, v15139 move/16 v14862, v28734 move-object/16 v24486, v18630 move/16 v8214, v10611 move-wide/16 v8574, v15366 move/16 v26117, v31955 move-object/16 v22937, v23312 move-wide/16 v27708, v10403 move-wide/16 v650, v5952 move/16 v1555, v20034 move-object/16 v18033, v18641 move-object/16 v3227, v3192 move/16 v28303, v23548 move/16 v26590, v2809 move/16 v812, v23600 move/16 v9959, v23975 move/16 v28675, v31900 move-wide/16 v2497, v24643 move-wide/16 v8761, v4062 move-wide/16 v27167, v28287 move/16 v17774, v10772 move/16 v32729, v5698 move-object/16 v476, v5391 move-wide/16 v11516, v12937 move/16 v1811, v21440 move-object/16 v23557, v4993 move-wide/16 v9384, v12717 move/16 v18882, v27640 move-wide/16 v22532, v17802 move/16 v12773, v16100 move/16 v6081, v3490 move-wide/16 v2907, v30009 move-object/16 v15406, v31475 move/16 v13483, v31240 move/16 v4462, v4487 move-wide/16 v4369, v6974 move-object/16 v15893, v16654 move/16 v27983, v14505 move/16 v18436, v24916 move/16 v20437, v24710 move-wide/16 v12482, v25887 move/16 v26457, v16941 move-object/16 v23279, v27366 move-object/16 v20333, v21310 move-wide/16 v6028, v8483 move-wide/16 v18193, v11710 move/16 v24728, v31194 move-wide/16 v10388, v32632 move/16 v18289, v19847 move/16 v26342, v8699 move/16 v4557, v10151 move-object/16 v17633, v523 move-wide/16 v16941, v17802 move-wide/16 v7666, v18193 move/16 v14510, v24232 move/16 v16401, v19312 move/16 v20243, v13483 move/16 v9576, v22574 move/16 v10136, v26373 move/16 v17369, v11636 move-wide/16 v26549, v24939 move-object/16 v31488, v29674 move-object/16 v23185, v32767 move/16 v23495, v30874 move-wide/16 v1287, v16877 move-wide/16 v20158, v8533 move-wide/16 v6123, v18077 move/16 v4709, v12670 move/16 v2147, v32708 move/16 v10081, v16461 move-wide/16 v28251, v5376 move-wide/16 v8522, v31660 move-wide/16 v14401, v872 move/16 v14337, v3881 move/16 v2492, v30945 move/16 v276, v23830 move/16 v28974, v6738 move-wide/16 v18010, v16639 move/16 v15794, v785 move/16 v3475, v24383 move-object/16 v32361, v12055 move/16 v3548, v12698 move-wide/16 v23425, v20531 move/16 v19876, v23418 move-wide/16 v52, v3840 move-wide/16 v4719, v29389 move/16 v24733, v11211 move-object/16 v5114, v8825 move-wide/16 v10611, v7257 move/16 v2228, v19884 move/16 v8533, v23043 move/16 v14936, v9375 move-wide/16 v9334, v2777 move-wide/16 v604, v580 move/16 v30421, v30161 move/16 v32558, v6324 move/16 v6347, v19974 move/16 v8038, v22315 move/16 v19114, v2182 move/16 v6790, v15617 move/16 v13579, v32208 move-wide/16 v18992, v6374 move/16 v29923, v32179 move/16 v27026, v29598 move-wide/16 v2529, v1971 move/16 v24452, v15581 move-wide/16 v27260, v16200 move-object/16 v13784, v32767 move-object/16 v7977, v2285 move/16 v21542, v29526 move/16 v19998, v30270 move-wide/16 v293, v17562 move-object/16 v24824, v29615 move/16 v25572, v28085 move-object/16 v31085, v29071 move-object/16 v3765, v10032 move-wide/16 v4305, v2907 move/16 v32558, v20691 move-object/16 v28734, v27410 move-wide/16 v2835, v213 move/16 v19382, v0 move-object/16 v7628, v6709 move-wide/16 v1621, v17749 move-wide/16 v18986, v21559 move/16 v923, v9872 move/16 v11875, v16651 move-wide/16 v8937, v21926 move-wide/16 v6790, v23840 move-object/16 v15834, v11064 move/16 v9384, v1481 move-wide/16 v20236, v22761 move/16 v3951, v31872 move/16 v10012, v3559 move/16 v26558, v24728 move-wide/16 v28572, v30838 move-wide/16 v1556, v18928 move/16 v24407, v20836 move/16 v2060, v747 move-wide/16 v11782, v24791 move/16 v24503, v9173 move-wide/16 v20034, v15885 move/16 v4219, v20691 move/16 v26566, v20437 move/16 v5541, v19830 move-wide/16 v5595, v9032 move/16 v28223, v13380 move-wide/16 v3419, v5575 move-object/16 v7304, v13266 move-wide/16 v8761, v32749 move-wide/16 v28060, v5250 move-wide/16 v2495, v12343 move-wide/16 v12506, v3706 move/16 v31696, v18436 move-object/16 v4248, v2656 move/16 v10074, v31025 move/16 v29079, v10698 move-wide/16 v32087, v28811 move-wide/16 v10385, v26923 move-wide/16 v14421, v14421 move-wide/16 v8841, v25342 move-wide/16 v20337, v10139 move/16 v14582, v16100 move-wide/16 v2483, v30652 move-wide/16 v13266, v30790 move/16 v4573, v28882 move-wide/16 v8167, v5524 move-wide/16 v5336, v32225 move/16 v17809, v4815 move-object/16 v12510, v9265 move-wide/16 v32449, v3072 move/16 v13113, v17985 move/16 v18488, v25838 move-object/16 v32428, v14652 move/16 v6291, v27026 move-wide/16 v9353, v4062 move/16 v30307, v2172 move/16 v18472, v6783 move-wide/16 v16461, v597 move/16 v21577, v4855 move-wide/16 v30307, v18539 move-wide/16 v27322, v28401 move/16 v8642, v28971 move-wide/16 v29187, v2064 move/16 v6248, v5215 move/16 v21215, v9322 move-wide/16 v26549, v8475 move-wide/16 v21935, v20822 move/16 v13340, v6115 move-object/16 v28223, v28547 move-object/16 v28767, v29552 move/16 v9318, v1960 move-wide/16 v30734, v208 move/16 v26586, v4689 move-wide/16 v28526, v2495 move-object/16 v8602, v32559 move/16 v14493, v7056 move/16 v13029, v19891 move/16 v3082, v21276 move-wide/16 v23153, v9010 move/16 v21028, v28430 move-wide/16 v17444, v30981 move-object/16 v32363, v25117 move/16 v12965, v22872 move/16 v6783, v27655 move/16 v19953, v19357 move-wide/16 v21899, v12478 move/16 v585, v14240 move/16 v2133, v31564 move-wide/16 v31723, v1415 move/16 v15151, v31441 move-wide/16 v6406, v10990 move/16 v27461, v28873 move/16 v2407, v14132 move-wide/16 v4479, v30282 move/16 v19006, v17169 move-wide/16 v21437, v208 move/16 v1386, v32769 move-wide/16 v2534, v12592 move/16 v5465, v26966 move-wide/16 v31618, v4369 move-wide/16 v6862, v30752 move-object/16 v27632, v30227 move/16 v11601, v17679 move/16 v21393, v8306 move-wide/16 v2325, v1753 move/16 v23616, v30759 move/16 v20058, v6382 move/16 v10012, v28723 move/16 v16852, v26893 move-object/16 v1618, v4947 move/16 v28285, v30742 move-object/16 v27373, v15584 move-object/16 v2900, v9066 move/16 v27261, v7754 move/16 v4784, v8497 move-wide/16 v7786, v453 move-wide/16 v28934, v13091 move-wide/16 v18972, v15366 move-object/16 v18999, v24018 move/16 v6814, v14876 move-wide/16 v24347, v6100 move/16 v31859, v19844 move-wide/16 v10476, v29858 move/16 v27461, v17201 move-wide/16 v31910, v30398 move-wide/16 v30645, v15481 move-wide/16 v13717, v24538 move-object/16 v3308, v28982 move-wide/16 v10621, v1732 move-object/16 v13882, v27373 move-wide/16 v27161, v27322 move/16 v5616, v28882 move/16 v18130, v24905 move-object/16 v17506, v4586 move/16 v4001, v23486 move/16 v6577, v15834 move-wide/16 v20123, v7838 move-wide/16 v14562, v5866 move/16 v29342, v10865 move-wide/16 v30290, v18651 move/16 v11916, v7187 move-wide/16 v374, v9477 move/16 v1411, v24926 move-wide/16 v931, v6028 move/16 v16813, v8647 move/16 v31337, v9576 move/16 v30783, v10531 move-wide/16 v29017, v728 move-object/16 v4036, v1523 move-object/16 v29117, v4540 move-wide/16 v27242, v26047 move/16 v19357, v23862 move-wide/16 v14562, v16769 move-wide/16 v15750, v23082 move-object/16 v32636, v2620 move-wide/16 v10464, v28572 move-wide/16 v27825, v13552 move-wide/16 v4689, v30298 move-object/16 v3330, v8251 move/16 v5890, v31523 move/16 v27736, v26798 move/16 v11812, v26738 move-object/16 v12885, v13441 move-wide/16 v31789, v5227 move/16 v24788, v23226 move/16 v22611, v28085 move-wide/16 v25028, v10941 move-wide/16 v32449, v24955 move-wide/16 v8497, v24499 move/16 v27277, v29526 move-wide/16 v5593, v28351 move/16 v27146, v24695 move-object/16 v22884, v13882 move-wide/16 v12467, v15443 move/16 v18843, v19830 move-wide/16 v32728, v18331 move-object/16 v15066, v9735 move/16 v29891, v29627 move-wide/16 v25342, v24499 move-wide/16 v30227, v28060 move/16 v32558, v15229 move/16 v4307, v23459 move-wide/16 v25063, v5706 move-object/16 v21215, v8818 move/16 v26373, v8877 move/16 v16360, v28882 move/16 v10209, v18843 move-wide/16 v3337, v30026 move/16 v10486, v8401 move-object/16 v24589, v26621 move/16 v8522, v14633 move/16 v13677, v31278 move-object/16 v1287, v6471 move-object/16 v3019, v14683 move/16 v29765, v32299 move/16 v1922, v16553 move-wide/16 v24587, v29952 move/16 v29627, v6347 move/16 v11458, v747 move-wide/16 v5409, v29187 move/16 v25285, v6979 move-object/16 v27161, v21464 move/16 v27066, v15903 move-wide/16 v24587, v17593 move/16 v12596, v10700 move/16 v17924, v11840 move/16 v1908, v29079 move-object/16 v4388, v21721 move-object/16 v28971, v17524 move/16 v14026, v31194 move-object/16 v14434, v25474 move-wide/16 v3962, v6374 move-wide/16 v29952, v23926 move/16 v4319, v553 move/16 v25696, v8685 move-wide/16 v26930, v32155 move/16 v3765, v8508 move-wide/16 v31739, v26564 move-wide/16 v9601, v783 move/16 v12762, v4898 move/16 v28640, v14026 move-wide/16 v30421, v24038 move/16 v12826, v15903 move/16 v14013, v28713 move-object/16 v13178, v30639 move-wide/16 v18968, v14339 move-wide/16 v5250, v14659 move-wide/16 v31004, v18193 move/16 v15849, v6511 move-object/16 v11928, v32086 move-wide/16 v1386, v9644 move-object/16 v12358, v13569 move-object/16 v16654, v23252 move-wide/16 v28974, v1095 move-wide/16 v26845, v15568 move/16 v10136, v12032 move-object/16 v13693, v17506 move-wide/16 v22530, v5760 move/16 v32774, v26365 move/16 v16196, v19998 move/16 v20270, v25118 move/16 v4760, v30004 move-wide/16 v29803, v28648 move-object/16 v19453, v31358 move-wide/16 v30898, v8649 move-object/16 v8216, v2976 move-object/16 v10151, v32333 move/16 v30517, v3357 move-wide/16 v4815, v19301 move/16 v8948, v548 move-object/from16 v240, v19060 move/16 v10421, v29482 move-wide/16 v23670, v31982 move/16 v27167, v24422 move-wide/16 v4828, v26472 move-wide/16 v11020, v27917 move-object/16 v18674, v10580 move/16 v10932, v23944 move-object/16 v6730, v22130 move/16 v1981, v17659 move/16 v12001, v9959 move/16 v20219, v24273 move/16 v1800, v24832 move/16 v15481, v1108 move-object/16 v16877, v9514 move-wide/16 v20418, v13728 move/16 v8256, v25340 move/16 v24787, v6257 move/16 v17659, v26558 move-wide/16 v23066, v29107 move-object/16 v25598, v4661 move/16 v26353, v10110 move-wide/16 v9582, v32760 move-wide/16 v26472, v19103 move-object/16 v32181, v28148 move-wide/16 v8841, v10941 move/16 v15903, v8214 move-object/16 v3500, v24077 move-wide/16 v27168, v23686 move-wide/16 v21406, v26879 move/16 v22245, v7058 move-wide/16 v16366, v11775 move/16 v30525, v19365 move-object/16 v29003, v28143 move-wide/16 v2132, v7205 move/16 v26966, v9977 move-wide/16 v26161, v18294 move/16 v31131, v634 move/16 v27356, v23160 move-wide/16 v23975, v20274 move-wide/16 v21270, v23144 move-object/16 v24538, v20224 move-wide/16 v22948, v31419 move/16 v22661, v12761 move/16 v25740, v14177 move/16 v22168, v10149 move/16 v31731, v32650 move-object/16 v25118, v10842 move-wide/16 v5467, v7062 move/16 v12720, v13888 move/16 v21538, v26373 move-object/16 v13381, v13784 move/16 v11240, v15925 move-wide/16 v975, v10611 move/16 v10551, v2988 move/16 v13184, v15685 move/16 v8371, v25740 move-wide/16 v18879, v14535 move-object/16 v7956, v7772 move/16 v25263, v24452 move/16 v5056, v13177 move/16 v21481, v13990 move/16 v31131, v28881 move-object/16 v18170, v9265 move-wide/16 v25647, v18294 move/16 v18374, v17971 move-wide/16 v5890, v21583 move-wide/16 v2182, v3274 move-wide/16 v28578, v9164 move/16 v13560, v946 move/16 v17383, v12826 move-wide/from16 v208, v29811 move-object/16 v7393, v22846 move/16 v15469, v14062 move-wide/16 v32558, v6590 move/16 v8948, v15179 move-wide/16 v3579, v73 move/16 v7005, v13980 move-wide/16 v28260, v26127 move-object/16 v31286, v4388 move/16 v1411, v352 move/16 v8516, v31869 move-object/16 v685, v3330 move/16 v4194, v4036 move/16 v6852, v8633 move-wide/16 v9644, v22780 move-wide/16 v16894, v2073 move/16 v21812, v32666 move-wide/16 v30752, v18972 move-object/16 v5863, v29146 move/16 v32604, v4760 move/16 v13328, v27742 move-wide/16 v6709, v32760 move-object/16 v8788, v3098 move/16 v10531, v6065 move/16 v14658, v31233 move/16 v19093, v4898 move-object/16 v17659, v13441 move-wide/16 v6920, v14401 move/16 v10381, v24397 move-object/16 v24077, v17506 move/16 v1386, v20058 move-wide/16 v32373, v14391 move/16 v21367, v2479 move-object/16 v28548, v9106 move/16 v31561, v5635 move/16 v28267, v16813 move-wide/16 v9064, v29530 move-wide/16 v28122, v25936 move-object/16 v19825, v31191 move/16 v28260, v26117 move/16 v23160, v32208 move-wide/16 v19734, v15568 move/16 v5650, v11211 move/16 v13345, v32308 move/16 v7674, v20181 move/16 v25441, v10320 move-wide/16 v14927, v3585 move/16 v8280, v29627 move-wide/16 v6709, v32749 move-wide/16 v7673, v5952 move/16 v6026, v29153 move/16 v9310, v29563 move/16 v22725, v1025 move/16 v8038, v21306 move/16 v7637, v25499 move-object/16 v14421, v5114 move-object/16 v21866, v16651 move/16 v22392, v785 move/16 v29918, v1847 move-object/16 v23277, v13752 move/16 v10149, v7754 move/16 v10074, v19600 move-object/16 v22307, v22661 move/16 v28223, v26315 move/16 v4935, v1396 move-wide/16 v9455, v5376 move-object/16 v13808, v12510 move/16 v4290, v11588 move-wide/16 v6872, v20931 move-wide/16 v22761, v11710 move-wide/16 v30738, v3064 move-wide/16 v27217, v15885 move/16 v12358, v5259 move/16 v19699, v523 move-wide/16 v26399, v19917 move/16 v6757, v8533 move/16 v10390, v22838 move-wide/16 v31553, v15736 move-object/16 v25474, v1381 move-wide/16 v31013, v4204 move-wide/16 v23028, v32632 move/16 v19734, v3548 move/16 v2147, v2492 move-wide/16 v30779, v10468 move/16 v6295, v16762 move-wide/16 v23788, v11376 move-object/16 v13714, v24166 move/16 v29858, v21446 move-wide/16 v21981, v25310 move/16 v13728, v10149 move/16 v2774, v2809 move/16 v3840, v28594 move/16 v11803, v4804 move/16 v22526, v21536 move/16 v1909, v13795 move-object/16 v20420, v13569 move/16 v31281, v7970 move/16 v165, v32183 move-object/16 v29144, v27410 move/16 v13980, v12698 move-wide/16 v23276, v6100 move/16 v8832, v2031 move/16 v14750, v31954 move/16 v24230, v2988 move/from16 v117, v12966 move-wide/16 v22779, v20657 move/16 v30783, v23388 move/16 v25436, v24503 move-wide/16 v27410, v29952 move-wide/16 v2687, v22204 move/16 v15993, v28260 move-wide/16 v24807, v4204 move-wide/16 v9358, v6974 move-wide/16 v1386, v20617 move/16 v7056, v30152 move/16 v12028, v4029 move-object/16 v14806, v3192 move-wide/16 v32590, v15161 move-wide/16 v25343, v8649 move/16 v12252, v1983 move/16 v23578, v14871 move/16 v20622, v22661 move/16 v31176, v14510 move/16 v6961, v8251 move/16 v4524, v32708 move/16 v19164, v8054 move-wide/16 v29937, v27242 move-object/16 v23092, v15235 move/16 v29589, v28201 move-wide/16 v21968, v17780 move-wide/16 v8598, v15530 move-wide/16 v19237, v11710 move/16 v19894, v31872 move/16 v10839, v21534 move-wide/16 v30024, v16291 move-wide/16 v11710, v23754 move-wide/16 v4479, v14452 move/16 v3150, v2896 move/16 v4604, v2809 move/16 v3202, v4935 move-wide/16 v8508, v28287 move/16 v22459, v23680 move/16 v22600, v21538 move-object/16 v8777, v7977 move-wide/16 v26418, v12689 move-wide/16 v1769, v16908 move/16 v6277, v25340 move-object/16 v23947, v31085 move-wide/16 v27274, v7045 move/16 v19365, v31872 move/16 v28332, v18587 move/16 v21605, v6324 move/16 v20686, v25686 move-wide/16 v32275, v3940 move/16 v11933, v32193 move/16 v26472, v6738 move/16 v23226, v31954 move-object/16 v18079, v516 move-wide/16 v24273, v12689 move-object/16 v10684, v23279 move/16 v342, v9720 move-object/16 v11634, v25831 move-object/16 v31004, v23185 move/16 v2610, v11588 move-object/16 v14609, v8818 move-wide/16 v26161, v21119 move/16 v7722, v13345 move/16 v31561, v10865 move-wide/16 v20711, v21926 move/16 v21968, v26411 move/16 v4131, v1490 move-wide/16 v10353, v8841 move/16 v29659, v12028 move/16 v16026, v12626 move-wide/16 v11578, v2811 move/16 v23872, v31034 move-wide/16 v30484, v19496 move/16 v5250, v7517 move/16 v14650, v24787 move/16 v2722, v7898 move/16 v6305, v29923 move/16 v19141, v21276 move/16 v5732, v924 move-wide/16 v7172, v16380 move-wide/16 v26365, v31910 move-wide/16 v16055, v22785 move/16 v22884, v12965 move-object/16 v18014, v10491 move-wide/16 v10534, v13775 move/16 v24905, v21440 move-wide/16 v26003, v18968 move/16 v13443, v16196 move-object/16 v13728, v9735 move-wide/16 v26899, v7021 move-wide/16 v11269, v2835 move-wide/16 v22019, v30209 move-wide/16 v374, v18819 move-wide/16 v23557, v15378 move-object/16 v4906, v20067 move-wide/16 v29471, v6498 move-wide/16 v4604, v28275 move/16 v8883, v8103 move/16 v29344, v5982 move/16 v31004, v26563 move/16 v17071, v31636 move/16 v19161, v24422 move-wide/16 v28609, v6590 move/16 v9598, v23678 move/16 v7593, v9250 move/16 v5593, v13064 move/16 v19884, v29153 move/16 v25111, v17991 move-wide/16 v2182, v29107 move/16 v32228, v1306 move-object/16 v21563, v6714 move/16 v7630, v7212 move/16 v2623, v19953 move-wide/16 v10136, v20531 move/16 v5181, v25703 move/16 v5336, v11548 move-wide/16 v3171, v213 move/16 v6673, v26129 move/16 v7557, v32092 move/16 v22598, v2289 move/16 v29937, v27869 move-wide/16 v32092, v23309 move/16 v32376, v29891 move/16 v10621, v32238 move-wide/16 v32196, v24195 move-wide/16 v2896, v16352 move/16 v19405, v8306 move/16 v28934, v6661 move/16 v31191, v20808 move/16 v28317, v25994 move/16 v13980, v4327 move-wide/16 v24018, v20697 move/16 v6714, v6661 move-wide/16 v5732, v29725 move/16 v6065, v13483 move/16 v22084, v28723 move-wide/16 v32061, v20711 move-wide/16 v26096, v30752 move-wide/16 v20792, v20697 move/16 v5409, v26885 move/16 v24877, v21975 move-wide/16 v32093, v25028 move/16 v18992, v11788 move-wide/16 v31304, v16622 move-wide/16 v24407, v32093 move/16 v6850, v1108 move/16 v20617, v1922 move/16 v25846, v19673 move/16 v13345, v12855 move/16 v4668, v23130 move/16 v13279, v19093 move-wide/16 v15179, v1753 move-wide/16 v30298, v12482 move-wide/16 v23094, v2 move/16 v4018, v928 move/16 v7867, v13380 move-wide/16 v13263, v176 move-wide/16 v5496, v23207 move/16 v19226, v14267 move-wide/16 v31310, v23441 move/16 v23105, v21367 move-wide/16 v792, v8497 move/16 v3765, v24718 move/16 v15391, v23944 move/16 v20763, v29684 move/16 v18013, v19828 move/16 v28882, v20202 move/16 v6579, v8388 move-wide/from16 v117, v3532 move/16 v4018, v31441 move-wide/16 v19490, v28254 move/16 v16430, v4131 move/16 v12425, v24397 move-wide/16 v10188, v10464 move/16 v1732, v17971 move/16 v26161, v19226 move-object/16 v6123, v1231 move-wide/16 v14200, v16632 move-wide/16 v20386, v26928 move/16 v2262, v4804 move-wide/16 v12425, v3138 move-wide/16 v1127, v31982 move/16 v22872, v32179 move-wide/16 v792, v13305 move-object/16 v17348, v12437 move/16 v1756, v4568 move/16 v6961, v16472 move/16 v8522, v18462 move-object/16 v10688, v19600 move/16 v10135, v16891 move/16 v15584, v21536 move-wide/16 v25549, v26418 move/16 v22019, v19899 move/16 v17881, v21534 move-object/16 v21655, v10210 move/16 v812, v4001 move/16 v15307, v21605 move/16 v23548, v5924 move-wide/16 v27192, v12147 move/16 v28457, v30874 move-wide/16 v18331, v4689 move-wide/16 v27461, v21984 move/16 v28911, v14862 move/16 v17273, v3145 move/16 v28622, v14912 move-wide/16 v16552, v1109 move-wide/16 v18819, v7062 move/16 v18130, v16372 move-object/16 v9106, v26741 move-wide/16 v18463, v9164 move-wide/16 v792, v27917 move/16 v11406, v25499 move/16 v12537, v26844 move/16 v19750, v32048 move-wide/16 v17555, v21755 move-object/16 v13015, v28205 move-wide/16 v18239, v13707 move/16 v23880, v8817 move/16 v3091, v12244 move/16 v12539, v5629 move/16 v19496, v32645 move-wide/16 v12028, v5756 move/16 v24773, v24772 move-wide/16 v3419, v11079 move-wide/16 v7977, v24950 move/16 v7067, v28675 move/16 v28143, v8186 move-wide/16 v16428, v32117 move-wide/16 v15149, v23592 move/16 v9831, v18786 move-wide/16 v32117, v21270 move/16 v8391, v25263 move-object/16 v26371, v9106 move-object/16 v1141, v9806 move/16 v31691, v29071 move-object/16 v24230, v8602 move-wide/16 v14267, v1673 move-wide/16 v20868, v20782 move-wide/16 v27344, v19417 move-wide/16 v14, v21406 move-object/16 v28767, v13544 move-wide/16 v7435, v32730 move-wide/16 v4548, v5376 move-wide/16 v21968, v25924 move-wide/16 v2638, v5760 move-wide/16 v17679, v1397 move/16 v7936, v6905 move-wide/16 v18193, v10370 move-wide/16 v9934, v7257 move/16 v27360, v6719 move/16 v18436, v10165 move/16 v19357, v8037 move-wide/16 v2705, v7440 move/16 v22204, v10772 move-object/16 v27261, v17876 move/16 v6741, v32650 move-wide/16 v29619, v2785 move-wide/16 v29324, v1415 move/16 v2862, v18027 move/16 v28548, v4805 move/16 v23073, v5473 move/16 v27014, v585 move-object/16 v16813, v24675 move-wide/16 v17401, v14 move-object/16 v23883, v32127 move-wide/16 v2898, v3419 move/16 v20808, v6291 move/16 v14537, v11916 move/16 v7620, v26563 move/16 v14200, v24772 move/16 v20863, v30517 move/16 v27972, v22019 move/16 v12965, v3413 move/16 v15304, v8138 move-wide/16 v9865, v18972 move/16 v20622, v29249 move/16 v21868, v7898 move/16 v21344, v19453 move-wide/16 v2248, v2695 move-wide/16 v17060, v9455 move-wide/16 v18240, v20314 move/16 v11636, v14936 move-wide/16 v548, v24587 move/16 v28103, v10421 move/16 v32428, v29727 move/16 v26631, v31032 move-object/16 v12626, v31691 move/16 v2247, v23160 move-object/16 v19312, v24589 move-wide/16 v16691, v11438 move/16 v5250, v18992 move-wide/16 v16472, v23066 move-wide/16 v15612, v792 move-wide/16 v16196, v1556 move-wide/16 v12004, v4062 move-wide/16 v26418, v26127 move-wide/16 v9601, v15745 move-object/16 v16762, v32181 move-wide/16 v31310, v19301 move/16 v14827, v5354 move/16 v22256, v16968 move-object/16 v11335, v31286 move-wide/16 v11438, v21559 move-wide/16 v14267, v32093 move/16 v25076, v18992 move-wide/16 v15991, v16901 move/16 v6973, v9167 move-wide/16 v5629, v3622 move/16 v24452, v9531 move/16 v10376, v3049 move/16 v26079, v31233 move-wide/16 v31839, v22908 move/16 v23584, v29287 move/16 v2850, v14062 move-wide/16 v6850, v3337 move-object/16 v17216, v23312 move-wide/16 v30594, v7172 move/16 v12910, v0 move-wide/16 v11064, v30652 move-wide/16 v13029, v29725 move-wide/16 v2785, v8233 move-wide/16 v26161, v20314 move-object/16 v2262, v19189 move-object/16 v24514, v21344 move-wide/16 v19600, v23788 move/16 v15685, v9310 move/16 v29725, v17608 move/16 v1713, v5409 move-wide/16 v8158, v24075 move/16 v8264, v14493 move-wide/16 v14586, v16901 move/16 v11578, v5336 move-object/16 v26536, v10684 move-object/16 v7393, v13225 move/16 v13808, v3087 move-object/16 v23680, v1141 move-wide/16 v30261, v17802 move-object/16 v17839, v7772 move-wide/16 v12745, v30009 move-object/16 v2862, v12759 move-wide/16 v13177, v16380 move/16 v6039, v4031 move-object/16 v30874, v32361 move/16 v17216, v13281 move/16 v18488, v14026 move/16 v26549, v5908 move-wide/16 v32016, v30535 move/16 v27167, v3234 move/16 v2809, v19365 move-object/16 v29368, v24589 move-wide/16 v7285, v6179 move-wide/16 v3067, v24420 move-wide/16 v8981, v16291 move-wide/16 v10634, v21926 move-wide/16 v9557, v3756 move/16 v1743, v29736 move/16 v8251, v8877 move-wide/16 v30209, v21437 move-object/16 v7393, v22764 move/16 v11803, v2773 move-wide/16 v1201, v13091 move-wide/16 v27410, v3579 move/16 v1029, v9360 move-object/16 v14874, v22136 move-wide/16 v11166, v872 move/16 v20240, v30311 move-object/16 v10388, v15983 move/16 v11516, v8225 move-wide/16 v11933, v21369 move-wide/16 v9531, v14853 move-wide/16 v2773, v27471 move-object/16 v19263, v5588 move-object/16 v9477, v31089 move-object/16 v28275, v19904 move-object/16 v18722, v18882 move-wide/16 v26885, v7285 move/16 v5391, v14936 move-wide/16 v23812, v548 move/16 v21989, v18348 move-object/16 v16214, v58 move/16 v8401, v28129 move-wide/16 v5137, v5732 move/16 v4819, v165 move-wide/16 v19830, v5279 move/16 v18013, v21536 move-wide/16 v17135, v12302 move/16 v29172, v10376 move-object/16 v15161, v24486 move-wide/16 v2687, v21119 move-wide/16 v20069, v29017 move/16 v17555, v31940 move/16 v26457, v16871 move-wide/16 v31598, v12506 move-wide/16 v6208, v18986 move/16 v16258, v29482 move/16 v14272, v28317 move-wide/16 v26893, v30981 move-object/16 v32228, v24919 move-wide/16 v28755, v25914 move/16 v24038, v2610 move-wide/16 v23337, v26069 move/16 v4586, v27077 move/16 v6653, v19323 move-wide/16 v17383, v25880 move/16 v3226, v5863 move-wide/16 v2492, v24091 move-wide/16 v1735, v339 move/16 v29288, v31032 move/16 v18330, v15849 move-wide/16 v10721, v31185 move-wide/16 v11597, v18968 move-object/16 v785, v2900 move-wide/16 v11960, v27376 move-wide/16 v16038, v23425 move/16 v31463, v23073 move/16 v22084, v27717 move/16 v2285, v26590 move-object/16 v21899, v20153 move/16 v2809, v16295 move/16 v669, v10648 move/16 v24788, v18511 move-wide/16 v27376, v28811 move-object/16 v1676, v24372 move-wide/16 v16215, v5629 move/16 v25713, v7169 move/16 v17071, v14582 move/16 v3138, v14841 move-wide/16 v28640, v7073 move-wide/16 v32348, v7443 move-object/16 v9872, v11770 move/16 v14806, v19541 move-wide/16 v10221, v14535 move/16 v18923, v13906 move/16 v18013, v7105 move/16 v22720, v4975 move-object/16 v12937, v32253 move-wide/16 v9552, v26715 move/16 v8557, v22611 move-wide/16 v22530, v7002 move/16 v4915, v3202 move-object/16 v19750, v16021 move-wide/16 v10611, v8574 move-wide/16 v14284, v16366 move-wide/16 v3226, v7786 move/16 v24486, v6973 move-wide/16 v12275, v29940 move/16 v18027, v1357 move-object/16 v32688, v32391 move/16 v26857, v14891 move-object/16 v18486, v23494 move-object/16 v11409, v4036 move/16 v24031, v24291 move-object/16 v16832, v9318 move/16 v18879, v25957 move-wide/16 v13282, v10219 move-wide/16 v28401, v20697 move-object/16 v331, v7628 move/16 v7620, v10209 move-object/16 v28648, v24802 move-object/16 v30635, v21850 move/16 v9966, v24486 move-object/16 v15951, v19263 move-wide/16 v32204, v14957 move/16 v32208, v7593 move/16 v13184, v19281 move-wide/16 v9805, v17510 move/16 v5698, v19989 move/16 v5478, v13326 move/16 v21968, v17608 move/16 v8981, v15903 move-object/16 v23862, v31499 move/16 v15912, v26326 move/16 v17107, v30576 move/16 v30635, v18674 move-object/16 v6511, v19825 move/16 v27026, v21138 move-object/16 v391, v16021 move/16 v28469, v5635 move-wide/16 v31085, v15366 move/16 v16386, v29689 move/16 v5616, v13164 move-wide/16 v25251, v31419 move-wide/16 v2811, v8158 move/16 v20219, v17107 move-wide/16 v28075, v26686 move-object/16 v6439, v31691 move-object/16 v32074, v24483 move-wide/16 v22256, v6669 move-object/16 v30268, v5635 move/16 v5963, v6096 move-wide/16 v26636, v19417 move-wide/16 v23207, v30186 move-wide/16 v1840, v28442 move/16 v24081, v31463 move/16 v13795, v11332 move-object/16 v10491, v9066 move/16 v8158, v4632 move/16 v1415, v12001 move-object/16 v12745, v28471 move-wide/16 v6326, v7356 move/16 v32007, v3946 move-wide/16 v17667, v27274 move/16 v10800, v1713 move-object/16 v4055, v18079 move/16 v12249, v3661 move-wide/16 v31029, v4204 move-wide/16 v18253, v4479 move-wide/16 v10136, v28526 move/16 v1411, v10390 move/16 v11879, v7557 move-wide/16 v6748, v1840 move/16 v10468, v29710 move-object/16 v2262, v19249 move-object/16 v18094, v19249 move-wide/16 v21677, v18077 move/16 v2172, v28648 move-wide/16 v8533, v27274 move-object/16 v11879, v3500 move-wide/16 v12285, v4019 move/16 v19899, v29163 move/16 v14537, v6257 move/16 v30981, v29923 move-wide/16 v18417, v18802 move/16 v1102, v15292 move-object/16 v14037, v3175 move/16 v30498, v9249 move-wide/16 v888, v29471 move-wide/16 v19830, v5756 move/16 v8685, v31696 move-object/16 v26777, v1983 move/16 v3330, v12761 move-wide/16 v32225, v12715 move-wide/16 v9310, v3579 move/16 v9010, v22084 move/16 v22307, v31955 move-wide/16 v16472, v3430 move/16 v17593, v476 move/16 v25063, v29536 move/16 v26350, v3099 move-wide/16 v27983, v4432 move-wide/16 v4307, v29940 move/16 v26228, v29918 move/16 v18946, v28143 move/16 v27655, v27167 move/16 v4077, v5140 move-wide/16 v24106, v29381 move-wide/16 v26353, v5528 move/16 v32051, v7935 move-wide/16 v10714, v28642 move/16 v16273, v13328 move-wide/16 v17911, v14466 move-wide/16 v29725, v31910 move-wide/16 v26798, v28578 move-object/16 v9032, v3308 move-object/16 v24031, v23052 move-wide/16 v17095, v23968 move-wide/16 v3353, v73 move-wide/16 v21494, v12717 move/16 v8233, v22526 move/16 v12184, v20808 move-wide/16 v23880, v16352 move-object/16 v12348, v27464 move/16 v10157, v16026 move/16 v10874, v12554 move-wide/16 v6010, v23670 move/16 v24589, v8103 move/16 v27807, v29276 move/16 v31700, v17217 move-object/16 v4290, v23862 move-wide/16 v10135, v32260 move/16 v2894, v32650 move/16 v27344, v18168 move-wide/16 v27436, v73 move/16 v3337, v24333 move/16 v26930, v1938 move/16 v28181, v9060 move-wide/16 v7620, v4815 move/16 v8398, v10165 move-wide/16 v8371, v23975 move-object/16 v23511, v1960 move/16 v25073, v1600 move/16 v24357, v28332 move-object/16 v11803, v19262 move-wide/16 v10650, v23276 move-wide/16 v29952, v7440 move/16 v10817, v21534 move-wide/16 v16769, v28871 move-wide/16 v10737, v2811 move-wide/16 v20838, v4150 move-wide/16 v4001, v9552 move-wide/16 v27217, v13726 move-object/16 v10520, v5433 move-wide/16 v8788, v5134 move/16 v3820, v9959 move/16 v342, v16947 move-wide/16 v31475, v12689 move-wide/16 v27167, v26353 move-wide/16 v7172, v23660 move-wide/16 v18472, v4736 move-wide/16 v26129, v8788 move/16 v20437, v31202 move/16 v21981, v11588 move-wide/16 v3019, v2683 move/16 v3357, v11980 move-wide/16 v29107, v16215 move/16 v685, v14752 move-wide/16 v17620, v2195 move/16 v9250, v24383 move-wide/16 v22948, v30864 move/16 v23578, v24397 move/16 v21215, v32418 move/16 v15102, v11211 move-wide/16 v8497, v5376 move-wide/16 v4495, v20764 move/16 v23238, v21822 move/16 v6087, v19998 move/16 v1396, v3783 move-object/16 v4248, v21310 move/16 v12164, v8883 move-wide/16 v13888, v19411 move-object/16 v6845, v32391 move-object/16 v487, v1287 move-wide/16 v30714, v25746 move-wide/16 v8054, v5415 move-wide/16 v1510, v17780 move/16 v273, v10772 move/16 v27655, v4819 move/16 v6248, v16092 move/16 v23066, v18013 move/16 v25323, v20794 move/16 v19411, v18774 move-wide/16 v5616, v30738 move/16 v1676, v3202 move-wide/16 v21583, v24791 move-wide/16 v9587, v12147 move-wide/16 v17071, v3019 move-wide/16 v21677, v22357 move-wide/16 v24877, v15981 move/16 v4975, v6738 move/16 v18734, v23477 move/16 v7797, v6752 move/16 v1510, v1600 move/16 v29530, v4805 move/16 v4327, v11141 move-wide/16 v4248, v7443 move/16 v13579, v9322 move/16 v17943, v24611 move-object/16 v5246, v29144 move/16 v2182, v31696 move-object/16 v7532, v21868 move-object/16 v27162, v23760 move/16 v6037, v7680 move-object/16 v28825, v13226 move/16 v8587, v8209 move/16 v24788, v18041 move/16 v2064, v3078 move/16 v13906, v9250 move/16 v6179, v21806 move/16 v15406, v8225 move/16 v31281, v11458 move/16 v12042, v29858 move/16 v22574, v22392 move/16 v13476, v22392 move-object/16 v24499, v7772 move/16 v23418, v3078 move/16 v6881, v8897 move/16 v15750, v617 move-object/16 v19114, v27162 move-object/16 v32373, v19189 move/16 v5376, v32769 move/16 v14284, v6515 move-wide/16 v13990, v31155 move-object/16 v8225, v21655 move/16 v5215, v25135 move-object/16 v19958, v21563 move/16 v16832, v5261 move-wide/16 v5522, v7858 move/16 v3086, v22731 move/16 v4031, v28094 move/16 v20243, v25808 move-object/16 v10012, v6584 move-object/16 v16335, v2431 move/16 v14841, v15414 move-wide/16 v3918, v4495 move-object/16 v16472, v10012 move/16 v7628, v27101 move/16 v28442, v14284 move-object/16 v959, v23760 move/16 v18118, v28267 move-wide/16 v1732, v23026 move/16 v2898, v11057 move-wide/16 v10676, v31618 move/16 v6037, v6291 move/16 v9695, v25808 move/16 v7449, v13452 move/16 v21182, v19828 move/16 v3296, v20617 move/16 v22238, v17943 move-object/16 v9644, v18630 move-object/16 v30270, v28825 move-wide/16 v22738, v3430 move/16 v12467, v16092 move/16 v23109, v9289 move/16 v7073, v8388 move/16 v8138, v23130 move-object/16 v23616, v10958 move/16 v19370, v20505 move-wide/16 v16748, v2964 move/16 v26226, v12855 move/16 v26330, v132 move-wide/16 v31869, v24669 move-wide/16 v20931, v11628 move/16 v31940, v21882 move-object/16 v856, v10265 move/16 v15361, v8557 move/16 v31202, v22764 move/16 v5114, v28622 move/16 v21702, v29684 move-object/16 v7557, v15925 move-object/16 v30498, v7118 move-wide/16 v27654, v30069 move/16 v30105, v4029 move-wide/16 v3349, v16932 move-object/16 v16360, v31286 move/16 v16170, v10380 move-wide/16 v5250, v26273 move/16 v13158, v19164 move-wide/16 v28409, v30026 move-wide/16 v30471, v17211 move/16 v10520, v26732 move-wide/16 v5042, v19550 move/16 v26326, v8511 move-object/16 v11775, v13226 move-object/16 v4760, v7428 move-object/16 v28590, v22773 move-wide/16 v7963, v3238 move-object/16 v22932, v26536 move-object/16 v21488, v28205 move/16 v29482, v7936 move/16 v28882, v22776 move-wide/16 v17538, v30307 move/16 v13990, v17217 move/16 v8353, v18734 move-object/16 v5629, v7118 move/16 v15849, v20247 move-wide/16 v19884, v2835 move/16 v10260, v27723 move-wide/16 v19237, v4604 move/16 v1960, v23781 move-object/16 v17359, v17215 move-object/16 v30026, v150 move-object/16 v1769, v13693 move-object/16 v31400, v22773 move/16 v1840, v25073 move-wide/16 v20711, v26885 move-object/16 v8280, v10716 move-wide/16 v31564, v27274 move-object/16 v21119, v1769 move/16 v1109, v24905 move/16 v856, v30278 move-object/16 v26096, v17839 move-wide/16 v12282, v24193 move-object/16 v24038, v16273 move/16 v30594, v15469 move-wide/16 v18374, v21437 move/16 v2073, v13279 move/16 v28143, v6577 move/16 v15993, v30765 move/16 v1800, v5924 move-wide/16 v12700, v30728 move-wide/16 v5473, v20123 move/16 v15066, v5981 move-wide/16 v25104, v17383 move/16 v20243, v5963 move/16 v16901, v3679 move-wide/16 v32232, v6920 move/16 v28296, v23830 move-wide/16 v19453, v31910 move/16 v8961, v2182 move/16 v28469, v5863 move/16 v6367, v25803 move-wide/16 v14880, v3444 move/16 v29750, v23584 move-wide/16 v331, v32093 move-wide/16 v14339, v30645 move-wide/16 v3939, v16632 move/16 v26516, v32428 move/16 v5866, v24031 move-wide/16 v4541, v13289 move/16 v12001, v21119 move/16 v17211, v19899 move-wide/16 v2195, v794 move-object/16 v28628, v26371 move-wide/16 v31488, v25746 move-wide/16 v16725, v29381 move-wide/16 v21258, v29155 move-wide/16 v27252, v14579 move-object/16 v23511, v12222 move-object/16 v21981, v27632 move-wide/16 v20931, v21454 move-wide/16 v7000, v10212 move/16 v17060, v9283 move-wide/16 v432, v1579 move/16 v6879, v8557 move/16 v22785, v1198 move-wide/16 v27146, v5774 move-object/16 v7056, v5246 move/16 v16568, v32769 move-object/16 v24912, v8225 move/16 v23109, v3679 move/16 v22445, v26954 move-wide/16 v11928, v17095 move/16 v31698, v15170 move-object/16 v1638, v28129 move-wide/16 v276, v14853 move/16 v15378, v30765 move-object/16 v15454, v22130 move/16 v14877, v10800 move/16 v24791, v13165 move/16 v18036, v27671 move-wide/16 v23050, v15201 move/16 v7301, v8398 move/16 v783, v14752 move-wide/16 v20153, v16794 move-wide/16 v12028, v2 move-wide/16 v14633, v25008 move/16 v32087, v26556 move/16 v20202, v14537 move/16 v20386, v17971 move-object/16 v13865, v27787 move/16 v23754, v26841 move/16 v10962, v1908 move/16 v9261, v21306 move/16 v28060, v22168 move-wide/16 v17802, v15443 move-wide/16 v17802, v18819 move/16 v18928, v15574 move-wide/16 v24919, v6374 move-wide/16 v20894, v26564 move/16 v501, v17138 move-wide/16 v20038, v13099 move/16 v580, v32193 move-object/16 v5134, v27366 move/16 v26436, v31159 move/16 v12282, v29276 move/16 v19402, v6577 move-wide/16 v16380, v26829 move/16 v11397, v6087 move/16 v7449, v812 move-wide/16 v18118, v7435 move/16 v13726, v5259 move/16 v31742, v11548 move-object/16 v24892, v836 move-wide/16 v2136, v27436 move/16 v2687, v14463 move-wide/16 v1084, v30864 move/16 v523, v10772 move/16 v10176, v7935 move/16 v27422, v16891 move-wide/16 v18923, v18490 move/16 v1981, v10482 move/16 v20505, v2172 move/16 v16192, v6757 move/16 v9934, v22082 move-object/16 v12184, v13784 move-wide/16 v23872, v1973 move-wide/16 v14874, v9601 move/16 v7786, v1694 move/16 v4651, v21552 move-wide/16 v8481, v9403 move-wide/16 v9132, v12147 move-object/16 v24514, v9674 move/16 v29961, v9384 move-wide/16 v6511, v28609 move/16 v176, v11775 move-wide/16 v19141, v19914 move/16 v31293, v6673 move-object/16 v18348, v9872 move/16 v24611, v15805 move/16 v30250, v1381 move/16 v2993, v15139 move/16 v23686, v5372 move/16 v9514, v25367 move-object/16 v5086, v21342 move/16 v10714, v21163 move/16 v1556, v12698 move/16 v19825, v27286 move/16 v23830, v8200 move-object/16 v26885, v11335 move/16 v19858, v31748 move-wide/16 v9039, v26923 move/16 v6862, v24345 move-object/16 v15446, v12611 move-object/16 v2534, v24380 move/16 v1688, v27026 move/16 v32041, v20796 move/16 v18226, v2850 move-wide/16 v14062, v3303 move/16 v6257, v3661 move/16 v20714, v19828 move-wide/16 v27654, v11933 move/16 v3783, v22245 move/16 v31004, v4319 move-object/16 v31885, v29131 move/16 v12510, v28713 move-object/16 v29342, v32253 move-wide/16 v30467, v8508 move-object/16 v15406, v17593 move-object/16 v7107, v7113 move-wide/16 v28960, v2220 move-wide/16 v5114, v21677 move/16 v12506, v16891 move-object/16 v27787, v11634 move-wide/16 v27742, v22738 move-wide/16 v25598, v3720 move-wide/16 v19652, v18972 move/16 v14339, v2031 move-wide/16 v18819, v2773 move/16 v3091, v4915 move-object/16 v26050, v5086 move/16 v24327, v21702 move/16 v2479, v5963 move/16 v5760, v21367 move/16 v12119, v21481 move/16 v27066, v2060 move-wide/16 v31337, v22738 move-wide/16 v17853, v17095 move-wide/16 v16352, v20308 move-wide/16 v28759, v16769 move-wide/16 v11812, v12501 move/16 v26732, v5282 move-wide/16 v8225, v22357 move-wide/16 v3091, v16941 move/16 v2898, v29961 move/16 v16518, v617 move/16 v23050, v6277 move/16 v30714, v6741 move-wide/16 v4828, v1127 move-wide/16 v27252, v6326 move/16 v15378, v8158 move/16 v3067, v9966 move/16 v30635, v4327 move/16 v16622, v11397 move-wide/16 v28734, v23276 move/16 v2610, v27026 move/16 v12155, v15271 move-object/16 v22779, v23092 move/16 v29360, v5331 move-wide/16 v17896, v25924 move-object/16 v2900, v25713 move-wide/16 v17633, v30838 move/16 v1732, v26422 move-object/16 v19541, v24824 move/16 v11960, v28103 move-object/16 v23337, v14005 move-wide/16 v28449, v4495 move/16 v7056, v16048 move/16 v31845, v12506 move-wide/16 v14936, v27654 move/16 v11788, v16901 move/16 v25686, v19699 move/16 v16129, v31408 move-wide/16 v5774, v15991 move/16 v8057, v14177 move-wide/16 v9066, v9197 move-object/16 v20333, v15066 move/16 v20067, v19974 move-object/16 v32117, v16654 move/16 v22731, v1638 move/16 v14616, v12554 move/16 v8200, v26472 move-wide/16 v32149, v24075 move-object/16 v27376, v26057 move-object/16 v26079, v12184 move/16 v23968, v2862 move/16 v9310, v6881 move-wide/16 v5774, v597 move/16 v4524, v26590 move-wide/16 v30232, v27584 move-wide/16 v6805, v3171 move-wide/16 v15489, v28586 move-object/16 v19989, v19402 move/16 v488, v4018 move/16 v19323, v21919 move-wide/16 v6245, v26829 move/16 v23511, v13380 move/from16 v94, v21344 move-wide/16 v29400, v4561 move-object/16 v19301, v23874 move-wide/16 v4943, v3072 move/16 v22299, v12966 move-wide/16 v14659, v8460 move/16 v31275, v24247 move-object/16 v2104, v9208 move-wide/16 v3064, v9066 move-object/16 v8031, v19263 move-wide/16 v31310, v12343 move/16 v17780, v9751 move-object/16 v16258, v12971 move/16 v2220, v32028 move-wide/16 v2610, v1735 move/16 v14037, v25063 move-wide/16 v2295, v9552 move-object/16 v32048, v1638 move-wide/16 v28911, v30227 move-wide/16 v8475, v2705 move-wide/16 v30594, v32232 move/16 v27697, v14912 move-object/16 v22523, v8474 move/16 v13345, v5976 move/16 v2773, v11445 move-wide/16 v24939, v16941 move/16 v16401, v20247 move-wide/16 v8925, v7002 move-wide/16 v18131, v11832 move-wide/16 v19559, v24955 move-wide/16 v6305, v25924 move-wide/16 v21882, v17714 move-wide/16 v29765, v671 move-object/16 v213, v12437 move-wide/16 v31691, v14927 move/16 v28664, v22562 move-wide/16 v26203, v5959 move/16 v32632, v28386 move-object/16 v3337, v26113 move/16 v11793, v5908 move-object/16 v24383, v21426 move-wide/16 v19453, v29619 move-object/16 v22530, v2883 move-object/16 v10491, v16167 move-wide/16 v31807, v11782 move/16 v27907, v21919 move/16 v25008, v22208 move/16 v18170, v6298 move-wide/16 v29541, v4925 move-wide/16 v8103, v31439 move/16 v19830, v30727 move-wide/16 v9966, v10721 move-wide/16 v32418, v11554 move/16 v3651, v6653 move-wide/16 v29589, v2497 move/16 v441, v31275 move/16 v25104, v6783 move-wide/16 v8037, v12557 move-object/16 v25887, v4077 move/16 v29079, v28594 move/16 v24166, v18013 move/16 v28723, v13579 move-wide/16 v16428, v17786 move/16 v20894, v5924 move/16 v17475, v32074 move-object/16 v18041, v18999 move/16 v634, v7281 move/16 v29536, v32428 move/16 v2220, v26590 move/16 v29163, v8388 move-object/16 v342, v26885 move-wide/16 v9283, v9358 move/16 v9098, v9271 move/16 v2228, v6738 move/16 v23812, v9027 move-object/16 v28547, v22293 move-wide/16 v792, v10732 move/16 v4495, v19048 move-object/16 v20889, v25831 move/16 v23511, v8981 move/16 v29725, v24247 move/16 v15149, v11793 move-wide/16 v12001, v21437 move/16 v8817, v13483 move/16 v9353, v25994 move/16 v13029, v17780 move-object/16 v1960, v9639 move-wide/16 v12004, v32239 move/16 v23094, v24397 move/16 v32604, v756 move/16 v24733, v4855 move/16 v13177, v13508 move-wide/16 v30503, v9907 move-wide/16 v14579, v18481 move-wide/16 v2132, v12425 move-wide/16 v12119, v56 move/16 v32333, v8994 move/16 v31159, v29563 move-wide/16 v10380, v11020 move-wide/16 v20794, v30471 move/16 v31004, v18419 move-object/16 v1637, v28466 move/16 v32688, v15271 move-wide/16 v24499, v26669 move-wide/16 v3726, v1054 move-wide/16 v17369, v2495 move-wide/16 v29381, v27917 move-wide/16 v28778, v20034 move-object/16 v501, v15925 move-object/16 v4689, v9477 move-wide/16 v19481, v29155 move-wide/16 v7449, v15166 move-wide/16 v6862, v27983 move-object/16 v5279, v21342 move-wide/16 v20794, v2705 move/16 v20992, v30765 move/16 v15198, v27639 move/16 v16739, v1306 move/16 v31295, v32333 move-wide/16 v24788, v20838 move-object/16 v17475, v21119 move/16 v3192, v31463 move-wide/16 v12501, v14586 move-wide/16 v12557, v3918 move/16 v28085, v7073 move-wide/16 v8398, v17401 move/16 v28948, v3009 move-wide/16 v18645, v20274 move/16 v14065, v8306 move/16 v12614, v13944 move-wide/16 v4661, v3226 move/16 v24977, v18462 move-wide/16 v19014, v12478 move/16 v3444, v27066 move/16 v29324, v15925 move/16 v3890, v6752 move/16 v26270, v17971 move/16 v2683, v28094 move/16 v691, v15574 move-wide/16 v17273, v9197 move-wide/16 v12190, v6028 move-wide/16 v28622, v18342 move-object/16 v4319, v31499 move/16 v13601, v23618 move/16 v14055, v9639 move/16 v22293, v30833 move/16 v18674, v5737 move-object/16 v6581, v2534 move/16 v6123, v19102 move-wide/16 v5541, v2896 move/16 v26418, v14952 move/16 v3651, v27639 move-wide/16 v7169, v18819 move-wide/16 v27382, v5429 move-wide/16 v12437, v19914 move-object/16 v14616, v11879 move-wide/16 v32087, v20418 move-wide/16 v30742, v6862 move-wide/16 v25057, v8497 move-wide/16 v30356, v8475 move-wide/16 v16901, v2896 move-wide/16 v16691, v25251 move/16 v27713, v15102 move-wide/16 v5374, v28075 move-wide/16 v8303, v6862 move-wide/16 v29704, v7440 move-object/16 v15761, v32363 move/16 v5982, v6896 move/16 v23781, v13808 move/16 v14652, v24977 move-wide/16 v22459, v24018 move/16 v32547, v20067 move-wide/16 v6757, v30290 move/16 v15235, v14200 move-wide/16 v13808, v24877 move/16 v27146, v13279 move/16 v14213, v2809 move/16 v29536, v7385 move-wide/16 v24081, v17802 move-wide/16 v2483, v12715 move/16 v21488, v1342 move/16 v5866, v18992 move-wide/16 v24128, v162 move-wide/16 v2093, v27461 move-wide/16 v18417, v29952 move/16 v18464, v3840 move/16 v23094, v31731 move/16 v23144, v9027 move/16 v13099, v3357 move-wide/16 v27997, v8167 move/16 v23238, v32074 move/16 v18819, v16649 move/16 v20466, v21573 move-object/16 v25994, v28205 move/16 v22682, v22574 move-wide/16 v21276, v16552 move-wide/16 v17169, v16461 move-wide/16 v11928, v21904 move-object/16 v15375, v11775 move-wide/16 v559, v17273 move-wide/16 v30965, v29713 move-object/16 v6768, v4290 move/16 v20067, v8256 move/16 v4723, v29961 move/16 v18641, v31955 move/16 v10380, v31679 move-wide/16 v10932, v9966 move-wide/16 v1600, v21369 move/16 v32179, v13476 move-wide/16 v2228, v25251 move-object/16 v1938, v23185 move-wide/16 v14387, v7440 move/16 v4750, v11900 move/16 v8994, v31233 move/16 v32449, v23678 move/16 v10517, v8256 move/16 v20448, v26350 move-wide/16 v8699, v26365 move/16 v21893, v3917 move/16 v12921, v10116 move/16 v22299, v22293 move-object/16 v25746, v3764 move/16 v24372, v7067 move-wide/16 v12518, v2907 move-wide/16 v30759, v3585 move-wide/16 v12910, v19417 move/16 v31748, v8209 move/16 v30325, v6515 move-object/16 v30783, v17475 move-object/16 v6879, v27632 move-wide/16 v29187, v30738 move/16 v26436, v617 move/16 v7534, v17217 move-object/16 v2295, v15960 move/16 v32127, v23548 move-wide/16 v26127, v4001 move-object/16 v7238, v25887 move/16 v10645, v6905 move-object/16 v8270, v24380 move-object/16 v19321, v9644 move-object/16 v4260, v15951 move-object/16 v12614, v18630 move/16 v22182, v2800 move/16 v8481, v25482 move/16 v24925, v29961 move/16 v11258, v26373 move-wide/16 v15744, v33 move-wide/16 v5558, v31185 move-wide/16 v24114, v18172 move-wide/16 v10666, v10721 move/16 v9457, v11916 move/16 v8915, v22526 move/16 v12025, v11660 move/16 v21175, v6300 move-wide/16 v9834, v604 move-wide/16 v19779, v16769 move-wide/16 v11534, v28642 move-wide/16 v27356, v16380 move/16 v3858, v29858 move/16 v21612, v8320 move/16 v22068, v16968 move/16 v3938, v22682 move/16 v170, v7628 move-object/16 v23847, v27376 move/16 v3949, v20103 move/16 v29086, v6690 move/16 v1380, v31698 move/16 v23316, v24232 move/16 v4370, v21668 move/16 v18755, v9010 move-wide/16 v11262, v1971 move-wide/16 v10041, v26636 move-wide/16 v23357, v8925 move-wide/16 v28025, v18539 ############################################################################ const v0, 0x2c0e move/16 v1, v12025 if-eq v1, v0, :else invoke-static/range {v8270}, LL/util;->print(Ljava/lang/Object;)V invoke-static/range {v22182}, LL/util;->print(I)V invoke-static/range {v15744..v15745}, LL/util;->print(D)V invoke-static/range {v9457}, LL/util;->print(I)V invoke-static/range {v9834..v9835}, LL/util;->print(J)V invoke-static/range {v3858}, LL/util;->print(F)V invoke-static/range {v170}, LL/util;->print(Ljava/lang/Object;)V invoke-static/range {v23847}, LL/util;->print(I)V invoke-static/range {v1380}, LL/util;->print(I)V invoke-static/range {v11262..v11263}, LL/util;->print(J)V return-void :else invoke-static/range {v19321}, LL/util;->print(Ljava/lang/Object;)V invoke-static/range {v8481}, LL/util;->print(I)V invoke-static/range {v5558..v5559}, LL/util;->print(D)V invoke-static/range {v8915}, LL/util;->print(I)V invoke-static/range {v19779..v19780}, LL/util;->print(J)V invoke-static/range {v21612}, LL/util;->print(F)V invoke-static/range {v3949}, LL/util;->print(Ljava/lang/Object;)V invoke-static/range {v29086}, LL/util;->print(F)V invoke-static/range {v23316}, LL/util;->print(F)V invoke-static/range {v10041..v10042}, LL/util;->print(D)V return-void .end method .method testMoves()V .locals 22 const-string v0, "testMoves" invoke-static {v0}, LL/util;->print(Ljava/lang/String;)V move-object/from16 v0, p0 const v1, 0x15ADE1AA const-wide v2, 0x6366736AB654F93CL const v4, 0x2C0E const-wide v5, 0x11BDFC4CAF473799L const v7, 0xCB7D567A invoke-interface/range {v0..v7}, L_;->testMovesSub(IDCJF)V const v1, 0xCF5E720B const-wide v2, 0xE5E5F7123B414FBEL const v4, 0x1924 const-wide v5, 0xCF70DF71BAA07C71L const v7, 0xDF98CCC6 invoke-interface/range {v0..v7}, L_;->testMovesSub(IDCJF)V return-void .end method .field static Code:F = 123.456f .field static F:I = 654.321f .method private static testCatchAllSub(I[I[I)V .locals 2 move v1, p0 sget v0, La/a;->Code:F invoke-static {v0}, LL/util;->print(F)V sget v0, La/a;->F:I invoke-static {v0}, LL/util;->print(I)V :start array-length v0, p1 sput v1, La/a;->F:I :holestart sget v1, La/a;->Code:F const v0, -0.000177f sub-float/2addr v1, v0 sput v1, La/a;->Code:F sget v1, La/a;->F:I :holeend xor-int/2addr v1, v0 check-cast p2, [F invoke-static {p2}, LL/util;->print(Ljava/lang/Object;)V fill-array-data p2, :array_data return-void goto :outer_handler :end .catch Ljava/lang/Throwable; {:holestart .. :holeend} :inner_handler .catchall {:holestart .. :holeend} :inner_handler .catchall {:start .. :end} :outer_handler :inner_handler move-exception p0 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V return-void :outer_handler move-exception p0 invoke-static {v1}, LL/util;->print(I)V invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V return-void :array_data .array-data 4 42 .end array-data .end method .method private static testCatchAll(L_;)V .locals 22 const-string v0, "testCatchAll" invoke-static {v0}, LL/util;->print(Ljava/lang/String;)V const v0, 0x15ADE1AA const v1, 0 new-array v2, v1, [I invoke-static {v0, v1, v1}, La/a;->testCatchAllSub(I[I[I)V const v0, 0x15ADE1AA invoke-static {v0, v1, v2}, La/a;->testCatchAllSub(I[I[I)V const v0, 0x47B9D09C invoke-static {v0, v2, v2}, La/a;->testCatchAllSub(I[I[I)V const v0, 0x4AD8F486 invoke-static {v0, v2, v1}, La/a;->testCatchAllSub(I[I[I)V return-void .end method .method static testMonitorSubSubA(Ljava/lang/Object;BB)V .locals 2 const v0, 256 mul-int/2addr v0, p1 add-int/2addr v0, p2 invoke-static {v0}, LL/util;->print(I)V if-eqz p2, :else2 const-string v0, "entering monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-enter p0 #goto :end2 :else2 const-string v0, "entering monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-enter p0 :end2 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V const-string v0, "exiting monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-exit p0 return-void .end method .method static testMonitorSubSubB(Ljava/lang/Object;BB)V .locals 2 :start const v0, 256 mul-int/2addr v0, p1 add-int/2addr v0, p2 invoke-static {v0}, LL/util;->print(I)V const-string v0, "entering monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-enter p0 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V if-eqz p1, :else1 const-string v0, "exiting monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-exit p0 #goto :end1 :else1 const-string v0, "exiting monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-exit p0 :end1 return-void :end .catchall {:start .. :end} :handler :handler move-exception p0 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V return-void .end method # WTF? .method static testMonitorSubSubAB(Ljava/lang/Object;BB)V .locals 2 const v0, 256 mul-int/2addr v0, p1 add-int/2addr v0, p2 invoke-static {v0}, LL/util;->print(I)V if-eqz p2, :else2 const-string v0, "entering monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-enter p0 #goto :end2 :else2 const-string v0, "entering monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-enter p0 :end2 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V if-eqz p1, :else1 const-string v0, "exiting monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-exit p0 #goto :end1 :else1 const-string v0, "exiting monitor" invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V monitor-exit p0 :end1 return-void .end method .method static testMonitorSub(Ljava/lang/Object;BB)V .locals 0 :start invoke-static {p0, p1, p2}, La/a;->testMonitorSubSubB(Ljava/lang/Object;BB)V :end return-void # .catchall {:start .. :end} :handler :handler move-exception p0 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V return-void .end method .method static testMonitor(L_;)V .locals 3 const-string v0, "testMonitor" invoke-static {v0}, LL/util;->print(Ljava/lang/String;)V const-string v0, "Inside the monitors" const/4 v1, 0 const/4 v2, 1 invoke-static {v0, v1, v1}, La/a;->testMonitorSub(Ljava/lang/Object;BB)V invoke-static {v0, v1, v2}, La/a;->testMonitorSub(Ljava/lang/Object;BB)V invoke-static {v0, v2, v2}, La/a;->testMonitorSub(Ljava/lang/Object;BB)V invoke-static {v0, v2, v1}, La/a;->testMonitorSub(Ljava/lang/Object;BB)V return-void .end method .method static testCasts()V .locals 3 const-string v0, "testCasts" invoke-static {v0}, LL/util;->print(Ljava/lang/String;)V const v0, 0 instance-of v0, v0, [I invoke-static {v0}, LL/util;->print(I)V new-instance v0, Ljava/util/Stack; invoke-direct {v0}, Ljava/util/Stack;-><init>()V :start #check-cast v0, Ljava/util/Vector; instance-of v1, v0, Ljava/util/Vector; if-eqz v1, :bad invoke-virtual {v0}, Ljava/util/Stack;->empty()Z move-result v1 invoke-static {v1}, LL/util;->print(I)V #check-cast v0, Ljava/lang/Object; instance-of v1, v0, Ljava/lang/Object; if-eqz v1, :bad invoke-virtual {v0, v0}, Ljava/util/Stack;->push(Ljava/lang/Object;)Ljava/lang/Object; #check-cast v0, Ljava/util/AbstractCollection; instance-of v1, v0, Ljava/util/AbstractCollection; if-eqz v1, :bad invoke-virtual {v0}, Ljava/util/Stack;->empty()Z move-result v1 invoke-static {v1}, LL/util;->print(I)V check-cast v0, Ljava/lang/String; check-cast v0, Ljava/util/Stack; invoke-virtual {v0}, Ljava/util/Stack;->empty()Z move-result v1 invoke-static {v1}, LL/util;->print(I)V return-void :bad .catch Ljava/lang/RuntimeException; {:start .. :bad} :bad invoke-virtual {v0}, Ljava/lang/Object;->getClass()Ljava/lang/Class; move-result-object v0 invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V return-void .end method .field public static _:L_; .method static testInterfaceAssign(L_;)V .locals 2 move-object v0, p0 :start instance-of v1, v0, L_; invoke-static {v1}, LL/util;->print(I)V check-cast v0, L_; sput-object v0, La/a;->_:L_; sget-object v0, La/a;->_:L_; instance-of v1, v0, L_; invoke-static {v1}, LL/util;->print(I)V check-cast v0, L_; return-void :bad .catch Ljava/lang/RuntimeException; {:start .. :bad} :bad invoke-virtual {v0}, Ljava/lang/Object;->getClass()Ljava/lang/Class; move-result-object v0 invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V return-void .end method .method static testImplicitCastsThrow(Ljava/lang/Object;)V .locals 2 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V move-object v0, p0 instance-of v1, v0, Ljava/lang/Exception; if-eqz v1, :end throw p0 :end return-void .end method .method static testImplicitCastsArrayLen(Ljava/lang/Object;)[I .locals 3 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V const v2, 0 move-object v0, p0 instance-of v1, v0, [[F if-eqz v1, :elif goto :merge :elif instance-of v1, v0, [[I if-eqz v1, :end aget-object v2, v0, v1 goto :merge :end return-object v2 :merge array-length v1, v0 goto :end .end method .method static testImplicitCastsArrayGet(Ljava/lang/Object;)D .locals 1 invoke-static {p0}, LL/util;->print(Ljava/lang/Object;)V move-object p0, p0 instance-of v0, p0, [[[D if-nez v0, :arr3 instance-of v0, p0, [[D if-nez v0, :arr2 instance-of v0, p0, [D if-nez v0, :arr1 const-wide v0, 077.770 return-wide v0 :arr3 aget-object p0, p0, v0 :arr2 aget-object p0, p0, v0 :arr1 aget-wide v0, p0, v0 return-wide v0 .end method .method static testImplicitCastsArrayStore(Ljava/lang/Object;)V .locals 3 instance-of v0, p0, [D if-eqz v0, :notD const v0, 1 const-wide v1, -111.0 aput-wide v1, p0, v0 const v0, 2 const-wide v1, -31.111 aput-wide v1, p0, v0 const v0, 3 const-wide v1, -1311.31 aput-wide v1, p0, v0 const v0, 4 const-wide v1, -111321.1311 aput-wide v1, p0, v0 const v0, 5 const-wide v1, -31131211.1311 aput-wide v1, p0, v0 return-void :notD instance-of v1, p0, [I if-eqz v1, :notI array-length v1, p0 aput v1, p0, v0 :notI return-void .end method .method static testImplicitCasts()V .locals 7 const-string v0, "testImplicitCasts" invoke-static {v0}, LL/util;->print(Ljava/lang/String;)V #invoke-static {v0}, La/a;->testInterfaceAssign(L_;)V const-string v0, "whatever" sput-object v0, La/a;->_:L_; sget-object v0, La/a;->_:L_; #check-cast v0, L_; new-instance v1, Ljava/lang/Throwable; invoke-direct {v1}, Ljava/lang/Throwable;-><init>()V new-instance v2, Ljava/lang/ArrayStoreException; invoke-direct {v2}, Ljava/lang/ArrayStoreException;-><init>()V :start1 invoke-static {v0}, La/a;->testImplicitCastsThrow(Ljava/lang/Object;)V const v0, 0 invoke-static {v0}, La/a;->testImplicitCastsThrow(Ljava/lang/Object;)V move-object v0, v1 invoke-static {v0}, La/a;->testImplicitCastsThrow(Ljava/lang/Object;)V move-object v0, v2 invoke-static {v0}, La/a;->testImplicitCastsThrow(Ljava/lang/Object;)V goto :end1 :handler1 .catch Ljava/lang/RuntimeException; {:start1 .. :end1} :handler1 move-exception v0 const-string v1, "catch1" invoke-static {v1}, LL/util;->print(Ljava/lang/Object;)V invoke-static {v0}, LL/util;->print(Ljava/lang/Object;)V :end1 const v0, 6 new-array v1, v0, [D new-array v0, v0, [D fill-array-data v0, :array_data1 fill-array-data v1, :array_data2 filled-new-array {v0, v1}, [[D move-result-object v2 const v3, 0 filled-new-array {v2, v2, v3}, [[[D move-result-object v4 const-string v5, "whatever" invoke-static {v5}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V invoke-static {v4}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V invoke-static {v3}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V invoke-static {v2}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V invoke-static {v1}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V invoke-static {v0}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V const v0, 0 invoke-static {v0}, La/a;->testImplicitCastsArrayGet(Ljava/lang/Object;)D move-result-wide v5 invoke-static {v5, v6}, LL/util;->print(D)V # array store tests :array_store_tests const-string v2, "whatever" const/16 v0, 14 new-array v0, v0, [I filled-new-array/range {v0 .. v4}, [Ljava/lang/Object; #filled-new-array/range {v0 .. v4}, [Ljava/lang/Cloneable; move-result-object v4 invoke-static {v4}, LL/util;->print(Ljava/lang/Object;)V invoke-static {v0}, La/a;->testImplicitCastsArrayStore(Ljava/lang/Object;)V invoke-static {v1}, La/a;->testImplicitCastsArrayStore(Ljava/lang/Object;)V invoke-static {v2}, La/a;->testImplicitCastsArrayStore(Ljava/lang/Object;)V invoke-static {v3}, La/a;->testImplicitCastsArrayStore(Ljava/lang/Object;)V invoke-static {v4}, La/a;->testImplicitCastsArrayStore(Ljava/lang/Object;)V invoke-static {v4}, LL/util;->print(Ljava/lang/Object;)V return-void :array_data1 .array-data 8 3.0f 234.3f -0.0f NaNf 0.5f 17e17f .end array-data :array_data2 .array-data 8 3.0 234.3 -0.0 NaN 0.5 17e17 .end array-data .end method .method static testMathOpsSub(IIIFFFJJJDDDJ)V .locals 257 ################################################################################ move/from16 v0, v257 move/from16 v1, v258 move/from16 v2, v259 move/from16 v3, v260 move/from16 v4, v261 move/from16 v5, v262 move-wide/from16 v6, v263 move-wide/from16 v8, v265 move-wide/from16 v10, v267 move-wide/from16 v12, v269 move-wide/from16 v14, v271 move-wide/from16 v16, v273 neg-int v9, v0 or-int/2addr v1, v0 ushr-long v41, v6, v9 ushr-int/2addr v1, v9 div-float v48, v5, v4 double-to-long v11, v12 sub-int/2addr v1, v0 double-to-float v12, v14 const-wide v5, 0x66ecddd7b744941bL mul-double/2addr v14, v5 xor-int/2addr v9, v0 add-int/2addr v0, v2 not-int v13, v0 or-int/lit8 v1, v1, 88 rem-int/2addr v2, v1 const-wide v14, 0x8c496118632b349fL const-wide v8, 0xcb10debd41798c83L or-long/2addr v14, v8 float-to-int v5, v3 int-to-double v8, v5 int-to-float v2, v13 const-wide v13, 0xf792872ab0029e39L mul-double/2addr v8, v13 or-int/lit8 v1, v1, 100 div-int v157, v0, v1 sub-int v50, v1, v157 mul-float v30, v12, v3 const-wide v6, 0xee4219ed7f5f9befL const-wide v3, 0xef9225f8cac68140L sub-long/2addr v6, v3 shr-int/2addr v1, v0 int-to-long v12, v0 add-long/2addr v3, v12 or-int/lit8 v110, v157, -101 mul-float v254, v48, v30 const-wide v6, 262144L or-long v6, v6, v6 div-long v222, v41, v6 shl-int/lit8 v192, v50, -28 neg-float v2, v2 add-float v189, v254, v30 shr-long v251, v41, v157 shl-int v41, v110, v50 rsub-int v15, v0, -30873 shr-int/2addr v5, v1 or-int/lit8 v41, v41, 52 rem-int v245, v192, v41 add-int/2addr v5, v15 const v11, 0xf4e6663a mul-float/2addr v2, v11 sub-double v45, v16, v8 xor-int/lit8 v151, v192, -126 shr-int/2addr v1, v15 int-to-char v2, v5 neg-long v6, v6 or-int/lit8 v50, v50, 8 div-int v87, v5, v50 int-to-char v15, v15 or-long v90, v222, v251 xor-long v3, v251, v3 long-to-double v5, v3 mul-int/lit8 v206, v151, -13 int-to-long v10, v15 const v7, 0xdde29dc6 const v5, 0x505daf85 rem-float/2addr v5, v7 neg-float v12, v5 float-to-int v6, v12 xor-int/2addr v6, v2 xor-int/2addr v0, v1 rem-int/lit16 v15, v1, 15472 xor-int/lit16 v15, v15, 22391 shl-int/2addr v15, v2 xor-int/2addr v2, v6 int-to-short v1, v6 const-wide v10, 524288L or-long v10, v10, v10 div-long/2addr v3, v10 rem-float/2addr v5, v7 const-wide v5, 0xc9aafeeb0abbb858L mul-double/2addr v5, v8 not-long v1, v3 shl-int/lit8 v173, v157, -104 add-long v105, v10, v1 float-to-double v9, v12 and-int/lit8 v88, v0, 70 or-int v77, v88, v50 ushr-int v61, v173, v110 or-int/lit16 v4, v0, 15454 add-float/2addr v12, v7 xor-long v97, v1, v90 ushr-int v200, v206, v173 add-double v230, v45, v16 shl-int/2addr v0, v15 shr-long v155, v1, v50 mul-long v155, v1, v105 sub-double/2addr v5, v9 sub-float v79, v7, v12 rsub-int/lit8 v152, v88, 102 sub-float v58, v79, v12 shr-long/2addr v1, v4 add-int/lit16 v11, v0, 6196 neg-double v3, v9 div-float v229, v7, v30 shr-int/lit8 v43, v151, 56 const-wide v11, 0x9231367497e82e53L const-wide v222, 128L or-long v11, v11, v222 div-long/2addr v1, v11 div-double/2addr v5, v9 shl-int/lit8 v116, v41, 58 xor-int v28, v88, v0 rsub-int/lit8 v91, v41, 101 int-to-float v10, v0 and-int v30, v88, v77 mul-long v1, v1, v11 mul-int/lit16 v8, v15, 1260 and-int v42, v116, v152 mul-float v157, v10, v229 ushr-int/2addr v0, v15 and-int v227, v192, v50 sub-long v3, v251, v1 add-float/2addr v7, v10 or-long/2addr v11, v1 const-wide v15, 0x93cb72485b399c3dL add-double/2addr v5, v15 xor-int v246, v88, v77 int-to-double v0, v8 sub-float v169, v58, v79 sub-float v63, v79, v169 long-to-float v5, v11 sub-int v68, v87, v42 float-to-double v5, v5 const v8, 0xde1fa753 const v7, 0x94654e00 or-int/lit8 v8, v8, 126 div-int/2addr v7, v8 add-double v244, v5, v230 sub-double v15, v230, v15 and-int/2addr v7, v8 shl-long v55, v251, v8 sub-double v32, v5, v15 or-int/lit8 v116, v116, 82 rem-int v38, v200, v116 and-long/2addr v11, v3 shr-int/2addr v8, v7 xor-int v6, v43, v61 sub-double v30, v0, v45 shl-long/2addr v11, v7 double-to-float v11, v0 div-double v68, v15, v32 float-to-int v8, v11 long-to-int v14, v3 add-int/2addr v8, v6 mul-int/lit16 v10, v8, -1802 long-to-double v11, v3 const-wide v4, 0x93f3b9e31689a820L const-wide v0, 0xe2ae986673e14affL xor-long/2addr v4, v0 sub-long v205, v105, v251 sub-int v196, v151, v110 const v1, 0x8498eb5a neg-float v2, v1 sub-float/2addr v2, v1 xor-long v174, v222, v105 add-int/2addr v10, v7 or-long v23, v174, v222 double-to-long v4, v11 add-int v53, v43, v116 ushr-int v71, v8, v87 add-int v157, v50, v227 mul-float v181, v229, v189 const-wide v23, 2048L or-long v23, v23, v23 div-long v25, v55, v23 rsub-int/lit8 v132, v53, -30 or-int/lit8 v53, v53, 24 rem-int v26, v173, v53 xor-int/2addr v14, v8 ushr-int v43, v151, v26 shr-long v193, v55, v41 not-int v15, v10 rem-int/lit8 v139, v42, -62 float-to-double v12, v1 sub-long v233, v23, v55 xor-int/lit16 v3, v8, -8313 div-float/2addr v1, v2 div-int/lit16 v5, v3, -12344 or-int/lit16 v12, v10, -9984 or-int/lit8 v11, v43, 121 div-float/2addr v1, v2 mul-int/lit8 v90, v132, -52 xor-int/lit16 v14, v7, -26655 not-int v6, v8 or-int/lit16 v1, v7, -8225 add-int v211, v15, v41 and-long v127, v251, v55 shl-int/2addr v6, v1 add-float v134, v48, v2 const-wide v1, 0x90035a61d6fbc0c8L double-to-float v4, v1 float-to-long v6, v4 neg-int v0, v10 xor-int/2addr v11, v14 long-to-int v4, v6 shl-int/2addr v3, v12 long-to-double v0, v6 long-to-float v11, v6 mul-double v130, v32, v244 or-int/lit8 v41, v41, 63 rem-int v27, v192, v41 shr-int/2addr v4, v14 const-wide v105, 16384L or-long v23, v23, v105 div-long v189, v105, v23 shr-int v14, v5, v4 shl-long/2addr v6, v4 add-float v213, v229, v134 ushr-long v204, v193, v43 const-wide v13, 0x64ffea507f361785L and-long/2addr v6, v13 sub-int/2addr v10, v4 const v14, 0x637939b9 div-float/2addr v11, v14 shl-int/lit8 v7, v5, -6 shl-int/2addr v7, v8 const-wide v13, 0xae5703e08e3f3aa5L const-wide v9, 0x7f346b43bb9a28e6L const-wide v174, 4096L or-long v9, v9, v174 rem-long/2addr v13, v9 div-int/lit8 v67, v61, 83 const-wide v11, 0x90e935903a6756d1L mul-double/2addr v0, v11 shr-long v30, v9, v28 rsub-int/lit8 v52, v211, 109 mul-int v178, v110, v132 div-int/lit8 v147, v110, 41 div-double/2addr v0, v11 mul-float v109, v79, v181 rem-int/lit8 v200, v151, 101 or-long v181, v193, v189 const-wide v204, 512L or-long v13, v13, v204 rem-long/2addr v9, v13 int-to-char v4, v7 div-int/lit8 v149, v91, -52 mul-long v215, v222, v251 xor-long/2addr v13, v9 shr-int/2addr v3, v15 shr-long/2addr v9, v5 const v3, 0xe82c4af8 const v0, 0xd4d6110b sub-float/2addr v0, v3 move-wide/from16 v15, v230 mul-double/2addr v11, v15 add-long v172, v55, v215 rem-float/2addr v3, v0 double-to-int v8, v15 shl-int v225, v200, v50 int-to-long v0, v7 and-int v105, v52, v27 div-double/2addr v11, v15 sub-double/2addr v11, v15 ushr-long v114, v13, v87 mul-int v221, v178, v152 add-float v219, v48, v134 long-to-double v7, v0 sub-long v12, v204, v174 sub-int/2addr v4, v5 xor-int/lit16 v13, v5, 9157 mul-double v117, v68, v130 xor-int/2addr v4, v5 neg-long v6, v9 mul-int/lit8 v89, v151, -108 neg-int v10, v4 const-wide v13, 0xeb2588ab10a8c1cL sub-double/2addr v15, v13 const-wide v189, 512L or-long v0, v0, v189 div-long/2addr v6, v0 shl-long/2addr v6, v4 sub-int/2addr v5, v4 const v13, 0x52645d90 add-float/2addr v13, v3 or-int/2addr v5, v4 const-wide v5, 0xc3d355557b071c1eL div-double/2addr v5, v15 ushr-long/2addr v0, v4 ushr-long/2addr v0, v10 shr-long v39, v222, v50 or-int v84, v151, v67 mul-float/2addr v13, v3 sub-float/2addr v3, v13 and-long v116, v97, v127 sub-int/2addr v4, v10 shl-long v189, v114, v200 shr-int/2addr v10, v4 shl-int/2addr v10, v4 shl-long v132, v233, v132 add-float/2addr v13, v3 mul-int/2addr v4, v10 const-wide v172, 8388608L or-long v116, v116, v172 div-long v107, v181, v116 double-to-int v14, v15 shr-int v253, v71, v77 int-to-byte v13, v4 mul-int/lit16 v0, v10, 6229 sub-long v217, v222, v189 int-to-short v1, v13 and-long v175, v97, v55 const v13, 0x82a4b8fe mul-float/2addr v3, v13 const-wide v11, 0x5b5a096e344f1829L const-wide v4, 0x7cd0c5f51b8398a1L mul-long/2addr v4, v11 double-to-float v8, v15 mul-long/2addr v11, v4 long-to-float v7, v4 const-wide v4, 256L or-long v172, v172, v4 rem-long v189, v251, v172 div-int/lit16 v15, v0, -32545 shr-int/2addr v1, v14 mul-float v6, v63, v219 mul-int/lit16 v15, v1, 19209 mul-float/2addr v8, v6 xor-int/2addr v0, v1 or-int/lit8 v1, v1, 87 div-int/2addr v14, v1 int-to-long v13, v10 and-int/2addr v0, v15 float-to-double v4, v8 rem-int/lit16 v10, v1, 1966 add-int v197, v225, v253 const-wide v175, 512L or-long v175, v175, v175 div-long v160, v23, v175 const-wide v11, 0x36b18a9e1f1c7988L div-double/2addr v4, v11 div-float v88, v229, v3 or-int/lit8 v164, v157, 29 or-int/lit8 v211, v211, 46 rem-int v169, v38, v211 rsub-int/lit8 v34, v200, -109 rem-int/lit8 v212, v42, -76 mul-double v175, v45, v130 sub-int/2addr v1, v10 sub-int v214, v61, v164 or-int/lit8 v10, v10, 106 rem-int/2addr v1, v10 and-int/lit16 v13, v1, -4333 int-to-long v9, v10 or-int/lit8 v221, v221, 111 rem-int v1, v89, v221 or-int v243, v77, v1 or-int/lit8 v192, v192, 61 div-int v121, v27, v192 neg-float v11, v8 not-int v13, v13 or-int/lit8 v71, v71, 76 div-int v81, v90, v71 rem-float v246, v219, v229 long-to-float v10, v9 shr-long v11, v189, v212 or-long v242, v23, v39 const-wide v4, 0xd7cb13c6dfbad0a9L and-long/2addr v11, v4 add-int/lit16 v7, v0, -21362 shr-long/2addr v11, v13 mul-int/lit8 v161, v227, 108 neg-int v2, v0 add-long v133, v233, v181 shl-long v203, v233, v169 sub-float v9, v213, v219 add-int/lit8 v210, v212, -53 sub-double v35, v32, v45 xor-long v213, v97, v4 const-wide v1, 0x5b80059828dd7c93L const-wide v4, 0xb639e544f4ebd7daL mul-double/2addr v1, v4 or-int/2addr v15, v13 or-int/lit8 v38, v38, 96 rem-int v171, v0, v38 rem-float v93, v6, v88 add-double/2addr v1, v4 const-wide v8, 0x5aafea86d742437cL mul-long/2addr v11, v8 rem-double/2addr v1, v4 mul-double/2addr v4, v1 mul-int v95, v34, v152 int-to-float v7, v7 neg-double v1, v4 long-to-float v5, v11 div-int/lit16 v0, v15, -24757 and-int v176, v52, v200 xor-long/2addr v8, v11 int-to-char v3, v13 ushr-long/2addr v11, v15 div-int/lit16 v5, v0, 10862 div-float/2addr v7, v6 neg-long v4, v8 xor-int v90, v26, v71 div-int/lit8 v118, v176, 2 long-to-float v13, v11 const-wide v193, 33554432L or-long v8, v8, v193 rem-long/2addr v11, v8 neg-float v10, v6 add-float/2addr v7, v6 const-wide v222, 512L or-long v30, v30, v222 div-long v9, v133, v30 rem-double v209, v1, v45 shl-int/2addr v0, v15 const-wide v0, 0xb195026e57e36b49L const-wide v15, 0x415b5d2414378552L add-double/2addr v15, v0 add-long v154, v193, v233 const-wide v97, 2097152L or-long v4, v4, v97 div-long v44, v215, v4 const v6, 0x69c23e27 xor-int/2addr v3, v6 add-float/2addr v7, v13 sub-double v13, v230, v68 double-to-long v2, v13 add-int/lit16 v4, v6, 8563 add-int/lit8 v228, v197, 111 add-double/2addr v15, v0 mul-int v103, v4, v110 sub-int/2addr v6, v4 add-long v107, v55, v193 xor-long/2addr v9, v2 neg-float v1, v7 rem-float/2addr v7, v1 xor-int/2addr v4, v6 mul-float v179, v109, v79 const-wide v222, 536870912L or-long v233, v233, v222 rem-long v96, v30, v233 and-int/2addr v4, v6 ushr-int v97, v27, v164 rem-double v85, v13, v209 add-long/2addr v2, v11 or-int/2addr v6, v4 ushr-int/2addr v4, v6 shr-int/2addr v4, v6 add-double v204, v85, v13 float-to-double v12, v7 and-long v84, v172, v2 sub-float v126, v246, v48 shl-long/2addr v9, v6 rem-int/lit16 v7, v4, -12151 or-long/2addr v2, v9 double-to-long v11, v15 sub-float v99, v93, v58 long-to-double v0, v9 double-to-int v5, v0 rem-double v99, v35, v32 rem-int/lit16 v0, v5, 4555 or-int/lit8 v4, v4, 4 div-int/2addr v7, v4 ushr-int/lit8 v131, v171, -70 sub-double v235, v15, v204 const v0, 0xf2882d57 move/from16 v15, v261 sub-float/2addr v15, v0 mul-int v132, v95, v212 add-int/2addr v6, v5 mul-long/2addr v2, v9 const-wide v3, 0xeca6022d67754ea6L const-wide v4, 0xfe0ecbd92101a84dL const-wide v4, 0x6e214097882e5d65L const-wide v15, 0x809a47591d5c6970L sub-double/2addr v15, v4 const-wide v84, 8192L or-long v251, v251, v84 rem-long v159, v9, v251 ushr-int/lit8 v216, v192, 46 mul-double/2addr v4, v15 long-to-double v2, v11 mul-long v215, v193, v154 or-int/lit8 v78, v81, -94 add-double/2addr v4, v15 xor-long v63, v159, v44 shl-int/2addr v6, v7 shr-int v59, v95, v227 int-to-float v0, v7 add-double v78, v230, v204 neg-long v12, v9 not-int v6, v6 shl-long/2addr v12, v7 const v9, 0x78246aa rem-float/2addr v0, v9 sub-int/2addr v7, v6 add-double v120, v32, v2 long-to-double v11, v12 xor-long v128, v251, v63 xor-int/lit8 v26, v221, -84 neg-double v11, v4 and-int/lit16 v1, v7, -28654 shr-long v86, v172, v61 const-wide v10, 0xc76f79c7667fa6d5L const-wide v3, 0x9e548fad48f73b52L and-long/2addr v10, v3 sub-int v97, v161, v43 not-long v13, v10 or-int/2addr v6, v1 move-wide/from16 v4, v230 rem-double/2addr v4, v15 neg-double v15, v15 add-double/2addr v15, v4 shl-long v167, v154, v50 add-float/2addr v9, v0 neg-double v6, v15 add-int v227, v38, v59 float-to-long v7, v0 double-to-long v8, v15 div-float v177, v246, v0 mul-double/2addr v4, v15 not-long v8, v10 mul-float v223, v229, v219 not-int v2, v1 const v14, 0x6cb0d9ac add-float/2addr v0, v14 shl-long/2addr v8, v1 mul-long/2addr v10, v8 sub-float v51, v58, v109 div-float v26, v177, v179 rem-float/2addr v0, v14 long-to-float v7, v8 ushr-long/2addr v8, v1 rem-float v114, v48, v51 long-to-double v8, v8 xor-int v196, v192, v61 xor-int/lit16 v10, v2, 31057 ushr-long v250, v30, v105 const-wide v8, 0x45e769c721e4a007L const-wide v9, 0xa918ae1b4ba28399L const-wide v2, 0x276a2d4e744c0a4aL mul-long/2addr v2, v9 shr-long v84, v2, v169 div-float v27, v93, v177 float-to-int v6, v14 xor-int/2addr v1, v6 div-float/2addr v14, v0 or-int v166, v34, v71 or-long v57, v213, v23 int-to-byte v8, v1 mul-double/2addr v15, v4 int-to-byte v12, v1 float-to-long v11, v14 int-to-long v14, v1 mul-int/lit8 v46, v149, 47 add-int/lit8 v101, v53, 5 or-long v248, v193, v44 ushr-long/2addr v11, v6 shr-int/2addr v1, v8 xor-int/lit8 v142, v164, 24 shl-long v171, v39, v152 sub-float/2addr v7, v0 rem-float/2addr v0, v7 div-double v155, v32, v209 double-to-long v2, v4 add-int/lit16 v15, v6, 25081 ushr-int/2addr v6, v15 div-int/lit16 v6, v6, -6144 const-wide v6, 0x76c7b7604d46d651L div-double/2addr v4, v6 int-to-long v2, v8 neg-int v10, v1 add-long v202, v193, v86 int-to-double v0, v10 shl-long/2addr v2, v10 int-to-byte v9, v10 not-int v15, v10 const v14, 0xe7393e87 const v2, 0x6c468623 mul-float/2addr v2, v14 sub-long v32, v116, v39 and-long v85, v84, v233 const-wide v14, 0x849e814fcd64852eL add-long/2addr v14, v11 mul-int/lit8 v210, v42, 81 mul-double/2addr v4, v6 mul-int/lit8 v72, v101, 77 neg-int v8, v8 shl-int v23, v61, v169 int-to-char v13, v9 add-float v29, v27, v177 float-to-int v11, v2 ushr-long/2addr v14, v9 mul-double/2addr v6, v0 const-wide v1, 0x1ac8ccf3aaa172bfL or-long/2addr v14, v1 or-int/lit8 v10, v10, 54 rem-int/2addr v13, v10 const v3, 0xab05183e const v12, 0x24f8724a sub-float/2addr v12, v3 long-to-int v5, v1 and-long v17, v217, v1 double-to-long v8, v6 sub-double v221, v68, v235 mul-float v76, v229, v177 ushr-long/2addr v14, v13 neg-float v9, v3 or-int v154, v46, v81 xor-long/2addr v1, v14 xor-int/lit8 v24, v90, -76 sub-float v71, v88, v76 float-to-long v6, v9 mul-int/2addr v5, v10 float-to-double v0, v9 or-long/2addr v6, v14 int-to-short v7, v13 sub-double v105, v204, v0 or-int/lit16 v8, v5, 26260 add-double v147, v120, v235 neg-float v5, v12 rem-int/lit8 v194, v131, -19 not-int v7, v10 sub-long v137, v116, v159 shl-long v93, v133, v24 xor-long v125, v202, v217 or-long v37, v215, v44 mul-double v23, v68, v204 sub-long v253, v93, v167 sub-int/2addr v7, v11 const-wide v9, 0xfcf5157ac682fd40L and-long/2addr v14, v9 double-to-float v14, v0 div-float v54, v3, v27 and-long v122, v125, v9 shr-int v74, v176, v142 xor-int/2addr v8, v7 const-wide v242, 2048L or-long v37, v37, v242 rem-long v18, v122, v37 int-to-double v8, v8 div-int/lit16 v2, v13, -30075 const-wide v1, 0xa04e30a6851b9e6L ushr-long/2addr v1, v13 int-to-float v6, v7 mul-int/2addr v13, v7 add-double v254, v23, v105 mul-double v193, v204, v120 mul-long v14, v18, v1 shl-long v195, v37, v52 div-double v6, v204, v35 xor-int v214, v72, v95 mul-int v147, v43, v77 sub-double v213, v235, v120 rem-int/lit8 v143, v149, 95 double-to-long v5, v6 add-int/2addr v11, v13 and-int v61, v211, v103 not-int v12, v11 sub-long/2addr v5, v1 int-to-float v7, v13 shl-long v211, v14, v149 shr-long/2addr v1, v13 const-wide v14, 0xdab978227a7762a1L rem-double/2addr v14, v8 const-wide v55, 134217728L or-long v122, v122, v55 div-long v154, v107, v122 and-long v239, v189, v55 or-int/lit8 v81, v81, 66 rem-int v163, v72, v81 and-int/lit8 v137, v89, -33 int-to-double v1, v11 shr-long/2addr v5, v11 shr-int v8, v81, v164 rem-float v11, v3, v88 const-wide v133, 8L or-long v57, v57, v133 rem-long v67, v248, v57 long-to-double v10, v5 int-to-char v11, v8 sub-double v228, v244, v204 rem-float/2addr v3, v7 float-to-double v13, v3 and-int v70, v103, v11 int-to-byte v5, v8 and-int/lit8 v36, v110, 67 or-int v6, v192, v143 sub-double/2addr v1, v13 add-int/lit16 v6, v12, -3350 add-long v196, v122, v171 const-wide v4, 0x711ac36e388f0ab3L const-wide v2, 0xe098dfd3a440a3b0L and-long/2addr v2, v4 add-double v235, v235, v105 add-int/lit16 v8, v8, 21312 int-to-byte v8, v8 double-to-float v1, v13 shl-int v6, v90, v178 const-wide v159, 1048576L or-long v125, v125, v159 rem-long v33, v133, v125 and-int/lit16 v0, v11, 8756 ushr-long/2addr v4, v6 or-long v219, v217, v63 xor-int/lit8 v7, v103, 112 const-wide v11, 0x93f7d6ffbe404f8aL div-double/2addr v13, v11 rem-double/2addr v13, v11 and-int/lit8 v201, v169, -70 rem-double v53, v23, v193 neg-int v12, v0 rsub-int v4, v7, -6132 and-int v171, v0, v178 mul-double v67, v230, v221 int-to-long v3, v7 const-wide v9, 0xc3e65749b5ad79deL or-long/2addr v9, v3 mul-double v134, v13, v204 div-float v13, v114, v88 shl-int/2addr v12, v8 int-to-short v14, v12 const-wide v55, 536870912L or-long v217, v217, v55 div-long v9, v211, v217 not-long v4, v3 div-int/lit16 v13, v8, -2785 long-to-double v6, v9 mul-int/2addr v13, v12 int-to-byte v12, v0 add-float v38, v223, v48 ushr-int/2addr v8, v12 xor-int/lit8 v48, v41, 7 const-wide v93, 268435456L or-long v4, v4, v93 rem-long/2addr v9, v4 int-to-float v5, v14 int-to-char v13, v0 rem-double v160, v213, v204 const-wide v14, 0xddfb988b76c09350L sub-long/2addr v14, v9 or-int/lit16 v12, v12, -22184 mul-long v92, v30, v167 neg-int v15, v12 const-wide v39, 16384L or-long v18, v18, v39 rem-long v59, v44, v18 const-wide v10, 0x781c9d1255aeb5c1L const-wide v15, 0xa2246f7a9d68d481L add-long/2addr v10, v15 sub-float/2addr v5, v1 int-to-long v14, v8 mul-int v87, v43, v149 const-wide v5, 0xa6c194806c0f4b05L const-wide v11, 0x6753b74fa5ac27bcL rem-double/2addr v11, v5 div-int/lit8 v125, v201, 19 rem-int/lit8 v88, v77, 116 int-to-short v5, v13 and-int/lit8 v7, v42, -88 add-int/lit8 v137, v176, 9 const-wide v0, 0x8eae1877b21d5122L or-long/2addr v0, v14 const-wide v18, 536870912L or-long v14, v14, v18 rem-long/2addr v0, v14 const v8, 0x2251e2c6 const v13, 0xe9899b94 sub-float/2addr v8, v13 or-int/lit8 v5, v5, 49 div-int/2addr v7, v5 shr-int/2addr v5, v7 shr-int/lit8 v123, v132, -29 div-int/lit8 v17, v90, 10 double-to-long v10, v11 mul-int v127, v17, v5 const-wide v5, 0x499f6e73c3c4b9f4L const-wide v1, 0x6d4e30ff5f4188cbL div-double/2addr v5, v1 or-int v193, v52, v118 double-to-int v3, v1 or-int/lit8 v52, v52, 41 rem-int v96, v201, v52 shl-int/2addr v3, v7 add-float v1, v13, v76 shl-int/2addr v3, v7 mul-int/lit16 v8, v3, -27715 div-int/lit16 v9, v7, -24678 or-int v84, v125, v70 div-double v101, v204, v53 neg-double v4, v5 mul-double v223, v221, v120 or-int/lit8 v8, v8, 45 div-int/2addr v9, v8 or-int/2addr v9, v7 not-int v0, v7 or-int/lit8 v46, v46, 53 rem-int v10, v178, v46 shl-int v218, v225, v81 xor-int/lit8 v68, v48, -39 const-wide v12, 0x873af1d3d04e90daL sub-long/2addr v12, v14 or-int/lit8 v0, v0, 63 rem-int/2addr v9, v0 mul-int/2addr v3, v9 not-int v14, v9 sub-int/2addr v8, v10 rem-float v88, v177, v109 rem-double v208, v160, v228 float-to-long v8, v1 rsub-int v5, v10, 20119 mul-long v10, v116, v8 const-wide v2, 0xa1e318bf6a30969fL const-wide v10, 0x9c5e7ae26de2bbccL add-double/2addr v10, v2 or-int v36, v210, v193 const v5, 0x6d7611b7 sub-float/2addr v5, v1 div-float v27, v38, v179 not-long v3, v8 sub-long v82, v85, v107 xor-long/2addr v12, v3 sub-float v182, v5, v177 ushr-long v158, v3, v0 shr-int/lit8 v103, v42, 72 double-to-int v8, v10 not-int v8, v7 xor-int v6, v84, v127 neg-int v15, v7 add-double v110, v228, v120 mul-float/2addr v5, v1 add-int v251, v103, v43 shr-long/2addr v12, v8 div-float/2addr v5, v1 mul-int/2addr v7, v15 shl-int v217, v192, v8 or-int v201, v61, v139 or-int/lit8 v6, v6, 123 rem-int/2addr v0, v6 and-int/lit8 v146, v217, 43 const-wide v8, 0xdbfb466f065ae930L div-double/2addr v10, v8 div-double/2addr v8, v10 not-int v14, v15 xor-long v160, v107, v85 shr-long v232, v233, v6 or-int/2addr v0, v6 or-int/lit8 v50, v147, -77 mul-int/lit16 v11, v7, 29264 int-to-char v1, v15 add-long v132, v215, v55 add-int/lit8 v89, v0, 108 shr-int/2addr v0, v14 add-int/lit16 v12, v1, -18827 mul-int/lit8 v135, v89, -43 xor-int/2addr v6, v1 int-to-float v9, v6 mul-long v148, v211, v3 xor-int/2addr v6, v1 or-int/lit8 v15, v15, 80 div-int/2addr v7, v15 div-float v46, v38, v177 neg-long v7, v3 neg-long v13, v7 mul-float/2addr v5, v9 const-wide v14, 0xb87d20026d45a47aL const-wide v8, 0x22c906d0f1889e4bL mul-double/2addr v8, v14 int-to-long v13, v1 neg-long v10, v13 rem-int/lit8 v89, v163, 30 ushr-int/lit8 v126, v164, 42 const v11, 0x5f7e415c mul-float/2addr v5, v11 or-int/lit16 v7, v1, 18068 double-to-int v9, v8 int-to-float v6, v1 add-int/lit8 v123, v169, 26 sub-long v86, v3, v154 ushr-int/2addr v7, v12 const-wide v0, 0xd095fd636ff239L move-wide/from16 v10, v235 rem-double/2addr v0, v10 and-int/lit8 v114, v126, -25 or-int/lit8 v9, v9, 45 div-int/2addr v12, v9 double-to-long v5, v0 mul-int/lit8 v247, v41, -13 mul-int/lit8 v48, v127, 25 const v2, 0x37726d06 const v4, 0x46989cc1 rem-float/2addr v4, v2 not-long v1, v5 div-int/lit16 v10, v9, 24146 float-to-long v11, v4 move/from16 v15, v88 rem-float/2addr v4, v15 div-float v170, v46, v27 xor-long/2addr v1, v11 mul-float/2addr v4, v15 and-int/lit8 v122, v251, -67 xor-int v65, v151, v164 const-wide v196, 1048576L or-long v158, v158, v196 rem-long v189, v92, v158 shr-int v207, v41, v217 shr-int v17, v89, v43 move-wide/from16 v14, v120 double-to-long v0, v14 rem-int/lit8 v91, v143, -75 and-int/2addr v9, v10 mul-double v183, v204, v99 const-wide v13, 0x9baa5e0a30e10838L const-wide v11, 0x174a0ab9bb390b8bL mul-double/2addr v13, v11 int-to-byte v14, v9 rsub-int/lit8 v194, v42, 87 or-int/lit8 v7, v7, 74 div-int/2addr v10, v7 and-long v218, v33, v202 rem-float v56, v4, v51 const-wide v132, 32768L or-long v242, v242, v132 div-long v150, v189, v242 add-long v161, v44, v107 ushr-long/2addr v0, v7 shl-int/lit8 v66, v52, -15 shr-int/lit8 v124, v125, 6 long-to-int v13, v5 or-int/lit16 v8, v7, 20483 div-double v93, v183, v99 add-int/lit8 v36, v157, -71 or-int/lit8 v13, v13, 109 rem-int/2addr v10, v13 const-wide v211, 128L or-long v0, v0, v211 div-long/2addr v5, v0 float-to-double v7, v4 add-int v236, v152, v193 const v14, 0x8c8060fe div-float/2addr v14, v4 and-int/lit8 v9, v157, -61 sub-double/2addr v7, v11 mul-int/2addr v13, v9 or-int/lit8 v10, v10, 84 rem-int/2addr v9, v10 mul-double v130, v213, v23 ushr-int/2addr v9, v13 mul-double v151, v7, v11 or-int/lit8 v189, v50, -73 long-to-int v9, v5 xor-int v47, v135, v176 mul-float/2addr v14, v4 int-to-float v14, v13 rem-float/2addr v4, v14 mul-int/lit8 v105, v81, -101 div-double/2addr v7, v11 xor-int/lit16 v3, v13, 18373 xor-long/2addr v0, v5 sub-long v173, v148, v232 const-wide v86, 524288L or-long v5, v5, v86 rem-long/2addr v0, v5 double-to-long v7, v11 float-to-int v5, v14 double-to-float v12, v11 and-int/lit8 v183, v5, -14 int-to-short v8, v13 ushr-int v56, v10, v217 xor-int/2addr v5, v8 div-float/2addr v14, v12 add-int/lit8 v61, v176, 17 int-to-byte v1, v13 rem-double v111, v228, v93 add-int/lit8 v30, v72, 94 move-wide/from16 v7, v53 double-to-int v0, v7 and-int/lit16 v4, v10, -28011 rsub-int v12, v3, -24786 int-to-long v5, v9 int-to-byte v9, v13 mul-int/2addr v12, v1 sub-int v233, v61, v36 mul-int/lit8 v75, v68, 93 or-int/lit8 v169, v169, 24 rem-int v213, v13, v169 xor-int/lit16 v14, v13, 15625 sub-int v74, v74, v70 int-to-short v1, v14 sub-double v38, v221, v78 xor-long v95, v5, v248 shr-int v246, v36, v164 add-float v7, v76, v46 const v12, 0x556b0a80 sub-float/2addr v7, v12 or-int/lit8 v251, v251, 26 rem-int v112, v233, v251 sub-long v232, v95, v59 add-int/lit8 v57, v217, -88 move-wide/from16 v12, v215 const-wide v154, 256L or-long v5, v5, v154 div-long/2addr v12, v5 add-int/2addr v10, v1 int-to-double v11, v1 long-to-int v11, v5 add-int v173, v225, v126 shl-long v170, v196, v143 const v14, 0x5905d1d3 rem-float/2addr v14, v7 xor-int/2addr v10, v1 rem-float v144, v88, v51 shl-long/2addr v5, v0 const-wide v14, 0x48301cea5d657950L const-wide v1, 0xbd549de479a10196L mul-double/2addr v1, v14 and-int/2addr v3, v0 shl-int/2addr v4, v0 const-wide v44, 2L or-long v59, v59, v44 div-long v154, v148, v59 rem-double/2addr v1, v14 ushr-long/2addr v5, v0 const-wide v15, 0x7e2bd9da9bd07af9L and-long/2addr v15, v5 or-long v166, v196, v59 and-long/2addr v15, v5 div-double v235, v254, v130 add-double v218, v221, v101 add-int/2addr v3, v11 const v15, 0x2c430673 mul-float/2addr v15, v7 not-int v11, v11 ushr-int/lit8 v88, v157, -89 mul-int/lit8 v34, v114, 117 mul-int/lit8 v181, v189, 19 div-int/lit8 v57, v192, -64 sub-float/2addr v15, v7 const-wide v166, 536870912L or-long v18, v18, v166 rem-long v45, v158, v18 shl-int/lit8 v30, v225, -8 xor-long v147, v248, v161 neg-double v12, v1 xor-int/2addr v3, v9 or-long v175, v59, v116 shl-long v242, v147, v43 ushr-int/lit8 v51, v178, -9 move-wide/from16 v13, v263 xor-long/2addr v5, v13 float-to-double v0, v7 int-to-byte v10, v11 sub-int/2addr v3, v11 sub-float v178, v76, v15 not-int v0, v9 long-to-float v14, v5 float-to-long v4, v14 ushr-int/2addr v9, v11 shl-long/2addr v4, v9 or-int/2addr v3, v10 div-int/lit8 v206, v43, -8 int-to-byte v9, v9 const-wide v166, 512L or-long v86, v86, v166 rem-long v149, v4, v86 int-to-byte v1, v11 const-wide v0, 0x1a57ab07119156eL const-wide v202, 65536L or-long v4, v4, v202 div-long/2addr v0, v4 const-wide v0, 0x6c75113c111a48d9L double-to-int v14, v0 or-long v35, v170, v18 add-float/2addr v15, v7 rsub-int v10, v3, -31719 const-wide v11, 0xe9a61452ccf610deL div-double/2addr v0, v11 or-int/lit8 v30, v30, 43 rem-int v103, v10, v30 sub-float/2addr v7, v15 and-int/lit8 v109, v52, 25 sub-long v97, v107, v239 sub-float/2addr v15, v7 ushr-int v189, v103, v173 ushr-long/2addr v4, v14 float-to-long v9, v15 or-int/lit8 v251, v251, 57 div-int v18, v34, v251 rsub-int v4, v3, 25053 mul-int v16, v217, v14 long-to-double v3, v9 add-double/2addr v3, v0 or-long v216, v166, v175 const-wide v8, 0x2951a9e61640b2e9L const-wide v4, 0x45ae02f5f8d151e0L const-wide v170, 64L or-long v8, v8, v170 rem-long/2addr v4, v8 mul-int v250, v89, v181 shl-long/2addr v4, v14 sub-float v75, v179, v7 or-long v196, v107, v8 mul-int/lit8 v183, v48, 85 rem-double v208, v101, v204 sub-float v245, v75, v27 neg-float v3, v15 or-long v61, v248, v35 const v9, 0x7071354c add-int/2addr v14, v9 add-float/2addr v3, v15 neg-float v4, v15 add-int/lit16 v7, v9, -8567 rem-double v178, v120, v230 const-wide v7, 0xae529e045fdea57dL long-to-int v11, v7 xor-int/2addr v9, v11 or-int/lit8 v14, v14, 89 div-int/2addr v11, v14 int-to-float v14, v14 const-wide v154, 4194304L or-long v35, v35, v154 rem-long v133, v166, v35 const-wide v86, 16L or-long v95, v95, v86 div-long v252, v133, v95 rsub-int v5, v9, 2297 mul-int/lit16 v11, v9, -13393 and-int/lit8 v8, v250, -83 div-int/lit8 v6, v17, 73 sub-float/2addr v4, v3 shr-long v92, v166, v207 or-int v60, v251, v225 move-wide/from16 v9, v178 sub-double/2addr v0, v9 sub-float/2addr v3, v4 shl-int v140, v50, v72 shl-int v72, v164, v8 const-wide v11, 0x68080fe30dfc6ceL const-wide v3, 0xc712ffdc943b80b9L add-long/2addr v11, v3 or-int/lit8 v164, v164, 48 rem-int v115, v140, v164 div-int/lit16 v8, v8, -6827 shr-int/lit8 v100, v251, -126 sub-long/2addr v3, v11 mul-double v142, v178, v101 neg-int v3, v8 ushr-long v159, v133, v56 const-wide v15, 0x6bcd355c5e7b39ecL const-wide v202, 128L or-long v15, v15, v202 div-long/2addr v11, v15 const v8, 0xbdb5042c rem-float/2addr v14, v8 const-wide v175, 4096L or-long v166, v166, v175 rem-long v178, v159, v166 rem-double v223, v223, v53 rem-float/2addr v8, v14 mul-int/lit8 v232, v89, 112 xor-long v21, v97, v128 neg-int v14, v5 add-int/2addr v3, v6 and-long v141, v170, v154 mul-long/2addr v15, v11 add-double v49, v38, v230 float-to-double v0, v8 or-int/lit16 v5, v6, 25235 mul-long/2addr v15, v11 add-double/2addr v9, v0 and-long v19, v239, v86 double-to-long v6, v9 rem-double/2addr v0, v9 or-int/lit8 v157, v157, 56 rem-int v146, v181, v157 shr-int/2addr v3, v14 shl-long/2addr v11, v5 shl-long v96, v86, v181 rem-float v40, v29, v75 int-to-byte v15, v5 or-int/lit8 v74, v74, 73 rem-int v84, v15, v74 ushr-int v33, v125, v51 div-int/lit8 v240, v189, 111 sub-int/2addr v3, v14 shr-long v100, v133, v91 shr-int v225, v157, v68 long-to-float v7, v11 or-int/lit8 v28, v28, 61 div-int v205, v200, v28 add-int/2addr v14, v15 mul-long v252, v147, v202 const-wide v8, 0x2ca024cfa7ec4a68L add-long/2addr v8, v11 neg-double v8, v0 rsub-int/lit8 v131, v137, 50 rem-int/lit16 v2, v3, 1290 const-wide v0, 0x3df6881e973327fL const-wide v107, 1048576L or-long v0, v0, v107 rem-long/2addr v11, v0 add-int/lit8 v114, v194, 30 int-to-long v6, v14 div-int/lit16 v11, v15, -18620 const-wide v86, 16777216L or-long v6, v6, v86 div-long/2addr v0, v6 shr-long/2addr v0, v15 xor-int/2addr v3, v5 rem-int/lit8 v154, v240, 43 add-int/lit16 v12, v3, 3487 const-wide v170, 16384L or-long v21, v21, v170 div-long v164, v6, v21 mul-long/2addr v6, v0 const-wide v2, 0xd36c629235952adL add-double/2addr v2, v8 or-int/lit8 v193, v65, -3 div-float v105, v177, v40 and-long v131, v96, v159 neg-long v1, v6 xor-long/2addr v6, v1 shr-int/lit8 v47, v173, 3 const v9, 0xffa12503 float-to-int v14, v9 int-to-float v14, v11 or-int/2addr v15, v5 rem-int/lit8 v251, v227, 15 xor-int/lit16 v4, v11, -18882 sub-long/2addr v6, v1 div-float/2addr v14, v9 int-to-long v0, v5 shr-long v65, v133, v154 shr-long v29, v19, v181 and-int/2addr v15, v5 div-float v16, v26, v71 float-to-double v5, v14 ushr-int/2addr v11, v12 or-long v156, v131, v216 mul-int v111, v72, v77 or-int/2addr v15, v4 const-wide v2, 0xac6eecdbf4447d0fL const-wide v128, 262144L or-long v2, v2, v128 rem-long/2addr v0, v2 shl-int/2addr v4, v11 div-int/lit16 v13, v11, 2575 ushr-int/2addr v15, v11 const-wide v159, 32L or-long v21, v21, v159 rem-long v127, v252, v21 sub-float v67, v71, v144 and-int/lit16 v14, v15, -6790 shr-int/lit8 v77, v122, 73 rsub-int/lit8 v47, v140, 95 neg-int v12, v14 int-to-double v10, v12 const-wide v92, 512L or-long v2, v2, v92 div-long/2addr v0, v2 mul-int v182, v201, v194 long-to-double v12, v2 mul-int/lit8 v173, v137, 63 and-int/2addr v4, v14 ushr-int/lit8 v110, v181, 46 const v11, 0xccd3d93f mul-float/2addr v9, v11 add-double v210, v49, v23 neg-long v9, v0 const-wide v96, 4096L or-long v166, v166, v96 div-long v150, v21, v166 add-long v170, v161, v29 xor-long/2addr v2, v0 shl-long v243, v21, v88 div-float v224, v40, v27 const-wide v196, 268435456L or-long v0, v0, v196 rem-long/2addr v2, v0 shr-int v52, v48, v109 add-int/lit8 v130, v33, 2 xor-int/2addr v4, v14 double-to-int v7, v12 xor-int v80, v251, v90 sub-long v108, v107, v178 shl-int/lit8 v212, v77, -17 or-int/lit8 v15, v15, 104 rem-int/2addr v7, v15 const v2, 0xb2fa057c div-float/2addr v11, v2 ushr-long/2addr v0, v7 double-to-long v3, v5 xor-int/lit16 v13, v15, -6342 or-int/2addr v15, v7 shl-int v201, v124, v246 const-wide v11, 0xcedc25583c8a5849L add-double/2addr v11, v5 sub-long v44, v127, v202 or-int/lit16 v1, v15, -21975 float-to-long v14, v2 and-long/2addr v3, v14 neg-int v10, v1 and-int/lit16 v15, v1, 27377 const-wide v1, 0x62d08e04ed28e1f2L add-long/2addr v1, v3 rem-int/lit16 v5, v15, -2951 mul-float v217, v144, v67 and-int/2addr v7, v5 not-int v4, v13 const v10, 0xd0999c95 const v12, 0xe1fc218b rem-float/2addr v10, v12 add-float/2addr v10, v12 or-int/lit16 v3, v5, -1349 shr-int v109, v250, v163 xor-int v58, v42, v183 and-int/lit8 v170, v17, -105 or-int/lit8 v15, v15, 22 rem-int/2addr v13, v15 ushr-int/2addr v3, v4 rsub-int/lit8 v108, v60, -28 const-wide v7, 0xd222c42798464442L neg-double v15, v7 sub-long v141, v178, v86 not-int v12, v5 neg-double v3, v15 const v9, 0xad430a5d rem-float/2addr v10, v9 add-long v157, v131, v63 or-int/lit16 v11, v12, -2388 xor-long v72, v133, v243 div-float/2addr v10, v9 mul-double/2addr v15, v7 or-long v66, v252, v82 rem-int/lit16 v10, v12, -21019 or-int v66, v17, v10 long-to-int v12, v1 shr-long/2addr v1, v13 shr-int v207, v227, v247 const-wide v13, 0xd6892274bed7c3a1L const-wide v100, 4194304L or-long v1, v1, v100 div-long/2addr v13, v1 shr-int/2addr v10, v5 add-int/lit8 v145, v110, 53 or-int/lit8 v130, v130, 66 rem-int v208, v240, v130 add-int/lit8 v209, v109, -121 const v13, 0x4f730999 rem-float/2addr v9, v13 shl-long v184, v196, v80 add-int/lit8 v18, v33, 108 sub-int v80, v52, v48 int-to-long v7, v12 ushr-long/2addr v7, v10 div-double v40, v78, v210 div-int/lit16 v2, v11, 15489 not-long v6, v7 const-wide v10, 0xfa6c19e19620a281L const-wide v116, 1048576L or-long v6, v6, v116 rem-long/2addr v10, v6 and-int/2addr v12, v5 rem-int/lit8 v161, v66, -68 or-int/lit16 v10, v2, 14659 or-int/2addr v12, v10 add-long v65, v157, v44 float-to-long v3, v13 int-to-short v11, v12 mul-int/lit16 v12, v10, 2637 double-to-int v10, v15 shl-int/lit8 v51, v60, 3 rsub-int/lit8 v145, v111, 31 int-to-float v15, v12 and-long/2addr v3, v6 not-long v11, v3 const-wide v11, 0x4b11afa2dad06366L neg-double v3, v11 shr-int/2addr v2, v10 rem-double v93, v53, v11 xor-int/2addr v2, v10 or-int/lit8 v167, v91, 11 shl-long/2addr v6, v5 const-wide v1, 0xb9f9d9e1edac6a22L or-long/2addr v6, v1 and-int/lit8 v219, v183, 6 or-int/lit8 v5, v5, 125 rem-int/2addr v10, v5 sub-float/2addr v13, v15 div-float v0, v76, v15 rem-double/2addr v11, v3 shl-long/2addr v1, v5 float-to-int v0, v0 mul-double v79, v38, v120 ushr-long v140, v29, v209 not-long v8, v6 not-int v8, v10 sub-double/2addr v3, v11 div-double v54, v23, v40 or-int/lit8 v88, v88, 45 rem-int v2, v33, v88 div-double/2addr v11, v3 ushr-long v30, v61, v81 not-long v13, v6 mul-int/lit8 v50, v17, -77 shl-int/lit8 v61, v125, -24 or-int/lit8 v206, v206, 53 div-int v253, v17, v206 shr-int/2addr v10, v0 int-to-long v8, v2 add-double v59, v23, v254 shl-int v87, v47, v212 and-int v203, v167, v135 xor-long v80, v19, v127 and-long v218, v13, v82 div-int/lit8 v16, v52, -64 div-int/lit8 v85, v183, 28 rem-int/lit16 v12, v0, -18572 const v8, 0x39926922 rem-float/2addr v15, v8 xor-int/lit8 v168, v135, 13 neg-int v9, v12 sub-double v84, v254, v38 not-long v4, v13 sub-float v137, v71, v26 add-long v26, v147, v178 shr-long/2addr v13, v12 float-to-long v6, v15 long-to-int v2, v4 or-int/lit8 v9, v9, 20 div-int/2addr v10, v9 const-wide v14, 0x842916788f96deb1L const-wide v1, 0xcd8adbf2624c02d8L sub-double/2addr v14, v1 rsub-int/lit8 v223, v74, 123 div-int/lit8 v248, v189, 36 neg-int v8, v0 int-to-byte v14, v10 neg-double v10, v1 mul-long v237, v218, v30 or-int/lit8 v9, v9, 78 div-int/2addr v14, v9 add-int v171, v91, v14 add-float v43, v76, v75 shl-int v38, v240, v47 ushr-long v246, v26, v118 double-to-long v12, v1 or-int/lit8 v109, v109, 26 div-int v200, v90, v109 rem-float v67, v105, v76 neg-int v7, v9 add-int/2addr v0, v8 neg-double v15, v10 int-to-short v7, v9 shl-int v149, v57, v251 sub-long/2addr v12, v4 shr-long v58, v4, v163 shl-int/2addr v8, v7 rem-int/lit16 v3, v7, 4055 or-int/lit8 v110, v110, 70 rem-int v109, v161, v110 rsub-int v11, v7, 23070 const-wide v133, 4096L or-long v164, v164, v133 rem-long v1, v44, v164 div-int/lit8 v86, v208, 100 sub-int/2addr v9, v14 or-long/2addr v1, v12 ushr-long/2addr v4, v14 sub-long/2addr v1, v4 const-wide v11, 0x7d79071b27c9996eL rem-double/2addr v15, v11 mul-int v136, v130, v8 long-to-float v10, v4 double-to-float v15, v15 shl-int v98, v183, v182 rem-int/lit8 v91, v154, -24 neg-float v2, v10 or-int/lit8 v47, v47, 76 div-int v229, v189, v47 mul-float/2addr v10, v15 mul-float v241, v144, v76 add-int v124, v223, v77 double-to-long v6, v11 rem-float v146, v15, v67 xor-int/lit16 v6, v8, -13983 add-int/2addr v0, v3 neg-float v5, v10 mul-int/lit8 v36, v51, 50 double-to-long v8, v11 rsub-int/lit8 v125, v48, 81 rem-double v180, v40, v230 mul-int/lit16 v15, v6, -18167 neg-int v11, v14 neg-long v1, v8 ushr-int v211, v192, v154 neg-long v5, v8 div-double v165, v254, v230 shr-int/2addr v15, v0 int-to-byte v11, v14 add-int/lit16 v7, v11, -3199 sub-long v252, v65, v116 and-int/lit16 v2, v3, 12557 or-long v154, v175, v252 const-wide v0, 0xa05227fec4097198L double-to-long v2, v0 add-long v35, v96, v159 mul-int/lit16 v10, v7, 15637 shr-int v10, v10, v17 mul-long v234, v140, v5 and-int v87, v17, v87 add-long/2addr v2, v5 add-int v153, v171, v169 const-wide v0, 0xd123c0095d49a0b4L const-wide v6, 0x90295de36c7ee176L sub-double/2addr v0, v6 rem-int/lit16 v1, v10, -25015 ushr-long v68, v131, v61 or-int/lit8 v208, v208, 42 div-int v4, v77, v208 const-wide v10, 0xfde6d5ec605a85f8L sub-double/2addr v6, v10 int-to-byte v11, v1 const v5, 0xbaa04b41 const v12, 0x63927020 sub-float/2addr v5, v12 ushr-int v172, v149, v248 or-int/lit8 v14, v14, 104 div-int/2addr v15, v14 const-wide v1, 0x795f5d76418d0e80L div-double/2addr v6, v1 const-wide v1, 0x1fb90fd3e3800d16L sub-long/2addr v8, v1 xor-int v38, v130, v211 sub-double v224, v230, v165 mul-double v48, v180, v54 xor-long/2addr v1, v8 or-int/2addr v15, v11 sub-int/2addr v4, v14 ushr-int/lit8 v97, v33, 79 rem-int/lit16 v4, v11, 20113 or-int/lit8 v212, v212, 124 div-int v48, v74, v212 div-int/lit16 v11, v11, -24904 const-wide v82, 134217728L or-long v8, v8, v82 rem-long/2addr v1, v8 const-wide v13, 0xbaa96ed96f5fa418L sub-double/2addr v6, v13 shl-long v146, v184, v98 div-int/lit8 v244, v203, -48 or-int/2addr v11, v15 and-int/lit16 v9, v15, 9411 div-double/2addr v6, v13 xor-int/2addr v9, v15 const-wide v0, 0x7eda79498475e304L move-wide/from16 v13, v150 const-wide v150, 8388608L or-long v0, v0, v150 div-long/2addr v13, v0 const-wide v150, 1073741824L or-long v157, v157, v150 div-long v119, v44, v157 and-long/2addr v13, v0 int-to-double v12, v4 shl-int v60, v122, v123 or-long v180, v44, v127 const-wide v14, 0x6aa28d2980a861e7L const-wide v68, 1073741824L or-long v0, v0, v68 rem-long/2addr v14, v0 neg-double v2, v6 shr-int v83, v212, v182 add-long/2addr v14, v0 neg-double v5, v6 const v2, 0xa15bada const v10, 0xbf1fefd6 rem-float/2addr v2, v10 double-to-long v5, v12 shr-int v140, v122, v200 rsub-int/lit8 v33, v123, 2 const-wide v2, 0xfec81ca6387242c9L sub-double/2addr v2, v12 ushr-int v19, v125, v50 add-double v106, v224, v230 div-int/lit8 v107, v223, -83 and-int/2addr v11, v4 sub-long/2addr v14, v5 div-int/lit16 v10, v11, 11323 mul-long/2addr v0, v5 double-to-long v12, v12 xor-int/lit8 v186, v89, -67 div-int/lit8 v229, v200, -80 long-to-int v5, v12 div-int/lit16 v3, v11, 12141 const-wide v10, 0xf5e5f01b0338eee3L const-wide v7, 0x918765bcb8cb6b7cL mul-double/2addr v10, v7 int-to-char v12, v9 and-long v37, v159, v237 rem-double/2addr v7, v10 int-to-char v11, v3 div-int/lit8 v125, v56, -59 and-long/2addr v0, v14 shr-int/lit8 v252, v98, 121 div-int/lit8 v131, v9, -27 mul-float v236, v217, v105 not-int v3, v12 shl-long v213, v72, v135 sub-float v158, v137, v217 rem-double v70, v254, v40 add-double v103, v54, v23 int-to-char v8, v5 mul-int/lit8 v254, v139, -79 ushr-int/lit8 v28, v201, 76 or-long v241, v58, v154 move-wide/from16 v0, v273 double-to-int v8, v0 const v1, 0xae8c4542 move/from16 v3, v158 rem-float/2addr v3, v1 float-to-double v10, v1 not-long v12, v14 mul-long v242, v30, v133 add-float v103, v76, v217 or-int/2addr v8, v9 shl-int/lit8 v115, v51, 50 const-wide v5, 0xfb6699ee76638462L mul-double/2addr v10, v5 sub-double/2addr v10, v5 not-int v10, v9 shr-long/2addr v12, v10 xor-long/2addr v12, v14 xor-int/2addr v9, v10 shr-int/lit8 v86, v17, 108 or-long/2addr v12, v14 sub-int v95, v223, v88 mul-int/2addr v8, v9 mul-int/lit8 v165, v163, 33 or-int/lit8 v9, v9, 99 rem-int/2addr v8, v9 mul-float v24, v103, v158 float-to-double v1, v1 rem-double/2addr v5, v1 ushr-int/2addr v9, v4 and-int/lit16 v3, v4, 18851 shr-int v144, v83, v42 neg-double v5, v1 not-int v11, v4 div-double v82, v230, v84 sub-long v82, v100, v218 sub-int/2addr v3, v8 and-int v246, v112, v125 neg-long v3, v14 neg-long v9, v3 neg-int v6, v8 sub-int v91, v192, v205 shl-long/2addr v9, v11 xor-long v236, v37, v63 mul-int/lit16 v9, v6, -14805 shl-long v71, v184, v95 int-to-double v2, v11 add-float v248, v245, v105 and-long v67, v146, v119 add-int v156, v212, v17 const-wide v3, 0x4df4795dbceda317L const-wide v5, 0xfc55e5c43200ab63L add-double/2addr v3, v5 move/from16 v1, v245 float-to-int v0, v1 rem-double/2addr v5, v3 ushr-int v227, v61, v123 mul-double/2addr v5, v3 mul-double/2addr v3, v5 rem-int/lit16 v9, v0, 24888 and-int/lit16 v6, v11, -30779 xor-int/lit8 v91, v172, -73 add-int/2addr v11, v8 or-long/2addr v14, v12 long-to-double v10, v12 shr-long v217, v67, v240 mul-int v229, v193, v74 rem-int/lit8 v128, v201, 42 xor-int/2addr v8, v6 shr-int v171, v244, v48 div-float v16, v24, v75 sub-double/2addr v3, v10 div-float v221, v248, v137 double-to-float v2, v10 add-long/2addr v14, v12 add-long/2addr v12, v14 neg-int v12, v6 mul-long v12, v100, v116 int-to-long v15, v8 div-int/lit16 v12, v9, 10586 ushr-long/2addr v15, v8 move-wide/from16 v7, v263 add-long/2addr v7, v15 rem-int/lit16 v13, v6, 12778 rem-float/2addr v1, v2 add-int v255, v153, v125 mul-double v97, v224, v93 sub-int v243, v173, v207 shr-long v169, v175, v201 shr-long v65, v35, v12 and-long v252, v234, v80 sub-int v22, v135, v163 rsub-int v0, v9, 6858 add-int/lit16 v4, v9, -18485 and-long/2addr v15, v7 rem-float v248, v76, v2 ushr-int v131, v51, v118 sub-int v97, v153, v145 xor-long/2addr v7, v15 or-int/lit8 v9, v9, 68 div-int/2addr v12, v9 sub-long v180, v63, v150 ushr-long v155, v100, v74 xor-long v206, v178, v213 add-int/lit8 v111, v12, 62 or-long v116, v180, v65 const-wide v1, 0xc43955494f1b07e8L div-double/2addr v1, v10 rem-double v6, v40, v84 xor-int/lit16 v6, v9, 24186 add-int/lit16 v14, v12, -5059 int-to-char v4, v14 shr-long v161, v71, v163 add-int/2addr v14, v9 move/from16 v15, v103 neg-float v5, v15 div-float/2addr v15, v5 and-int v157, v22, v6 xor-int v144, v114, v89 rem-int/lit8 v113, v51, 61 const-wide v10, 0xa570de678675195cL const-wide v13, 0xdd3c8c38fba5670L const-wide v161, 256L or-long v10, v10, v161 rem-long/2addr v13, v10 sub-float v195, v15, v137 shr-int/2addr v6, v0 shl-int/2addr v0, v6 double-to-int v10, v1 sub-double v13, v224, v93 add-int v118, v22, v167 shl-int/2addr v0, v4 add-int/lit8 v74, v201, -14 div-int/lit16 v4, v6, -7935 int-to-short v7, v6 sub-int v103, v149, v205 int-to-short v7, v9 add-long v124, v26, v206 shl-long v182, v252, v254 mul-double v39, v54, v1 shl-long v93, v206, v86 ushr-int/lit8 v189, v189, 116 rsub-int/lit8 v169, v126, -45 xor-int v123, v189, v107 or-int/lit16 v5, v10, 30561 const-wide v0, 0xc55b91221127851fL const-wide v10, 0xbe88ce3cd38401c8L and-long/2addr v0, v10 shl-long v102, v196, v128 int-to-byte v0, v12 or-int/lit8 v232, v232, 58 rem-int v71, v130, v232 const-wide v100, 1024L or-long v67, v67, v100 div-long v132, v236, v67 mul-int/2addr v6, v0 int-to-byte v8, v0 sub-double v8, v54, v13 long-to-double v15, v10 long-to-double v10, v10 const v10, 0xb3fb24e7 const v11, 0x60c858e0 add-float/2addr v10, v11 shr-long v209, v80, v136 float-to-int v6, v10 xor-long v96, v63, v150 or-int/lit8 v122, v122, 109 div-int v29, v48, v122 or-int/lit8 v7, v7, 99 div-int/2addr v5, v7 shl-int/lit8 v171, v34, -9 float-to-int v12, v11 float-to-long v13, v11 neg-double v6, v15 shl-long v59, v252, v95 xor-int/lit16 v13, v4, 7624 int-to-double v8, v4 float-to-double v2, v10 sub-int/2addr v0, v5 or-long v237, v30, v161 const-wide v237, 131072L or-long v132, v132, v237 div-long v176, v44, v132 or-int/lit8 v212, v212, 83 rem-int v9, v205, v212 div-double v206, v230, v2 neg-float v12, v11 const-wide v4, 0xc6f9536c5003dfbdL move-wide/from16 v2, v267 sub-long/2addr v4, v2 sub-double v170, v54, v39 rsub-int/lit8 v201, v17, -35 xor-int/lit8 v109, v74, 38 float-to-long v15, v12 mul-int/lit8 v136, v223, 77 rem-double v119, v206, v84 add-long/2addr v15, v4 double-to-float v11, v6 xor-int/lit8 v10, v130, -80 int-to-char v1, v13 xor-int/lit16 v1, v9, -31944 neg-int v10, v13 ushr-int/lit8 v102, v227, -78 long-to-float v1, v2 xor-int/lit8 v189, v110, 90 or-int/lit8 v246, v246, 51 rem-int v46, v74, v246 int-to-long v4, v9 const-wide v7, 0xf42f21b229c0e2b4L const-wide v5, 0x60810f55ab9a5cdL add-double/2addr v5, v7 add-int/lit16 v4, v10, -16317 mul-int/lit16 v11, v13, 17524 shl-int/lit8 v86, v28, -51 sub-double v144, v54, v230 double-to-long v0, v7 rem-int/lit8 v41, v46, 90 neg-long v14, v0 or-int/2addr v9, v13 rsub-int/lit8 v101, v254, 27 add-long/2addr v2, v14 ushr-int v229, v229, v149 xor-long v2, v178, v146 const v2, 0x964aeee1 add-float/2addr v12, v2 const-wide v37, 65536L or-long v14, v14, v37 div-long/2addr v0, v14 not-long v11, v0 neg-float v7, v2 shl-int/2addr v9, v13 rem-double v159, v230, v119 mul-float/2addr v2, v7 double-to-long v13, v5 rem-double v9, v39, v230 sub-long/2addr v0, v11 not-int v6, v4 or-int/lit8 v6, v6, 24 rem-int/2addr v4, v6 or-int/2addr v6, v4 shr-int/2addr v6, v4 or-int/lit8 v4, v4, 14 rem-int/2addr v6, v4 const-wide v9, 0x5898ce75b87ce7bL const-wide v8, 0x6a046bc03d407466L move-wide/from16 v1, v39 mul-double/2addr v1, v8 float-to-long v11, v7 const-wide v67, 134217728L or-long v176, v176, v67 div-long v119, v234, v176 sub-long v180, v213, v30 rsub-int v2, v6, -29508 and-int/2addr v4, v6 long-to-int v5, v13 and-int/lit16 v13, v5, 8308 rem-double v56, v170, v39 shr-long/2addr v11, v5 int-to-byte v1, v4 const-wide v35, 512L or-long v93, v93, v35 rem-long v198, v213, v93 mul-long v210, v198, v67 long-to-float v13, v11 int-to-byte v9, v2 mul-int/2addr v6, v2 div-float/2addr v7, v13 and-int/lit8 v111, v77, 61 const-wide v11, 0xfc5d45782c7aae71L double-to-int v10, v11 shl-long v226, v176, v22 move-wide/from16 v5, v182 ushr-long/2addr v5, v4 rsub-int/lit8 v17, v153, -65 or-int/lit8 v10, v10, 85 div-int/2addr v9, v10 double-to-float v11, v11 const-wide v4, 0xdaf5246e38338656L move-wide/from16 v15, v273 rem-double/2addr v15, v4 mul-float v19, v43, v248 ushr-long v30, v161, v168 ushr-int/2addr v10, v2 div-double/2addr v4, v15 rem-float/2addr v13, v7 rsub-int/lit8 v47, v136, -30 const-wide v5, 0xf7c69855686f93dfL long-to-double v1, v5 not-int v4, v10 mul-double/2addr v1, v15 mul-float v100, v248, v43 or-int/2addr v10, v9 float-to-int v6, v7 shr-int/lit8 v37, v101, -82 rem-int/lit16 v15, v9, -29653 rem-float v234, v158, v221 mul-float v128, v13, v76 add-float v153, v43, v234 mul-double v113, v230, v144 rem-int/lit8 v225, v167, -28 xor-long v64, v237, v63 div-float v146, v100, v158 int-to-double v1, v15 const-wide v8, 0x8b1054d93625dad2L rem-double/2addr v8, v1 sub-float/2addr v7, v13 and-long v19, v132, v217 sub-double/2addr v8, v1 const-wide v155, 131072L or-long v180, v180, v155 rem-long v88, v161, v180 mul-double/2addr v1, v8 and-int/lit16 v8, v6, -16278 rem-double v224, v54, v1 sub-int v225, v87, v244 shr-long v113, v88, v33 xor-int v118, v18, v6 rsub-int/lit8 v190, v172, 85 rem-float/2addr v11, v7 const-wide v5, 0xe91b71f6cee02f37L shr-long/2addr v5, v8 add-int v251, v225, v10 long-to-double v8, v5 long-to-double v6, v5 or-long v146, v132, v180 add-double v246, v159, v8 const-wide v96, 8388608L or-long v44, v44, v96 div-long v143, v180, v44 and-int/lit8 v222, v28, -126 ushr-long v229, v59, v163 xor-long v134, v176, v124 int-to-short v12, v15 double-to-int v13, v8 const-wide v1, 0x145cc05facc0ba69L const-wide v0, 0x615b7350dd1a99deL move-wide/from16 v15, v132 and-long/2addr v15, v0 ushr-long v127, v210, v203 ushr-long/2addr v15, v4 rem-double/2addr v8, v6 shl-int/2addr v12, v4 double-to-float v4, v6 or-int/lit8 v169, v131, 69 or-long/2addr v15, v0 mul-int/2addr v10, v12 sub-double v3, v54, v84 add-int v52, v172, v107 sub-long v102, v184, v146 and-int/lit8 v134, v48, 75 add-float v168, v76, v234 const v11, 0xcca72982 const v3, 0x9925c71e mul-float/2addr v3, v11 ushr-int/lit8 v107, v51, -125 mul-long/2addr v15, v0 rem-int/lit16 v8, v12, -6718 div-double v35, v39, v84 xor-int/lit16 v6, v8, -26377 rem-double v59, v39, v56 not-long v11, v0 mul-int/2addr v13, v10 xor-long v69, v143, v96 const-wide v1, 0xc7522bed9cd207f4L const-wide v15, 0x1be9ac5e3f8c8133L add-double/2addr v15, v1 sub-int/2addr v6, v13 add-int/lit8 v159, v107, -30 add-int/lit8 v153, v139, -72 rem-double/2addr v1, v15 or-int/lit8 v110, v159, -31 shr-int/2addr v6, v8 long-to-int v12, v11 shr-int/lit8 v95, v71, -109 const-wide v13, 0xe397137e4ef90b4aL not-long v11, v13 const v14, 0xb1eb2373 div-float/2addr v3, v14 or-long v135, v143, v146 not-int v13, v10 const-wide v11, 0x33e2c9722713c31eL const-wide v9, 0x91099ad0795ebf85L or-long/2addr v11, v9 sub-int v172, v123, v200 div-float/2addr v3, v14 rem-float/2addr v3, v14 long-to-float v9, v11 mul-long v150, v213, v237 float-to-int v1, v14 div-int/lit16 v11, v8, 1243 const-wide v3, 0xbbde9c78d8cdef8fL ushr-long/2addr v3, v13 xor-int v40, v172, v194 int-to-double v4, v13 move-wide/from16 v10, v180 const-wide v3, 0x3ca0e95eacd7e9efL const-wide v30, 524288L or-long v10, v10, v30 rem-long/2addr v3, v10 mul-float v146, v76, v14 move-wide/from16 v12, v206 rem-double/2addr v12, v15 rem-double/2addr v12, v15 xor-int/lit16 v11, v6, 19294 float-to-long v13, v9 div-int/lit8 v239, v40, 127 and-int/lit16 v4, v8, -16651 const-wide v9, 0xb8d50375684b033aL sub-double/2addr v15, v9 const-wide v11, 0x640356ee639929c5L xor-long/2addr v13, v11 rsub-int v13, v8, -17670 add-long v145, v102, v237 shl-long/2addr v11, v6 mul-int/lit8 v191, v194, 107 rem-float v197, v100, v221 rem-int/lit16 v15, v4, 21591 double-to-long v1, v9 int-to-char v4, v8 mul-double v193, v9, v54 add-int v29, v52, v134 xor-int/lit16 v2, v4, 20593 const-wide v5, 0x8ae96d1a7013173dL or-long/2addr v5, v11 shr-int v167, v50, v167 long-to-double v12, v11 int-to-float v11, v15 sub-float v42, v248, v234 sub-int/2addr v15, v8 or-int/lit8 v189, v244, -128 and-int v98, v107, v86 mul-double v180, v84, v56 ushr-int/lit8 v52, v87, 44 const v4, 0x8389cb20 add-float/2addr v4, v11 mul-int/lit16 v11, v15, 13798 and-int/lit16 v2, v15, -6001 shl-long v26, v184, v212 mul-int/2addr v8, v2 mul-double v59, v9, v12 not-int v3, v2 int-to-float v2, v3 rsub-int/lit8 v116, v169, 94 const-wide v7, 0x549750da1407f8c7L and-long/2addr v7, v5 or-int/lit8 v15, v15, 116 rem-int/2addr v3, v15 int-to-char v14, v3 rsub-int/lit8 v121, v131, -79 shr-int/lit8 v175, v116, 66 div-int/lit8 v117, v130, -8 and-int/lit8 v10, v3, -86 and-int/lit16 v13, v14, -8078 shl-int v62, v101, v222 ushr-int/2addr v15, v3 neg-int v13, v14 const-wide v10, 0x5c098940066be4b9L move-wide/from16 v14, v269 div-double/2addr v10, v14 and-int/2addr v13, v3 ushr-int v125, v254, v191 ushr-int/lit8 v160, v212, -30 shl-int/2addr v3, v13 xor-int/lit16 v13, v3, 6698 ushr-int/2addr v13, v3 neg-long v11, v7 or-int/lit8 v87, v87, 42 div-int v117, v47, v87 const-wide v14, 0xfaff15921e9a5df7L const-wide v2, 0x54b36ed9777a0667L sub-double/2addr v2, v14 add-double v219, v246, v35 shr-long v143, v113, v126 add-double v86, v35, v14 rsub-int v2, v13, 8990 or-int/lit8 v69, v51, -97 sub-long/2addr v7, v11 mul-int/lit8 v250, v46, 35 int-to-long v9, v13 int-to-char v9, v2 div-double v177, v59, v193 int-to-double v10, v2 int-to-long v8, v9 sub-long v66, v161, v252 shl-int/lit8 v44, v2, -112 long-to-float v1, v5 not-int v1, v13 xor-int/2addr v13, v1 mul-double/2addr v14, v10 long-to-float v10, v8 or-long v246, v93, v150 int-to-char v6, v1 mul-int/lit16 v5, v13, -20947 add-float v34, v75, v234 or-int v61, v167, v13 move-wide/from16 v10, v64 const-wide v135, 4L or-long v8, v8, v135 div-long/2addr v10, v8 const-wide v0, 0xe183d9091b2428acL add-double/2addr v0, v14 sub-double/2addr v0, v14 and-int/2addr v2, v6 div-int/lit8 v166, v90, 91 div-float v43, v168, v75 double-to-int v10, v14 shl-long/2addr v8, v6 const-wide v13, 0x4502e7a76d9f0f01L sub-long/2addr v13, v8 mul-long/2addr v13, v8 rem-int/lit16 v11, v10, -22249 rem-float v178, v34, v4 mul-int v64, v61, v107 const-wide v15, 0x843c316ddc39ca53L rem-double/2addr v15, v0 int-to-float v13, v5 div-float v207, v245, v43 mul-float/2addr v4, v13 move-wide/from16 v6, v252 const-wide v226, 8192L or-long v6, v6, v226 rem-long/2addr v8, v6 add-float/2addr v13, v4 int-to-float v6, v11 const-wide v15, 0x6fd9991cc8d90fefL and-long/2addr v8, v15 shl-int/2addr v5, v11 ushr-int v103, v62, v10 add-long/2addr v15, v8 rem-float/2addr v13, v4 add-int/lit16 v14, v10, -4743 float-to-double v7, v13 float-to-double v0, v6 double-to-float v6, v7 ushr-int/2addr v2, v11 rsub-int/lit8 v13, v251, 87 shl-int v243, v200, v134 float-to-int v15, v4 const-wide v7, 0x2638e4a277d37f8cL long-to-double v4, v7 neg-double v14, v4 div-float v16, v24, v137 const-wide v93, 131072L or-long v19, v19, v93 div-long v214, v217, v19 add-int/lit8 v203, v95, -11 and-int/2addr v11, v10 double-to-int v9, v0 float-to-double v2, v6 ushr-long/2addr v7, v13 add-int/lit8 v237, v165, -35 or-int/lit8 v103, v103, 45 rem-int v115, v237, v103 neg-double v3, v4 mul-float v139, v16, v42 or-int v25, v140, v18 ushr-int/lit8 v178, v28, 66 add-int v171, v173, v115 mul-long v228, v96, v93 long-to-float v2, v7 long-to-int v12, v7 and-int/lit8 v208, v167, 118 neg-long v8, v7 const-wide v3, 0xe80a09b8c3924b02L sub-long/2addr v3, v8 int-to-byte v4, v11 and-int v135, v71, v95 rem-int/lit8 v92, v108, -76 not-int v2, v11 div-int/lit8 v154, v111, -29 or-int/lit8 v13, v13, 60 rem-int/2addr v10, v13 int-to-double v2, v2 shl-int v74, v13, v223 float-to-int v3, v6 and-int/2addr v11, v10 or-int/2addr v4, v13 sub-float v18, v245, v6 not-long v7, v8 sub-int v84, v17, v154 add-int/lit8 v61, v175, -27 long-to-int v11, v7 sub-double v172, v219, v14 long-to-int v14, v7 rsub-int v7, v14, -22747 shl-int v64, v7, v232 shl-long v223, v80, v47 sub-double v195, v219, v59 ushr-int v222, v37, v112 div-double v80, v86, v193 mul-int v200, v203, v47 mul-int/2addr v7, v4 shl-int/2addr v13, v12 xor-int/2addr v3, v14 or-int/lit16 v13, v12, -24907 const-wide v14, 0x82b8d1018364c357L const-wide v2, 0xb75dab7c0624cb76L and-long/2addr v2, v14 neg-float v9, v6 shl-int/2addr v12, v11 const-wide v12, 0x150fcab621d52776L add-double/2addr v0, v12 int-to-float v0, v4 const-wide v66, 524288L or-long v26, v26, v66 div-long v28, v82, v26 int-to-byte v10, v4 shr-int/2addr v10, v4 long-to-double v1, v14 int-to-short v0, v7 mul-int v10, v47, v201 shr-long v114, v228, v165 rsub-int v5, v7, 17784 rem-float/2addr v9, v6 or-int v141, v25, v130 neg-float v6, v6 const-wide v150, 2097152L or-long v93, v93, v150 div-long v139, v26, v93 add-double v183, v1, v172 and-long v125, v26, v217 long-to-float v9, v14 const-wide v1, 0xdd57106f73b13a51L const-wide v28, 33554432L or-long v1, v1, v28 rem-long/2addr v14, v1 or-int/lit8 v225, v225, 34 rem-int v40, v74, v225 add-int/lit8 v52, v200, 58 div-float v159, v248, v245 add-long/2addr v14, v1 rem-float/2addr v6, v9 rem-int/lit16 v7, v0, 3139 div-float/2addr v9, v6 shl-long/2addr v14, v7 or-long/2addr v1, v14 mul-long v59, v246, v223 shr-int v243, v98, v154 ushr-int v97, v122, v149 rsub-int/lit8 v227, v169, -122 int-to-short v8, v11 rem-float v40, v105, v207 mul-float v171, v158, v42 neg-double v4, v12 long-to-double v11, v1 shr-long/2addr v14, v0 shr-int/2addr v7, v0 not-int v11, v0 add-double v46, v4, v80 const-wide v2, 0xed90e1c394efcbf1L div-double/2addr v2, v4 div-double v234, v193, v195 double-to-float v6, v4 xor-int v3, v208, v0 xor-int/lit8 v133, v251, 106 mul-double v173, v54, v46 rem-int/lit8 v69, v244, -119 xor-int/lit16 v13, v10, 20266 const-wide v4, 0x226ca23156bc7309L mul-long/2addr v4, v14 or-int/lit8 v255, v255, 9 rem-int v191, v203, v255 or-long v183, v139, v214 mul-float/2addr v9, v6 rsub-int v15, v11, -7646 const-wide v1, 0x2d4d6506703b1f2L double-to-int v9, v1 shr-long v13, v127, v25 float-to-int v0, v6 mul-long v108, v13, v93 mul-float v23, v18, v197 shl-long v211, v150, v227 const v2, 0xd70ec9d3 add-float/2addr v6, v2 mul-int v20, v167, v141 ushr-int v151, v154, v200 xor-int/2addr v11, v8 rem-int/lit16 v10, v3, 24832 ushr-long v148, v30, v134 const-wide v13, 0xf462e86236073e60L const-wide v14, 0xd28bf2e79c24c0f7L const-wide v6, 0xde2a9cacef5d997fL div-double/2addr v14, v6 shl-int/lit8 v235, v98, 58 add-long v56, v82, v183 const v8, 0x54b91d9e sub-float/2addr v2, v8 sub-double/2addr v14, v6 shr-int v0, v74, v123 int-to-byte v5, v3 sub-long v68, v88, v114 xor-int/2addr v5, v9 or-int v112, v111, v130 const-wide v0, 0x28ff929160b01f54L const-wide v4, 0x5a56fae7ecbc0bd0L mul-long/2addr v4, v0 mul-double v186, v46, v35 long-to-int v11, v0 or-int/lit8 v72, v111, 12 int-to-double v13, v9 xor-long/2addr v0, v4 ushr-long v140, v223, v192 const-wide v228, 4096L or-long v0, v0, v228 rem-long/2addr v4, v0 not-long v13, v0 shl-long/2addr v4, v9 and-long v234, v0, v59 or-int/lit8 v237, v237, 125 rem-int v190, v201, v237 ushr-int v191, v92, v244 shl-int v178, v250, v191 neg-int v5, v11 shr-int/lit8 v198, v91, 40 and-int/lit16 v13, v3, -6579 const-wide v8, 0x962d85622d4b4b83L xor-long/2addr v0, v8 mul-long v243, v217, v88 shl-long v209, v145, v201 rem-int/lit8 v132, v92, 102 sub-long v186, v26, v217 int-to-char v11, v5 const v5, 0x94aa74c1 div-float/2addr v2, v5 neg-double v7, v6 rsub-int/lit8 v87, v98, -9 sub-float v27, v2, v100 or-long v48, v0, v59 mul-double v99, v195, v46 xor-int/lit8 v237, v97, -21 add-float/2addr v5, v2 shr-int v175, v87, v90 and-int/lit16 v1, v13, 5806 neg-int v11, v11 xor-int/lit16 v0, v1, 9907 shr-int/2addr v13, v10 ushr-long v207, v155, v225 mul-int v116, v51, v239 rem-float/2addr v5, v2 xor-int/2addr v10, v3 ushr-int/lit8 v93, v130, -81 add-int/lit16 v12, v3, -14815 mul-int/2addr v0, v1 int-to-char v14, v3 ushr-int/2addr v3, v12 or-int/lit16 v0, v11, 24848 const-wide v3, 0xfe5b40748658a233L move-wide/from16 v12, v88 const-wide v183, 4194304L or-long v3, v3, v183 div-long/2addr v12, v3 xor-int/lit8 v76, v189, -27 int-to-byte v4, v1 double-to-float v14, v7 const-wide v3, 0x1a7c57b7640f277dL div-double/2addr v3, v7 add-double v210, v219, v35 const-wide v4, 0xfe14964b85ecb26eL and-long/2addr v4, v12 const-wide v246, 4096L or-long v140, v140, v246 div-long v63, v56, v140 div-int/lit8 v76, v130, -117 shr-int/lit8 v39, v20, 115 shl-long/2addr v4, v10 or-int/lit8 v87, v87, 73 div-int v28, v116, v87 long-to-double v11, v4 rsub-int/lit8 v52, v132, 7 float-to-long v3, v2 and-int/lit16 v7, v0, 12004 add-int v202, v39, v251 float-to-double v7, v14 mul-int/lit8 v202, v62, -10 or-int/lit16 v10, v10, -17589 add-int/lit16 v1, v0, 12578 ushr-long/2addr v3, v1 move-wide/from16 v6, v207 const-wide v243, 16384L or-long v6, v6, v243 rem-long/2addr v3, v6 shl-int/2addr v0, v10 add-long/2addr v6, v3 or-int/lit8 v10, v10, 37 rem-int/2addr v0, v10 not-long v11, v6 long-to-float v12, v6 xor-int/lit8 v217, v51, -7 neg-int v8, v1 const-wide v5, 0x3177ad9c94a43cd9L neg-double v0, v5 or-int/lit8 v8, v8, 3 rem-int/2addr v10, v8 div-int/lit16 v4, v8, -21703 or-int/lit16 v7, v10, -1966 and-int/lit8 v143, v101, -128 div-double/2addr v0, v5 sub-int/2addr v10, v7 const-wide v4, 0x74f4885bc36e2635L const-wide v8, 0xdb341c684b5d9817L const-wide v88, 64L or-long v8, v8, v88 rem-long/2addr v4, v8 rsub-int v4, v10, -20980 add-int/2addr v10, v7 long-to-double v11, v8 shl-long v36, v183, v20 mul-float v2, v248, v34 and-int/lit8 v222, v135, -108 xor-int/lit8 v165, v122, -34 rem-double/2addr v0, v11 ushr-int v149, v227, v76 xor-int/lit8 v17, v74, 111 move-wide/from16 v13, v30 sub-long/2addr v8, v13 mul-long/2addr v8, v13 shl-long v1, v114, v74 or-int/lit16 v10, v7, -15994 move-wide/from16 v2, v271 rem-double/2addr v2, v11 shr-long/2addr v13, v7 and-long/2addr v8, v13 add-int/lit8 v22, v251, -103 xor-int/2addr v10, v4 mul-int/2addr v4, v7 int-to-double v12, v10 const v0, 0x6b27b08e const v15, 0x88a9c4a5 add-float/2addr v15, v0 not-int v9, v7 shl-int/lit8 v147, v200, -38 sub-double/2addr v12, v2 rem-double v240, v210, v54 const-wide v8, 0x9ecfd21a069a2211L shl-long/2addr v8, v7 ushr-long v99, v8, v160 add-int/lit16 v12, v10, -7968 const-wide v6, 0xa5f901c8798aae81L const-wide v223, 8388608L or-long v6, v6, v223 rem-long/2addr v8, v6 move-wide/from16 v8, v193 add-double/2addr v8, v2 div-int/lit16 v5, v12, 20132 sub-double v229, v2, v195 float-to-int v8, v15 add-int v207, v41, v251 add-int v115, v227, v239 or-int/lit16 v9, v10, 6063 int-to-long v1, v10 and-long v140, v234, v214 rsub-int v1, v12, 16691 or-int/lit8 v5, v5, 72 div-int/2addr v1, v5 mul-double v140, v193, v80 shl-int/lit8 v96, v117, 120 or-long v246, v66, v48 and-int/2addr v8, v1 int-to-short v0, v1 shl-int/2addr v12, v4 div-double v100, v193, v210 and-int v253, v191, v250 int-to-short v12, v12 rem-int/lit16 v11, v5, 15166 const-wide v1, 0x8916a3e81c7f4db3L const-wide v7, 0x99b70c48edb8aaeL div-double/2addr v7, v1 ushr-int/2addr v4, v12 move-wide/from16 v2, v246 shr-long/2addr v2, v11 const v12, 0x16086584 add-float/2addr v12, v15 shr-int/2addr v4, v10 ushr-long/2addr v2, v5 or-int/lit8 v147, v147, 66 div-int v235, v5, v147 and-int v252, v62, v107 const-wide v7, 0x508280698b485434L const-wide v12, 0x148fc31a487d5445L rem-double/2addr v12, v7 const-wide v12, 0xb8500ff5c9360febL sub-long/2addr v2, v12 xor-int v111, v200, v190 const-wide v10, 0xdaa98ded4e0aa91cL add-double/2addr v7, v10 int-to-byte v1, v0 neg-float v4, v15 div-float/2addr v4, v15 sub-float v58, v27, v24 xor-long v165, v223, v246 add-double v148, v80, v173 and-int/lit16 v8, v1, 1633 sub-float/2addr v15, v4 not-int v2, v5 xor-long v22, v165, v214 mul-int/lit16 v0, v8, -23427 or-long v125, v161, v214 sub-long v50, v243, v48 float-to-int v5, v15 shr-long/2addr v12, v1 mul-int/lit8 v43, v207, -33 div-float/2addr v15, v4 ushr-int/2addr v9, v0 const-wide v2, 0x1760cb732d50a0f0L add-double/2addr v2, v10 sub-int/2addr v0, v5 add-int/2addr v9, v1 sub-float v190, v18, v34 rsub-int v3, v1, 11918 and-int/lit8 v189, v110, -89 shr-long/2addr v12, v9 xor-int/lit8 v58, v201, -7 ushr-int/2addr v8, v9 xor-int/2addr v3, v5 shl-int/2addr v8, v5 rem-int/lit8 v97, v235, 4 mul-float v5, v24, v245 add-float/2addr v15, v5 xor-long v33, v12, v59 int-to-float v8, v0 shl-long/2addr v12, v0 xor-int/lit8 v157, v90, 10 add-float v101, v105, v75 div-int/lit16 v11, v0, -32544 move-wide/from16 v14, v267 and-long/2addr v14, v12 ushr-int/2addr v1, v0 long-to-float v15, v14 or-int/lit8 v11, v11, 69 div-int/2addr v9, v11 long-to-float v9, v12 xor-int/lit8 v119, v112, -113 div-int/lit16 v9, v0, -18224 mul-int/2addr v9, v3 const-wide v30, 32768L or-long v145, v145, v30 div-long v49, v108, v145 xor-int v60, v239, v254 move-wide/from16 v4, v243 sub-long/2addr v4, v12 and-long/2addr v12, v4 mul-long/2addr v4, v12 sub-double v16, v46, v148 sub-long/2addr v12, v4 not-long v11, v4 rsub-int v11, v3, -24338 rem-float/2addr v15, v8 sub-int v158, v254, v157 shr-int v181, v217, v157 shr-int/lit8 v130, v41, -53 const-wide v1, 0xb9ab36d8bc5ef695L add-long/2addr v1, v4 move-wide/from16 v1, v54 double-to-float v6, v1 xor-int v150, v154, v95 not-int v13, v0 const-wide v11, 0xa42e88fa3f2f7d54L const-wide v243, 1024L or-long v11, v11, v243 div-long/2addr v4, v11 shr-int v33, v203, v150 ushr-int/2addr v0, v3 rem-int/lit8 v215, v153, -40 rsub-int v8, v9, 26174 sub-int v232, v192, v3 add-float/2addr v6, v15 not-long v2, v11 const-wide v12, 0xbd34ac9fd70fdc41L double-to-float v10, v12 rem-float v101, v137, v171 neg-long v7, v2 int-to-byte v8, v9 shl-long v158, v49, v131 mul-double v88, v46, v12 const-wide v108, 33554432L or-long v82, v82, v108 div-long v201, v243, v82 or-int/lit8 v132, v132, 82 div-int v116, v20, v132 long-to-double v7, v2 float-to-long v2, v10 or-int/lit8 v136, v61, 27 const-wide v183, 262144L or-long v161, v161, v183 rem-long v7, v2, v161 xor-int/2addr v9, v0 const-wide v125, 268435456L or-long v2, v2, v125 div-long/2addr v4, v2 int-to-byte v2, v0 rsub-int/lit8 v84, v41, 23 shl-int/lit8 v1, v115, 24 ushr-int/2addr v2, v9 and-int/lit16 v1, v1, 1661 ushr-int/lit8 v228, v222, 49 long-to-double v0, v7 double-to-long v11, v12 shr-int/2addr v9, v2 mul-float v17, v75, v42 rem-int/lit16 v8, v9, -12902 div-float v53, v24, v10 sub-int/2addr v2, v9 ushr-int v82, v8, v107 add-double v144, v229, v219 add-float/2addr v10, v6 mul-double v92, v210, v173 or-int/lit8 v9, v9, 37 div-int/2addr v2, v9 long-to-double v9, v4 shr-long v51, v108, v133 neg-int v4, v8 long-to-float v2, v11 mul-int/2addr v4, v8 shl-int v108, v200, v25 mul-int v181, v131, v82 add-float/2addr v2, v6 const-wide v125, 33554432L or-long v49, v49, v125 rem-long v216, v186, v49 rem-float v226, v168, v245 mul-int/lit8 v36, v227, 73 rem-double v129, v80, v9 sub-int/2addr v4, v8 rem-double v229, v240, v92 const-wide v186, 4194304L or-long v63, v63, v186 rem-long v230, v161, v63 or-int/lit16 v14, v4, 5988 add-double v39, v140, v129 add-float v160, v190, v2 float-to-long v2, v15 const-wide v68, 2L or-long v2, v2, v68 div-long/2addr v11, v2 int-to-byte v15, v8 rsub-int v7, v14, -22790 int-to-short v2, v7 float-to-int v6, v6 div-double v224, v46, v54 move/from16 v6, v24 move/from16 v0, v248 sub-float/2addr v6, v0 rsub-int/lit8 v145, v96, -58 div-int/lit8 v132, v145, 87 const-wide v2, 0x430ba6c897979878L div-double/2addr v9, v2 and-long v107, v63, v127 shl-int v20, v8, v239 and-int/2addr v14, v8 or-long v110, v30, v186 mul-int/lit8 v51, v74, -63 mul-double v137, v148, v193 or-int/lit16 v12, v14, -15547 rem-int/lit8 v128, v72, 43 div-int/lit8 v153, v97, -46 move-wide/from16 v11, v263 const-wide v0, 0xf8d940efa6527caL sub-long/2addr v11, v0 xor-int/lit8 v75, v116, -86 neg-int v1, v8 shl-long/2addr v11, v8 long-to-double v12, v11 const-wide v230, 2L or-long v161, v161, v230 rem-long v127, v201, v161 float-to-double v8, v6 mul-float v163, v17, v226 ushr-int/lit8 v63, v44, 17 const-wide v6, 0x50d80989dfbab011L shl-long/2addr v6, v1 rem-double/2addr v2, v12 move-wide/from16 v9, v49 const-wide v30, 1073741824L or-long v6, v6, v30 rem-long/2addr v9, v6 xor-int/lit8 v98, v51, -7 const-wide v125, 8192L or-long v6, v6, v125 div-long/2addr v9, v6 mul-int/lit16 v15, v4, 26179 add-int/lit8 v62, v112, 32 shl-long v122, v158, v74 const-wide v30, 1024L or-long v66, v66, v30 div-long v179, v110, v66 xor-int/lit16 v15, v15, 9883 const v15, 0x7fd3f6ee const v10, 0xa25cd299 mul-float/2addr v15, v10 or-int v163, v154, v191 move-wide/from16 v2, v49 or-long/2addr v6, v2 const-wide v107, 16L or-long v68, v68, v107 rem-long v208, v201, v68 add-int v207, v192, v43 shl-long/2addr v6, v4 mul-long/2addr v6, v2 xor-long/2addr v2, v6 long-to-int v1, v6 rsub-int/lit8 v221, v4, -123 float-to-double v2, v15 float-to-long v14, v15 const-wide v6, 128L or-long v14, v14, v6 rem-long/2addr v6, v14 const-wide v186, 536870912L or-long v183, v183, v186 div-long v211, v14, v183 float-to-double v2, v10 or-long v100, v30, v161 xor-int v28, v91, v135 shl-long v129, v158, v136 div-float v163, v53, v245 add-float v31, v160, v226 const-wide v14, 16384L or-long v155, v155, v14 rem-long v50, v122, v155 mul-long v198, v216, v122 mul-float v85, v168, v17 const v12, 0xe0865736 mul-float/2addr v12, v10 rem-int/lit16 v8, v4, -9674 sub-float v177, v27, v197 mul-int/2addr v4, v1 and-int/2addr v1, v8 or-int v169, v253, v135 or-int/lit8 v4, v4, 87 rem-int/2addr v8, v4 rem-float/2addr v12, v10 neg-double v7, v2 rem-int/lit8 v19, v97, 121 xor-int/lit8 v181, v61, 57 shl-int/2addr v4, v1 sub-double/2addr v2, v7 add-double/2addr v2, v7 rem-double/2addr v2, v7 move-wide/from16 v12, v110 const-wide v50, 1073741824L or-long v12, v12, v50 div-long/2addr v14, v12 rem-int/lit8 v153, v61, -96 or-int/lit8 v235, v235, 69 rem-int v103, v157, v235 int-to-double v2, v1 int-to-short v0, v1 int-to-long v5, v4 shr-int/lit8 v255, v112, -87 sub-float v140, v85, v171 div-double v219, v193, v137 const-wide v22, 4096L or-long v208, v208, v22 rem-long v146, v127, v208 add-long v175, v56, v198 sub-float v210, v163, v31 rem-float v16, v17, v210 const v0, 0xe262c95 sub-float/2addr v0, v10 sub-float v200, v210, v171 rem-int/lit16 v1, v1, -20465 add-int/lit8 v115, v143, 11 sub-double v7, v193, v137 or-int/lit8 v4, v4, 16 div-int/2addr v1, v4 float-to-double v1, v0 sub-long/2addr v14, v5 sub-float/2addr v0, v10 or-int/lit8 v229, v221, -82 or-int/lit16 v13, v4, -15674 add-long/2addr v14, v5 xor-long/2addr v14, v5 int-to-long v2, v13 add-int/lit16 v3, v13, -15536 const-wide v100, 268435456L or-long v183, v183, v100 div-long v223, v216, v183 shl-long v215, v56, v3 double-to-int v6, v7 rem-float/2addr v10, v0 add-long v108, v243, v125 long-to-int v0, v14 mul-int/2addr v6, v3 long-to-float v5, v14 neg-long v15, v14 int-to-char v13, v13 sub-long v32, v175, v129 rem-float/2addr v10, v5 int-to-char v8, v3 move-wide/from16 v12, v269 double-to-float v13, v12 shr-long/2addr v15, v6 mul-int/lit8 v168, v72, 50 rem-float/2addr v5, v13 float-to-double v8, v10 const-wide v11, 0x10cd9152bff727bdL rem-double/2addr v8, v11 mul-float/2addr v13, v5 or-int/lit8 v235, v235, 7 div-int v170, v76, v235 const-wide v6, 0x24c883c6b651b758L add-long/2addr v6, v15 and-long/2addr v6, v15 sub-long v11, v146, v100 long-to-int v7, v15 const-wide v15, 67108864L or-long v11, v11, v15 div-long/2addr v15, v11 shr-int/lit8 v253, v143, 49 mul-float/2addr v5, v13 rem-int/lit8 v43, v157, 45 long-to-int v7, v11 or-int/lit8 v72, v72, 42 rem-int v194, v178, v72 sub-long v166, v32, v165 xor-int/2addr v3, v0 const-wide v215, 8L or-long v15, v15, v215 rem-long/2addr v11, v15 shr-long/2addr v11, v4 rsub-int v0, v7, 28344 const-wide v13, 0xaf558231d40dbf8dL add-double/2addr v8, v13 sub-double/2addr v8, v13 or-int/2addr v3, v4 sub-long v147, v110, v186 rem-float/2addr v10, v5 or-int v251, v239, v251 shr-int v186, v235, v4 neg-long v8, v15 or-int/lit8 v206, v60, -112 const-wide v0, 0x4e900d670847a868L add-double/2addr v0, v13 sub-int v28, v154, v115 add-int/lit8 v120, v19, 125 mul-double/2addr v13, v0 float-to-long v15, v5 mul-int/2addr v7, v3 const-wide v230, 2L or-long v11, v11, v230 div-long/2addr v15, v11 div-int/lit8 v250, v253, -63 ushr-long/2addr v8, v3 or-int/2addr v4, v3 div-double v248, v137, v46 and-long v13, v50, v246 shr-int v219, v221, v205 neg-long v15, v15 const-wide v5, 0x761145f2b68bb0f0L mul-double/2addr v5, v0 move/from16 v2, v17 sub-float/2addr v10, v2 mul-int/lit8 v164, v96, -113 and-int v204, v132, v43 and-int v29, v84, v181 mul-int v108, v157, v112 sub-double v244, v46, v248 int-to-float v11, v7 float-to-long v15, v10 rem-double v216, v88, v0 add-int/lit8 v169, v153, 75 and-int/2addr v3, v4 sub-double/2addr v0, v5 int-to-double v2, v4 sub-long/2addr v15, v13 double-to-long v11, v5 mul-double/2addr v2, v5 mul-long v21, v11, v127 float-to-long v9, v10 or-int v54, v178, v7 sub-int v121, v153, v192 double-to-long v8, v2 div-int/lit8 v54, v97, -84 sub-long v50, v158, v21 xor-int/lit8 v223, v90, 5 int-to-short v11, v7 shl-int/2addr v4, v7 neg-long v3, v15 or-int/lit8 v192, v7, -119 long-to-double v9, v3 add-int/lit8 v219, v98, -13 const v12, 0xd253a7de float-to-long v13, v12 ushr-long/2addr v15, v11 move/from16 v13, v190 mul-float/2addr v12, v13 sub-float v171, v226, v42 int-to-long v12, v11 const-wide v161, 33554432L or-long v12, v12, v161 rem-long v235, v100, v12 sub-float v175, v17, v140 not-long v3, v12 shl-long/2addr v3, v11 rem-int/lit16 v14, v11, 13117 sub-float v152, v160, v140 add-long/2addr v15, v12 add-double v88, v80, v39 mul-long v3, v208, v66 or-long/2addr v3, v15 or-int/2addr v14, v11 long-to-float v11, v3 sub-long v144, v3, v211 or-long v203, v110, v32 div-float v58, v27, v197 neg-int v14, v14 or-int/lit8 v170, v20, -128 shl-long/2addr v15, v14 mul-long v226, v66, v179 ushr-int/lit8 v15, v250, -102 neg-long v9, v12 div-int/lit8 v152, v168, 53 mul-long/2addr v9, v12 long-to-float v5, v3 neg-long v12, v12 and-int/2addr v7, v14 shl-int/lit8 v80, v186, -83 or-long v185, v198, v68 xor-int/lit16 v2, v15, -4553 div-int/lit16 v14, v15, -22962 mul-float/2addr v5, v11 const-wide v8, 0xe17a3d88b04ec9c7L rem-double/2addr v0, v8 xor-long v23, v183, v161 or-int/lit8 v15, v15, 116 div-int/2addr v14, v15 const-wide v21, 8192L or-long v12, v12, v21 div-long/2addr v3, v12 add-long v189, v50, v226 add-int/lit8 v204, v229, -98 not-int v5, v14 mul-float v38, v11, v177 add-float v14, v31, v171 and-long/2addr v3, v12 add-float/2addr v14, v11 sub-long/2addr v3, v12 div-int/lit8 v77, v90, 55 mul-double/2addr v8, v0 rem-int/lit8 v102, v250, -114 rem-double/2addr v0, v8 xor-int/lit8 v172, v252, -100 not-int v2, v15 or-int/lit16 v6, v7, -28091 const-wide v129, 1024L or-long v12, v12, v129 rem-long/2addr v3, v12 mul-int/lit16 v11, v6, 25817 rem-double/2addr v8, v0 div-double/2addr v0, v8 const-wide v211, 524288L or-long v12, v12, v211 div-long/2addr v3, v12 add-double v10, v195, v88 rem-float v126, v210, v163 shl-long/2addr v3, v2 add-double v233, v137, v92 int-to-float v1, v6 rem-float/2addr v14, v1 and-long v230, v3, v161 int-to-double v1, v6 float-to-long v14, v14 not-int v7, v6 shr-int/lit8 v71, v228, 14 const-wide v226, 4096L or-long v226, v226, v226 rem-long v8, v14, v226 not-long v14, v14 rem-int/lit16 v0, v6, 21428 or-int/2addr v0, v5 or-int/lit8 v7, v7, 86 rem-int/2addr v0, v7 or-int/lit8 v5, v5, 57 rem-int/2addr v6, v5 shl-int/2addr v0, v5 xor-int/2addr v5, v0 const v6, 0x7c391db float-to-double v11, v6 long-to-int v12, v3 ushr-int v230, v172, v29 float-to-int v4, v6 const v0, 0xa9095d02 rem-float/2addr v0, v6 neg-int v12, v7 shr-int/lit8 v232, v251, -39 div-float v86, v42, v140 sub-double v107, v1, v173 xor-long v174, v68, v198 shl-int/lit8 v252, v36, 73 div-int/lit8 v202, v132, 76 double-to-long v5, v1 and-int/2addr v4, v7 int-to-long v10, v12 sub-float v131, v85, v42 neg-long v1, v8 shl-int/lit8 v5, v228, -46 int-to-double v8, v5 or-int/lit8 v20, v20, 93 div-int v151, v28, v20 ushr-int v182, v132, v237 add-int/lit8 v104, v252, -33 int-to-long v15, v4 double-to-long v6, v8 sub-float v205, v197, v0 ushr-long/2addr v6, v12 div-float v154, v85, v42 or-int/lit8 v4, v4, 93 rem-int/2addr v5, v4 ushr-long/2addr v1, v12 rem-int/lit16 v0, v12, -11196 const v5, 0x1621fb09 const v3, 0x64666605 add-float/2addr v3, v5 rem-float/2addr v3, v5 neg-float v12, v3 div-int/lit16 v2, v0, -21822 ushr-long v94, v198, v102 shl-int/lit8 v57, v192, 1 shl-long/2addr v10, v2 ushr-int/lit8 v2, v36, -4 div-float/2addr v5, v12 and-int/2addr v0, v2 and-int/2addr v2, v0 div-float/2addr v5, v3 double-to-float v5, v8 sub-long v152, v50, v68 and-long v206, v166, v183 add-int/lit16 v2, v2, 10200 mul-int/lit8 v30, v44, 11 shr-int/2addr v2, v4 const-wide v189, 16L or-long v10, v10, v189 div-long/2addr v6, v10 long-to-double v4, v15 mul-double/2addr v8, v4 and-long/2addr v6, v10 mul-float/2addr v3, v12 long-to-double v10, v10 div-double/2addr v8, v10 float-to-int v3, v3 const v7, 0x48edc511 sub-float/2addr v12, v7 double-to-int v12, v10 add-float v23, v177, v140 int-to-double v11, v12 mul-double v225, v244, v11 add-int/2addr v0, v2 add-float v192, v85, v140 ushr-long/2addr v15, v3 move-wide/from16 v5, v158 sub-long/2addr v15, v5 neg-long v14, v15 mul-int v5, v168, v2 div-int/lit16 v13, v0, 5134 xor-long v176, v235, v158 sub-int/2addr v3, v13 rsub-int/lit8 v149, v204, 80 or-int/lit8 v222, v222, 112 div-int v201, v115, v222 shl-int/2addr v0, v3 shl-int/2addr v13, v3 int-to-float v3, v2 float-to-int v8, v7 add-double v63, v248, v107 sub-long v60, v211, v246 shr-int/2addr v5, v8 rem-float/2addr v7, v3 div-double v132, v225, v39 ushr-long v54, v14, v115 xor-int v211, v169, v164 float-to-double v9, v3 div-float v235, v7, v131 not-long v10, v14 or-int/lit8 v75, v75, 84 rem-int v220, v102, v75 move-wide/from16 v2, v271 move-wide/from16 v13, v269 mul-double/2addr v2, v13 sub-long v120, v183, v122 move/from16 v3, v262 div-float/2addr v7, v3 rsub-int/lit8 v236, v228, -51 long-to-double v9, v10 shl-int/2addr v8, v0 mul-int v179, v116, v220 shr-int/2addr v8, v5 const-wide v10, 0xff16b92fabc3b95cL const-wide v11, 0x53b13618ba6eef94L const-wide v11, 0x6a1da55724e7d704L const-wide v11, 0xef0a3f0e44138fa2L const-wide v2, 0xeeaf953d6619d776L const-wide v246, 4096L or-long v2, v2, v246 rem-long/2addr v11, v2 rem-int/lit16 v15, v0, -25099 mul-float v244, v38, v210 const-wide v12, 0xa5b7250e89f295e4L move-wide/from16 v4, v107 rem-double/2addr v12, v4 const-wide v0, 0x8dfae906fe03af40L mul-long/2addr v0, v2 and-long v33, v152, v100 xor-int/lit8 v8, v251, 83 const v5, 0xd4a407d0 mul-float/2addr v7, v5 or-long/2addr v2, v0 mul-int/lit8 v244, v169, 42 or-int v157, v74, v44 and-long v108, v155, v161 mul-float/2addr v7, v5 int-to-long v3, v8 float-to-long v11, v5 int-to-long v10, v15 shr-int/lit8 v165, v25, 94 div-int/lit16 v0, v15, -28542 float-to-int v1, v7 rem-float/2addr v5, v7 or-int/lit8 v1, v1, 77 rem-int/2addr v15, v1 div-double v205, v88, v216 ushr-int v172, v251, v102 shl-long/2addr v10, v1 xor-int/lit8 v243, v178, 14 sub-float/2addr v7, v5 add-int/lit16 v10, v0, -31555 neg-int v0, v1 move-wide/from16 v3, v92 move-wide/from16 v3, v205 move-wide/from16 v8, v195 mul-double/2addr v8, v3 sub-int/2addr v1, v15 int-to-long v15, v0 and-int/lit8 v147, v151, -6 not-int v8, v0 rem-double v208, v240, v63 long-to-int v10, v15 const-wide v122, 32768L or-long v15, v15, v122 div-long v179, v21, v15 long-to-int v0, v15 add-float v227, v23, v200 int-to-char v12, v8 and-int/2addr v10, v0 shr-long/2addr v15, v8 const-wide v14, 0x95243cd9b8db42f2L move-wide/from16 v11, v183 mul-long/2addr v14, v11 and-int v25, v0, v202 and-int/lit16 v12, v0, -24193 const-wide v3, 0x83d3386675e7bd1eL move-wide/from16 v5, v46 add-double/2addr v5, v3 div-double/2addr v3, v5 sub-long v53, v246, v108 add-float v163, v38, v58 and-int v152, v147, v243 and-int/2addr v0, v8 mul-int/lit16 v7, v1, 13634 const-wide v14, 134217728L or-long v100, v100, v14 rem-long v166, v33, v100 move-wide/from16 v1, v129 mul-long/2addr v14, v1 const v0, 0xc5eae53b neg-float v15, v0 const-wide v10, 0x1d1641a3c87738bfL mul-long/2addr v1, v10 sub-double/2addr v5, v3 or-int/lit8 v12, v12, 59 div-int/2addr v7, v12 and-int/2addr v8, v12 double-to-long v14, v5 int-to-short v0, v8 add-float v36, v192, v131 mul-int v89, v237, v77 div-int/lit8 v83, v169, -76 shr-long v229, v53, v251 xor-int/2addr v0, v7 const-wide v246, 16384L or-long v120, v120, v246 div-long v116, v53, v120 neg-double v5, v3 move/from16 v6, v85 const v15, 0x381dbafb div-float/2addr v15, v6 add-float/2addr v6, v15 double-to-long v6, v3 not-int v5, v8 shl-int v102, v244, v75 add-double v186, v240, v132 const v2, 0xb28ae9a6 div-float/2addr v15, v2 int-to-byte v8, v8 neg-int v0, v5 int-to-char v2, v5 and-long/2addr v10, v6 or-long/2addr v6, v10 shl-int/2addr v0, v8 const-wide v116, 33554432L or-long v10, v10, v116 div-long/2addr v6, v10 ushr-int/2addr v12, v2 int-to-char v4, v0 and-int/2addr v2, v8 sub-int/2addr v5, v12 shl-long v22, v144, v83 move/from16 v9, v262 rem-float/2addr v15, v9 ushr-long v23, v246, v19 sub-float v223, v31, v18 int-to-long v0, v8 add-long v188, v127, v6 int-to-char v12, v5 add-int/2addr v8, v2 rem-int/lit8 v174, v164, 94 mul-int/2addr v5, v8 rem-int/lit16 v6, v8, 22511 move-wide/from16 v0, v208 neg-double v10, v0 sub-double v169, v240, v233 or-int v201, v41, v254 add-int v167, v165, v194 double-to-int v3, v0 sub-int/2addr v12, v6 const-wide v2, 0xda8bbdbf4eafb2efL long-to-int v12, v2 double-to-int v15, v0 float-to-int v8, v9 mul-int/2addr v8, v5 float-to-long v3, v9 move/from16 v6, v160 mul-float/2addr v6, v9 shr-long v125, v179, v72 rem-double/2addr v0, v10 add-float v206, v6, v235 xor-int/lit16 v2, v8, -25857 ushr-int/2addr v8, v12 and-int/lit8 v205, v222, 40 or-int/lit8 v8, v8, 113 div-int/2addr v15, v8 rem-double/2addr v0, v10 and-int v189, v168, v202 or-int/lit8 v80, v80, 90 div-int v108, v136, v80 shl-int/2addr v2, v12 or-long v155, v110, v125 sub-long v23, v179, v120 rem-double v79, v10, v132 or-int/2addr v8, v15 or-int/lit8 v5, v5, 48 rem-int/2addr v8, v5 int-to-long v13, v5 neg-float v12, v6 neg-long v1, v3 shr-long v122, v100, v152 shl-int/2addr v5, v15 ushr-long v53, v33, v236 ushr-long/2addr v13, v5 const-wide v176, 131072L or-long v161, v161, v176 div-long v17, v183, v161 float-to-long v9, v9 and-int/lit8 v50, v243, 61 mul-int/lit16 v1, v8, 7572 shr-long/2addr v9, v15 div-float/2addr v6, v12 int-to-byte v6, v15 and-long v191, v53, v9 ushr-int v158, v181, v29 shl-long v237, v127, v189 and-long v153, v13, v125 rem-int/lit16 v2, v15, 7618 or-int/2addr v5, v15 const-wide v13, 0x38c24e569644fdeL double-to-long v11, v13 move/from16 v7, v223 const v3, 0x85f7114b add-float/2addr v3, v7 xor-long/2addr v9, v11 sub-float v36, v197, v131 move-wide/from16 v12, v248 const-wide v0, 0x7527ddcda2f50494L add-double/2addr v0, v12 not-long v2, v9 double-to-long v1, v0 shr-long v43, v144, v43 rem-int/lit16 v1, v15, 4975 rem-int/lit16 v10, v1, 137 and-long v249, v183, v179 xor-int v223, v136, v253 shl-int/2addr v6, v15 int-to-long v9, v6 shr-int/lit8 v222, v220, -53 int-to-long v5, v6 sub-int/2addr v15, v8 long-to-double v1, v9 ushr-int/2addr v15, v8 div-double/2addr v1, v12 shr-int v132, v181, v75 not-long v11, v9 or-int/lit8 v165, v165, 98 rem-int v57, v87, v165 mul-float v120, v160, v140 int-to-double v3, v8 int-to-short v10, v8 and-int/lit16 v9, v8, -7948 mul-int/lit8 v129, v151, 127 or-int/lit8 v10, v10, 19 div-int/2addr v9, v10 rem-int/lit8 v8, v254, 63 and-int v150, v174, v143 or-int/lit16 v2, v10, 3814 double-to-float v13, v3 mul-float/2addr v13, v7 or-long/2addr v5, v11 rsub-int v13, v8, -24222 and-long/2addr v11, v5 shl-int/2addr v8, v2 const-wide v179, 512L or-long v144, v144, v179 rem-long v130, v237, v144 xor-int/lit8 v114, v115, -74 long-to-int v1, v5 or-long v230, v191, v179 ushr-long/2addr v5, v15 mul-int/2addr v2, v13 shl-int/2addr v8, v15 move-wide/from16 v11, v225 sub-double/2addr v11, v3 shr-long/2addr v5, v2 mul-int v177, v89, v181 add-double v157, v46, v240 mul-double v169, v92, v225 const-wide v2, 0x242aceca2e9888d5L const-wide v161, 8388608L or-long v5, v5, v161 rem-long/2addr v2, v5 add-int v247, v232, v228 sub-int/2addr v8, v9 ushr-int/2addr v9, v13 xor-long v248, v100, v110 xor-int v136, v143, v104 sub-long v137, v33, v5 add-double v114, v195, v240 and-long v17, v5, v68 and-int/lit8 v222, v189, 22 ushr-int/lit8 v128, v182, 124 rem-int/lit16 v4, v8, -6896 shr-long/2addr v5, v4 ushr-long/2addr v5, v1 and-int/lit8 v150, v87, -127 or-int/2addr v15, v10 mul-long/2addr v5, v2 const-wide v0, 0xcf497f2394537a85L mul-double/2addr v0, v11 div-int/lit16 v13, v4, 20145 mul-int/lit16 v11, v8, -27135 shl-int v192, v9, v182 sub-float v7, v163, v86 add-long/2addr v5, v2 add-double v150, v46, v195 rem-float v123, v206, v36 or-int/lit8 v167, v167, 30 div-int v74, v204, v167 or-int/lit8 v13, v13, 125 rem-int/2addr v8, v13 double-to-int v2, v0 xor-int/lit16 v5, v13, -22780 const v11, 0xd770cc32 div-float/2addr v11, v7 int-to-long v14, v5 rsub-int v14, v4, -13316 or-long v210, v161, v125 div-int/lit8 v191, v50, 23 ushr-long v75, v116, v247 and-int/lit8 v21, v71, -62 shl-long v113, v100, v20 mul-float v37, v38, v85 float-to-double v4, v7 ushr-int/2addr v10, v13 const-wide v5, 0x9b882101839b7c32L shl-long/2addr v5, v2 xor-int/lit8 v8, v129, 6 shr-long/2addr v5, v8 or-int/2addr v8, v2 rsub-int v15, v2, -25715 mul-long v209, v161, v144 or-long v189, v248, v183 move-wide/from16 v10, v155 add-long/2addr v5, v10 const v8, 0x1becb728 div-float/2addr v7, v8 float-to-double v0, v7 div-float/2addr v8, v7 mul-long v239, v144, v110 mul-int v159, v167, v87 const-wide v248, 4194304L or-long v198, v198, v248 rem-long v208, v100, v198 xor-int v161, v165, v2 shr-int/lit8 v36, v143, -55 sub-float v107, v206, v86 mul-float/2addr v7, v8 shl-long/2addr v10, v15 or-long v63, v183, v144 long-to-float v13, v10 rem-double v113, v195, v150 shr-long v9, v198, v174 float-to-long v14, v13 const-wide v15, 0xce292a4bc377d6f2L div-double/2addr v15, v0 add-int/lit8 v227, v20, -7 const v1, 0xf16443e3 add-int/2addr v1, v2 const-wide v43, 4L or-long v23, v23, v43 div-long v87, v155, v23 shl-long/2addr v9, v2 or-int/lit16 v2, v2, 27263 or-int/lit8 v90, v90, 108 div-int v50, v71, v90 const-wide v130, 8192L or-long v9, v9, v130 rem-long/2addr v5, v9 div-int/lit16 v5, v2, 17977 move-wide/from16 v7, v75 and-long/2addr v9, v7 sub-int/2addr v2, v1 shr-int/2addr v1, v5 sub-float v142, v37, v123 or-int/lit8 v201, v201, 99 rem-int v8, v84, v201 or-int/lit8 v191, v191, 87 div-int v235, v71, v191 ushr-int/2addr v5, v1 shr-int v68, v254, v181 shr-int v41, v90, v112 or-int/lit8 v5, v5, 4 rem-int/2addr v1, v5 rsub-int/lit8 v242, v181, -100 rem-float v248, v206, v85 long-to-float v15, v9 not-int v11, v2 add-int/lit16 v6, v2, -18428 const-wide v6, 0x68435c3fcab5f4d9L const-wide v189, 33554432L or-long v9, v9, v189 rem-long/2addr v6, v9 float-to-int v3, v15 xor-long/2addr v6, v9 ushr-long/2addr v6, v2 div-int/lit16 v5, v11, 18831 const-wide v125, 1024L or-long v9, v9, v125 div-long/2addr v6, v9 rem-int/lit8 v113, v72, -114 xor-long v21, v183, v144 div-double v237, v92, v216 div-int/lit8 v143, v98, 96 add-int v50, v132, v108 xor-int v56, v129, v108 move-wide/from16 v10, v157 const-wide v9, 0x7fc4ffc4ea830c40L const-wide v8, 0x3d1acf5c2193d878L const-wide v8, 0x22b986930ebb6fb9L move-wide/from16 v13, v79 sub-double/2addr v13, v8 neg-double v10, v13 double-to-float v3, v13 add-long v113, v63, v33 ushr-long v17, v198, v102 sub-long v217, v60, v110 add-int/lit16 v11, v2, 28547 ushr-long/2addr v6, v11 add-int/2addr v1, v5 not-int v3, v5 shl-long/2addr v6, v2 neg-double v6, v13 move-wide/from16 v1, v43 const-wide v3, 0x4c85884fbbcb0681L and-long/2addr v1, v3 const-wide v75, 524288L or-long v3, v3, v75 div-long/2addr v1, v3 div-double v80, v150, v13 div-int/lit8 v163, v143, -100 mul-float v94, v200, v142 shl-long v42, v53, v242 div-float v149, v206, v86 div-double v61, v233, v157 sub-int/2addr v11, v5 ushr-int/2addr v11, v5 xor-int/lit8 v81, v36, -82 div-double/2addr v13, v8 neg-float v9, v15 or-long/2addr v1, v3 neg-double v12, v13 shr-int/2addr v11, v5 not-int v4, v11 xor-int/2addr v5, v4 add-double/2addr v12, v6 and-int v28, v25, v135 and-int/lit8 v173, v56, 23 or-int/lit16 v14, v4, 15286 mul-long v77, v230, v21 and-long v32, v66, v77 xor-int/2addr v14, v11 const-wide v11, 0xa85bc764b9f2b7c5L xor-long/2addr v11, v1 long-to-float v3, v1 or-int/2addr v4, v14 or-int/2addr v5, v14 and-int/lit8 v17, v129, -95 add-int v139, v191, v251 div-int/lit16 v15, v14, -22611 int-to-double v14, v15 and-long/2addr v11, v1 const-wide v63, 16L or-long v217, v217, v63 rem-long v18, v208, v217 div-int/lit8 v59, v28, -95 long-to-double v1, v1 div-double v109, v225, v6 mul-int/lit16 v0, v4, -32280 sub-int v106, v50, v68 const-wide v1, 0x137f86a31c6c59bbL mul-long/2addr v1, v11 shl-int/2addr v0, v5 float-to-double v13, v9 neg-double v9, v6 neg-long v13, v1 float-to-int v10, v3 or-int/lit16 v12, v0, -29925 rsub-int/lit8 v148, v30, 71 double-to-int v5, v6 add-int/lit16 v8, v4, -16256 xor-long/2addr v13, v1 float-to-long v0, v3 move-wide/from16 v2, v61 add-double/2addr v2, v6 mul-int/lit8 v51, v222, -34 sub-double v171, v169, v92 add-float v3, v248, v27 rem-float v91, v206, v107 int-to-byte v5, v5 add-int/2addr v12, v4 add-int/lit8 v138, v12, -98 sub-int v225, v103, v254 or-int/lit8 v235, v235, 81 rem-int v57, v178, v235 rem-float v108, v94, v123 shr-int/lit8 v133, v106, 15 ushr-int/lit8 v244, v177, -117 rem-int/lit16 v11, v5, 12247 shl-long v71, v66, v173 neg-long v7, v0 mul-double v43, v150, v157 rsub-int v6, v4, -7376 mul-double v73, v61, v92 shl-long/2addr v0, v4 and-int v181, v202, v89 move/from16 v5, v206 mul-float/2addr v5, v3 or-int/lit8 v11, v11, 108 rem-int/2addr v4, v11 move-wide/from16 v5, v157 move-wide/from16 v6, v169 move-wide/from16 v12, v150 mul-double/2addr v12, v6 shl-int v172, v165, v181 or-int/lit8 v11, v11, 116 rem-int/2addr v10, v11 shl-int/2addr v11, v10 const v12, 0xda132cf7 mul-float/2addr v12, v3 double-to-float v9, v6 move-wide/from16 v14, v63 mul-long/2addr v0, v14 div-int/lit16 v0, v10, -20269 int-to-double v9, v0 shl-long v179, v183, v129 shr-int/lit8 v146, v41, 42 shr-int v172, v20, v59 and-int v213, v251, v178 shl-long v32, v144, v59 sub-int/2addr v11, v0 int-to-byte v14, v11 shl-int/2addr v11, v0 add-float v168, v248, v27 rem-int/lit16 v1, v14, -11800 sub-int/2addr v11, v0 ushr-int/lit8 v44, v161, -45 xor-long v30, v113, v179 neg-double v9, v9 int-to-long v12, v4 move-wide/from16 v0, v263 const-wide v32, 8L or-long v12, v12, v32 div-long/2addr v0, v12 and-int/lit8 v47, v191, -12 add-double v50, v169, v9 int-to-byte v13, v4 add-int/lit16 v12, v4, -15694 int-to-short v4, v13 double-to-int v13, v9 int-to-byte v3, v14 neg-long v13, v0 ushr-int/lit8 v251, v41, -33 int-to-short v14, v3 neg-double v11, v6 int-to-double v5, v14 rem-int/lit8 v215, v242, 67 shl-long/2addr v0, v4 shr-long v14, v71, v25 sub-double v6, v9, v237 or-int/lit8 v33, v97, 102 shr-long v171, v113, v213 mul-long/2addr v14, v0 div-int/lit8 v27, v173, -5 const v13, 0xdc7e1e4e const v7, 0x4fadfaf2 mul-float/2addr v13, v7 not-long v8, v14 or-long/2addr v14, v8 add-double v16, v169, v237 neg-long v7, v8 ushr-int/2addr v3, v4 and-int/lit8 v198, v133, -58 or-int/lit8 v232, v232, 70 rem-int v25, v81, v232 add-int/2addr v3, v4 and-int/lit16 v11, v4, 30006 shr-long/2addr v0, v3 add-int v86, v194, v118 or-long v14, v125, v116 const-wide v21, 1024L or-long v7, v7, v21 div-long/2addr v14, v7 const-wide v15, 0xd5753f23199e75f6L neg-double v9, v15 mul-long/2addr v0, v7 sub-int v42, v98, v104 xor-long v147, v153, v208 or-int/lit16 v13, v11, -26598 xor-long v180, v0, v53 ushr-int/lit8 v249, v219, 126 or-int/lit16 v10, v3, -30046 and-int/2addr v4, v13 or-int/lit16 v15, v4, 1614 const-wide v5, 0x69d1db4289945066L const-wide v7, 0xffd95fa76cc237c5L rem-double/2addr v7, v5 ushr-int/lit8 v199, v204, -103 const-wide v12, 0xabd0faf3028d5e0cL xor-long/2addr v12, v0 move/from16 v4, v107 float-to-int v12, v4 long-to-int v9, v0 const-wide v14, 0x7f26a5cdf4b645aeL const-wide v75, 268435456L or-long v14, v14, v75 rem-long/2addr v0, v14 or-long v141, v14, v125 float-to-double v13, v4 mul-int v36, v164, v146 sub-int v175, v225, v202 add-long v101, v87, v75 div-int/lit16 v7, v10, -14052 rsub-int v7, v3, 8430 or-long v141, v171, v63 add-int/lit8 v247, v86, 52 const v10, 0xd17ad7ae rem-float/2addr v4, v10 xor-int/lit8 v105, v103, -108 int-to-float v1, v7 and-int/lit8 v192, v253, -124 int-to-char v8, v11 mul-int/lit16 v10, v7, 12396 float-to-long v1, v4 sub-int v155, v3, v249 ushr-int/2addr v8, v10 float-to-long v11, v4 mul-float v180, v85, v168 and-long v212, v183, v66 add-int/2addr v10, v8 or-int/2addr v8, v9 or-int/lit8 v165, v165, 113 rem-int v163, v83, v165 const v4, 0x2f363e20 const v13, 0xcca44842 add-float/2addr v4, v13 shr-long v2, v11, v167 or-int/2addr v9, v8 float-to-double v15, v4 shr-int/lit8 v61, v28, -26 float-to-double v1, v13 mul-float v29, v120, v58 const-wide v5, 0xe5918017c9113017L xor-long/2addr v5, v11 double-to-float v1, v1 add-int/lit8 v203, v194, -23 long-to-double v14, v5 shl-long v131, v53, v242 mul-int v86, v252, v221 const-wide v125, 67108864L or-long v5, v5, v125 div-long/2addr v11, v5 mul-long/2addr v5, v11 add-float v13, v206, v120 mul-float/2addr v1, v13 or-int/lit8 v7, v7, 66 div-int/2addr v8, v7 int-to-byte v10, v7 and-int v110, v159, v28 div-float/2addr v4, v1 xor-long v69, v230, v141 const-wide v144, 524288L or-long v23, v23, v144 div-long v110, v75, v23 const-wide v101, 2L or-long v217, v217, v101 div-long v71, v212, v217 div-int/lit8 v83, v244, 118 or-int/lit8 v44, v44, 94 div-int v175, v244, v44 or-int/2addr v7, v9 rsub-int/lit8 v100, v106, -127 div-double v118, v169, v237 shl-int/2addr v10, v8 const-wide v53, 4L or-long v113, v113, v53 rem-long v223, v183, v113 xor-int/lit8 v163, v33, 114 shl-int/lit8 v150, v159, -60 rem-float v178, v13, v149 add-float v132, v108, v149 ushr-int v149, v106, v192 or-int/lit8 v47, v47, 88 rem-int v228, v204, v47 or-int/lit8 v143, v143, 77 rem-int v248, v7, v143 mul-double v182, v50, v186 ushr-long/2addr v11, v9 and-int/lit8 v51, v204, -22 xor-int/2addr v8, v7 mul-int v31, v215, v236 sub-int/2addr v8, v10 add-double v140, v39, v92 double-to-int v10, v14 not-long v6, v5 neg-double v0, v14 ushr-int v149, v97, v47 or-int v27, v143, v104 const-wide v110, 131072L or-long v11, v11, v110 rem-long/2addr v6, v11 ushr-long/2addr v6, v8 mul-int/lit8 v211, v161, -55 int-to-double v6, v8 double-to-long v13, v0 xor-long/2addr v13, v11 xor-int v221, v221, v201 mul-int/lit8 v194, v20, -123 mul-long v73, v18, v147 add-double/2addr v0, v6 ushr-int/2addr v9, v10 add-double/2addr v6, v0 const-wide v217, 256L or-long v21, v21, v217 rem-long v100, v239, v21 const v4, 0x47368035 move/from16 v15, v58 sub-float/2addr v4, v15 xor-long v252, v66, v217 or-long/2addr v11, v13 sub-double/2addr v6, v0 or-int/lit8 v8, v8, 20 div-int/2addr v10, v8 rem-int/lit16 v15, v9, -22240 and-int/2addr v8, v15 const-wide v212, 2048L or-long v11, v11, v212 rem-long/2addr v13, v11 or-int/lit8 v249, v249, 86 div-int v230, v251, v249 rem-int/lit16 v10, v9, -17440 sub-int/2addr v9, v15 neg-float v8, v4 and-int/lit16 v6, v10, -29561 shl-int/2addr v10, v15 mul-int/lit16 v11, v9, -21573 or-int/lit8 v11, v11, 26 div-int/2addr v6, v11 ushr-int/lit8 v155, v129, 121 or-int/lit8 v9, v9, 91 div-int v10, v248, v9 mul-int/2addr v15, v11 not-int v1, v6 and-long v170, v75, v144 xor-int/lit8 v14, v146, 116 div-double v218, v186, v237 or-int/lit16 v12, v11, 31786 float-to-int v10, v8 div-float/2addr v8, v4 move-wide/from16 v0, v157 neg-double v0, v0 mul-int/lit16 v11, v12, 184 double-to-float v2, v0 move-wide/from16 v13, v23 const-wide v10, 0x338d860ac43d5ebaL const-wide v73, 65536L or-long v13, v13, v73 div-long/2addr v10, v13 const-wide v9, 0x1ba2b6c9ece5cbb6L add-double/2addr v9, v0 and-int v251, v103, v105 int-to-double v13, v12 or-int/lit8 v173, v173, 65 div-int v220, v192, v173 int-to-float v10, v15 add-int/lit8 v163, v97, -25 or-int/lit8 v15, v15, 16 div-int/2addr v12, v15 div-double v117, v233, v0 sub-float v152, v8, v58 sub-long v234, v252, v87 add-float/2addr v8, v4 const-wide v1, 0x5432ab613753b651L long-to-float v0, v1 shr-long v85, v189, v255 long-to-float v7, v1 const-wide v2, 0xfbd809e417aa11c4L move-wide/from16 v3, v69 const-wide v3, 0x2362d4a7eeb1dcebL move-wide/from16 v2, v110 move-wide/from16 v9, v223 and-long/2addr v9, v2 or-int/lit8 v51, v51, 121 div-int v22, v33, v51 sub-long/2addr v9, v2 const-wide v87, 64L or-long v110, v110, v87 div-long v82, v77, v110 add-int v2, v173, v42 move-wide/from16 v10, v92 div-double/2addr v13, v10 sub-double v8, v218, v186 ushr-int/lit8 v56, v2, 121 sub-double v124, v218, v140 shl-int/lit8 v214, v56, 55 add-float/2addr v0, v7 double-to-float v14, v13 const-wide v6, 0x222764e205d46ce0L shl-long/2addr v6, v15 const-wide v12, 0x5289b9ddc84f936aL mul-long/2addr v6, v12 rem-int/lit16 v7, v15, -11465 and-int/lit16 v4, v7, 15493 ushr-int/2addr v2, v4 or-int/lit16 v15, v15, 30861 const-wide v212, 1024L or-long v53, v53, v212 div-long v178, v75, v53 sub-long v42, v178, v23 shl-int/2addr v7, v4 int-to-float v1, v2 const-wide v11, 0x565c3458a9549905L move-wide/from16 v9, v147 add-long/2addr v11, v9 move-wide/from16 v12, v140 move-wide/from16 v12, v269 move-wide/from16 v13, v157 const-wide v9, 0x468eb3e6dd8dc318L rem-double/2addr v13, v9 or-int v129, v135, v97 ushr-int/lit8 v220, v143, 14 move-wide/from16 v10, v85 move-wide/from16 v6, v113 or-long/2addr v6, v10 mul-double v226, v13, v237 or-long/2addr v6, v10 mul-long/2addr v10, v6 neg-long v1, v10 ushr-long v38, v66, v44 shl-int/lit8 v177, v44, 24 int-to-float v3, v4 not-long v4, v10 or-int/lit8 v22, v22, 112 rem-int v70, v225, v22 mul-int/lit8 v191, v149, -6 double-to-float v4, v13 mul-double v103, v226, v92 not-long v7, v10 or-int v205, v251, v198 and-int v111, v177, v247 const v9, 0xb052dc16 or-int/2addr v15, v9 and-long v145, v10, v85 mul-int/lit8 v24, v159, -111 mul-long/2addr v10, v1 const-wide v252, 131072L or-long v7, v7, v252 div-long/2addr v10, v7 mul-float v234, v91, v197 sub-double v216, v186, v195 not-long v4, v1 mul-int/lit8 v4, v242, -53 neg-float v1, v3 not-long v3, v10 add-int/lit16 v13, v9, 122 int-to-long v14, v9 move-wide/from16 v5, v218 move-wide/from16 v1, v117 rem-double/2addr v5, v1 double-to-int v1, v5 and-long/2addr v14, v10 and-int v245, v25, v242 or-int/lit8 v1, v1, 119 rem-int/2addr v9, v1 and-long v231, v82, v3 xor-int/2addr v9, v13 shl-int v147, v220, v98 ushr-long/2addr v3, v13 float-to-long v11, v0 int-to-char v9, v1 rem-double v171, v117, v186 not-long v7, v3 xor-int/2addr v1, v9 ushr-int/lit8 v236, v56, 97 and-int/2addr v9, v13 ushr-int/2addr v13, v9 rem-int/lit8 v149, v138, -6 mul-double v190, v216, v182 float-to-long v15, v0 or-int/lit16 v13, v13, -7638 neg-int v5, v9 or-int/lit8 v5, v5, 30 div-int/2addr v9, v5 mul-int v237, v194, v163 long-to-double v0, v11 and-int/lit8 v212, v47, 32 double-to-float v12, v0 and-int v201, v220, v214 const v10, 0x22652177 mul-float/2addr v10, v12 ushr-int v55, v5, v255 sub-float v137, v180, v197 and-int v152, v230, v96 xor-int/2addr v9, v13 ushr-int/lit8 v158, v214, 37 move-wide/from16 v7, v190 sub-double/2addr v7, v0 and-int/2addr v9, v5 div-float/2addr v10, v12 or-int/lit8 v5, v5, 56 rem-int/2addr v13, v5 int-to-short v10, v5 neg-long v6, v15 float-to-int v2, v12 xor-int/lit8 v89, v31, -118 mul-double v134, v103, v140 shr-int/2addr v13, v9 or-int v47, v44, v199 div-int/lit16 v12, v2, -6429 add-float v5, v91, v137 const-wide v6, 0xda9e7aa987c6015cL mul-double/2addr v6, v0 add-int/2addr v13, v10 int-to-byte v8, v2 sub-double/2addr v6, v0 or-int/lit8 v8, v8, 93 rem-int/2addr v10, v8 not-long v2, v15 or-int/lit16 v15, v12, 17371 rem-double v140, v92, v182 or-long v22, v208, v153 rsub-int v8, v13, 16093 move-wide/from16 v12, v71 and-long/2addr v2, v12 or-int/lit16 v14, v10, 14754 and-long v75, v223, v145 shl-int v37, v203, v165 mul-int/lit8 v89, v143, -122 const-wide v113, 67108864L or-long v2, v2, v113 rem-long/2addr v12, v2 or-int/lit8 v231, v152, -84 double-to-int v5, v0 long-to-float v11, v2 long-to-float v1, v2 mul-long/2addr v12, v2 float-to-int v13, v1 div-int/lit8 v108, v139, -104 add-long v141, v82, v100 shl-int/2addr v5, v9 and-int/lit16 v0, v15, -12145 xor-int/lit16 v15, v0, 15922 move-wide/from16 v1, v100 const-wide v6, 0xb9e3c7d4e60d4feL xor-long/2addr v1, v6 mul-long v45, v75, v113 or-long v17, v18, v223 add-double v33, v218, v182 const v10, 0xfe54d8c9 div-float/2addr v10, v11 ushr-int/lit8 v46, v9, -34 neg-float v1, v11 rem-int/lit8 v82, v152, -23 div-int/lit8 v142, v90, 44 move-wide/from16 v9, v85 sub-long/2addr v6, v9 xor-long/2addr v9, v6 sub-long/2addr v6, v9 mul-int v199, v59, v46 rem-int/lit8 v182, v97, 59 move-wide/from16 v8, v186 move-wide/from16 v8, v195 move-wide/from16 v13, v273 rem-double/2addr v13, v8 and-int/2addr v5, v0 sub-float v225, v197, v180 move-wide/from16 v14, v22 mul-long/2addr v14, v6 xor-long/2addr v6, v14 mul-int/2addr v5, v0 mul-int/lit8 v137, v174, 2 add-int/lit16 v11, v5, -12764 add-int/lit16 v12, v0, 6305 double-to-int v12, v8 move/from16 v7, v58 add-float/2addr v1, v7 int-to-short v13, v5 shr-int/2addr v13, v5 rsub-int/lit8 v127, v51, 21 ushr-int/lit8 v159, v177, -52 move-wide/from16 v2, v66 add-long/2addr v2, v14 sub-long v0, v66, v153 int-to-char v1, v12 const v8, 0x9f77faee mul-float/2addr v8, v7 sub-int v190, v194, v220 shl-int v15, v57, v56 add-long v221, v75, v100 neg-int v4, v15 shl-long/2addr v2, v13 shr-long v226, v178, v177 or-long v38, v17, v2 add-int/lit16 v14, v5, 2958 move-wide/from16 v4, v33 const-wide v5, 0xa8870b1a41f61683L move-wide/from16 v14, v134 sub-double/2addr v14, v5 xor-long v10, v153, v53 shr-int v154, v242, v57 int-to-long v11, v1 div-float v242, v58, v234 float-to-double v2, v8 mul-double/2addr v14, v5 rem-float v210, v132, v58 int-to-float v1, v13 rem-int/lit16 v13, v13, -11536 or-long v69, v75, v252 add-int/lit8 v115, v215, 44 sub-float/2addr v8, v7 neg-double v15, v14 long-to-float v2, v11 move/from16 v10, v237 or-int/lit8 v13, v13, 77 rem-int/2addr v10, v13 xor-int/lit16 v2, v13, 20054 neg-float v5, v8 mul-int/2addr v13, v2 mul-int/2addr v10, v2 shr-int/lit8 v123, v57, -69 xor-int/2addr v10, v2 not-int v3, v13 add-double v249, v218, v216 int-to-short v2, v10 sub-double v33, v218, v249 and-int/lit8 v112, v41, -73 rsub-int v3, v10, 8829 not-long v8, v11 and-int/lit16 v2, v10, 28966 mul-float/2addr v5, v1 shl-int/lit8 v52, v228, -45 xor-long v181, v11, v66 shr-int v103, v123, v248 shl-long/2addr v11, v3 mul-long/2addr v8, v11 and-int v104, v81, v46 or-int/lit8 v108, v108, 28 rem-int v34, v103, v108 ushr-int/2addr v13, v2 double-to-long v14, v15 or-int/2addr v2, v10 const-wide v75, 8388608L or-long v11, v11, v75 rem-long/2addr v14, v11 sub-long/2addr v11, v8 const-wide v63, 4L or-long v11, v11, v63 div-long/2addr v8, v11 add-float v92, v200, v5 rem-int/lit16 v0, v3, 5176 mul-int/lit8 v71, v51, 49 add-float v111, v58, v180 move-wide/from16 v5, v249 double-to-long v10, v5 mul-int/lit16 v9, v0, 1658 neg-double v12, v5 mul-long/2addr v10, v14 float-to-int v10, v7 rem-int/lit16 v5, v0, -3766 add-int/2addr v5, v2 add-int/lit8 v44, v251, -8 int-to-long v10, v5 float-to-int v3, v1 div-int/lit16 v14, v3, -31932 int-to-byte v0, v14 rem-int/lit16 v2, v0, -19624 or-int/lit8 v14, v14, 34 div-int/2addr v9, v14 and-int/2addr v14, v3 long-to-float v7, v10 ushr-long/2addr v10, v0 ushr-int v126, v24, v150 double-to-long v13, v12 mul-int v85, v115, v55 div-float v145, v160, v107 xor-int v118, v5, v127 move-wide/from16 v7, v249 const-wide v3, 0x718c0999f5bf5ef3L div-double/2addr v3, v7 shl-int v151, v142, v96 or-int v72, v59, v25 float-to-long v9, v1 rem-float v63, v145, v107 and-int v118, v28, v154 int-to-float v10, v2 const-wide v3, 0x9b3c14f0c64b7986L sub-long/2addr v13, v3 or-long/2addr v13, v3 sub-double v68, v249, v7 long-to-int v4, v3 or-int/lit8 v2, v2, 99 div-int/2addr v5, v2 int-to-short v8, v2 sub-int v166, v59, v199 sub-double v38, v124, v249 int-to-byte v14, v0 and-int v237, v177, v34 sub-int v177, v81, v192 const-wide v7, 0xaa7259ddc59ddda9L const-wide v7, 0x77585d0ab40ec6aaL const-wide v0, 0x3c580f4d82f0f443L div-double/2addr v0, v7 shr-int/2addr v14, v4 div-float v170, v210, v197 add-long v250, v181, v208 move/from16 v4, v160 rem-float/2addr v4, v10 ushr-int/2addr v5, v2 add-float v181, v242, v160 or-int v220, v254, v31 rem-double/2addr v0, v7 xor-int v74, v51, v89 shr-long v60, v226, v151 int-to-float v15, v14 or-int/lit8 v170, v230, 38 move-wide/from16 v7, v178 long-to-double v13, v7 and-int/2addr v2, v5 xor-int/lit16 v0, v5, 22308 long-to-float v4, v7 mul-int/2addr v0, v2 and-int v101, v174, v59 not-int v11, v2 shr-long v55, v53, v31 shr-int/2addr v0, v2 const-wide v5, 0xb98aab2a8f273550L or-long/2addr v5, v7 and-long/2addr v5, v7 and-long v197, v77, v252 or-int/lit8 v37, v37, 10 div-int v56, v2, v37 add-int/lit8 v40, v25, 116 long-to-float v15, v5 const-wide v13, 0x232cc058c589c2e6L const-wide v13, 0x10a2685aad8d0822L const-wide v5, 0x19ff845e11fe3f42L div-double/2addr v13, v5 rem-double/2addr v5, v13 sub-float v185, v168, v180 rem-double v110, v124, v216 or-int/lit8 v97, v150, 109 xor-int/lit8 v68, v137, -16 mul-int/lit8 v36, v174, 95 and-int v91, v230, v154 neg-int v3, v2 and-int/2addr v0, v2 shr-long/2addr v7, v0 and-int v136, v41, v175 ushr-int v152, v139, v255 div-double/2addr v13, v5 shr-int/2addr v0, v2 ushr-int/2addr v3, v0 mul-float/2addr v15, v10 ushr-long v123, v239, v41 neg-float v4, v15 sub-int/2addr v2, v11 add-float v127, v168, v180 add-double v104, v216, v134 rem-double/2addr v5, v13 move-wide/from16 v2, v53 add-long/2addr v7, v2 neg-double v3, v5 shr-int/2addr v0, v11 move-wide/from16 v12, v197 const-wide v250, 268435456L or-long v12, v12, v250 rem-long/2addr v7, v12 sub-double v55, v3, v186 float-to-long v0, v15 mul-int/lit16 v10, v11, 9356 rem-double/2addr v3, v5 mul-double v59, v104, v216 float-to-long v8, v15 xor-long v184, v53, v250 mul-double v190, v104, v195 mul-int/lit16 v14, v10, -17658 div-double/2addr v5, v3 int-to-float v5, v11 shr-long/2addr v12, v11 and-int v77, v161, v138 rsub-int/lit8 v34, v40, -45 div-int/lit8 v184, v72, 80 or-int v173, v220, v81 add-long/2addr v8, v0 add-double v77, v190, v38 or-int/lit8 v11, v11, 53 rem-int/2addr v10, v11 ushr-int/lit8 v88, v212, 101 shr-int v14, v255, v14 long-to-int v2, v12 int-to-long v9, v11 neg-long v6, v12 or-long v16, v0, v9 mul-int/2addr v11, v2 move-wide/from16 v6, v195 rem-double/2addr v3, v6 add-double v46, v6, v38 or-int/2addr v14, v11 add-double/2addr v6, v3 mul-long v217, v9, v53 rem-double/2addr v3, v6 shl-int/lit8 v182, v129, -63 shl-long/2addr v9, v2 ushr-int/2addr v11, v2 and-int v203, v96, v14 sub-int/2addr v2, v11 and-long/2addr v12, v9 rem-double v15, v171, v59 float-to-long v13, v5 rsub-int/lit8 v65, v231, 107 xor-long/2addr v9, v13 const v3, 0x49a95382 rem-float/2addr v5, v3 xor-long/2addr v9, v0 rem-float/2addr v3, v5 or-int/lit8 v11, v11, 21 div-int/2addr v2, v11 mul-int/lit8 v206, v184, -123 mul-float v29, v210, v58 float-to-int v12, v3 shr-long v70, v75, v228 sub-double v2, v46, v186 long-to-float v4, v9 or-long/2addr v0, v13 shl-int v114, v142, v163 int-to-long v6, v12 or-int v230, v138, v152 ushr-int/2addr v11, v12 mul-float v77, v107, v4 sub-double/2addr v15, v2 not-int v14, v11 float-to-long v15, v5 shl-long/2addr v6, v12 const-wide v6, 0x5f83387494be02e2L div-double/2addr v2, v6 or-int/lit8 v12, v12, 101 rem-int/2addr v11, v12 const-wide v178, 4096L or-long v42, v42, v178 div-long v236, v70, v42 add-float v205, v168, v94 int-to-long v11, v11 and-long v118, v236, v9 ushr-int v230, v152, v51 sub-long v73, v197, v42 neg-long v11, v11 xor-long v22, v123, v66 mul-double v51, v190, v110 float-to-int v8, v4 add-long v184, v221, v239 shr-long/2addr v0, v8 rsub-int v7, v14, -15016 shr-long/2addr v0, v8 or-int/lit8 v249, v98, -71 int-to-byte v3, v8 move-wide/from16 v9, v134 double-to-int v4, v9 or-int/lit16 v8, v4, -27300 shl-int v148, v166, v137 add-double v49, v55, v171 xor-int/2addr v14, v8 xor-int/lit8 v244, v150, -126 shl-int v165, v173, v163 sub-long v232, v66, v250 add-long/2addr v15, v0 or-long v232, v208, v236 add-int v245, v201, v7 and-long/2addr v11, v0 add-int v243, v139, v143 or-int/2addr v3, v8 move/from16 v11, v261 add-float/2addr v5, v11 sub-double v44, v110, v171 and-int v144, v129, v82 int-to-float v12, v3 double-to-long v5, v9 xor-int/lit8 v127, v211, -97 and-int v149, v101, v115 add-int v94, v138, v206 const-wide v13, 0xeff45e388f3edbaaL sub-double/2addr v9, v13 rem-double/2addr v13, v9 or-int/lit8 v29, v7, -94 rem-float v126, v200, v225 xor-int v92, v177, v158 sub-double v35, v38, v190 xor-long/2addr v0, v15 or-int/lit8 v211, v211, 13 div-int v167, v40, v211 and-long/2addr v15, v5 mul-float/2addr v11, v12 shl-int/2addr v3, v4 mul-int/lit8 v92, v84, 55 rsub-int v1, v8, 26395 double-to-long v15, v13 ushr-long v134, v178, v139 sub-double/2addr v13, v9 sub-float v25, v181, v205 add-double/2addr v13, v9 mul-double v237, v55, v190 shr-long v131, v217, v152 and-long/2addr v15, v5 and-int v196, v84, v91 rem-int/lit8 v68, v81, 24 div-float v187, v12, v145 mul-float v134, v77, v107 or-long/2addr v5, v15 ushr-int v98, v231, v247 sub-int v87, v243, v133 ushr-int v23, v98, v194 neg-float v1, v11 neg-float v0, v1 add-int v188, v82, v174 int-to-byte v13, v3 int-to-char v5, v7 neg-double v0, v9 or-int/2addr v3, v8 or-int/lit8 v4, v4, 74 div-int/2addr v7, v4 mul-float v71, v200, v12 sub-float v205, v187, v134 add-int/lit8 v213, v88, -125 rem-double v130, v171, v9 neg-double v9, v9 ushr-long/2addr v15, v4 or-int/lit8 v7, v7, 100 rem-int/2addr v4, v7 add-float/2addr v12, v11 mul-float v233, v126, v225 div-float v0, v234, v180 add-float v97, v71, v187 rsub-int/lit8 v236, v3, 118 shr-int v144, v91, v65 float-to-double v13, v12 ushr-int/2addr v4, v7 rsub-int v14, v3, -14641 long-to-double v4, v15 const-wide v1, 0x2fc52ee6eee08669L add-long/2addr v15, v1 or-int/lit8 v3, v3, 65 div-int/2addr v8, v3 add-int/2addr v3, v14 neg-float v14, v0 rem-int/lit8 v205, v89, 60 or-int/lit8 v0, v90, 113 or-int/lit16 v11, v0, -13751 rem-float v206, v234, v134 xor-int/2addr v7, v0 not-long v3, v1 float-to-long v4, v12 rem-int/lit8 v42, v28, -61 int-to-char v2, v11 ushr-int v56, v192, v194 ushr-int/lit8 v222, v94, 19 shl-int v242, v112, v211 long-to-float v7, v4 div-int/lit8 v161, v203, 6 neg-float v8, v12 not-int v12, v11 shl-int v149, v150, v85 long-to-double v9, v15 mul-long/2addr v4, v15 neg-double v1, v9 rem-double/2addr v9, v1 const-wide v208, 512L or-long v75, v75, v208 rem-long v152, v66, v75 or-int/2addr v0, v11 int-to-byte v13, v0 int-to-short v6, v0 shl-long/2addr v15, v6 mul-long v104, v226, v4 or-int/lit8 v159, v159, 53 div-int v192, v212, v159 or-int/lit8 v13, v13, 91 rem-int/2addr v12, v13 or-long v23, v73, v4 or-int/lit16 v10, v13, 11922 xor-int/lit8 v146, v96, 27 add-long v146, v152, v123 div-float v80, v234, v8 ushr-int/lit8 v81, v136, -120 double-to-int v15, v1 mul-float/2addr v8, v7 shr-int/2addr v12, v13 move-wide/from16 v14, v223 xor-long/2addr v14, v4 xor-long v222, v53, v223 xor-int/lit16 v7, v12, -10743 const v12, 0xc2d3b38f add-float/2addr v8, v12 const-wide v184, 4194304L or-long v4, v4, v184 rem-long/2addr v14, v4 int-to-float v9, v10 double-to-float v12, v1 rsub-int v15, v10, 26912 add-int/2addr v7, v13 neg-double v6, v1 long-to-int v1, v4 int-to-short v9, v10 long-to-double v1, v4 int-to-long v13, v0 rem-float/2addr v12, v8 rem-int/lit16 v3, v0, 30206 float-to-double v14, v8 mul-float v219, v107, v77 xor-long v232, v66, v23 rsub-int v0, v0, -374 shr-int v179, v255, v159 neg-double v11, v14 and-int/2addr v9, v0 shl-long v225, v4, v179 mul-int/lit8 v172, v236, 117 int-to-float v10, v9 sub-float/2addr v8, v10 or-int v242, v177, v165 shr-long v86, v152, v155 div-double/2addr v11, v14 add-long v47, v73, v184 const-wide v225, 2048L or-long v86, v86, v225 div-long v51, v184, v86 sub-int v26, v37, v165 int-to-byte v1, v3 xor-long v114, v75, v184 mul-int/lit8 v55, v40, -72 add-long v208, v51, v222 sub-double v41, v14, v237 int-to-double v14, v3 or-long v226, v51, v225 add-double v86, v41, v44 add-int v243, v151, v94 rsub-int v13, v1, 15870 xor-int/2addr v0, v1 shl-int/lit8 v70, v212, -92 long-to-double v5, v4 xor-int/2addr v0, v9 move-wide/from16 v10, v104 const-wide v8, 0xf0f5eb5f24ff2335L const-wide v250, 4096L or-long v8, v8, v250 div-long/2addr v10, v8 sub-int v225, v142, v138 and-long/2addr v10, v8 and-long/2addr v10, v8 mul-int/lit8 v67, v165, -42 div-int/lit8 v197, v82, 53 const-wide v51, 8192L or-long v226, v226, v51 rem-long v19, v184, v226 mul-long/2addr v8, v10 div-float v84, v63, v181 double-to-long v0, v14 mul-int v141, v81, v167 mul-int/lit16 v2, v3, 32761 xor-int/2addr v13, v3 mul-float v249, v210, v160 rsub-int/lit8 v30, v142, 111 and-int/2addr v3, v2 rsub-int/lit8 v240, v182, -112 mul-long/2addr v8, v0 add-int/lit16 v9, v2, -29994 add-long/2addr v0, v10 and-int/lit8 v94, v13, -90 mul-int v132, v199, v173 long-to-int v10, v0 int-to-long v12, v2 rsub-int/lit8 v88, v255, -88 long-to-int v13, v0 or-int/lit16 v4, v9, -8897 shr-long/2addr v0, v10 shr-long/2addr v0, v4 xor-int v109, v165, v132 or-int v108, v81, v151 shl-int/2addr v4, v2 const-wide v11, 0x9ec12c7f82f4ab97L sub-long/2addr v0, v11 shl-int/lit8 v125, v108, 98 add-double v107, v49, v237 and-int/2addr v10, v2 and-int/2addr v2, v3 add-int/lit16 v4, v13, -7873 shr-int/lit8 v119, v155, -123 ushr-long v200, v11, v98 sub-long/2addr v0, v11 shl-int v147, v89, v248 add-long/2addr v0, v11 shl-long v192, v232, v150 and-int v204, v225, v13 mul-double/2addr v14, v5 move/from16 v15, v181 move/from16 v13, v145 mul-float/2addr v13, v15 shl-int v191, v161, v255 shr-long v9, v104, v137 or-int/lit8 v3, v3, 3 div-int/2addr v2, v3 rem-int/lit16 v11, v4, -25034 div-float v184, v187, v180 shr-int v203, v242, v101 mul-float v12, v219, v210 mul-float v112, v145, v97 xor-int/2addr v4, v2 const-wide v2, 0x27900d5bf5349c63L add-double/2addr v2, v5 shl-int v18, v205, v136 mul-float/2addr v15, v12 xor-int/lit16 v9, v4, 32576 shr-int/lit8 v113, v166, -65 float-to-int v5, v12 long-to-float v6, v0 or-int/lit16 v12, v5, -25532 mul-int/2addr v9, v11 div-int/lit16 v11, v5, 445 const-wide v3, 0x902ad3f92cd5aa02L move-wide/from16 v8, v38 add-double/2addr v3, v8 div-float v231, v234, v126 mul-long v114, v23, v217 const-wide v2, 0xd8518dc0163ff7caL const-wide v252, 268435456L or-long v2, v2, v252 rem-long/2addr v0, v2 neg-long v10, v2 float-to-double v13, v13 div-float/2addr v6, v15 not-long v9, v10 or-int/lit16 v6, v12, -24620 neg-long v4, v9 ushr-int v48, v151, v202 and-long/2addr v2, v0 mul-float v25, v181, v84 const-wide v75, 131072L or-long v208, v208, v75 div-long v88, v200, v208 ushr-long v206, v222, v92 and-int/lit16 v10, v12, 4981 const-wide v0, 16777216L or-long v4, v4, v0 rem-long/2addr v0, v4 or-int/lit8 v125, v125, 16 div-int v130, v166, v125 mul-int/lit16 v7, v6, 23004 sub-int/2addr v10, v12 int-to-short v9, v7 or-int/2addr v9, v6 mul-long v37, v53, v73 int-to-double v0, v9 sub-double v3, v49, v86 double-to-int v2, v3 rem-int/lit16 v14, v2, 32681 int-to-long v4, v2 float-to-int v0, v15 int-to-byte v1, v10 const-wide v0, 0x30cd4970658ff2b9L move-wide/from16 v10, v41 mul-double/2addr v10, v0 not-long v1, v4 xor-long v224, v252, v37 sub-float v248, v249, v219 neg-long v0, v4 or-int v247, v98, v154 const-wide v224, 8L or-long v0, v0, v224 div-long/2addr v4, v0 or-int/lit8 v12, v12, 36 div-int/2addr v9, v12 shl-int v86, v30, v9 mul-int/lit16 v7, v12, -9295 shl-long v134, v75, v129 xor-int v71, v214, v26 mul-int/lit16 v3, v14, 19582 not-long v5, v4 ushr-long v230, v226, v228 rem-double v86, v10, v44 add-float v166, v248, v80 xor-long v217, v208, v134 or-int/lit8 v161, v26, 75 const-wide v104, 4194304L or-long v5, v5, v104 rem-long/2addr v0, v5 or-int/lit8 v34, v34, 82 div-int v243, v55, v34 or-int/lit8 v204, v204, 10 rem-int v70, v81, v204 int-to-byte v4, v12 or-int/lit16 v2, v3, -27865 shr-int/2addr v14, v3 xor-int v160, v133, v148 div-int/lit8 v55, v214, 119 double-to-float v13, v10 ushr-long/2addr v0, v14 rsub-int v13, v4, -17660 or-long v56, v217, v152 rem-int/lit16 v13, v4, -17849 sub-long v99, v232, v217 xor-int/lit8 v99, v125, 63 add-int/lit8 v218, v150, -69 ushr-long v4, v206, v7 add-long/2addr v0, v4 or-int/lit8 v12, v12, 63 rem-int/2addr v14, v12 const-wide v23, 33554432L or-long v0, v0, v23 rem-long/2addr v4, v0 or-int/lit8 v106, v106, 17 rem-int v156, v9, v106 mul-int v198, v132, v156 const-wide v6, 0xa13d70cc28337356L add-double/2addr v10, v6 sub-float v184, v120, v77 add-int/2addr v14, v3 or-int/lit8 v9, v9, 5 rem-int/2addr v12, v9 add-int v17, v48, v138 rem-double/2addr v10, v6 div-float v136, v126, v97 double-to-float v3, v10 const-wide v104, 2048L or-long v4, v4, v104 div-long/2addr v0, v4 const-wide v23, 16777216L or-long v4, v4, v23 rem-long/2addr v0, v4 double-to-long v2, v10 add-double v60, v6, v237 add-int/2addr v14, v12 add-double v4, v86, v6 int-to-double v7, v13 add-int/lit16 v15, v9, -22090 or-long v92, v224, v88 shr-long v175, v19, v103 add-float v215, v80, v184 ushr-int v13, v15, v242 mul-int v6, v205, v182 rem-double v244, v60, v7 sub-double/2addr v10, v4 sub-long/2addr v2, v0 not-long v8, v0 neg-int v12, v6 const v4, 0xd094452a float-to-long v11, v4 or-int/lit8 v255, v255, 92 rem-int v53, v204, v255 rem-float v189, v166, v77 add-double v6, v41, v237 or-int/2addr v13, v15 mul-long/2addr v2, v0 ushr-long v160, v114, v199 long-to-float v9, v2 shl-long/2addr v2, v15 sub-int/2addr v13, v15 or-long/2addr v11, v2 and-long/2addr v0, v2 or-int/lit16 v2, v13, -6703 or-int/lit8 v182, v85, -125 and-int v55, v148, v144 mul-int/2addr v15, v14 mul-double v187, v44, v60 rem-int/lit16 v9, v15, 12833 sub-double v12, v86, v41 or-long v245, v92, v73 shr-long v251, v114, v30 long-to-double v15, v0 const-wide v5, 0x5483b3a96657e209L add-long/2addr v0, v5 or-int/lit8 v2, v2, 43 div-int/2addr v9, v2 ushr-long/2addr v0, v2 shr-long v6, v251, v220 mul-int/lit16 v15, v9, 24125 mul-int/2addr v9, v14 move-wide/from16 v12, v271 move-wide/from16 v11, v187 move-wide/from16 v5, v269 div-double/2addr v11, v5 shl-long/2addr v0, v2 long-to-int v4, v0 const v3, 0xb531a0e const v7, 0x36c4bf6f div-float/2addr v3, v7 div-float v159, v248, v215 div-float/2addr v3, v7 long-to-double v13, v0 rem-double/2addr v5, v11 ushr-long/2addr v0, v15 int-to-char v14, v4 ushr-long/2addr v0, v4 shl-int/lit8 v84, v154, -3 float-to-int v3, v3 rem-float v219, v80, v234 long-to-double v12, v0 move/from16 v7, v112 move/from16 v6, v260 sub-float/2addr v7, v6 div-double v34, v60, v49 add-long v207, v0, v88 sub-int/2addr v2, v4 shr-int/2addr v2, v3 float-to-long v5, v6 div-float v37, v210, v58 ushr-int/2addr v2, v3 mul-long v60, v207, v160 and-int/2addr v3, v9 mul-int/2addr v3, v9 neg-long v8, v0 double-to-long v9, v12 sub-long v244, v232, v160 shr-int v245, v14, v4 float-to-double v12, v7 rem-double v210, v49, v86 float-to-int v11, v7 add-double v208, v34, v44 float-to-int v3, v7 const-wide v60, 32L or-long v222, v222, v60 div-long v208, v226, v222 sub-int/2addr v15, v2 and-int/lit8 v182, v84, -66 sub-long/2addr v5, v0 or-long v79, v19, v222 mul-double v99, v34, v110 not-long v12, v0 rem-double v223, v237, v99 div-double v30, v107, v49 rem-int/lit16 v7, v4, -17824 or-int/lit8 v163, v163, 66 div-int v6, v228, v163 mul-int/lit8 v80, v155, 72 shr-long/2addr v9, v15 move-wide/from16 v5, v107 move-wide/from16 v5, v269 move-wide/from16 v15, v86 sub-double/2addr v15, v5 or-int/lit8 v68, v68, 12 div-int v203, v254, v68 mul-long/2addr v0, v12 const-wide v208, 16384L or-long v0, v0, v208 rem-long/2addr v12, v0 rsub-int v12, v7, 21281 mul-float v72, v136, v126 shl-int/2addr v14, v3 long-to-float v11, v0 neg-float v0, v11 rsub-int/lit8 v130, v179, 71 and-int/lit16 v2, v4, 23175 rem-double v161, v237, v99 mul-float v235, v184, v112 shl-int/lit8 v146, v228, -50 add-float v18, v37, v249 sub-float v66, v63, v181 shr-int/lit8 v87, v174, 52 or-int v86, v17, v85 shr-int v82, v129, v220 ushr-long v123, v226, v202 ushr-int v63, v163, v119 sub-int/2addr v7, v14 rsub-int v10, v14, -29725 ushr-int/lit8 v233, v4, 63 move-wide/from16 v1, v134 not-long v0, v1 mul-int/2addr v4, v3 shr-int/lit8 v99, v103, 101 float-to-int v14, v11 or-int/lit8 v14, v14, 26 rem-int/2addr v10, v14 mul-double/2addr v15, v5 ushr-long/2addr v0, v4 sub-double/2addr v15, v5 rsub-int v13, v3, 19753 xor-int/lit8 v76, v63, 46 int-to-double v9, v13 and-int v38, v91, v133 move/from16 v4, v136 sub-float/2addr v11, v4 neg-long v1, v0 rem-float/2addr v4, v11 xor-int v98, v196, v149 add-double/2addr v9, v15 const-wide v8, 0x94b9f59cab46455bL const-wide v8, 2048L or-long v8, v8, v8 rem-long/2addr v1, v8 or-int/lit8 v246, v17, 13 float-to-long v4, v4 shl-int v39, v137, v141 sub-float v224, v11, v180 float-to-int v10, v11 const-wide v14, 0x58f6d392f36ca244L const-wide v7, 0xf4e0edfd6e84e264L mul-double/2addr v14, v7 int-to-char v10, v13 long-to-float v14, v1 xor-long/2addr v4, v1 add-int/lit8 v48, v109, -78 xor-int/lit16 v6, v13, 479 xor-int v128, v218, v65 add-int/2addr v6, v3 mul-long v159, v200, v88 rem-float v232, v72, v37 shl-int/lit8 v22, v96, -10 and-int v110, v40, v82 int-to-long v6, v13 mul-int/2addr v3, v12 move-wide/from16 v8, v269 const-wide v12, 0x144215228de7ecffL mul-double/2addr v12, v8 add-long v88, v73, v159 sub-int v135, v70, v177 sub-long/2addr v6, v1 sub-double/2addr v12, v8 shr-int v59, v101, v254 xor-long/2addr v6, v4 rem-int/lit16 v7, v3, 31446 const-wide v123, 2048L or-long v1, v1, v123 rem-long/2addr v4, v1 mul-double v172, v107, v8 xor-int v132, v163, v240 shr-int/2addr v7, v3 xor-int/2addr v10, v3 shl-long v8, v56, v191 or-int/lit8 v7, v7, 91 div-int/2addr v10, v7 const-wide v56, 65536L or-long v226, v226, v56 rem-long v46, v123, v226 add-float v59, v166, v120 float-to-double v3, v14 rem-double/2addr v12, v3 or-int/lit8 v7, v7, 87 rem-int/2addr v10, v7 or-int/lit8 v17, v17, 80 div-int v1, v96, v17 mul-int/2addr v1, v10 shr-int v97, v103, v144 xor-int/2addr v7, v10 ushr-int/2addr v10, v1 shr-long/2addr v8, v1 or-int/2addr v1, v7 mul-long v133, v208, v200 shr-int v174, v204, v199 sub-double v169, v210, v12 int-to-byte v10, v1 add-float/2addr v11, v14 div-int/lit16 v13, v10, 25932 and-int/lit16 v4, v7, -8119 const-wide v6, 0x19499a3fb291c691L add-long/2addr v8, v6 int-to-char v13, v13 mul-int/lit16 v9, v1, 28061 rem-float/2addr v14, v11 move-wide/from16 v10, v187 const-wide v1, 0xc4313db4cd3bee6cL div-double/2addr v10, v1 xor-int v161, v22, v94 int-to-char v9, v4 sub-long v212, v133, v88 double-to-float v11, v10 int-to-float v11, v9 or-int/lit8 v147, v147, 17 div-int v148, v132, v147 or-int/lit16 v0, v9, -30262 rem-float/2addr v14, v11 rem-int/lit16 v0, v0, -20847 move-wide/from16 v11, v92 const-wide v133, 2L or-long v11, v11, v133 rem-long/2addr v6, v11 ushr-long v177, v230, v198 xor-int v217, v17, v205 move-wide/from16 v7, v172 add-double/2addr v7, v1 int-to-long v13, v0 shr-int/lit8 v31, v142, -10 shr-int/2addr v4, v9 const v1, 0x395a3b7e neg-float v1, v1 int-to-short v12, v9 xor-int/lit8 v62, v65, 59 neg-int v12, v12 int-to-char v12, v4 rsub-int v13, v0, -24649 add-int/lit16 v8, v0, 865 or-int/lit8 v4, v4, 32 rem-int/2addr v0, v4 ushr-int/lit8 v6, v255, 27 const-wide v175, 2097152L or-long v251, v251, v175 rem-long v37, v123, v251 rem-float v211, v18, v249 xor-int/lit16 v3, v4, -24767 int-to-char v2, v0 const-wide v14, 0x63ef6ad506b0fad6L move-wide/from16 v0, v187 sub-double/2addr v0, v14 const-wide v15, 0x2df8c1580117fc69L const-wide v11, 0x18c06b5c9698137bL const-wide v208, 65536L or-long v11, v11, v208 rem-long/2addr v15, v11 int-to-float v11, v13 const v15, 0xa1042f7a rem-float/2addr v11, v15 div-int/lit16 v14, v2, -7517 double-to-float v1, v0 move-wide/from16 v9, v34 double-to-float v2, v9 div-double v137, v172, v49 shr-int v136, v199, v220 or-int/lit16 v15, v4, 17280 move-wide/from16 v4, v269 div-double/2addr v4, v9 add-double/2addr v4, v9 mul-double v188, v172, v137 mul-int v71, v28, v31 add-int/2addr v8, v13 xor-long v163, v23, v251 add-float v198, v211, v1 add-float/2addr v1, v2 not-int v14, v3 and-int/lit16 v14, v15, 26535 rem-float/2addr v11, v1 add-int/lit16 v11, v13, -2758 mul-int/lit16 v8, v14, 28564 shl-int v144, v86, v103 mul-int/lit8 v241, v113, 17 move-wide/from16 v14, v263 move-wide/from16 v6, v23 const-wide v226, 524288L or-long v14, v14, v226 div-long/2addr v6, v14 mul-float v57, v168, v235 ushr-int v169, v48, v203 xor-long v104, v92, v123 or-int/lit16 v14, v3, -26045 add-int/lit16 v4, v8, -28931 shl-int/lit8 v118, v65, 20 mul-int/2addr v4, v14 shl-int/2addr v13, v11 int-to-long v11, v13 add-int/2addr v3, v13 double-to-float v0, v9 float-to-double v4, v0 or-int/lit8 v209, v55, 108 add-double v202, v107, v44 shr-int/lit8 v24, v110, -26 float-to-long v1, v1 ushr-int/lit8 v34, v204, 63 double-to-int v6, v4 long-to-int v7, v1 not-long v8, v1 add-long/2addr v11, v1 move/from16 v9, v232 rem-float/2addr v0, v9 mul-int/lit8 v105, v129, -113 or-long/2addr v1, v11 and-long v25, v11, v163 rsub-int/lit8 v153, v196, 106 xor-long v219, v92, v1 ushr-long v72, v46, v148 and-int/lit16 v6, v14, 29460 or-int/lit16 v2, v6, 30148 rsub-int/lit8 v190, v94, -35 xor-int v2, v128, v6 not-int v13, v7 shr-int/2addr v13, v3 move-wide/from16 v3, v51 const-wide v159, 2097152L or-long v3, v3, v159 rem-long/2addr v11, v3 and-int v143, v151, v76 and-int/lit8 v9, v28, 114 and-long v75, v88, v133 shl-long/2addr v3, v7 int-to-char v1, v9 or-long/2addr v3, v11 move-wide/from16 v4, v172 move-wide/from16 v10, v41 add-double/2addr v10, v4 int-to-long v14, v1 int-to-double v15, v7 and-int/lit16 v9, v6, 18100 move/from16 v6, v18 div-float/2addr v6, v0 add-double v79, v188, v237 mul-double v113, v15, v237 mul-int/lit16 v6, v7, 5670 int-to-long v7, v1 move/from16 v5, v0 add-float/2addr v5, v0 float-to-long v6, v0 add-int v227, v39, v125 shl-long v76, v88, v40 add-float/2addr v5, v0 add-double/2addr v10, v15 add-double v82, v202, v107 add-float/2addr v0, v5 int-to-byte v4, v13 or-long v14, v219, v19 const-wide v72, 33554432L or-long v123, v123, v72 div-long v12, v37, v123 or-int/2addr v4, v1 mul-long/2addr v6, v12 not-int v12, v4 const-wide v192, 67108864L or-long v123, v123, v192 div-long v134, v92, v123 xor-int/lit16 v4, v4, -10539 double-to-long v5, v10 or-int/lit8 v29, v29, 65 rem-int v233, v174, v29 rsub-int/lit8 v20, v31, -109 const-wide v92, 67108864L or-long v14, v14, v92 div-long/2addr v5, v14 neg-float v9, v0 int-to-long v2, v2 ushr-int/lit8 v60, v167, -18 const-wide v123, 131072L or-long v14, v14, v123 div-long/2addr v2, v14 mul-long/2addr v5, v2 const-wide v46, 65536L or-long v5, v5, v46 div-long/2addr v14, v5 and-int/lit8 v8, v12, 54 neg-long v4, v5 rsub-int v3, v8, 11617 not-int v7, v3 xor-long v13, v134, v46 or-int/lit8 v85, v105, -79 or-int/lit8 v203, v24, 97 const-wide v92, 128L or-long v25, v25, v92 rem-long v185, v163, v25 add-int/lit16 v4, v12, 20592 int-to-byte v15, v7 const-wide v15, 0xa05ce726f7d4a350L add-long/2addr v15, v13 int-to-double v13, v8 add-int/lit8 v21, v247, 0 int-to-char v5, v8 shl-long v174, v175, v62 rem-int/lit16 v15, v5, 24168 mul-int/lit8 v227, v55, 119 or-int/lit16 v0, v7, -19379 float-to-double v14, v9 mul-int/2addr v5, v0 neg-double v5, v10 xor-int/lit8 v86, v167, 76 mul-double v132, v5, v137 move-wide/from16 v0, v263 move-wide/from16 v11, v72 sub-long/2addr v0, v11 sub-int/2addr v3, v8 int-to-long v15, v7 float-to-double v0, v9 double-to-long v4, v5 and-int/lit16 v0, v3, 16905 div-int/lit8 v113, v101, 58 sub-long v174, v230, v192 int-to-short v12, v8 const-wide v2, 0xbd9288f45e5af10L double-to-int v8, v2 double-to-float v7, v2 int-to-char v1, v8 const-wide v185, 262144L or-long v15, v15, v185 div-long/2addr v4, v15 or-int/lit16 v13, v12, 20354 const-wide v123, 128L or-long v4, v4, v123 rem-long v88, v134, v4 move-wide/from16 v12, v269 add-double/2addr v12, v2 add-long v40, v159, v163 or-int/lit8 v96, v150, -22 mul-long/2addr v4, v15 double-to-long v7, v2 long-to-float v1, v15 div-float v246, v126, v66 shl-long v244, v134, v130 mul-long/2addr v4, v7 neg-int v2, v0 xor-int v154, v165, v199 rsub-int/lit8 v105, v71, -26 sub-int/2addr v2, v0 or-int/lit16 v7, v2, -28845 add-long/2addr v15, v4 ushr-long/2addr v4, v7 add-double v233, v44, v49 double-to-float v8, v12 const-wide v230, 2048L or-long v4, v4, v230 rem-long/2addr v15, v4 float-to-double v3, v8 or-int/lit8 v229, v142, 12 sub-int/2addr v2, v0 neg-int v14, v7 long-to-double v8, v15 rem-double/2addr v8, v12 int-to-long v7, v14 sub-int v221, v161, v21 rem-int/lit16 v13, v14, 30349 or-int v191, v96, v17 div-int/lit16 v4, v14, -19318 shr-long v110, v177, v103 float-to-int v12, v1 long-to-double v10, v15 mul-double v107, v237, v79 neg-long v9, v15 div-double v216, v172, v44 and-long/2addr v15, v7 ushr-long/2addr v7, v14 move/from16 v7, v18 add-float/2addr v1, v7 add-int v89, v96, v63 move-wide/from16 v0, v233 const-wide v10, 0x483b4e563a14826L rem-double/2addr v10, v0 long-to-double v15, v15 int-to-long v6, v12 const-wide v14, 0x53004e8f2a425236L const-wide v46, 16L or-long v6, v6, v46 div-long/2addr v14, v6 int-to-float v12, v12 neg-int v0, v13 mul-float v131, v58, v145 and-long/2addr v14, v6 move-wide/from16 v1, v82 mul-double/2addr v10, v1 const-wide v244, 536870912L or-long v200, v200, v244 rem-long v27, v244, v200 div-double/2addr v1, v10 add-int/lit8 v167, v228, -70 neg-int v12, v4 add-double v164, v107, v49 and-int/lit16 v11, v12, 17330 xor-long/2addr v14, v6 const-wide v134, 1048576L or-long v219, v219, v134 div-long v114, v72, v219 ushr-int v2, v236, v240 move/from16 v14, v168 move/from16 v3, v261 rem-float/2addr v3, v14 sub-long v56, v251, v185 move-wide/from16 v11, v92 sub-long/2addr v11, v6 neg-int v1, v13 add-double v124, v237, v44 shr-int v176, v149, v68 and-int/2addr v1, v0 int-to-char v13, v1 shl-int/lit8 v92, v227, -66 or-int/lit8 v165, v105, 127 mul-long/2addr v6, v11 add-float/2addr v14, v3 or-int/lit8 v1, v1, 61 rem-int/2addr v2, v1 ushr-int/2addr v2, v4 int-to-long v10, v13 shr-int/lit8 v26, v247, -106 int-to-double v9, v1 move-wide/from16 v12, v216 sub-double/2addr v9, v12 int-to-short v11, v2 sub-float/2addr v14, v3 add-int/lit8 v68, v167, 61 sub-int/2addr v1, v0 xor-int/lit16 v5, v0, -18038 int-to-double v3, v0 xor-int/2addr v0, v5 move-wide/from16 v5, v6 const-wide v2, 0xa606a9cbec205c83L sub-long/2addr v2, v5 xor-int v151, v218, v94 xor-int/2addr v11, v1 shl-int v239, v204, v86 move/from16 v2, v215 add-float/2addr v2, v14 or-int/lit8 v138, v109, 52 rsub-int v11, v0, 18088 shr-long v45, v174, v63 shl-long/2addr v5, v1 const-wide v230, 2048L or-long v230, v230, v230 rem-long v168, v40, v230 move-wide/from16 v4, v244 move-wide/from16 v6, v219 const-wide v219, 32768L or-long v6, v6, v219 rem-long/2addr v4, v6 const-wide v177, 65536L or-long v56, v56, v177 rem-long v75, v219, v56 double-to-float v0, v12 and-int/2addr v11, v1 and-long/2addr v6, v4 long-to-double v14, v6 shl-int v185, v105, v179 neg-long v3, v6 and-long/2addr v6, v3 xor-int/lit16 v2, v11, -12707 int-to-long v6, v2 rem-float v185, v166, v181 float-to-long v0, v0 sub-float v241, v211, v224 int-to-short v12, v2 long-to-int v11, v0 add-long/2addr v6, v0 sub-long/2addr v0, v3 shr-long/2addr v3, v12 mul-int/2addr v11, v12 move/from16 v6, v261 const v13, 0x21e3135f add-float/2addr v6, v13 sub-double v170, v132, v79 add-int/2addr v12, v11 double-to-long v6, v9 float-to-double v14, v13 long-to-double v8, v3 div-double v156, v172, v8 mul-double/2addr v8, v14 long-to-float v10, v6 xor-int/2addr v2, v12 rem-double v159, v8, v172 neg-int v14, v12 or-int/lit8 v242, v242, 19 rem-int v133, v85, v242 float-to-int v12, v10 add-int/2addr v11, v2 int-to-short v3, v11 sub-int v45, v158, v119 not-int v9, v14 mul-int v103, v204, v45 or-long/2addr v6, v0 shr-int/2addr v2, v14 sub-double v254, v82, v216 div-float/2addr v10, v13 const-wide v168, 4194304L or-long v40, v40, v168 rem-long v62, v168, v40 xor-int/lit8 v49, v12, -94 or-int/2addr v12, v9 rem-float v76, v112, v58 move-wide/from16 v9, v188 neg-double v13, v9 add-float v214, v241, v181 mul-long/2addr v6, v0 mul-long v160, v0, v37 div-float v169, v235, v214 add-int/lit8 v156, v68, 100 mul-double/2addr v13, v9 or-long/2addr v6, v0 shr-long/2addr v0, v11 shr-int/lit8 v66, v197, 103 div-double v65, v107, v124 neg-long v14, v6 rem-double v94, v9, v65 sub-double v201, v94, v188 ushr-int/2addr v11, v12 double-to-float v12, v9 add-double v129, v9, v82 neg-int v8, v3 or-int v5, v22, v2 div-double v109, v201, v82 or-int/lit8 v13, v209, 79 const v9, 0x2cb7f4f1 sub-float/2addr v9, v12 div-float/2addr v12, v9 or-int/lit16 v5, v5, 14629 mul-int/lit16 v14, v8, -3118 rem-float/2addr v9, v12 rsub-int/lit8 v32, v143, 60 rsub-int/lit8 v223, v138, 39 sub-int v192, v218, v24 move-wide/from16 v1, v82 neg-double v2, v1 move-wide/from16 v8, v134 xor-long/2addr v8, v6 int-to-short v10, v11 int-to-char v15, v13 and-long/2addr v8, v6 or-int/lit8 v14, v14, 42 rem-int/2addr v15, v14 move/from16 v15, v249 div-float/2addr v12, v15 div-int/lit16 v3, v5, 21646 and-int/lit16 v7, v13, 31852 move-wide/from16 v2, v201 move-wide/from16 v15, v94 div-double/2addr v15, v2 int-to-byte v7, v13 int-to-short v11, v13 add-double/2addr v15, v2 div-float v31, v18, v232 div-float v57, v31, v248 xor-int v71, v176, v218 xor-long v34, v27, v251 mul-int/lit8 v10, v119, -4 shr-long v243, v160, v87 float-to-double v10, v12 shl-int/2addr v14, v5 rem-double/2addr v2, v15 shr-int/lit8 v81, v138, 118 const v3, 0x8449d290 add-float/2addr v12, v3 neg-long v14, v8 const-wide v212, 4194304L or-long v8, v8, v212 rem-long/2addr v14, v8 shl-long v245, v14, v128 and-long v228, v62, v114 int-to-float v1, v13 float-to-double v5, v1 xor-long v57, v40, v174 const-wide v228, 32768L or-long v14, v14, v228 rem-long/2addr v8, v14 add-int/2addr v13, v7 or-int/lit8 v156, v156, 98 div-int v116, v96, v156 double-to-int v1, v10 xor-long v39, v8, v251 shr-long v59, v34, v205 or-int/lit8 v1, v1, 82 rem-int/2addr v13, v1 add-int/2addr v1, v7 shl-long v64, v230, v90 or-int/lit8 v189, v45, 42 add-long/2addr v8, v14 double-to-long v10, v10 or-int/lit16 v15, v13, 25617 ushr-int/2addr v7, v15 int-to-byte v5, v1 mul-long/2addr v8, v10 and-int/lit16 v13, v1, -21003 sub-long v242, v72, v243 xor-int v252, v1, v96 int-to-double v8, v15 div-float/2addr v3, v12 mul-int v49, v247, v141 and-long v161, v228, v134 shl-int v64, v191, v141 div-int/lit8 v195, v29, -45 xor-int/lit8 v113, v113, 1 and-int/lit8 v189, v191, -128 or-long v90, v57, v161 shr-int/lit8 v199, v113, 38 rsub-int v12, v1, -23147 rsub-int/lit8 v169, v176, 94 int-to-char v6, v15 const-wide v11, 0x58843078d46ab415L sub-double/2addr v8, v11 const-wide v14, 0x772e99e2cdfac77aL shl-long/2addr v14, v1 shr-long v88, v62, v143 int-to-float v10, v6 int-to-byte v14, v7 const-wide v5, 0x4cede99f4b26133dL shl-long/2addr v5, v1 mul-float/2addr v10, v3 rsub-int/lit8 v121, v113, -53 mul-int/lit8 v62, v197, -21 sub-long v89, v177, v228 long-to-int v11, v5 xor-long v4, v72, v114 sub-int/2addr v14, v1 add-long v218, v51, v72 not-long v4, v4 or-int/lit8 v113, v113, 7 div-int v117, v128, v113 shr-long v231, v27, v197 sub-float v91, v211, v120 add-float v19, v120, v31 rem-float v45, v224, v131 xor-int/lit16 v7, v1, 12693 and-int/lit8 v106, v48, 8 div-int/lit8 v7, v106, -32 shl-long v194, v57, v127 and-int/lit16 v4, v14, -19697 or-int/2addr v7, v14 rem-float/2addr v10, v3 int-to-double v7, v11 add-int/lit16 v5, v13, -25857 and-int/lit16 v9, v11, 5062 add-int/2addr v14, v1 or-int/lit8 v14, v14, 12 rem-int/2addr v1, v14 rem-float v78, v91, v235 and-int/lit16 v15, v13, 17827 move-wide/from16 v7, v89 long-to-int v12, v7 shl-long/2addr v7, v9 sub-double v182, v107, v233 shl-int v61, v24, v29 rsub-int v3, v5, 668 or-long v69, v59, v134 rem-float v182, v215, v19 div-int/lit8 v100, v189, -91 or-int/lit8 v5, v5, 44 rem-int/2addr v4, v5 ushr-long v253, v27, v15 int-to-double v10, v1 long-to-int v8, v7 add-float v39, v18, v131 add-int/lit16 v14, v8, -16057 move/from16 v1, v76 const v3, 0xbb15678a rem-float/2addr v3, v1 move-wide/from16 v10, v114 shr-long/2addr v10, v15 int-to-short v9, v13 shl-long v95, v194, v227 const-wide v2, 0xbcfd90a075ea1deeL double-to-long v0, v2 int-to-long v12, v4 move-wide/from16 v13, v216 mul-double/2addr v2, v13 move/from16 v9, v180 move/from16 v7, v184 sub-float/2addr v9, v7 long-to-double v12, v0 not-int v5, v15 div-float v172, v120, v19 or-long v129, v177, v69 add-double v38, v170, v107 rem-int/lit16 v14, v5, 24962 int-to-short v10, v4 double-to-long v2, v12 xor-long v223, v2, v34 ushr-long v72, v57, v189 ushr-int/2addr v10, v5 xor-int/lit8 v176, v138, -118 or-long v135, v242, v161 rem-float v255, v235, v45 xor-long v195, v59, v253 float-to-int v1, v7 double-to-float v5, v12 or-int/lit8 v10, v10, 101 div-int v63, v150, v10 sub-float v196, v7, v91 double-to-long v6, v12 xor-int v134, v22, v84 const-wide v34, 131072L or-long v2, v2, v34 div-long/2addr v6, v2 int-to-double v7, v14 div-float/2addr v5, v9 shl-int/2addr v4, v1 sub-long v31, v2, v27 rsub-int/lit8 v183, v92, 114 div-float v138, v215, v214 ushr-int v130, v240, v97 div-double/2addr v12, v7 or-int/lit16 v14, v14, 22831 shl-int/lit8 v5, v190, -54 ushr-long v15, v27, v118 or-int/lit16 v6, v1, 688 ushr-int/2addr v1, v10 add-float v59, v248, v172 mul-int/lit8 v56, v247, 111 rem-double v17, v82, v12 int-to-double v12, v4 ushr-int v21, v247, v221 mul-long v243, v31, v174 neg-float v11, v9 add-double v27, v79, v216 neg-float v4, v9 shr-int v86, v176, v143 sub-float v235, v59, v45 add-float/2addr v11, v9 mul-int/lit16 v2, v14, -20522 neg-long v8, v15 shr-int/2addr v5, v2 xor-long/2addr v15, v8 and-long/2addr v8, v15 or-int/lit8 v5, v5, 54 div-int/2addr v1, v5 float-to-int v13, v11 add-long v29, v174, v228 rem-int/lit8 v132, v10, 96 and-int/lit16 v3, v13, 27306 int-to-double v0, v10 div-int/lit8 v188, v14, 27 sub-int v16, v239, v26 mul-int/lit8 v229, v151, 74 move-wide/from16 v9, v107 mul-double/2addr v9, v0 ushr-int/lit8 v95, v132, 84 move-wide/from16 v6, v243 long-to-double v2, v6 and-long v199, v34, v72 or-int/lit8 v5, v5, 12 div-int/2addr v13, v5 mul-double v36, v216, v82 rem-int/lit8 v14, v106, 28 rsub-int/lit8 v177, v13, 45 sub-float v47, v131, v76 shr-long v228, v89, v133 or-int/lit8 v13, v13, 122 div-int/2addr v14, v13 const-wide v228, 8L or-long v135, v135, v228 rem-long v99, v6, v135 move-wide/from16 v10, v34 sub-long/2addr v10, v6 long-to-int v2, v10 or-int/lit8 v154, v154, 28 rem-int v26, v48, v154 rsub-int/lit8 v43, v247, -50 shl-int v64, v177, v240 or-long v254, v231, v174 shr-int/2addr v5, v2 shr-int/2addr v14, v13 div-float v245, v138, v112 shr-long v108, v223, v117 double-to-int v3, v0 shr-int v141, v148, v141 double-to-float v9, v0 mul-long v55, v218, v223 const-wide v12, 0x276080dfda527e67L div-double/2addr v12, v0 shl-long v125, v69, v67 div-float/2addr v9, v4 ushr-int/lit8 v181, v127, 87 rsub-int/lit8 v86, v43, 121 ushr-int/2addr v5, v14 sub-float v57, v76, v19 sub-long/2addr v6, v10 add-double v234, v201, v170 sub-double v114, v12, v82 add-float/2addr v4, v9 sub-float/2addr v4, v9 float-to-int v12, v4 not-long v14, v6 div-int/lit8 v26, v63, -92 int-to-long v15, v5 shr-long/2addr v6, v5 rem-double v18, v170, v36 const-wide v29, 16L or-long v10, v10, v29 div-long/2addr v6, v10 or-long v82, v69, v199 or-int/lit16 v3, v3, 9947 shl-int/2addr v5, v3 ushr-long/2addr v15, v5 const-wide v0, 0xca7419e38396ab19L const-wide v10, 0x2f4bdfd1b42d75feL add-double/2addr v10, v0 add-double/2addr v0, v10 float-to-long v13, v9 add-double v207, v170, v79 sub-double/2addr v10, v0 not-int v4, v12 rsub-int v0, v3, 24935 shr-long/2addr v6, v5 double-to-float v4, v10 shl-int/2addr v12, v2 or-long/2addr v15, v13 neg-int v8, v3 const-wide v29, 4L or-long v89, v89, v29 div-long v171, v99, v89 mul-int/lit16 v0, v0, -15219 int-to-short v3, v0 xor-int/lit16 v3, v5, -3114 int-to-char v6, v5 or-int/2addr v0, v5 and-long v111, v218, v69 mul-float/2addr v4, v9 const-wide v13, 0xd4fa66bfe3f49448L mul-double/2addr v13, v10 rem-int/lit16 v0, v12, 24021 mul-int/lit16 v6, v8, 20467 shr-long v38, v34, v204 ushr-int/2addr v2, v12 add-float v135, v241, v78 shr-long/2addr v15, v2 shl-long/2addr v15, v5 mul-double/2addr v10, v13 or-int/lit8 v6, v6, 28 rem-int/2addr v3, v6 rem-double/2addr v10, v13 mul-double/2addr v10, v13 neg-double v1, v13 double-to-int v15, v13 rem-double/2addr v10, v1 int-to-byte v8, v5 float-to-int v3, v9 neg-double v2, v1 move-wide/from16 v10, v212 move-wide/from16 v13, v254 or-long/2addr v10, v13 sub-float v34, v214, v135 long-to-float v9, v13 move-wide/from16 v8, v18 rem-double/2addr v8, v2 neg-int v4, v6 add-int v111, v86, v247 div-int/lit16 v2, v4, -7574 or-int/lit8 v156, v156, 65 rem-int v120, v84, v156 or-int/2addr v4, v5 xor-int/lit16 v12, v4, 2408 int-to-long v7, v15 shr-int/lit8 v111, v169, -45 const v9, 0xa5bbf2ac move/from16 v7, v182 add-float/2addr v7, v9 ushr-int v217, v113, v120 sub-int v146, v179, v106 or-int/lit8 v64, v64, 89 rem-int v215, v247, v64 add-float v108, v7, v196 xor-long v94, v161, v55 and-int/2addr v0, v2 shl-int/lit8 v156, v87, -64 shl-int v26, v5, v101 add-long v228, v89, v243 and-int/2addr v6, v12 sub-float v171, v45, v108 sub-long/2addr v13, v10 not-long v2, v13 or-int/lit8 v0, v0, 12 rem-int/2addr v6, v0 sub-long v178, v89, v72 int-to-double v1, v0 float-to-double v3, v7 long-to-float v7, v10 add-int/lit16 v15, v0, 827 double-to-long v0, v3 add-long v30, v223, v55 int-to-double v10, v6 and-int v181, v154, v53 ushr-int/lit8 v229, v191, -80 rsub-int v2, v6, 15659 and-long/2addr v0, v13 ushr-long v230, v99, v81 or-int/2addr v2, v12 rem-int/lit8 v243, v204, 26 long-to-int v14, v0 or-int/lit8 v14, v14, 43 div-int/2addr v15, v14 rem-float v21, v185, v9 add-double/2addr v3, v10 or-long v58, v174, v69 shr-long/2addr v0, v2 neg-int v14, v6 not-long v10, v0 or-long v129, v55, v0 add-int/2addr v15, v6 rsub-int v6, v2, 32613 long-to-double v7, v10 rem-int/lit16 v14, v2, -11986 rem-int/lit16 v2, v15, 15430 add-int/2addr v14, v15 xor-long/2addr v0, v10 ushr-int v94, v155, v63 shl-int/lit8 v171, v5, 92 float-to-double v6, v9 div-double v79, v234, v6 int-to-char v4, v14 or-int/lit16 v14, v2, 955 move/from16 v15, v76 sub-float/2addr v15, v9 ushr-int/lit8 v37, v64, -48 or-int/lit16 v11, v14, -25880 sub-int/2addr v14, v2 shl-int/lit8 v104, v147, -93 shr-int/2addr v4, v12 double-to-float v12, v6 not-int v5, v2 shl-long/2addr v0, v4 move-wide/from16 v9, v207 add-double/2addr v6, v9 shl-int/lit8 v106, v67, -11 sub-float/2addr v15, v12 rem-float/2addr v12, v15 ushr-int/lit8 v154, v2, 111 shl-long v14, v254, v209 div-double v215, v9, v79 add-float v61, v108, v47 mul-double/2addr v6, v9 and-long/2addr v0, v14 float-to-double v4, v12 const-wide v0, 128L or-long v14, v14, v0 div-long/2addr v0, v14 or-int/lit8 v2, v2, 41 rem-int/2addr v11, v2 int-to-byte v11, v2 long-to-int v15, v14 mul-int/lit8 v57, v139, 75 ushr-int/lit8 v198, v203, -112 sub-float v149, v76, v34 div-double/2addr v6, v4 rsub-int/lit8 v223, v86, -80 neg-float v15, v12 or-int/lit8 v188, v188, 55 rem-int v173, v67, v188 move-wide/from16 v0, v55 move-wide/from16 v14, v58 and-long/2addr v0, v14 sub-long/2addr v14, v0 mul-double v83, v215, v237 rsub-int/lit8 v233, v118, -61 add-int/lit8 v193, v103, 37 add-long v121, v0, v69 xor-long/2addr v14, v0 and-long v25, v14, v199 double-to-int v11, v4 float-to-int v3, v12 and-long v226, v218, v89 and-long/2addr v14, v0 xor-int/2addr v11, v2 ushr-long/2addr v0, v2 int-to-short v0, v11 or-int/lit8 v11, v11, 34 rem-int/2addr v3, v11 long-to-double v6, v14 mul-long v191, v55, v174 int-to-double v10, v3 const v1, 0x247700b6 rem-float/2addr v1, v12 rem-int/lit8 v30, v86, 73 neg-float v4, v1 xor-int/lit8 v194, v147, -55 rem-float/2addr v4, v12 sub-int v195, v204, v111 not-int v14, v2 and-int/lit16 v13, v0, -28942 int-to-double v4, v13 ushr-int/lit8 v231, v85, -5 int-to-short v8, v13 not-int v3, v3 shl-int v214, v128, v197 int-to-char v1, v8 and-int/2addr v14, v2 xor-int/2addr v2, v1 const v14, 0xd02ee9fa add-float/2addr v14, v12 neg-int v4, v8 neg-float v13, v12 move-wide/from16 v1, v191 move-wide/from16 v10, v263 xor-long/2addr v1, v10 and-int/2addr v3, v4 or-int/lit8 v213, v190, -59 and-int/lit8 v199, v223, 25 or-long/2addr v10, v1 div-int/lit8 v65, v197, 118 add-int/2addr v0, v3 float-to-long v10, v12 const-wide v25, 16L or-long v10, v10, v25 div-long/2addr v1, v10 add-float/2addr v12, v13 rem-int/lit8 v102, v22, -45 neg-int v4, v4 or-int v207, v252, v4 move-wide/from16 v15, v215 sub-double/2addr v6, v15 const-wide v51, 262144L or-long v1, v1, v51 div-long/2addr v10, v1 sub-float/2addr v13, v12 mul-double/2addr v15, v6 or-int/lit8 v111, v142, -17 neg-float v4, v13 or-int/lit8 v94, v48, -82 xor-int/lit16 v0, v3, 28006 rsub-int v5, v3, -3798 int-to-float v12, v0 and-int/lit16 v7, v5, -21698 add-float/2addr v12, v14 xor-int/2addr v8, v0 long-to-double v15, v1 const-wide v10, 8192L or-long v161, v161, v10 rem-long v80, v121, v161 float-to-int v0, v14 long-to-float v3, v10 sub-int v127, v198, v30 add-float v119, v47, v211 float-to-double v5, v13 ushr-int/lit8 v69, v132, 4 mul-long/2addr v10, v1 and-int/lit16 v3, v7, -27732 or-int/lit16 v7, v8, -10049 add-int/2addr v8, v7 shr-int v98, v8, v195 neg-long v4, v10 or-int/lit8 v132, v132, 111 rem-int v152, v120, v132 rsub-int/lit8 v83, v98, 79 ushr-long/2addr v10, v0 sub-int/2addr v3, v0 or-long v69, v129, v89 mul-double v17, v27, v201 const-wide v58, 65536L or-long v99, v99, v58 rem-long v64, v58, v99 neg-float v4, v12 float-to-long v13, v13 add-double v38, v17, v15 and-long v30, v55, v13 shl-int/lit8 v95, v153, 60 int-to-float v3, v7 ushr-long/2addr v1, v0 double-to-int v12, v15 shr-long/2addr v1, v0 mul-double v14, v27, v215 and-int v245, v213, v111 mul-long/2addr v10, v1 move-wide/from16 v6, v237 add-double/2addr v14, v6 shr-long v225, v129, v67 mul-long v230, v69, v25 and-int/lit8 v1, v207, -44 div-float/2addr v4, v3 neg-long v2, v10 mul-int/lit16 v15, v1, 10727 xor-long/2addr v2, v10 const-wide v72, 1048576L or-long v2, v2, v72 rem-long/2addr v10, v2 shl-int/lit8 v116, v158, 63 neg-int v6, v15 move/from16 v0, v34 rem-float/2addr v0, v4 mul-long v30, v10, v2 div-int/lit16 v15, v12, 6341 move-wide/from16 v8, v271 double-to-float v6, v8 add-int v242, v1, v181 ushr-long/2addr v2, v15 sub-float v81, v182, v45 shl-int/lit8 v26, v173, -95 const-wide v178, 512L or-long v30, v30, v178 div-long v254, v2, v30 and-int/lit8 v105, v20, -108 div-int/lit8 v203, v195, 70 int-to-short v6, v12 and-int/lit16 v9, v1, -1251 int-to-long v11, v6 xor-int/lit16 v6, v1, -5729 and-long v8, v225, v99 mul-double v59, v17, v201 const-wide v125, 16L or-long v254, v254, v125 rem-long v203, v99, v254 const-wide v161, 2L or-long v129, v129, v161 div-long v28, v230, v129 rem-int/lit16 v6, v6, 9365 rem-int/lit16 v2, v6, -21126 float-to-long v15, v0 rem-float v45, v211, v185 and-int/2addr v6, v1 and-long v140, v51, v89 shl-long v76, v161, v53 or-int v187, v197, v155 long-to-double v1, v15 or-int/lit16 v6, v6, 12482 long-to-int v1, v11 div-float/2addr v4, v0 ushr-long/2addr v8, v1 rem-int/lit16 v3, v1, 30951 shr-int v179, v195, v171 div-float/2addr v0, v4 or-int/2addr v3, v6 add-int/lit8 v103, v155, 5 const-wide v129, 262144L or-long v8, v8, v129 rem-long/2addr v11, v8 or-int/2addr v3, v1 div-float/2addr v0, v4 add-float v201, v4, v78 shr-int v11, v20, v98 add-double v225, v17, v114 not-long v15, v8 rem-int/lit16 v11, v6, 24386 move-wide/from16 v13, v237 const-wide v2, 0x4a23b0f23cd7292bL mul-double/2addr v2, v13 int-to-byte v1, v11 const-wide v55, 32L or-long v203, v203, v55 div-long v222, v191, v203 shl-int v22, v128, v134 rem-int/lit8 v77, v101, -3 ushr-int/lit8 v211, v156, 62 rem-int/lit8 v66, v207, -26 double-to-float v4, v13 const-wide v51, 256L or-long v125, v125, v51 rem-long v105, v218, v125 double-to-float v3, v2 move-wide/from16 v3, v225 rem-double/2addr v3, v13 sub-int/2addr v1, v6 and-long v211, v203, v161 shl-long/2addr v15, v1 int-to-char v3, v6 long-to-double v14, v8 double-to-int v8, v14 const-wide v2, 0x957de74f608016f5L not-long v8, v2 ushr-int/2addr v11, v1 double-to-long v3, v14 const-wide v8, 1073741824L or-long v64, v64, v8 rem-long v224, v121, v64 float-to-long v6, v0 neg-double v3, v14 div-double v65, v14, v3 neg-int v4, v11 xor-long v125, v230, v222 float-to-long v13, v0 div-int/lit16 v9, v11, -26779 sub-int/2addr v11, v1 shl-int/2addr v9, v1 not-int v4, v4 ushr-int/lit8 v90, v111, 74 move-wide/from16 v4, v59 move-wide/from16 v11, v17 rem-double/2addr v11, v4 shl-long/2addr v13, v1 add-int/lit16 v14, v9, -15358 sub-int/2addr v1, v14 add-float v38, v135, v131 or-int/lit8 v14, v14, 24 rem-int/2addr v9, v14 sub-float v40, v145, v138 mul-float v136, v145, v166 or-int/lit16 v8, v1, 7420 xor-int/2addr v8, v1 const-wide v10, 0xfaca7cf74a818350L sub-long/2addr v6, v10 add-int/lit8 v229, v37, 5 or-long/2addr v10, v6 not-long v6, v6 rsub-int v3, v14, 13933 sub-int/2addr v8, v14 or-long/2addr v6, v10 neg-double v5, v4 long-to-double v2, v10 sub-int v120, v177, v132 not-long v6, v10 and-int v227, v229, v68 long-to-int v12, v6 shr-long v97, v10, v9 and-long v149, v99, v129 and-long v121, v129, v140 long-to-int v11, v10 const-wide v15, 0xe2b041f0c21054b8L add-long/2addr v6, v15 sub-long v147, v254, v97 rem-double v219, v114, v234 and-long/2addr v6, v15 ushr-long/2addr v6, v14 move/from16 v5, v108 mul-float/2addr v5, v0 shr-int/lit8 v41, v117, -14 sub-long v177, v125, v6 add-int v76, v176, v117 xor-long v128, v55, v125 div-float/2addr v5, v0 double-to-int v1, v2 or-int/lit8 v90, v90, 35 div-int v141, v187, v90 ushr-long/2addr v6, v14 mul-long/2addr v15, v6 rem-float/2addr v0, v5 and-long v125, v30, v149 div-float v219, v136, v47 mul-float/2addr v0, v5 ushr-long v242, v125, v83 const-wide v222, 65536L or-long v15, v15, v222 rem-long/2addr v6, v15 shr-long/2addr v6, v12 shl-int/2addr v1, v9 shl-long/2addr v15, v8 or-int/2addr v11, v12 add-int/2addr v11, v9 int-to-byte v10, v9 int-to-char v6, v9 add-int/2addr v12, v11 double-to-long v7, v2 rem-int/lit16 v6, v14, 23684 int-to-double v1, v14 shr-int/2addr v12, v14 int-to-double v7, v10 shr-long v102, v242, v37 or-int/lit8 v131, v48, -105 const-wide v55, 524288L or-long v121, v121, v55 div-long v165, v147, v121 add-double v98, v59, v17 or-int/lit16 v4, v6, 31179 shr-long v24, v102, v101 add-int/lit16 v1, v10, 8266 and-long v231, v51, v222 neg-float v4, v5 ushr-int/lit8 v170, v142, 104 rem-int/lit8 v36, v183, -118 mul-float/2addr v4, v0 sub-float/2addr v0, v5 xor-int v166, v190, v153 or-int v18, v62, v152 rem-int/lit8 v145, v252, 73 add-long v158, v174, v161 div-int/lit16 v11, v14, -17743 or-int v204, v71, v117 long-to-double v2, v15 long-to-float v8, v15 rsub-int/lit8 v164, v14, 23 mul-double v85, v59, v215 xor-int/lit16 v14, v14, -14971 shl-int/lit8 v74, v63, -6 or-int/lit8 v12, v12, 61 div-int/2addr v1, v12 and-int/2addr v11, v12 rem-int/lit8 v94, v179, -80 or-int/lit8 v90, v90, 24 rem-int v138, v154, v90 move-wide/from16 v0, v191 xor-long/2addr v0, v15 int-to-float v7, v14 not-long v14, v0 add-int/lit16 v0, v11, -17885 not-int v6, v10 shr-int/lit8 v110, v37, 123 or-int/lit8 v71, v71, 48 div-int v146, v213, v71 or-int/lit16 v12, v6, 8052 shr-int v234, v83, v12 sub-float v232, v185, v21 sub-int v165, v173, v227 rsub-int/lit8 v65, v198, 116 long-to-float v9, v14 mul-long v118, v128, v69 or-int/lit8 v187, v187, 40 div-int v219, v205, v187 xor-int/lit8 v250, v219, -106 double-to-float v12, v2 float-to-long v14, v12 rem-float/2addr v4, v9 mul-int/lit16 v15, v6, -19672 const-wide v11, 0x271e51faeac20406L const-wide v2, 0xaaa591b33eddf135L mul-long/2addr v2, v11 int-to-double v15, v15 int-to-byte v7, v0 or-int/lit16 v12, v7, -17695 const-wide v69, 16777216L or-long v174, v174, v69 div-long v48, v222, v174 const-wide v0, 0x4545f4bcb697df4bL and-long/2addr v2, v0 float-to-double v11, v8 div-double v154, v15, v215 mul-int/lit16 v12, v7, -29440 float-to-long v5, v9 xor-int v73, v68, v164 const-wide v147, 256L or-long v5, v5, v147 div-long/2addr v2, v5 add-double v254, v85, v15 and-long/2addr v5, v0 shl-int/lit8 v116, v151, 49 add-int/lit8 v143, v193, -59 add-int/2addr v12, v10 and-int/2addr v7, v10 xor-long/2addr v2, v5 rem-int/lit8 v45, v117, 38 add-int/lit8 v167, v169, -14 add-float/2addr v4, v9 or-int/lit8 v7, v7, 100 div-int/2addr v12, v7 ushr-long v239, v242, v194 shl-long v53, v191, v142 or-int/lit8 v23, v187, -23 xor-int/lit8 v180, v213, 68 sub-float/2addr v9, v4 or-int/lit8 v10, v10, 5 rem-int/2addr v12, v10 int-to-short v13, v7 mul-float/2addr v9, v4 shr-long/2addr v2, v7 and-long/2addr v5, v2 neg-float v3, v8 or-int/lit8 v12, v12, 65 rem-int/2addr v13, v12 or-int/2addr v10, v7 rem-int/lit16 v0, v7, -5234 const-wide v121, 524288L or-long v105, v105, v121 rem-long v70, v158, v105 mul-double v157, v85, v98 add-long v189, v147, v5 const-wide v191, 524288L or-long v51, v51, v191 rem-long v191, v177, v51 move-wide/from16 v9, v189 const-wide v102, 4096L or-long v5, v5, v102 rem-long/2addr v9, v5 add-int/lit16 v8, v7, 28919 const-wide v28, 268435456L or-long v224, v224, v28 div-long v153, v211, v224 const-wide v224, 512L or-long v9, v9, v224 rem-long/2addr v5, v9 div-int/lit16 v13, v7, -27297 add-long/2addr v9, v5 div-int/lit16 v12, v7, 1600 or-int/lit8 v207, v207, 13 rem-int v243, v104, v207 add-int v212, v65, v176 xor-int v69, v74, v95 shr-int/lit8 v84, v165, -71 shr-long/2addr v9, v12 double-to-int v5, v15 neg-float v4, v3 long-to-int v4, v9 const-wide v9, 0xcc6d8c95eaba0b7cL move-wide/from16 v15, v70 mul-long/2addr v9, v15 long-to-double v0, v9 sub-float v241, v249, v185 and-int/lit8 v168, v68, 50 int-to-float v2, v8 move-wide/from16 v12, v271 div-double/2addr v12, v0 add-int/lit16 v8, v5, 1805 xor-long/2addr v9, v15 sub-long/2addr v9, v15 sub-int v220, v166, v8 xor-int/lit8 v209, v8, -2 sub-long/2addr v9, v15 sub-long v86, v174, v191 or-long v91, v189, v86 int-to-float v8, v5 float-to-long v10, v2 long-to-double v9, v15 rsub-int v10, v4, 26982 xor-int/lit8 v60, v68, -13 and-int/lit8 v24, v131, 25 const-wide v149, 8L or-long v118, v118, v149 div-long v47, v28, v118 add-int v26, v199, v60 const-wide v13, 0x9d27d3210bf26dfaL mul-long/2addr v15, v13 rem-int/lit8 v49, v84, -113 rsub-int/lit8 v107, v195, 48 and-int/2addr v10, v7 sub-long/2addr v15, v13 mul-int v163, v198, v220 sub-float/2addr v3, v2 or-int/lit8 v24, v24, 6 rem-int v90, v77, v24 move-wide/from16 v12, v254 add-double/2addr v0, v12 ushr-long v58, v30, v142 and-long v39, v239, v55 mul-int/lit8 v148, v145, 100 const-wide v174, 33554432L or-long v86, v86, v174 div-long v11, v239, v86 div-double v146, v237, v254 mul-int/lit16 v11, v7, 20803 div-double v156, v114, v254 ushr-long/2addr v15, v7 and-int/lit8 v136, v23, -72 rem-float v16, v8, v3 rem-float v174, v8, v78 xor-int/lit8 v221, v220, -9 rsub-int v14, v10, -15709 const-wide v6, 0x491505f3464cbeddL neg-long v12, v6 shr-int v101, v116, v217 shr-int v117, v171, v168 xor-int v153, v107, v207 mul-long v124, v222, v70 and-int/2addr v10, v5 add-int/lit16 v10, v14, -29422 float-to-double v1, v3 long-to-int v1, v12 and-long v243, v149, v191 const-wide v4, 0x12a45a003321ac75L double-to-int v3, v4 or-long/2addr v12, v6 and-int v247, v69, v22 int-to-short v2, v10 int-to-char v7, v10 sub-double v45, v98, v114 or-int/lit8 v139, v139, 47 rem-int v233, v117, v139 or-int/lit8 v10, v10, 121 div-int v40, v153, v10 move-wide/from16 v3, v177 and-long/2addr v3, v12 add-int/2addr v2, v11 mul-int v207, v164, v24 add-float v83, v78, v185 rsub-int v13, v11, -28591 ushr-int v230, v193, v11 or-int/lit8 v139, v139, 47 div-int v241, v207, v139 xor-int/lit16 v10, v11, -28513 int-to-long v4, v13 rem-double v63, v45, v114 or-int/lit8 v7, v7, 79 div-int/2addr v13, v7 mul-double v60, v237, v156 move-wide/from16 v15, v156 move-wide/from16 v6, v156 sub-double/2addr v15, v6 float-to-double v1, v8 rem-int/lit8 v77, v207, -63 or-int v215, v94, v113 or-long v57, v177, v91 sub-double/2addr v1, v15 and-int v55, v171, v73 float-to-long v10, v8 or-int/lit8 v75, v55, 85 sub-double/2addr v1, v15 mul-int/lit16 v12, v13, -5923 const-wide v30, 1024L or-long v4, v4, v30 rem-long/2addr v10, v4 mul-long v159, v28, v191 shr-long/2addr v10, v12 sub-int v97, v241, v198 and-long/2addr v4, v10 not-int v14, v13 xor-int/lit8 v28, v26, -109 ushr-long v224, v224, v168 xor-int/lit16 v14, v14, -24057 const-wide v159, 262144L or-long v177, v177, v159 rem-long v224, v128, v177 mul-double/2addr v15, v1 add-long/2addr v4, v10 move/from16 v15, v201 rem-float/2addr v15, v8 mul-double/2addr v6, v1 shl-long/2addr v4, v13 shr-int/lit8 v8, v176, 65 neg-long v3, v4 and-int/2addr v8, v13 long-to-double v2, v10 long-to-int v11, v10 int-to-float v14, v14 mul-int/lit8 v181, v131, -57 add-long v68, v86, v102 shr-long v52, v224, v221 div-float v148, v83, v14 or-long v122, v177, v52 shr-long v216, v224, v113 xor-int/lit16 v6, v13, 19652 move-wide/from16 v3, v222 move-wide/from16 v14, v263 or-long/2addr v3, v14 rem-double v210, v63, v45 move-wide/from16 v10, v45 neg-double v6, v10 and-int/lit8 v116, v188, 124 mul-double v214, v210, v98 or-int/lit8 v104, v104, 102 div-int v171, v144, v104 add-int v58, v179, v166 neg-int v9, v13 sub-double/2addr v6, v10 or-int/lit8 v13, v13, 8 rem-int/2addr v12, v13 int-to-byte v4, v12 move/from16 v14, v83 float-to-double v13, v14 and-int/2addr v8, v12 const-wide v0, 0x78779db6fc5fca8eL const-wide v12, 0x9c10764f816dbba8L or-long/2addr v12, v0 sub-long/2addr v12, v0 or-int/lit8 v137, v194, -15 neg-long v13, v12 or-int/lit8 v8, v8, 46 rem-int/2addr v9, v8 and-int/lit8 v8, v8, 24 mul-int v96, v179, v77 rem-double/2addr v10, v6 and-long/2addr v13, v0 double-to-int v3, v6 mul-int/lit16 v15, v4, 22410 shl-long/2addr v0, v3 xor-int/lit16 v12, v15, -5056 rem-double/2addr v6, v10 shr-int/lit8 v136, v180, 117 add-float v98, v182, v184 shr-int v244, v49, v169 sub-int/2addr v9, v8 ushr-int/2addr v8, v9 or-int/2addr v4, v15 xor-long v236, v159, v86 add-int/lit16 v3, v9, 22793 move/from16 v0, v34 neg-float v13, v0 const-wide v86, 8L or-long v224, v224, v86 rem-long v71, v149, v224 move-wide/from16 v15, v122 ushr-long/2addr v15, v12 sub-double/2addr v6, v10 or-int/2addr v8, v12 double-to-int v1, v10 or-int/lit8 v1, v1, 91 rem-int/2addr v3, v1 mul-double v233, v114, v10 sub-double v90, v45, v146 add-int/lit8 v255, v18, -18 mul-long v111, v128, v224 const-wide v222, 131072L or-long v124, v124, v222 div-long v146, v68, v124 sub-int v145, v95, v9 or-int v166, v151, v227 add-int/2addr v12, v9 div-float/2addr v13, v0 int-to-char v11, v9 and-int/lit16 v0, v11, 25479 float-to-double v15, v13 and-int/2addr v8, v11 float-to-long v14, v13 move-wide/from16 v2, v236 add-long/2addr v2, v14 and-int/2addr v11, v8 xor-int v119, v170, v247 mul-int/2addr v8, v12 shl-long/2addr v14, v0 move/from16 v10, v185 add-float/2addr v13, v10 float-to-long v11, v10 and-int/lit8 v249, v168, 85 ushr-long v26, v161, v151 or-int/lit8 v151, v151, 59 div-int v84, v169, v151 double-to-long v14, v6 or-int v170, v120, v167 or-int/lit8 v4, v4, 62 div-int/2addr v9, v4 or-long v246, v30, v102 shr-int/lit8 v86, v193, 81 rem-float v151, v81, v185 add-long/2addr v11, v2 shr-int/lit8 v69, v49, -29 add-double v6, v45, v210 move-wide/from16 v2, v114 sub-double/2addr v6, v2 and-int v208, v18, v110 neg-float v0, v13 sub-double/2addr v6, v2 const-wide v47, 524288L or-long v105, v105, v47 rem-long v239, v102, v105 add-double/2addr v6, v2 not-long v13, v14 mul-double v46, v2, v214 int-to-char v1, v1 not-int v3, v8 float-to-double v15, v10 xor-int/2addr v9, v1 long-to-float v7, v11 sub-long/2addr v11, v13 int-to-long v14, v9 add-long v180, v236, v146 const-wide v2, 0x2f875f456e409696L move-wide/from16 v10, v63 sub-double/2addr v2, v10 div-int/lit8 v229, v69, 12 const-wide v2, 0xac164a61d3ee336fL and-long/2addr v2, v14 div-float/2addr v0, v7 add-int/lit16 v15, v4, -2327 double-to-int v6, v10 shr-long v210, v124, v77 sub-float/2addr v0, v7 float-to-int v9, v7 const-wide v12, 0x70324b6b68bbf91aL and-long/2addr v12, v2 xor-int/lit8 v46, v137, 102 and-int/2addr v1, v9 sub-double v185, v63, v10 int-to-char v5, v6 ushr-long v203, v239, v199 sub-float/2addr v0, v7 div-float v95, v78, v83 const-wide v161, 67108864L or-long v2, v2, v161 div-long/2addr v12, v2 ushr-long/2addr v2, v9 shr-long v47, v210, v110 neg-float v6, v7 float-to-long v6, v7 float-to-int v3, v0 move/from16 v15, v0 sub-float/2addr v15, v0 long-to-int v10, v6 ushr-int/2addr v9, v8 mul-int/2addr v8, v5 mul-float v72, v248, v83 or-long/2addr v6, v12 const-wide v26, 1073741824L or-long v236, v236, v26 rem-long v242, v102, v236 add-int/lit16 v11, v1, 29157 move-wide/from16 v9, v269 double-to-float v3, v9 neg-double v2, v9 and-int v10, v250, v18 rem-int/lit16 v2, v1, 14765 or-long/2addr v6, v12 move-wide/from16 v10, v63 move-wide/from16 v1, v273 sub-double/2addr v1, v10 double-to-float v13, v10 and-long v227, v149, v222 move-wide/from16 v4, v159 mul-long/2addr v6, v4 shr-long v153, v180, v76 div-double v82, v63, v1 and-int/lit8 v176, v18, -44 or-int/lit16 v15, v8, 28453 mul-int/lit16 v15, v8, 13660 rsub-int v13, v8, -5906 or-long v168, v124, v222 xor-int v2, v199, v23 add-int v250, v134, v97 xor-int/2addr v8, v13 sub-double v244, v185, v63 ushr-int/lit8 v211, v113, 20 sub-long v44, v128, v203 double-to-float v9, v10 long-to-float v14, v6 move-wide/from16 v1, v10 sub-double/2addr v1, v10 and-int/lit8 v242, v165, -65 shr-long/2addr v6, v13 add-float/2addr v0, v9 sub-long v28, v180, v246 and-long/2addr v4, v6 mul-float/2addr v0, v14 shr-long/2addr v4, v15 double-to-long v15, v1 div-int/lit16 v4, v8, 7569 mul-int v184, v22, v107 const-wide v15, 8L or-long v6, v6, v15 rem-long v239, v146, v6 double-to-int v11, v10 xor-int/2addr v8, v11 sub-float/2addr v9, v14 xor-int/2addr v4, v11 neg-float v4, v9 neg-float v10, v9 mul-int v176, v65, v134 ushr-int/2addr v11, v8 int-to-float v12, v11 sub-int/2addr v13, v11 add-float v166, v12, v108 double-to-long v9, v1 sub-int v212, v242, v208 rsub-int/lit8 v25, v179, 123 add-float/2addr v14, v4 add-long v197, v105, v236 div-double v179, v114, v244 ushr-int/lit8 v191, v205, -128 int-to-float v8, v11 int-to-short v9, v11 and-int/lit8 v108, v187, 103 shr-int/lit8 v88, v127, 42 rem-int/lit8 v199, v212, 81 or-int/lit8 v221, v144, 11 mul-int/lit8 v168, v22, 20 xor-long v47, v189, v216 rem-int/lit8 v101, v133, -54 float-to-long v9, v12 const-wide v227, 8388608L or-long v9, v9, v227 div-long/2addr v15, v9 xor-int v228, v65, v116 sub-float v202, v34, v81 mul-float/2addr v0, v12 float-to-double v7, v14 float-to-long v0, v14 shr-long v48, v0, v163 rsub-int/lit8 v209, v94, 20 double-to-float v8, v7 const-wide v28, 1048576L or-long v28, v28, v28 rem-long v204, v30, v28 mul-float v218, v95, v34 add-int/lit8 v222, v219, -61 and-long v195, v236, v111 float-to-double v2, v8 mul-int/lit8 v91, v142, 107 sub-float/2addr v14, v8 div-int/lit8 v3, v25, -92 sub-int/2addr v13, v11 mul-int v141, v131, v18 mul-long v223, v44, v28 and-long/2addr v15, v0 sub-int v153, v18, v144 move-wide/from16 v2, v273 const-wide v1, 0xe4437191ebfa5feL const-wide v8, 0x4179fe9cf5ab0542L mul-double/2addr v1, v8 int-to-char v15, v13 sub-float v108, v135, v182 const-wide v10, 0x51a08482acaf8fbdL move-wide/from16 v3, v149 and-long/2addr v10, v3 add-int v8, v144, v184 xor-int/2addr v15, v8 or-long/2addr v10, v3 int-to-long v6, v13 or-int v208, v117, v142 add-float/2addr v12, v14 const-wide v10, 4096L or-long v105, v105, v10 rem-long v118, v111, v105 move-wide/from16 v12, v233 mul-double/2addr v1, v12 mul-double v174, v82, v12 and-int/lit16 v13, v8, 8857 add-int/lit8 v240, v145, 46 xor-int/lit16 v5, v15, -23935 shr-int/lit8 v120, v136, 65 move/from16 v2, v148 div-float/2addr v14, v2 move-wide/from16 v6, v271 move-wide/from16 v10, v233 rem-double/2addr v6, v10 double-to-int v6, v10 or-int/lit8 v6, v6, 124 div-int/2addr v13, v6 or-int/2addr v5, v13 or-int/lit8 v15, v15, 115 div-int/2addr v13, v15 move-wide/from16 v10, v60 move-wide/from16 v2, v269 div-double/2addr v2, v10 xor-int/lit8 v161, v165, -108 xor-int v148, v13, v58 mul-int v218, v131, v230 sub-int v98, v13, v191 shr-int v73, v163, v249 move-wide/from16 v5, v236 shr-long/2addr v5, v15 rem-double/2addr v10, v2 add-int/2addr v8, v13 rsub-int/lit8 v198, v104, 85 ushr-int/lit8 v107, v230, 25 const-wide v159, 32768L or-long v236, v236, v159 rem-long v12, v30, v236 or-int/lit8 v201, v212, -11 int-to-char v8, v8 or-int/lit8 v94, v69, 122 shl-int v194, v221, v165 shr-int/lit8 v231, v164, -44 or-int/2addr v15, v8 ushr-int/lit8 v148, v20, -62 mul-int v20, v170, v242 and-int/lit8 v250, v165, 24 mul-int/2addr v15, v8 const-wide v128, 67108864L or-long v236, v236, v128 rem-long v59, v48, v236 ushr-int/2addr v15, v8 xor-long/2addr v12, v5 sub-long/2addr v12, v5 neg-float v8, v14 add-long v177, v105, v102 rem-double/2addr v10, v2 ushr-long v186, v111, v168 move/from16 v4, v96 mul-int/2addr v4, v15 xor-int v187, v15, v117 xor-int v88, v173, v77 add-int/lit16 v12, v4, -6331 div-int/lit16 v3, v15, 17369 sub-int/2addr v15, v3 double-to-int v1, v10 div-float/2addr v14, v8 xor-int/lit16 v6, v3, -23609 int-to-char v3, v4 ushr-int/2addr v1, v15 ushr-int/lit8 v36, v120, -84 and-long v200, v102, v44 move-wide/from16 v5, v271 add-double/2addr v10, v5 shr-int/lit8 v194, v222, 11 xor-int v99, v25, v187 xor-int/2addr v1, v4 add-long v173, v204, v236 move-wide/from16 v8, v159 long-to-int v1, v8 shr-int v65, v212, v23 add-long v31, v177, v149 shl-long/2addr v8, v1 rem-float v42, v151, v34 move/from16 v15, v202 rem-float/2addr v15, v14 int-to-long v5, v3 add-long/2addr v8, v5 div-int/lit8 v45, v84, -15 mul-float/2addr v15, v14 xor-int/lit8 v145, v120, 19 ushr-int v95, v163, v213 float-to-long v14, v14 neg-long v1, v5 shr-long/2addr v1, v12 or-int/lit8 v4, v4, 63 rem-int/2addr v12, v4 mul-int v1, v75, v107 xor-long v203, v177, v223 shl-int/lit8 v44, v212, 59 double-to-float v13, v10 mul-long v225, v102, v177 div-double v6, v214, v63 move/from16 v15, v182 mul-float/2addr v15, v13 add-int/lit16 v14, v12, -14913 or-int/lit8 v208, v208, 32 div-int v152, v143, v208 rsub-int/lit8 v215, v207, 77 double-to-float v15, v10 rem-float v103, v42, v108 shl-int/lit8 v224, v101, -40 or-int/lit8 v14, v14, 105 div-int/2addr v1, v14 shl-int/lit8 v219, v184, -9 shl-int/lit8 v84, v36, -59 rsub-int v11, v3, 11277 const-wide v15, 0xf335b0f147731c34L xor-long/2addr v8, v15 float-to-int v4, v13 move/from16 v14, v78 sub-float/2addr v13, v14 shr-long v63, v200, v219 shl-int/lit8 v81, v241, 35 div-int/lit8 v187, v164, 18 and-int/lit8 v177, v94, -47 shr-int v78, v194, v131 add-float/2addr v14, v13 mul-int v243, v95, v45 int-to-double v14, v11 shr-int/lit8 v228, v137, -93 mul-long v48, v189, v105 or-int/lit8 v12, v12, 20 div-int v67, v215, v12 rem-double/2addr v6, v14 sub-double/2addr v14, v6 shr-int/2addr v1, v11 shr-long v103, v146, v242 xor-int/lit8 v86, v142, 118 int-to-double v14, v4 double-to-float v5, v14 int-to-float v0, v1 long-to-float v2, v8 move-wide/from16 v13, v59 and-long/2addr v13, v8 or-int/lit8 v11, v11, 81 div-int v157, v215, v11 ushr-long v204, v59, v199 rsub-int v2, v12, 7267 shr-long v51, v195, v170 long-to-double v12, v8 shr-long v223, v103, v18 add-int v30, v222, v208 mul-int/lit16 v5, v11, 29272 shr-int/2addr v5, v3 div-double v181, v6, v179 mul-double/2addr v6, v12 mul-float v239, v42, v248 long-to-float v13, v8 shl-int/2addr v4, v3 div-double v8, v181, v82 move-wide/from16 v12, v111 ushr-long/2addr v12, v3 move-wide/from16 v9, v195 and-long/2addr v12, v9 const-wide v236, 65536L or-long v146, v146, v236 rem-long v16, v103, v146 or-int/2addr v3, v11 or-int/lit8 v11, v11, 93 div-int/2addr v2, v11 mul-int/lit16 v4, v11, 17870 const-wide v12, 262144L or-long v149, v149, v12 rem-long v230, v223, v149 const-wide v63, 131072L or-long v12, v12, v63 div-long/2addr v9, v12 or-int/lit8 v2, v2, 82 div-int/2addr v4, v2 long-to-float v11, v12 double-to-long v1, v6 xor-int v249, v131, v98 move-wide/from16 v9, v179 div-double/2addr v6, v9 double-to-float v3, v9 and-long v99, v195, v216 shl-long/2addr v1, v4 const-wide v128, 32768L or-long v195, v195, v128 rem-long v32, v51, v195 div-float/2addr v0, v3 int-to-long v14, v4 rem-float v120, v38, v202 double-to-float v3, v9 int-to-float v15, v4 const-wide v32, 134217728L or-long v225, v225, v32 rem-long v76, v32, v225 double-to-int v7, v9 or-int/2addr v4, v7 mul-int/lit16 v7, v4, 9577 const-wide v111, 1024L or-long v12, v12, v111 rem-long/2addr v1, v12 mul-int v155, v207, v213 shr-long v144, v189, v107 sub-long v165, v223, v173 add-int v196, v113, v222 long-to-double v6, v12 ushr-int v198, v81, v250 or-int v4, v117, v196 add-int/lit8 v198, v255, -54 and-int/lit8 v25, v37, -7 shl-int/lit8 v108, v44, -93 float-to-int v5, v11 mul-int/lit8 v125, v143, 59 mul-float v35, v34, v239 mul-long/2addr v12, v1 rem-int/lit8 v214, v193, -6 rem-double/2addr v9, v6 neg-float v0, v3 const-wide v189, 8388608L or-long v1, v1, v189 div-long/2addr v12, v1 and-int v211, v75, v110 shl-long v15, v128, v155 sub-int/2addr v4, v5 not-int v6, v5 xor-int/2addr v4, v5 const-wide v105, 4L or-long v15, v15, v105 rem-long/2addr v1, v15 shr-long v212, v159, v133 long-to-double v11, v12 ushr-int v70, v46, v58 ushr-int v23, v131, v215 mul-int v108, v43, v96 rsub-int v0, v5, 2998 move/from16 v1, v260 sub-float/2addr v1, v3 ushr-long v88, v204, v113 shr-long/2addr v15, v5 ushr-int/lit8 v119, v188, -127 move-wide/from16 v3, v76 const-wide v146, 524288L or-long v15, v15, v146 rem-long/2addr v3, v15 sub-float v129, v72, v38 sub-float v114, v34, v1 int-to-char v15, v5 add-double v119, v82, v179 double-to-long v9, v11 const-wide v76, 1024L or-long v9, v9, v76 div-long/2addr v3, v9 xor-int v74, v155, v191 long-to-float v15, v3 or-int/2addr v0, v6 add-int/lit8 v96, v219, 36 xor-int/lit16 v6, v6, -7519 rsub-int/lit8 v196, v133, 0 xor-long/2addr v9, v3 rem-double v17, v11, v181 or-int v9, v40, v108 rem-double v227, v179, v11 or-int/lit8 v21, v91, -103 shl-int/2addr v9, v6 and-int/lit8 v19, v168, 104 div-int/lit16 v15, v0, -20 shr-long/2addr v3, v9 long-to-int v14, v3 sub-int/2addr v9, v15 neg-float v13, v1 int-to-char v14, v0 div-float/2addr v13, v1 sub-double v3, v82, v11 or-int/lit8 v9, v9, 7 div-int/2addr v0, v9 const-wide v10, 0x130df54afbecf90dL ushr-long/2addr v10, v6 add-float/2addr v1, v13 or-int/lit8 v193, v193, 79 rem-int v93, v167, v193 shl-long/2addr v10, v15 mul-float v151, v42, v151 neg-long v7, v10 long-to-double v12, v10 or-int/lit8 v9, v9, 112 rem-int/2addr v6, v9 mul-long/2addr v7, v10 neg-float v7, v1 float-to-int v11, v7 neg-float v10, v1 const-wide v159, 16384L or-long v216, v216, v159 rem-long v208, v111, v216 ushr-int/lit8 v123, v243, -93 shl-int/2addr v0, v9 or-long v34, v144, v88 shl-int v160, v55, v155 sub-float v72, v232, v248 add-double/2addr v3, v12 sub-int/2addr v11, v15 move-wide/from16 v1, v63 move-wide/from16 v1, v48 move-wide/from16 v2, v165 move-wide/from16 v4, v263 mul-long/2addr v4, v2 mul-long v247, v111, v144 ushr-int/2addr v15, v0 or-long v120, v223, v204 const-wide v34, 2048L or-long v200, v200, v34 rem-long v220, v2, v200 mul-int/2addr v11, v14 ushr-long v221, v165, v86 add-long/2addr v4, v2 move-wide/from16 v12, v244 move-wide/from16 v0, v244 sub-double/2addr v0, v12 neg-float v0, v10 add-float v116, v38, v114 or-int/lit16 v8, v15, -9421 int-to-byte v10, v6 xor-int/lit8 v11, v86, -83 add-double v203, v12, v233 double-to-long v7, v12 rem-int/lit16 v3, v11, -21487 shl-int/2addr v6, v11 double-to-long v9, v12 xor-int/2addr v3, v11 move/from16 v7, v232 mul-float/2addr v7, v0 rsub-int v2, v3, 21237 xor-int/lit16 v12, v15, 16944 long-to-double v6, v4 move/from16 v11, v116 sub-float/2addr v11, v0 float-to-long v13, v11 not-int v4, v3 xor-int/lit16 v0, v15, 3771 shr-long v145, v149, v117 sub-long v73, v63, v223 rsub-int/lit8 v59, v152, 116 shr-int v75, v142, v163 or-int/2addr v4, v3 double-to-int v10, v6 add-double v131, v17, v181 mul-int/lit8 v236, v95, 13 and-long v178, v105, v208 long-to-double v3, v13 double-to-float v1, v3 rem-double v75, v17, v6 mul-float v20, v38, v11 not-long v0, v13 sub-int v186, v91, v250 float-to-double v9, v11 neg-int v1, v15 or-int/lit16 v6, v2, 9867 mul-int v150, v188, v143 shr-int v62, v37, v240 div-float v131, v114, v38 move-wide/from16 v12, v200 move-wide/from16 v15, v12 or-long/2addr v12, v15 or-int/lit8 v107, v107, 60 div-int v183, v207, v107 neg-long v1, v15 int-to-short v15, v6 add-long/2addr v1, v12 sub-long/2addr v12, v1 const-wide v26, 32L or-long v12, v12, v26 div-long/2addr v1, v12 sub-int v171, v123, v96 move/from16 v2, v135 add-float/2addr v11, v2 move-wide/from16 v3, v216 add-long/2addr v12, v3 shr-int/lit8 v83, v97, 56 shr-int v180, v84, v243 sub-float/2addr v2, v11 sub-float v193, v239, v131 xor-int v255, v123, v69 mul-float v126, v232, v151 div-float/2addr v2, v11 add-float/2addr v2, v11 add-float/2addr v11, v2 double-to-int v12, v9 and-int/lit8 v183, v164, -100 or-int v36, v207, v69 add-int/lit16 v1, v12, -11966 and-int/lit16 v13, v6, 11452 or-int/lit8 v13, v13, 89 div-int/2addr v1, v13 add-int/lit16 v2, v15, 30867 int-to-double v7, v13 not-long v7, v3 sub-long/2addr v3, v7 or-long/2addr v7, v3 sub-int v87, v242, v153 mul-int/lit8 v100, v153, 97 const-wide v7, 4096L or-long v216, v216, v7 div-long v108, v200, v216 neg-int v3, v6 and-int/lit16 v7, v2, -21575 float-to-int v3, v11 move-wide/from16 v6, v263 long-to-float v5, v6 add-int/lit16 v4, v3, 20227 const-wide v178, 262144L or-long v63, v63, v178 rem-long v126, v73, v63 shl-long v235, v51, v81 or-int/lit8 v143, v143, 76 div-int v24, v240, v143 add-int v10, v95, v242 add-long v61, v111, v126 and-int/lit16 v15, v3, 31148 mul-long v160, v111, v126 xor-int/lit16 v15, v2, -10514 sub-long v13, v216, v178 add-float/2addr v11, v5 mul-long v186, v223, v120 div-int/lit16 v0, v12, 27635 xor-long/2addr v13, v6 ushr-int v130, v229, v125 ushr-long v47, v200, v15 sub-int/2addr v15, v3 mul-float v199, v202, v42 move-wide/from16 v15, v244 double-to-int v15, v15 or-int/lit8 v241, v43, 86 mul-float/2addr v5, v11 or-int/lit8 v36, v36, 34 div-int v2, v214, v36 not-int v3, v10 rem-float v53, v151, v239 const-wide v6, 2L or-long v212, v212, v6 rem-long v200, v200, v212 move-wide/from16 v8, v273 move-wide/from16 v3, v8 mul-double/2addr v8, v3 add-long v143, v28, v126 xor-int/2addr v1, v15 sub-double/2addr v8, v3 shl-int/lit8 v86, v58, 35 and-long/2addr v13, v6 or-int/lit8 v0, v0, 127 div-int/2addr v12, v0 or-int/lit8 v0, v0, 77 div-int/2addr v1, v0 sub-float/2addr v11, v5 neg-int v9, v12 move-wide/from16 v13, v181 rem-double/2addr v13, v3 rem-double v49, v181, v233 or-int/2addr v12, v0 or-int/lit8 v127, v98, -37 shl-int v95, v219, v113 shl-int/lit8 v216, v55, -123 add-double/2addr v3, v13 or-int/lit16 v7, v0, 19337 int-to-double v5, v9 add-int/lit16 v5, v0, 16813 add-float v143, v20, v11 or-int/lit16 v4, v1, 8325 div-double v138, v17, v233 ushr-int/lit8 v243, v137, 22 move-wide/from16 v1, v26 move-wide/from16 v10, v267 xor-long/2addr v10, v1 move/from16 v1, v193 float-to-int v2, v1 mul-float v120, v239, v135 add-float v35, v239, v193 move/from16 v14, v135 div-float/2addr v1, v14 mul-int v29, v168, v25 move-wide/from16 v9, v105 move-wide/from16 v5, v225 add-long/2addr v5, v9 rem-float/2addr v1, v14 int-to-double v11, v4 mul-float v171, v42, v193 move-wide/from16 v8, v227 mul-double/2addr v11, v8 double-to-float v7, v11 shl-int v13, v137, v0 rem-int/lit16 v1, v0, -2320 shl-int/2addr v1, v4 rem-int/lit16 v13, v0, -29812 or-int/lit8 v13, v13, 13 rem-int/2addr v15, v13 long-to-double v4, v5 add-double/2addr v11, v8 or-int/lit8 v196, v196, 80 div-int v24, v142, v196 div-int/lit16 v12, v1, 24134 move-wide/from16 v9, v108 long-to-float v4, v9 or-int/lit8 v163, v163, 104 div-int v25, v81, v163 xor-long v125, v111, v63 const-wide v2, 0x786dbcd2cb8c7bbcL or-long/2addr v2, v9 div-float/2addr v14, v7 mul-long/2addr v2, v9 int-to-float v8, v12 rem-int/lit16 v12, v1, -18957 const-wide v145, 1024L or-long v189, v189, v145 div-long v187, v223, v189 rem-double v54, v227, v181 rem-int/lit16 v9, v12, 1562 move-wide/from16 v11, v49 double-to-float v11, v11 sub-float/2addr v11, v14 ushr-int v103, v249, v107 or-int/lit16 v9, v1, 31373 xor-long v249, v26, v61 const-wide v12, 0xc3fe59e6900ffa70L const-wide v51, 64L or-long v2, v2, v51 div-long/2addr v12, v2 rsub-int v4, v0, 12404 int-to-char v11, v1 mul-int/2addr v4, v15 shr-int/lit8 v81, v1, -64 add-long v15, v61, v249 or-int/lit8 v44, v44, 34 rem-int v190, v23, v44 int-to-long v1, v9 add-float v64, v199, v131 int-to-char v14, v11 sub-float/2addr v8, v7 ushr-long/2addr v15, v9 mul-int/2addr v4, v0 or-int/lit16 v8, v14, -4224 shl-long/2addr v12, v4 xor-int/2addr v4, v9 move-wide/from16 v0, v203 move-wide/from16 v12, v203 rem-double/2addr v12, v0 sub-double/2addr v12, v0 xor-int/2addr v9, v14 int-to-float v3, v4 not-int v4, v9 move-wide/from16 v13, v267 xor-long/2addr v15, v13 div-int/lit16 v12, v11, 22921 xor-int/2addr v9, v12 or-int/lit8 v12, v12, 34 div-int/2addr v9, v12 mul-int/2addr v9, v8 rem-int/lit16 v13, v4, 23470 int-to-byte v8, v13 int-to-char v12, v11 or-int/lit8 v225, v44, 70 div-double v239, v244, v138 double-to-int v9, v0 or-int v254, v180, v8 xor-int v77, v93, v110 add-float/2addr v3, v7 rsub-int/lit8 v125, v123, 106 int-to-float v13, v4 or-int v69, v21, v198 mul-float/2addr v7, v13 long-to-int v4, v15 int-to-byte v14, v12 div-int/lit8 v58, v150, -31 ushr-long/2addr v15, v8 ushr-long/2addr v15, v4 move-wide/from16 v2, v51 const-wide v32, 262144L or-long v15, v15, v32 div-long/2addr v2, v15 int-to-short v15, v9 shl-int/2addr v14, v4 not-long v7, v2 and-int/lit16 v14, v14, -22073 sub-long/2addr v2, v7 or-long v210, v221, v249 int-to-short v12, v11 neg-float v6, v13 mul-double v29, v239, v244 ushr-int/2addr v11, v9 sub-int/2addr v11, v15 rem-float/2addr v13, v6 ushr-long/2addr v2, v9 const-wide v230, 524288L or-long v7, v7, v230 rem-long/2addr v2, v7 int-to-short v14, v12 ushr-int v166, v242, v14 mul-long/2addr v2, v7 add-int/2addr v11, v14 and-int/lit8 v240, v229, 1 div-double v184, v181, v138 shl-int/2addr v15, v14 or-int/lit8 v254, v103, 69 sub-long v115, v47, v61 or-int v188, v93, v36 add-int/lit8 v167, v21, 61 and-int/2addr v4, v12 not-long v5, v7 xor-long/2addr v7, v2 const-wide v247, 32768L or-long v247, v247, v247 rem-long v228, v212, v247 move-wide/from16 v11, v184 div-double/2addr v11, v0 mul-int/2addr v14, v9 mul-long/2addr v2, v5 int-to-double v13, v4 mul-int/lit8 v135, v40, -24 or-long v121, v228, v32 sub-int v144, v41, v65 int-to-char v3, v9 add-int v2, v150, v97 const-wide v160, 4L or-long v228, v228, v160 rem-long v25, v51, v228 ushr-long/2addr v5, v4 add-int v209, v2, v69 or-long v250, v73, v200 rem-float v151, v129, v42 mul-int/lit8 v11, v78, 81 int-to-double v0, v2 move/from16 v6, v35 move/from16 v7, v35 sub-float/2addr v6, v7 sub-double v147, v13, v138 xor-int v255, v240, v153 xor-int/2addr v3, v11 ushr-int v33, v93, v96 const-wide v15, 0xf944a9eb03c6299dL move-wide/from16 v8, v121 sub-long/2addr v15, v8 and-int/lit16 v12, v3, -7784 and-int/2addr v12, v11 sub-long v137, v8, v115 ushr-long v206, v221, v209 rem-int/lit8 v113, v196, 109 xor-int/lit16 v8, v11, -32527 rsub-int v6, v12, -24970 div-float v207, v131, v42 add-long v208, v228, v51 xor-int v119, v167, v78 xor-int/lit8 v12, v65, -5 div-double v177, v0, v49 not-int v15, v2 sub-long v19, v73, v228 const-wide v47, 16777216L or-long v247, v247, v47 rem-long v144, v121, v247 move-wide/from16 v4, v250 shr-long/2addr v4, v11 or-int/lit8 v23, v23, 94 div-int v190, v86, v23 div-float v143, v35, v171 not-int v10, v6 ushr-long v25, v61, v219 mul-double/2addr v13, v0 neg-double v11, v0 or-int/2addr v8, v15 or-int v92, v152, v130 rem-int/lit8 v222, v78, -1 or-int/lit8 v3, v3, 19 rem-int/2addr v2, v3 long-to-int v12, v4 div-float v39, v42, v38 const-wide v160, 16777216L or-long v115, v115, v160 div-long v253, v137, v115 const-wide v108, 8L or-long v173, v173, v108 div-long v176, v19, v173 double-to-float v9, v0 sub-double v142, v54, v203 move-wide/from16 v7, v253 const-wide v250, 4L or-long v7, v7, v250 rem-long/2addr v4, v7 rem-float v212, v114, v72 add-float v60, v212, v39 add-int/lit8 v210, v113, -64 const-wide v7, 32768L or-long v250, v250, v7 div-long v146, v51, v250 not-int v14, v6 double-to-int v1, v0 int-to-char v6, v14 or-int/lit16 v0, v1, 6311 int-to-float v9, v6 add-int/lit8 v169, v2, -87 ushr-int/lit8 v185, v103, 46 move/from16 v8, v60 sub-float/2addr v9, v8 ushr-long/2addr v4, v0 float-to-int v10, v8 sub-int/2addr v10, v14 mul-int/2addr v1, v12 and-int/lit16 v12, v14, -9269 ushr-int v71, v135, v15 sub-float v2, v193, v38 move-wide/from16 v4, v121 move-wide/from16 v3, v265 move-wide/from16 v10, v173 const-wide v144, 536870912L or-long v3, v3, v144 rem-long/2addr v10, v3 rem-float/2addr v8, v2 or-int/lit8 v218, v218, 84 rem-int v2, v37, v218 and-int v31, v14, v219 int-to-short v10, v14 add-double v138, v181, v142 add-long v234, v51, v47 shl-long v112, v253, v12 not-long v1, v3 and-long/2addr v3, v1 rem-float/2addr v8, v9 xor-long v179, v61, v51 xor-int/lit8 v32, v93, 76 and-int/2addr v0, v14 or-int v154, v33, v21 rem-double v224, v138, v54 shl-long v86, v173, v87 or-int/lit8 v92, v92, 77 div-int v63, v135, v92 rem-int/lit8 v220, v242, -11 or-int/lit8 v15, v15, 91 div-int/2addr v14, v15 long-to-float v8, v3 rem-float v49, v232, v72 add-double v188, v142, v17 or-long/2addr v1, v3 ushr-long v209, v73, v191 sub-long v10, v73, v144 or-int v234, v94, v119 move-wide/from16 v5, v271 move-wide/from16 v6, v75 move-wide/from16 v11, v17 rem-double/2addr v6, v11 int-to-long v3, v15 sub-double v52, v181, v138 or-long/2addr v3, v1 div-double v65, v54, v52 neg-long v12, v3 sub-float v206, v39, v60 xor-long v110, v25, v250 sub-float v72, v64, v151 double-to-float v0, v6 div-float/2addr v0, v8 rem-float/2addr v0, v8 long-to-int v15, v12 or-int/2addr v15, v14 sub-int/2addr v14, v15 ushr-long v37, v3, v133 int-to-char v10, v15 ushr-int/lit8 v63, v220, -90 rem-float/2addr v8, v9 add-int/2addr v10, v15 rsub-int/lit8 v153, v40, -103 mul-double v230, v65, v181 move-wide/from16 v3, v203 div-double/2addr v6, v3 rem-int/lit8 v46, v157, 42 div-double/2addr v6, v3 int-to-char v4, v10 shl-long/2addr v1, v4 xor-int/lit8 v98, v191, -96 add-double v175, v54, v138 and-int v167, v22, v155 not-int v4, v10 shr-int/2addr v4, v14 shl-int v119, v67, v59 add-int/2addr v15, v4 div-int/lit8 v127, v242, -36 const-wide v253, 16777216L or-long v12, v12, v253 div-long/2addr v1, v12 or-int/lit8 v15, v15, 7 div-int/2addr v10, v15 add-int v53, v24, v10 add-long/2addr v12, v1 and-long/2addr v1, v12 sub-int v44, v134, v83 sub-float v32, v64, v114 mul-int/2addr v15, v14 long-to-float v7, v1 sub-long/2addr v12, v1 const-wide v47, 33554432L or-long v12, v12, v47 rem-long/2addr v1, v12 div-float v79, v199, v129 div-int/lit16 v3, v14, 30993 not-long v15, v1 or-int/lit8 v97, v97, 20 rem-int v226, v46, v97 shl-int/2addr v10, v3 rem-float v199, v151, v120 mul-long/2addr v12, v15 mul-long/2addr v12, v1 const-wide v247, 8388608L or-long v110, v110, v247 div-long v72, v86, v110 move-wide/from16 v10, v142 double-to-float v9, v10 and-long v169, v228, v1 int-to-byte v1, v3 ushr-long v51, v250, v130 neg-float v9, v0 move-wide/from16 v11, v138 move-wide/from16 v13, v142 add-double/2addr v11, v13 div-float/2addr v9, v8 not-long v12, v15 rsub-int/lit8 v8, v226, 33 float-to-double v5, v0 shr-int/2addr v1, v4 and-long v216, v110, v37 mul-float v225, v131, v120 shr-long/2addr v12, v1 neg-long v5, v12 or-int/lit16 v1, v8, -14987 add-long v129, v105, v51 add-long/2addr v5, v12 float-to-double v9, v0 or-int/lit8 v3, v3, 107 div-int/2addr v4, v3 shr-int/2addr v1, v4 shr-int v17, v97, v135 ushr-int/2addr v8, v4 add-int/lit8 v39, v21, -38 add-int/lit8 v98, v155, -12 mul-int/lit16 v4, v4, 612 move-wide/from16 v2, v54 add-double/2addr v9, v2 double-to-long v9, v2 float-to-double v6, v0 const-wide v179, 16L or-long v129, v129, v179 rem-long v242, v9, v129 sub-double v33, v65, v54 rsub-int/lit8 v238, v166, -62 xor-int/lit16 v10, v4, 11885 xor-int v122, v133, v252 sub-long v127, v86, v108 neg-float v10, v0 xor-long/2addr v15, v12 ushr-int v51, v95, v117 mul-int/2addr v4, v8 mul-double/2addr v2, v6 rem-float/2addr v0, v10 and-int v93, v94, v152 ushr-long v61, v110, v39 int-to-short v14, v8 shl-long/2addr v15, v4 div-float v235, v60, v193 and-int v183, v119, v185 const-wide v247, 64L or-long v105, v105, v247 div-long v169, v209, v105 sub-long/2addr v15, v12 float-to-long v11, v0 mul-float v125, v206, v60 xor-int/lit8 v74, v215, 39 mul-float/2addr v0, v10 sub-int/2addr v14, v8 ushr-int v192, v40, v123 double-to-int v0, v2 add-int v116, v154, v153 add-long/2addr v15, v11 int-to-byte v8, v0 add-long/2addr v11, v15 mul-long/2addr v15, v11 div-int/lit16 v5, v1, 30551 shl-long v210, v25, v51 shl-int/lit8 v85, v94, 86 neg-long v15, v15 xor-int v38, v238, v69 div-int/lit16 v13, v1, 13725 rem-double v236, v2, v181 and-int/lit16 v15, v1, -24701 add-double v44, v230, v6 move-wide/from16 v9, v47 sub-long/2addr v9, v11 or-int/lit8 v220, v220, 26 rem-int v90, v67, v220 move/from16 v15, v79 move/from16 v6, v207 rem-float/2addr v6, v15 float-to-double v11, v15 xor-int/2addr v8, v5 shl-int/2addr v0, v1 ushr-int/2addr v1, v0 neg-float v12, v6 shr-int/2addr v0, v4 shl-long/2addr v9, v8 move-wide/from16 v0, v54 rem-double/2addr v0, v2 move-wide/from16 v13, v112 and-long/2addr v13, v9 double-to-long v0, v0 shl-long v104, v47, v83 xor-int v52, v215, v117 float-to-double v8, v12 mul-long v83, v108, v61 or-int/lit8 v79, v168, -80 ushr-long/2addr v13, v5 long-to-int v6, v13 neg-double v1, v2 move-wide/from16 v7, v265 mul-long/2addr v7, v13 or-long/2addr v7, v13 mul-int/lit16 v8, v6, 3984 float-to-double v8, v12 int-to-double v1, v4 add-double v172, v236, v230 div-float v198, v125, v131 move-wide/from16 v14, v72 move-wide/from16 v9, v61 mul-long/2addr v14, v9 mul-double v217, v138, v1 sub-long/2addr v9, v14 move/from16 v2, v232 sub-float/2addr v2, v12 and-int v252, v85, v53 not-long v12, v14 neg-int v1, v4 int-to-byte v8, v4 long-to-float v9, v14 or-int/2addr v5, v6 div-double v198, v181, v172 add-int v216, v154, v196 mul-long v73, v179, v83 rsub-int/lit8 v250, v103, 117 const-wide v104, 524288L or-long v12, v12, v104 div-long/2addr v14, v12 long-to-double v6, v12 xor-int v195, v93, v96 and-int/lit8 v153, v166, -102 move-wide/from16 v8, v172 add-double/2addr v8, v6 neg-float v11, v2 rsub-int v0, v4, -11767 rsub-int v9, v5, -18517 add-int/lit16 v0, v1, 31282 double-to-long v9, v6 or-long v67, v19, v210 sub-long/2addr v12, v14 int-to-long v12, v1 or-int/lit8 v244, v241, 34 const-wide v112, 4L or-long v9, v9, v112 div-long/2addr v12, v9 sub-float v196, v42, v193 rem-double v213, v29, v188 mul-int/lit16 v4, v0, -27013 mul-float/2addr v2, v11 rem-int/lit8 v201, v240, 54 int-to-short v12, v1 ushr-long/2addr v14, v0 div-float/2addr v2, v11 div-int/lit8 v141, v240, -95 neg-int v8, v5 rem-float/2addr v11, v2 move-wide/from16 v7, v271 move-wide/from16 v7, v273 move-wide/from16 v11, v271 rem-double/2addr v11, v7 or-int/2addr v0, v4 int-to-char v0, v5 div-double v182, v213, v75 xor-int/lit16 v2, v1, 15370 sub-double/2addr v7, v11 rem-int/lit8 v151, v4, 35 double-to-float v13, v7 sub-float v27, v13, v171 ushr-int/2addr v4, v0 rem-int/lit8 v32, v244, -128 shl-int v240, v94, v168 rem-double v171, v188, v236 rem-float v157, v207, v131 or-int/2addr v0, v4 and-long v225, v242, v25 ushr-long v195, v47, v103 double-to-long v13, v7 xor-int/lit8 v157, v117, 94 ushr-long/2addr v13, v0 add-int/2addr v5, v2 xor-long/2addr v9, v13 or-long v36, v247, v146 double-to-float v11, v7 const-wide v144, 8L or-long v13, v13, v144 rem-long/2addr v9, v13 move/from16 v1, v232 add-float/2addr v11, v1 neg-double v10, v7 move/from16 v1, v64 move/from16 v10, v262 rem-float/2addr v10, v1 move-wide/from16 v5, v225 const-wide v13, 8388608L or-long v13, v13, v13 div-long/2addr v5, v13 add-int/lit8 v98, v255, 85 mul-long v37, v169, v108 add-float v194, v114, v10 int-to-float v7, v0 xor-int v229, v69, v255 and-long v52, v179, v146 not-int v3, v0 shl-long v64, v129, v255 mul-double v79, v188, v54 int-to-short v7, v0 or-int/lit8 v119, v119, 66 div-int v13, v71, v119 ushr-long/2addr v5, v0 shl-int/2addr v0, v4 shl-int/lit8 v160, v150, 2 xor-long v203, v104, v146 or-int/lit8 v82, v167, 104 ushr-long/2addr v5, v3 or-int/lit16 v4, v13, -18337 and-int/2addr v0, v3 and-int/lit16 v0, v7, -1862 ushr-int v7, v133, v238 sub-int/2addr v13, v4 int-to-byte v9, v13 move-wide/from16 v6, v47 move-wide/from16 v10, v210 const-wide v37, 256L or-long v10, v10, v37 div-long/2addr v6, v10 or-int v65, v229, v160 shl-int v38, v4, v240 or-long/2addr v10, v6 add-int/2addr v3, v2 div-int/lit16 v4, v9, 20893 or-int/lit8 v4, v4, 86 rem-int/2addr v3, v4 add-int/2addr v4, v2 not-int v10, v4 shl-int v104, v63, v21 neg-float v8, v1 and-int/lit8 v182, v10, 45 sub-float/2addr v8, v1 move-wide/from16 v5, v179 move-wide/from16 v14, v129 xor-long/2addr v14, v5 long-to-int v9, v14 int-to-short v4, v13 xor-int v10, v40, v9 or-int/lit16 v11, v9, 27390 sub-int/2addr v4, v13 mul-int v139, v71, v150 neg-int v1, v9 mul-float v180, v60, v235 float-to-long v7, v8 shr-int v148, v215, v222 or-int/lit16 v6, v3, -22970 shr-long v207, v7, v38 add-double v32, v236, v142 int-to-short v2, v1 sub-long v189, v73, v207 move/from16 v5, v49 move/from16 v12, v114 add-float/2addr v12, v5 sub-float v100, v42, v120 div-int/lit16 v4, v4, 12876 div-int/lit8 v177, v166, -43 mul-long/2addr v7, v14 add-int/lit8 v143, v168, -30 mul-int/lit16 v7, v6, 29357 add-int/2addr v11, v10 rem-int/lit16 v5, v7, -13966 neg-float v3, v12 mul-float v185, v193, v27 const-wide v225, 2048L or-long v14, v14, v225 rem-long v130, v169, v14 mul-long v242, v108, v61 or-int v73, v167, v11 div-int/lit16 v3, v5, -30943 float-to-long v6, v12 shr-int/lit8 v243, v70, 103 move-wide/from16 v5, v29 move-wide/from16 v14, v79 sub-double/2addr v5, v14 or-int/lit8 v22, v22, 46 rem-int v106, v38, v22 rem-double/2addr v5, v14 move-wide/from16 v7, v67 move-wide/from16 v4, v130 sub-long/2addr v7, v4 move/from16 v6, v193 sub-float/2addr v6, v12 mul-int/2addr v10, v0 double-to-float v9, v14 and-int/2addr v13, v2 sub-float/2addr v9, v12 neg-double v2, v14 rsub-int/lit8 v70, v103, -24 long-to-double v2, v7 neg-float v1, v12 mul-long/2addr v7, v4 shr-int/2addr v13, v0 and-int/lit16 v7, v0, -15311 rem-float v182, v232, v206 rem-int/lit16 v3, v10, -11005 ushr-long v156, v110, v122 xor-int/lit16 v7, v11, -19736 sub-float v39, v202, v60 sub-int v130, v24, v234 and-long v44, v225, v112 neg-int v1, v11 ushr-int/lit8 v28, v21, 99 or-long v148, v207, v52 or-int/lit8 v250, v250, 49 div-int v66, v241, v250 int-to-float v5, v11 move-wide/from16 v15, v127 move-wide/from16 v14, v112 move-wide/from16 v5, v47 const-wide v203, 64L or-long v14, v14, v203 rem-long/2addr v5, v14 or-int/lit8 v10, v10, 56 rem-int/2addr v13, v10 add-int/lit8 v216, v66, -95 div-float/2addr v12, v9 mul-int/lit16 v6, v7, 13623 rsub-int v11, v7, -8598 rsub-int/lit8 v253, v119, 0 add-int v236, v96, v103 xor-int/lit8 v183, v65, -127 and-int/2addr v10, v3 move-wide/from16 v1, v54 double-to-long v0, v1 shr-long/2addr v14, v13 float-to-double v4, v9 add-long v95, v67, v110 or-long/2addr v14, v0 add-float v191, v120, v49 move-wide/from16 v7, v198 add-double/2addr v4, v7 xor-int v243, v70, v78 div-float v113, v120, v182 div-float/2addr v12, v9 or-int/lit16 v8, v11, -27080 int-to-double v10, v6 add-float v44, v235, v60 shl-long v222, v189, v116 or-int/lit8 v139, v63, 23 int-to-long v6, v3 xor-int/lit8 v217, v240, 13 and-int/lit8 v49, v117, -17 and-long v76, v52, v210 add-float/2addr v12, v9 rem-int/lit16 v13, v13, -8126 const-wide v67, 32768L or-long v148, v148, v67 rem-long v55, v61, v148 xor-int v197, v119, v78 shl-long/2addr v0, v13 and-long v33, v222, v203 add-int/lit16 v1, v8, -27825 or-int/lit8 v13, v13, 124 rem-int/2addr v8, v13 sub-long v109, v86, v207 sub-long v172, v33, v222 or-int/lit16 v15, v1, -14548 add-int/2addr v13, v8 move-wide/from16 v12, v6 and-long/2addr v12, v6 double-to-float v4, v10 ushr-int/2addr v15, v8 int-to-short v3, v1 neg-double v8, v10 or-long/2addr v12, v6 sub-long v149, v76, v12 and-int v164, v63, v117 double-to-int v13, v8 xor-long v202, v67, v222 sub-int/2addr v3, v15 shr-int/lit8 v233, v236, -5 add-double/2addr v10, v8 mul-float v96, v39, v60 div-double/2addr v10, v8 and-int v223, v240, v234 mul-int/lit16 v5, v1, -26845 shr-int v198, v154, v1 mul-int v79, v1, v229 add-float v0, v235, v114 and-int/2addr v3, v1 rsub-int/lit8 v132, v122, 42 sub-long v206, v210, v225 and-int/2addr v3, v5 and-int/2addr v5, v13 ushr-long/2addr v6, v15 move-wide/from16 v10, v144 and-long/2addr v6, v10 move-wide/from16 v2, v269 sub-double/2addr v2, v8 mul-double v168, v2, v213 or-int/lit8 v90, v90, 76 div-int v153, v160, v90 or-int/lit8 v5, v5, 66 div-int/2addr v15, v5 neg-int v13, v5 neg-long v10, v6 int-to-byte v6, v5 int-to-char v14, v6 ushr-long/2addr v10, v6 add-float v242, v125, v42 shr-long v220, v146, v167 neg-int v8, v1 neg-double v5, v2 float-to-double v10, v4 xor-int/lit16 v1, v8, -15758 const-wide v12, 0xef06ff2991744a7bL move-wide/from16 v12, v247 move-wide/from16 v2, v33 const-wide v33, 1073741824L or-long v12, v12, v33 rem-long/2addr v2, v12 and-int/lit16 v7, v8, -16904 xor-int/lit16 v2, v7, 7888 or-long v196, v33, v83 or-int/lit8 v27, v82, -3 int-to-double v0, v15 rsub-int v7, v7, -25478 not-int v3, v7 int-to-long v5, v15 rem-int/lit16 v4, v8, -12037 or-int/lit8 v4, v4, 79 rem-int v141, v192, v4 double-to-long v1, v0 rem-int/lit8 v202, v160, -57 or-long/2addr v1, v5 add-int v115, v104, v91 add-float v64, v113, v96 or-int v163, v91, v85 const-wide v196, 262144L or-long v12, v12, v196 div-long/2addr v1, v12 shl-int/lit8 v153, v65, 0 const-wide v25, 4L or-long v206, v206, v25 rem-long v101, v52, v206 xor-int/2addr v14, v4 sub-long/2addr v1, v5 double-to-int v10, v10 int-to-short v14, v7 move/from16 v10, v114 float-to-double v13, v10 const-wide v101, 16384L or-long v1, v1, v101 div-long/2addr v5, v1 neg-double v15, v13 const-wide v86, 67108864L or-long v5, v5, v86 div-long/2addr v1, v5 long-to-int v14, v1 int-to-short v13, v14 mul-int v112, v17, v41 neg-double v15, v15 and-long v108, v149, v144 xor-long v163, v196, v101 float-to-int v5, v10 double-to-long v5, v15 int-to-double v0, v7 const-wide v5, 8192L or-long v220, v220, v5 rem-long v153, v206, v220 shr-int/2addr v14, v8 rem-float v86, v44, v185 move/from16 v8, v182 sub-float/2addr v10, v8 mul-int/lit16 v4, v14, 31483 and-int/lit8 v154, v238, -45 rem-int/lit8 v24, v133, -56 double-to-float v13, v15 shr-int/2addr v4, v7 xor-long v238, v33, v206 mul-double/2addr v0, v15 add-float v78, v185, v96 double-to-long v1, v15 and-long/2addr v1, v5 sub-float v5, v182, v180 add-float/2addr v8, v10 shl-int v77, v70, v132 xor-int/lit16 v3, v4, 13855 move-wide/from16 v5, v263 and-long/2addr v5, v1 add-long v141, v33, v210 float-to-int v2, v10 shr-int/lit8 v86, v41, 115 and-int v90, v63, v79 add-float/2addr v10, v8 and-int/lit16 v4, v14, -10509 move-wide/from16 v5, v206 move-wide/from16 v0, v141 mul-long/2addr v5, v0 rem-float/2addr v13, v8 shr-int/2addr v3, v7 shr-int/lit8 v240, v155, 107 shr-long v253, v163, v223 const-wide v127, 16777216L or-long v5, v5, v127 rem-long/2addr v0, v5 int-to-float v14, v14 rsub-int v0, v2, -30834 move-wide/from16 v2, v267 const-wide v61, 64L or-long v5, v5, v61 div-long/2addr v2, v5 and-int/lit16 v4, v7, -23153 xor-long v196, v149, v172 or-int/lit8 v4, v4, 4 div-int/2addr v7, v4 sub-long v165, v25, v19 double-to-int v4, v15 and-int v26, v243, v107 double-to-int v10, v15 xor-long/2addr v2, v5 mul-float/2addr v14, v13 or-int/lit8 v7, v7, 87 rem-int/2addr v0, v7 ushr-int/2addr v0, v4 add-int/2addr v7, v0 div-int/lit8 v45, v234, 97 move-wide/from16 v9, v271 add-double/2addr v9, v15 add-long v191, v61, v52 neg-float v15, v13 int-to-double v2, v4 or-int v89, v82, v90 or-int/lit8 v26, v26, 27 rem-int v213, v45, v26 rem-float/2addr v14, v13 or-int/lit8 v114, v217, -107 or-int/2addr v0, v4 div-double v97, v29, v175 int-to-short v3, v4 add-float/2addr v14, v13 mul-int/lit16 v4, v7, -24119 and-int/2addr v4, v0 rem-double v70, v97, v29 int-to-short v14, v7 int-to-long v10, v0 shl-int v81, v123, v94 mul-long/2addr v5, v10 rem-float v154, v42, v64 ushr-long v130, v191, v82 add-double v8, v70, v97 shr-int/lit8 v112, v233, 125 and-int/2addr v4, v3 ushr-int v40, v233, v94 or-int/lit8 v14, v14, 88 div-int/2addr v7, v14 sub-float v10, v39, v242 mul-float v128, v194, v232 int-to-long v14, v0 sub-double v33, v29, v97 mul-double v205, v33, v8 ushr-int/lit8 v136, v59, -113 double-to-int v7, v8 sub-float v124, v44, v120 long-to-double v9, v14 move-wide/from16 v1, v33 sub-double/2addr v1, v9 int-to-byte v13, v7 sub-double/2addr v9, v1 and-int v137, v229, v243 or-int/lit8 v92, v92, 16 div-int v208, v13, v92 shl-int/2addr v0, v7 xor-int v241, v155, v177 const-wide v220, 512L or-long v19, v19, v220 div-long v121, v172, v19 div-double v8, v29, v33 add-long/2addr v14, v5 rem-int/lit16 v4, v3, 8700 long-to-float v12, v5 or-int/lit8 v4, v4, 37 div-int/2addr v0, v4 div-int/lit8 v156, v223, 26 shl-int/lit8 v93, v0, 30 ushr-long/2addr v14, v7 int-to-long v11, v13 long-to-float v11, v5 add-int/lit16 v15, v3, -23822 const-wide v144, 2097152L or-long v5, v5, v144 div-long v151, v238, v5 shr-long/2addr v5, v4 div-double/2addr v8, v1 mul-float v216, v182, v128 ushr-long/2addr v5, v3 int-to-long v11, v13 neg-double v8, v8 or-int/2addr v13, v0 or-int/2addr v4, v7 add-int/lit16 v12, v15, 30551 sub-long v171, v189, v165 add-double/2addr v8, v1 const-wide v19, 65536L or-long v189, v189, v19 div-long v131, v225, v189 move/from16 v10, v64 move/from16 v12, v44 div-float/2addr v12, v10 add-float v242, v235, v185 mul-long v7, v210, v247 mul-long v202, v171, v191 div-double v154, v29, v33 rem-int/lit16 v10, v3, -22479 ushr-int/2addr v0, v15 ushr-int v67, v4, v114 long-to-double v13, v5 int-to-float v2, v4 int-to-short v6, v10 div-float v105, v194, v64 not-long v6, v7 shr-long v10, v165, v156 xor-long v4, v131, v238 and-int/lit16 v12, v15, 2825 neg-float v15, v2 sub-float/2addr v15, v2 add-int/2addr v3, v0 sub-int v181, v107, v143 float-to-long v4, v15 int-to-long v7, v3 neg-long v10, v7 int-to-byte v1, v3 move-wide/from16 v0, v271 div-double/2addr v0, v13 add-float v114, v96, v124 or-int/lit8 v3, v3, 88 div-int/2addr v12, v3 xor-int/2addr v12, v3 add-int/2addr v12, v3 const-wide v55, 2L or-long v10, v10, v55 rem-long v200, v47, v10 shr-int/2addr v12, v3 add-int v142, v229, v183 ushr-int/lit8 v180, v115, -39 double-to-int v11, v0 and-int/lit16 v4, v12, -12186 rem-int/lit16 v0, v12, 22229 div-double v126, v13, v230 and-long v138, v144, v253 add-double v245, v126, v70 int-to-float v7, v0 add-long v197, v55, v171 ushr-int/2addr v12, v0 xor-int v54, v65, v63 move-wide/from16 v4, v52 long-to-float v15, v4 move-wide/from16 v13, v210 and-long/2addr v4, v13 sub-long/2addr v4, v13 rsub-int v1, v12, -21075 div-float v128, v235, v194 mul-long/2addr v4, v13 shr-long/2addr v13, v1 or-int/lit8 v12, v12, 5 rem-int/2addr v3, v12 and-long/2addr v13, v4 move-wide/from16 v6, v29 double-to-long v12, v6 ushr-int v31, v123, v93 ushr-long v155, v200, v233 mul-int/lit16 v8, v1, -13091 mul-int/lit8 v164, v112, 49 add-float v25, v114, v64 long-to-int v6, v4 and-int/lit16 v7, v1, -6591 neg-float v3, v2 xor-long/2addr v4, v12 shr-long v158, v191, v31 and-int/lit16 v1, v11, 8176 ushr-int v60, v66, v85 rem-int/lit8 v101, v23, -106 neg-long v13, v4 move-wide/from16 v12, v273 move-wide/from16 v15, v126 add-double/2addr v15, v12 move-wide/from16 v9, v4 const-wide v19, 8192L or-long v9, v9, v19 rem-long/2addr v4, v9 shl-int/lit8 v123, v117, 94 shr-int v181, v215, v233 neg-int v13, v0 int-to-float v15, v7 rem-double v109, v97, v70 float-to-long v10, v15 int-to-double v10, v7 and-long v17, v171, v200 xor-int/lit16 v3, v13, -32147 add-int v136, v101, v90 add-int v191, v164, v240 move-wide/from16 v1, v126 add-double/2addr v1, v10 not-int v14, v13 int-to-char v10, v0 and-int/lit8 v207, v89, 5 sub-int/2addr v14, v13 ushr-long/2addr v4, v0 rem-double v215, v70, v175 move-wide/from16 v15, v1 sub-double/2addr v15, v1 mul-int/2addr v7, v0 const-wide v144, 2L or-long v220, v220, v144 div-long v111, v47, v220 rsub-int/lit8 v73, v233, -14 const-wide v189, 65536L or-long v155, v155, v189 div-long v158, v83, v155 move/from16 v3, v120 float-to-double v12, v3 or-int/lit16 v11, v6, -16798 not-int v14, v14 move/from16 v5, v39 sub-float/2addr v5, v3 const-wide v210, 32L or-long v144, v144, v210 div-long v224, v197, v144 rem-float v178, v120, v78 add-long v114, v131, v155 add-double v90, v230, v109 neg-int v7, v8 mul-int v120, v77, v40 add-int/lit8 v96, v191, -43 int-to-char v7, v7 move-wide/from16 v1, v121 move-wide/from16 v0, v220 move-wide/from16 v13, v155 const-wide v171, 134217728L or-long v0, v0, v171 rem-long/2addr v13, v0 float-to-double v4, v3 or-int/lit8 v7, v7, 83 rem-int/2addr v6, v7 shr-long/2addr v13, v11 mul-float v116, v39, v25 sub-double/2addr v15, v4 int-to-short v0, v7 not-long v11, v13 long-to-float v8, v11 mul-int/2addr v7, v10 add-int/lit16 v14, v7, -24135 move-wide/from16 v6, v83 add-long/2addr v6, v11 xor-int/lit16 v3, v0, -2661 or-long/2addr v6, v11 mul-double v205, v109, v15 mul-double v47, v15, v126 rem-int/lit16 v11, v10, -5036 neg-double v15, v4 not-int v10, v3 rsub-int v2, v14, 4653 move/from16 v14, v194 mul-float/2addr v14, v8 move-wide/from16 v9, v265 sub-long/2addr v9, v6 const-wide v131, 8L or-long v6, v6, v131 rem-long/2addr v9, v6 xor-int/2addr v0, v11 mul-float v70, v113, v44 not-int v7, v11 rsub-int v11, v11, -26961 div-double v157, v15, v90 sub-int v51, v234, v255 const-wide v200, 524288L or-long v189, v189, v200 div-long v169, v144, v189 rsub-int v11, v2, 16124 move-wide/from16 v0, v171 xor-long/2addr v0, v9 xor-int v98, v134, v243 float-to-int v11, v14 xor-int/2addr v2, v7 div-double/2addr v15, v4 rem-float/2addr v8, v14 const-wide v171, 1073741824L or-long v0, v0, v171 div-long/2addr v9, v0 const-wide v171, 2L or-long v0, v0, v171 div-long/2addr v9, v0 const-wide v165, 65536L or-long v19, v19, v165 rem-long v10, v146, v19 sub-long/2addr v10, v0 neg-float v4, v14 div-float/2addr v14, v4 double-to-long v8, v15 ushr-long/2addr v0, v7 neg-int v9, v2 or-int/lit8 v2, v2, 13 div-int/2addr v3, v2 rsub-int v10, v2, -3427 div-int/lit8 v145, v51, 14 neg-float v1, v14 rem-float/2addr v1, v14 mul-long v9, v121, v55 long-to-int v14, v9 move-wide/from16 v4, v52 add-long/2addr v9, v4 mul-long/2addr v9, v4 rem-int/lit8 v203, v51, 11 int-to-float v8, v2 const-wide v55, 16L or-long v9, v9, v55 rem-long/2addr v4, v9 or-int/lit8 v2, v2, 11 rem-int/2addr v3, v2 mul-int v233, v40, v69 and-int/lit16 v10, v14, -6295 mul-float/2addr v1, v8 mul-long v148, v151, v146 shl-int/lit8 v230, v142, -51 shl-int v98, v119, v81 or-int/2addr v10, v14 shl-long v132, v220, v96 neg-float v2, v8 shr-long v154, v146, v103 add-int/2addr v10, v7 ushr-long/2addr v4, v14 div-int/lit8 v227, v145, -86 add-int/2addr v3, v7 or-int/2addr v14, v3 mul-int/lit8 v49, v21, 12 add-int/2addr v3, v14 mul-int/2addr v14, v7 sub-float v225, v193, v194 sub-float v99, v194, v2 or-int/lit8 v31, v23, -87 or-int/lit8 v177, v177, 86 div-int v66, v63, v177 int-to-float v12, v10 move-wide/from16 v12, v154 add-long/2addr v4, v12 div-float/2addr v1, v8 sub-int v218, v145, v94 move-wide/from16 v8, v126 div-double/2addr v8, v15 long-to-double v8, v12 mul-long/2addr v12, v4 add-long/2addr v12, v4 neg-int v1, v3 neg-int v5, v7 float-to-int v12, v2 add-int v249, v145, v69 rem-float v16, v178, v225 move-wide/from16 v3, v114 move-wide/from16 v3, v265 move-wide/from16 v11, v121 xor-long/2addr v11, v3 rem-double v34, v29, v90 shl-int/lit8 v162, v213, 36 shl-int/lit8 v140, v145, 110 ushr-int/lit8 v213, v46, 3 double-to-float v12, v8 invoke-static/range {v1}, LL/util;->print(I)V invoke-static/range {v2}, LL/util;->print(F)V invoke-static/range {v3 .. v4}, LL/util;->print(J)V invoke-static/range {v5}, LL/util;->print(I)V invoke-static/range {v7}, LL/util;->print(I)V invoke-static/range {v8 .. v9}, LL/util;->print(D)V invoke-static/range {v10}, LL/util;->print(I)V invoke-static/range {v12}, LL/util;->print(F)V invoke-static/range {v14}, LL/util;->print(I)V invoke-static/range {v16}, LL/util;->print(F)V invoke-static/range {v17 .. v18}, LL/util;->print(J)V invoke-static/range {v19 .. v20}, LL/util;->print(J)V invoke-static/range {v21}, LL/util;->print(I)V invoke-static/range {v22}, LL/util;->print(I)V invoke-static/range {v23}, LL/util;->print(I)V invoke-static/range {v24}, LL/util;->print(I)V invoke-static/range {v25}, LL/util;->print(F)V invoke-static/range {v26}, LL/util;->print(I)V invoke-static/range {v27}, LL/util;->print(I)V invoke-static/range {v28}, LL/util;->print(I)V invoke-static/range {v29 .. v30}, LL/util;->print(D)V invoke-static/range {v31}, LL/util;->print(I)V invoke-static/range {v34 .. v35}, LL/util;->print(D)V invoke-static/range {v38}, LL/util;->print(I)V invoke-static/range {v39}, LL/util;->print(F)V invoke-static/range {v40}, LL/util;->print(I)V invoke-static/range {v41}, LL/util;->print(I)V invoke-static/range {v42}, LL/util;->print(F)V invoke-static/range {v43}, LL/util;->print(I)V invoke-static/range {v44}, LL/util;->print(F)V invoke-static/range {v45}, LL/util;->print(I)V invoke-static/range {v46}, LL/util;->print(I)V invoke-static/range {v47 .. v48}, LL/util;->print(D)V invoke-static/range {v49}, LL/util;->print(I)V invoke-static/range {v51}, LL/util;->print(I)V invoke-static/range {v52 .. v53}, LL/util;->print(J)V invoke-static/range {v54}, LL/util;->print(I)V invoke-static/range {v55 .. v56}, LL/util;->print(J)V invoke-static/range {v58}, LL/util;->print(I)V invoke-static/range {v59}, LL/util;->print(I)V invoke-static/range {v60}, LL/util;->print(I)V invoke-static/range {v61 .. v62}, LL/util;->print(J)V invoke-static/range {v63}, LL/util;->print(I)V invoke-static/range {v64}, LL/util;->print(F)V invoke-static/range {v65}, LL/util;->print(I)V invoke-static/range {v66}, LL/util;->print(I)V invoke-static/range {v67}, LL/util;->print(I)V invoke-static/range {v69}, LL/util;->print(I)V invoke-static/range {v70}, LL/util;->print(F)V invoke-static/range {v73}, LL/util;->print(I)V invoke-static/range {v77}, LL/util;->print(I)V invoke-static/range {v78}, LL/util;->print(F)V invoke-static/range {v79}, LL/util;->print(I)V invoke-static/range {v81}, LL/util;->print(I)V invoke-static/range {v82}, LL/util;->print(I)V invoke-static/range {v83 .. v84}, LL/util;->print(J)V invoke-static/range {v85}, LL/util;->print(I)V invoke-static/range {v86}, LL/util;->print(I)V invoke-static/range {v89}, LL/util;->print(I)V invoke-static/range {v90 .. v91}, LL/util;->print(D)V invoke-static/range {v92}, LL/util;->print(I)V invoke-static/range {v93}, LL/util;->print(I)V invoke-static/range {v94}, LL/util;->print(I)V invoke-static/range {v96}, LL/util;->print(I)V invoke-static/range {v98}, LL/util;->print(I)V invoke-static/range {v99}, LL/util;->print(F)V invoke-static/range {v100}, LL/util;->print(F)V invoke-static/range {v101}, LL/util;->print(I)V invoke-static/range {v103}, LL/util;->print(I)V invoke-static/range {v104}, LL/util;->print(I)V invoke-static/range {v105}, LL/util;->print(F)V invoke-static/range {v106}, LL/util;->print(I)V invoke-static/range {v107}, LL/util;->print(I)V invoke-static/range {v109 .. v110}, LL/util;->print(D)V invoke-static/range {v111 .. v112}, LL/util;->print(J)V invoke-static/range {v113}, LL/util;->print(F)V invoke-static/range {v114 .. v115}, LL/util;->print(J)V invoke-static/range {v116}, LL/util;->print(F)V invoke-static/range {v117}, LL/util;->print(I)V invoke-static/range {v119}, LL/util;->print(I)V invoke-static/range {v120}, LL/util;->print(I)V invoke-static/range {v121 .. v122}, LL/util;->print(J)V invoke-static/range {v123}, LL/util;->print(I)V invoke-static/range {v124}, LL/util;->print(F)V invoke-static/range {v125}, LL/util;->print(F)V invoke-static/range {v126 .. v127}, LL/util;->print(D)V invoke-static/range {v128}, LL/util;->print(F)V invoke-static/range {v132 .. v133}, LL/util;->print(J)V invoke-static/range {v134}, LL/util;->print(I)V invoke-static/range {v135}, LL/util;->print(I)V invoke-static/range {v136}, LL/util;->print(I)V invoke-static/range {v137}, LL/util;->print(I)V invoke-static/range {v138 .. v139}, LL/util;->print(J)V invoke-static/range {v140}, LL/util;->print(I)V invoke-static/range {v142}, LL/util;->print(I)V invoke-static/range {v143}, LL/util;->print(I)V invoke-static/range {v145}, LL/util;->print(I)V invoke-static/range {v146 .. v147}, LL/util;->print(J)V invoke-static/range {v148 .. v149}, LL/util;->print(J)V invoke-static/range {v151 .. v152}, LL/util;->print(J)V invoke-static/range {v154 .. v155}, LL/util;->print(J)V invoke-static/range {v157 .. v158}, LL/util;->print(D)V invoke-static/range {v160}, LL/util;->print(I)V invoke-static/range {v162}, LL/util;->print(I)V invoke-static/range {v164}, LL/util;->print(I)V invoke-static/range {v165 .. v166}, LL/util;->print(J)V invoke-static/range {v167}, LL/util;->print(I)V invoke-static/range {v169 .. v170}, LL/util;->print(J)V invoke-static/range {v171 .. v172}, LL/util;->print(J)V invoke-static/range {v175 .. v176}, LL/util;->print(D)V invoke-static/range {v177}, LL/util;->print(I)V invoke-static/range {v178}, LL/util;->print(F)V invoke-static/range {v180}, LL/util;->print(I)V invoke-static/range {v181}, LL/util;->print(I)V invoke-static/range {v182}, LL/util;->print(F)V invoke-static/range {v183}, LL/util;->print(I)V invoke-static/range {v185}, LL/util;->print(F)V invoke-static/range {v189 .. v190}, LL/util;->print(J)V invoke-static/range {v191}, LL/util;->print(I)V invoke-static/range {v193}, LL/util;->print(F)V invoke-static/range {v194}, LL/util;->print(F)V invoke-static/range {v197 .. v198}, LL/util;->print(J)V invoke-static/range {v200 .. v201}, LL/util;->print(J)V invoke-static/range {v203}, LL/util;->print(I)V invoke-static/range {v205 .. v206}, LL/util;->print(D)V invoke-static/range {v207}, LL/util;->print(I)V invoke-static/range {v208}, LL/util;->print(I)V invoke-static/range {v210 .. v211}, LL/util;->print(J)V invoke-static/range {v212}, LL/util;->print(F)V invoke-static/range {v213}, LL/util;->print(I)V invoke-static/range {v215 .. v216}, LL/util;->print(D)V invoke-static/range {v217}, LL/util;->print(I)V invoke-static/range {v218}, LL/util;->print(I)V invoke-static/range {v219}, LL/util;->print(I)V invoke-static/range {v220 .. v221}, LL/util;->print(J)V invoke-static/range {v223}, LL/util;->print(I)V invoke-static/range {v225}, LL/util;->print(F)V invoke-static/range {v227}, LL/util;->print(I)V invoke-static/range {v229}, LL/util;->print(I)V invoke-static/range {v230}, LL/util;->print(I)V invoke-static/range {v232}, LL/util;->print(F)V invoke-static/range {v233}, LL/util;->print(I)V invoke-static/range {v234}, LL/util;->print(I)V invoke-static/range {v235}, LL/util;->print(F)V invoke-static/range {v236}, LL/util;->print(I)V invoke-static/range {v238 .. v239}, LL/util;->print(J)V invoke-static/range {v240}, LL/util;->print(I)V invoke-static/range {v241}, LL/util;->print(I)V invoke-static/range {v242}, LL/util;->print(F)V invoke-static/range {v243}, LL/util;->print(I)V invoke-static/range {v244}, LL/util;->print(I)V invoke-static/range {v245 .. v246}, LL/util;->print(D)V invoke-static/range {v247 .. v248}, LL/util;->print(J)V invoke-static/range {v249}, LL/util;->print(I)V invoke-static/range {v250}, LL/util;->print(I)V invoke-static/range {v252}, LL/util;->print(I)V invoke-static/range {v253 .. v254}, LL/util;->print(J)V invoke-static/range {v255}, LL/util;->print(I)V return-void ################################################################################ .end method .method static testMathOpsSub2(IIIFFFJJJDDDJ)V .locals 257 ################################################################################ move/from16 v0, v257 move/from16 v1, v258 move/from16 v2, v259 move/from16 v3, v260 move/from16 v4, v261 move/from16 v5, v262 move-wide/from16 v6, v263 move-wide/from16 v8, v265 move-wide/from16 v10, v267 move-wide/from16 v12, v269 move-wide/from16 v14, v271 move-wide/from16 v16, v273 move/from16 v19, v5 move/from16 v21, v2 move-wide/from16 v23, v269 move/from16 v25, v3 move/from16 v27, v0 move/from16 v29, v3 move-wide/from16 v31, v267 move/from16 v33, v3 move/from16 v35, v261 move-wide/from16 v37, v275 move-wide/from16 v39, v271 move/from16 v41, v1 move/from16 v43, v3 move-wide/from16 v45, v275 move-wide/from16 v47, v45 move-wide/from16 v49, v16 move/from16 v51, v2 move-wide/from16 v53, v23 move-wide/from16 v55, v271 move-wide/from16 v57, v37 move-wide/from16 v59, v10 move/from16 v61, v51 move-wide/from16 v63, v59 move-wide/from16 v65, v263 move/from16 v67, v19 move/from16 v69, v1 move/from16 v71, v261 move/from16 v73, v260 move-wide/from16 v75, v14 move-wide/from16 v77, v57 move/from16 v79, v0 move-wide/from16 v81, v63 move/from16 v83, v69 move/from16 v85, v3 move/from16 v87, v259 move-wide/from16 v89, v271 move/from16 v91, v262 move-wide/from16 v93, v57 move-wide/from16 v95, v265 move/from16 v97, v61 move/from16 v99, v85 move-wide/from16 v101, v12 move/from16 v103, v41 move-wide/from16 v105, v6 move-wide/from16 v107, v275 move-wide/from16 v109, v95 move/from16 v111, v29 move-wide/from16 v113, v47 move/from16 v115, v258 move-wide/from16 v117, v63 move-wide/from16 v119, v53 move/from16 v121, v25 move/from16 v123, v111 move/from16 v125, v257 move-wide/from16 v127, v16 move-wide/from16 v129, v45 move-wide/from16 v131, v10 move-wide/from16 v133, v119 move/from16 v135, v19 move/from16 v137, v51 move-wide/from16 v139, v101 move/from16 v141, v87 move/from16 v143, v87 move/from16 v145, v123 move-wide/from16 v147, v119 move-wide/from16 v149, v127 move/from16 v151, v99 move/from16 v153, v83 move/from16 v155, v73 move-wide/from16 v157, v10 move/from16 v159, v67 move/from16 v161, v115 move/from16 v163, v29 move-wide/from16 v165, v269 move-wide/from16 v167, v267 move/from16 v169, v111 move/from16 v171, v161 move-wide/from16 v173, v275 move/from16 v175, v137 move-wide/from16 v177, v93 move-wide/from16 v179, v47 move-wide/from16 v181, v109 move/from16 v183, v1 move-wide/from16 v185, v133 move/from16 v187, v83 move/from16 v189, v51 move-wide/from16 v191, v75 move/from16 v193, v21 move-wide/from16 v195, v49 move/from16 v197, v121 move-wide/from16 v199, v113 move-wide/from16 v201, v81 move/from16 v203, v111 move-wide/from16 v205, v105 move-wide/from16 v207, v167 move-wide/from16 v209, v93 move/from16 v211, v29 move-wide/from16 v213, v165 move-wide/from16 v215, v107 move-wide/from16 v217, v185 move/from16 v219, v257 move/from16 v221, v151 move/from16 v223, v79 move/from16 v225, v69 move/from16 v227, v29 move-wide/from16 v229, v177 move/from16 v231, v99 move/from16 v233, v159 move/from16 v235, v193 move-wide/from16 v237, v185 move/from16 v239, v125 move-wide/from16 v241, v23 move-wide/from16 v243, v215 move/from16 v245, v33 move-wide/from16 v247, v133 move/from16 v249, v4 move-wide/from16 v251, v49 move-wide/from16 v253, v117 move-wide/from16 v255, v263 rsub-int v7, v1, -5176 xor-int v162, v1, v193 float-to-double v11, v4 not-int v13, v1 sub-float/2addr v5, v3 rsub-int v15, v0, 105 or-long v13, v8, v57 add-long/2addr v13, v8 int-to-double v7, v1 rem-double/2addr v11, v7 rem-int/lit8 v46, v79, 91 float-to-int v4, v3 or-int/lit8 v187, v187, 86 div-int v206, v175, v187 const-wide v177, 131072L or-long v105, v105, v177 div-long v49, v177, v105 sub-double v135, v75, v139 long-to-double v15, v13 div-double/2addr v15, v11 and-int v188, v46, v69 mul-float v52, v99, v91 long-to-double v4, v13 shl-long/2addr v13, v1 xor-int/lit8 v84, v189, 107 shl-int/lit8 v161, v223, -21 and-long v72, v255, v57 shl-int/2addr v2, v0 shr-int/lit8 v140, v21, 122 not-long v9, v13 rem-float v236, v151, v163 xor-int/lit8 v62, v235, 65 const-wide v63, 262144L or-long v9, v9, v63 div-long/2addr v13, v9 neg-double v8, v4 float-to-int v2, v3 const-wide v207, 256L or-long v59, v59, v207 div-long v201, v113, v59 const-wide v13, 536870912L or-long v173, v173, v13 div-long v242, v117, v173 ushr-int/lit8 v128, v46, -32 rem-int/lit8 v176, v140, 73 neg-long v10, v13 shl-int/lit8 v44, v171, -40 mul-double/2addr v15, v8 xor-long/2addr v13, v10 add-long v240, v253, v167 mul-int/lit8 v68, v69, 47 div-int/lit8 v188, v206, 15 xor-long/2addr v13, v10 long-to-float v7, v13 and-long/2addr v13, v10 sub-float v244, v159, v245 mul-long v189, v117, v10 not-long v2, v13 ushr-int v147, v103, v84 div-float v126, v163, v244 and-int v217, v188, v84 or-int/lit8 v223, v223, 2 rem-int v12, v188, v223 neg-int v6, v12 const-wide v95, 4096L or-long v105, v105, v95 rem-long v233, v199, v105 rem-double v151, v213, v133 and-int v240, v143, v223 shl-int/2addr v1, v12 div-float v185, v227, v7 float-to-double v8, v7 const v13, 0xf11e9925 sub-float/2addr v13, v7 and-int/lit16 v1, v0, 6753 shl-long/2addr v2, v0 shl-int v205, v147, v44 sub-int/2addr v12, v6 or-int/lit16 v12, v12, 10565 shr-int v208, v162, v153 long-to-float v11, v2 xor-int/2addr v1, v0 add-float v192, v169, v159 sub-double/2addr v4, v8 ushr-int/lit8 v21, v79, -10 mul-int/2addr v12, v0 int-to-byte v7, v12 sub-int/2addr v7, v12 shr-int v241, v21, v46 rem-float/2addr v11, v13 rem-int/lit8 v19, v0, 48 sub-float v250, v111, v35 or-int/2addr v6, v1 long-to-float v6, v2 shl-int v188, v115, v161 rem-int/lit16 v8, v12, 6937 and-int/lit16 v9, v12, -11803 double-to-int v10, v4 or-long v101, v215, v59 sub-double v16, v213, v89 mul-int v143, v83, v240 add-float v126, v29, v99 int-to-char v10, v0 or-int/lit8 v183, v183, 29 rem-int v182, v21, v183 double-to-int v3, v4 or-int/lit8 v70, v182, 4 rem-float/2addr v6, v11 int-to-byte v10, v9 shl-int/2addr v1, v9 or-int/lit8 v240, v240, 3 div-int v63, v51, v240 and-int/lit16 v3, v10, -14477 mul-float v2, v221, v169 or-int/lit8 v51, v51, 123 div-int v177, v21, v51 ushr-int/lit8 v135, v205, -15 mul-int v33, v188, v61 int-to-long v7, v3 xor-int/2addr v10, v1 int-to-short v8, v0 or-int/lit8 v9, v9, 21 div-int/2addr v3, v9 sub-float/2addr v6, v2 rem-double v7, v237, v195 add-long v239, v72, v105 const-wide v7, 0x1438f9ea71fe64b8L const-wide v4, 0x7fa17e6a03ef31afL or-long/2addr v7, v4 long-to-int v11, v7 const-wide v5, 0x8f04e9d7bcd4489bL neg-double v0, v5 div-int/lit8 v185, v219, 127 float-to-double v6, v2 shl-int v36, v219, v140 div-double v149, v237, v39 const-wide v15, 0xffd1de2db1e5595cL long-to-double v4, v15 xor-long v77, v77, v201 rem-int/lit8 v140, v68, 119 ushr-int/lit8 v59, v223, 80 xor-int v15, v46, v103 const-wide v1, 0x1d90d2c6c29f0faeL shr-long/2addr v1, v12 ushr-long v143, v229, v9 const-wide v6, 0x40b48cf0c6037700L const-wide v101, 67108864L or-long v1, v1, v101 div-long/2addr v6, v1 shr-int/lit8 v42, v12, -111 or-long v189, v113, v253 add-double v101, v119, v75 and-long v194, v199, v72 int-to-char v6, v11 shr-long v112, v117, v208 or-int/lit8 v6, v6, 62 rem-int/2addr v10, v6 neg-long v8, v1 mul-int/2addr v12, v11 mul-int/2addr v6, v15 ushr-long v102, v179, v241 add-int v53, v241, v61 add-int/lit16 v4, v10, -30173 ushr-long/2addr v8, v4 const v5, 0x5779a673 rem-float/2addr v5, v13 float-to-long v10, v5 and-int/2addr v6, v3 neg-long v13, v1 and-int/2addr v4, v12 ushr-long v97, v167, v69 const-wide v0, 0xf8cf255ed1cef466L const-wide v1, 0xaf797e450ea848fbL const-wide v1, 0x6bf1899fb38e2508L const-wide v13, 0x62ebb40d80290253L rem-double/2addr v13, v1 neg-double v8, v13 and-int/lit8 v221, v235, -64 int-to-char v7, v3 xor-int/2addr v3, v7 or-int/lit8 v12, v12, 46 div-int v101, v235, v12 const-wide v2, 0xdfe35d6d41a2f73bL const-wide v95, 16L or-long v2, v2, v95 div-long/2addr v10, v2 and-int v55, v188, v187 const-wide v233, 1024L or-long v10, v10, v233 rem-long/2addr v2, v10 mul-double/2addr v13, v8 ushr-long/2addr v10, v4 or-int/lit8 v135, v135, 31 rem-int v98, v188, v135 or-int/lit8 v12, v12, 1 rem-int/2addr v6, v12 shl-long v127, v253, v15 xor-long/2addr v2, v10 div-float v250, v71, v192 or-int/lit8 v12, v12, 93 div-int v229, v70, v12 long-to-float v7, v10 mul-double v114, v119, v165 rem-float v89, v111, v52 int-to-long v12, v15 long-to-float v8, v12 div-float/2addr v7, v8 mul-float v160, v29, v35 neg-float v10, v5 shr-long v39, v253, v51 long-to-int v11, v2 and-int v207, v68, v188 mul-double v105, v247, v114 or-int/lit8 v10, v33, -31 mul-long/2addr v12, v2 const-wide v253, 4L or-long v12, v12, v253 div-long/2addr v2, v12 xor-int/lit8 v25, v217, -55 mul-double v246, v133, v251 shl-long/2addr v12, v11 long-to-double v12, v2 rem-float v97, v111, v121 xor-int/lit8 v154, v140, 30 shl-int/lit8 v225, v177, -74 shl-long/2addr v2, v10 add-int/2addr v11, v10 const-wide v13, 0xf23b3c2fca9d3441L const-wide v11, 0x296a58bf30f0becL add-double/2addr v11, v13 not-int v8, v4 shl-long/2addr v2, v15 shr-long/2addr v2, v8 const-wide v107, 536870912L or-long v209, v209, v107 rem-long v5, v112, v209 add-int/2addr v4, v15 xor-long/2addr v2, v5 const-wide v31, 268435456L or-long v5, v5, v31 div-long/2addr v2, v5 int-to-byte v11, v10 or-int v154, v70, v176 xor-int/2addr v11, v15 xor-int/2addr v11, v15 sub-int v55, v177, v175 sub-int/2addr v11, v15 and-int/2addr v15, v10 mul-int/lit8 v214, v125, 26 rsub-int v15, v15, -31190 xor-int/lit8 v49, v217, 71 add-int/lit8 v237, v41, -7 and-long v15, v5, v109 int-to-long v6, v10 xor-long v59, v253, v47 ushr-int/lit8 v248, v161, -54 div-double v37, v75, v149 shl-int/lit8 v81, v8, 2 xor-int/lit16 v7, v11, -4251 double-to-long v11, v13 sub-int/2addr v7, v10 and-int/lit16 v7, v8, 19742 and-long v79, v59, v2 sub-int/2addr v7, v4 long-to-double v11, v15 int-to-float v8, v10 add-long/2addr v2, v15 div-double/2addr v11, v13 xor-int/lit8 v137, v188, 66 or-int/lit8 v7, v7, 107 div-int/2addr v10, v7 sub-double v215, v11, v149 add-double v32, v37, v13 int-to-float v15, v10 shr-int/lit8 v84, v229, 7 shl-int v183, v188, v83 int-to-float v1, v7 const-wide v1, 0x8adbad58ac0c4317L const-wide v2, 0x167bb72e54c7adbbL const-wide v6, 0x39b7e5f5dea20fceL and-long/2addr v2, v6 const-wide v2, 8192L or-long v127, v127, v2 div-long v182, v131, v127 add-int/lit16 v8, v4, -8405 add-int/lit16 v7, v8, 28478 and-int/lit16 v9, v10, 21125 shr-int/2addr v10, v8 float-to-double v2, v15 add-long v6, v93, v102 const-wide v4, 0x607e77ab99113bb5L const-wide v157, 33554432L or-long v6, v6, v157 div-long/2addr v4, v6 neg-long v2, v6 neg-double v4, v13 add-int/2addr v8, v10 or-int/lit8 v237, v237, 30 div-int v236, v53, v237 int-to-byte v14, v8 div-double/2addr v11, v4 or-int/lit8 v10, v10, 97 div-int/2addr v14, v10 mul-long/2addr v2, v6 float-to-long v10, v15 neg-int v9, v8 or-int/lit8 v14, v14, 59 div-int/2addr v9, v14 or-int/lit8 v8, v8, 115 div-int/2addr v9, v8 and-int/lit16 v14, v14, -18604 const-wide v7, 0x95bd82f27d5712fbL mul-double/2addr v4, v7 ushr-long/2addr v10, v14 const v11, 0x8fb96d9b mul-float/2addr v15, v11 shr-int v147, v235, v53 ushr-int/2addr v9, v14 div-float v61, v245, v111 mul-int/2addr v14, v9 int-to-float v15, v9 const-wide v15, 0xfb751b91cdaba70eL const-wide v167, 2097152L or-long v2, v2, v167 rem-long/2addr v15, v2 long-to-double v7, v15 long-to-int v3, v2 int-to-char v11, v14 rem-double/2addr v7, v4 and-long v160, v189, v157 mul-long v39, v253, v107 add-float v147, v163, v121 sub-double v171, v165, v7 shl-long v135, v93, v9 shl-int/lit8 v182, v235, 55 mul-double v18, v4, v251 shl-int/lit8 v110, v214, -65 rsub-int/lit8 v180, v140, -82 move/from16 v13, v231 float-to-int v5, v13 and-int/2addr v9, v3 or-int/lit8 v146, v3, 87 shl-int/lit8 v64, v70, -28 rem-int/lit8 v2, v44, -60 const-wide v5, 0x8ad9485d849004ecL sub-double/2addr v7, v5 sub-double v169, v165, v23 sub-float v220, v227, v203 not-int v4, v2 int-to-long v8, v2 or-int/2addr v3, v14 rsub-int/lit8 v46, v2, -53 shl-int/2addr v2, v3 xor-int v65, v176, v193 mul-long/2addr v15, v8 double-to-int v11, v5 const-wide v143, 268435456L or-long v15, v15, v143 div-long/2addr v8, v15 and-int v246, v101, v65 and-long v104, v95, v239 double-to-float v11, v5 div-double v181, v171, v5 mul-long/2addr v15, v8 sub-long/2addr v15, v8 rsub-int/lit8 v156, v125, 21 double-to-int v10, v5 and-int v168, v185, v193 long-to-int v7, v15 sub-int/2addr v14, v2 add-double v43, v114, v133 and-int v39, v101, v62 shl-int/2addr v2, v3 shl-int/lit8 v69, v110, 19 not-long v8, v15 ushr-long/2addr v8, v2 and-long/2addr v15, v8 shl-int v173, v141, v248 xor-int/2addr v4, v2 or-int/lit8 v10, v10, 39 div-int/2addr v3, v10 add-long/2addr v8, v15 rsub-int v4, v7, -28889 or-long/2addr v8, v15 ushr-int/lit8 v17, v208, -46 int-to-char v7, v10 or-int/2addr v4, v7 mul-int/lit8 v255, v4, 23 add-float v59, v121, v91 or-long/2addr v8, v15 shl-long/2addr v8, v14 mul-int/lit8 v106, v81, -62 shl-int/lit8 v194, v180, 92 and-int/lit8 v5, v110, 13 rem-float v45, v155, v250 shl-int/2addr v14, v5 or-int/lit16 v11, v5, -5845 const-wide v0, 0x5bc9a8c110a5c7d9L double-to-long v2, v0 const-wide v143, 268435456L or-long v2, v2, v143 div-long/2addr v8, v2 int-to-char v5, v5 div-int/lit8 v145, v63, -87 or-int/lit8 v19, v214, -21 or-int/lit8 v65, v65, 83 div-int v109, v208, v65 div-double v239, v171, v43 add-int v48, v173, v219 add-int v241, v219, v162 add-double v33, v0, v75 div-int/lit16 v9, v11, 2509 const-wide v233, 1073741824L or-long v2, v2, v233 rem-long/2addr v15, v2 ushr-int v81, v140, v87 mul-double v243, v33, v181 shl-long/2addr v2, v9 ushr-int v139, v154, v187 mul-double v58, v149, v243 or-int/lit8 v73, v98, 82 move-wide/from16 v3, v269 div-double/2addr v0, v3 mul-int/2addr v11, v14 ushr-int v177, v7, v10 neg-long v0, v15 ushr-long/2addr v15, v14 shl-int v66, v84, v185 add-long v123, v112, v93 xor-int v113, v219, v141 mul-long v11, v107, v104 and-long/2addr v0, v15 int-to-short v8, v7 const-wide v6, 0x83d6ac584cac98f4L sub-double/2addr v3, v6 or-int/lit8 v146, v146, 62 div-int v19, v137, v146 shr-int/2addr v5, v9 const v7, 0xa778374e div-float/2addr v13, v7 int-to-char v11, v14 add-int v125, v205, v193 neg-int v2, v11 mul-int/2addr v8, v9 add-float/2addr v7, v13 xor-int v88, v146, v84 not-long v8, v15 double-to-int v8, v3 neg-float v9, v13 ushr-int v225, v187, v229 add-double v114, v37, v171 sub-int v121, v49, v137 mul-float v106, v29, v211 neg-long v6, v15 add-float v155, v35, v9 const-wide v8, 0xe5293897f4c25f94L mul-double/2addr v3, v8 const v8, 0x68154576 mul-float/2addr v8, v13 add-float/2addr v13, v8 const-wide v2, 0xeb3693acd6b84a0cL move-wide/from16 v4, v151 sub-double/2addr v4, v2 sub-long v198, v127, v104 sub-long/2addr v0, v15 xor-int/lit8 v131, v185, -7 mul-int v157, v221, v180 or-int/lit8 v11, v11, 125 rem-int/2addr v14, v11 add-double/2addr v4, v2 or-long/2addr v6, v15 add-int/lit8 v164, v83, -84 add-double v0, v43, v151 ushr-int/2addr v10, v14 sub-int/2addr v11, v10 rsub-int/lit8 v213, v49, -46 sub-long v135, v198, v104 div-double/2addr v4, v0 add-float/2addr v13, v8 add-long/2addr v15, v6 shr-int/2addr v11, v10 mul-int v159, v48, v217 int-to-byte v12, v14 xor-long/2addr v15, v6 mul-int/lit8 v5, v188, -85 or-long/2addr v15, v6 add-float v223, v29, v111 sub-int v208, v65, v180 add-long/2addr v15, v6 add-long/2addr v6, v15 sub-int v172, v146, v131 rem-float v170, v52, v91 add-double v162, v239, v0 float-to-double v2, v8 or-int v146, v66, v153 neg-long v9, v15 const-wide v129, 1048576L or-long v127, v127, v129 rem-long v1, v9, v127 ushr-long/2addr v9, v14 div-double v180, v43, v215 or-long/2addr v15, v6 add-int/lit8 v170, v42, -13 shr-long/2addr v15, v12 add-long v5, v107, v102 add-long/2addr v15, v5 add-int/2addr v11, v12 shl-long v27, v107, v65 mul-int/lit16 v5, v14, -15246 invoke-static/range {v1 .. v2}, LL/util;->print(J)V invoke-static/range {v5}, LL/util;->print(I)V invoke-static/range {v8}, LL/util;->print(F)V invoke-static/range {v9 .. v10}, LL/util;->print(J)V invoke-static/range {v11}, LL/util;->print(I)V invoke-static/range {v12}, LL/util;->print(I)V invoke-static/range {v13}, LL/util;->print(F)V invoke-static/range {v14}, LL/util;->print(I)V invoke-static/range {v15 .. v16}, LL/util;->print(J)V invoke-static/range {v17}, LL/util;->print(I)V invoke-static/range {v19}, LL/util;->print(I)V invoke-static/range {v21}, LL/util;->print(I)V invoke-static/range {v23 .. v24}, LL/util;->print(D)V invoke-static/range {v25}, LL/util;->print(I)V invoke-static/range {v27 .. v28}, LL/util;->print(J)V invoke-static/range {v29}, LL/util;->print(F)V invoke-static/range {v33 .. v34}, LL/util;->print(D)V invoke-static/range {v35}, LL/util;->print(F)V invoke-static/range {v36}, LL/util;->print(I)V invoke-static/range {v37 .. v38}, LL/util;->print(D)V invoke-static/range {v39}, LL/util;->print(I)V invoke-static/range {v41}, LL/util;->print(I)V invoke-static/range {v42}, LL/util;->print(I)V invoke-static/range {v43 .. v44}, LL/util;->print(D)V invoke-static/range {v45}, LL/util;->print(F)V invoke-static/range {v46}, LL/util;->print(I)V invoke-static/range {v48}, LL/util;->print(I)V invoke-static/range {v49}, LL/util;->print(I)V invoke-static/range {v51}, LL/util;->print(I)V invoke-static/range {v52}, LL/util;->print(F)V invoke-static/range {v53}, LL/util;->print(I)V invoke-static/range {v55}, LL/util;->print(I)V invoke-static/range {v58 .. v59}, LL/util;->print(D)V invoke-static/range {v61}, LL/util;->print(F)V invoke-static/range {v62}, LL/util;->print(I)V invoke-static/range {v63}, LL/util;->print(I)V invoke-static/range {v64}, LL/util;->print(I)V invoke-static/range {v65}, LL/util;->print(I)V invoke-static/range {v66}, LL/util;->print(I)V invoke-static/range {v67}, LL/util;->print(F)V invoke-static/range {v68}, LL/util;->print(I)V invoke-static/range {v69}, LL/util;->print(I)V invoke-static/range {v70}, LL/util;->print(I)V invoke-static/range {v71}, LL/util;->print(F)V invoke-static/range {v73}, LL/util;->print(I)V invoke-static/range {v75 .. v76}, LL/util;->print(D)V invoke-static/range {v77 .. v78}, LL/util;->print(J)V invoke-static/range {v79 .. v80}, LL/util;->print(J)V invoke-static/range {v81}, LL/util;->print(I)V invoke-static/range {v83}, LL/util;->print(I)V invoke-static/range {v84}, LL/util;->print(I)V invoke-static/range {v85}, LL/util;->print(F)V invoke-static/range {v87}, LL/util;->print(I)V invoke-static/range {v88}, LL/util;->print(I)V invoke-static/range {v89}, LL/util;->print(F)V invoke-static/range {v91}, LL/util;->print(F)V invoke-static/range {v93 .. v94}, LL/util;->print(J)V invoke-static/range {v95 .. v96}, LL/util;->print(J)V invoke-static/range {v97}, LL/util;->print(F)V invoke-static/range {v98}, LL/util;->print(I)V invoke-static/range {v99}, LL/util;->print(F)V invoke-static/range {v101}, LL/util;->print(I)V invoke-static/range {v102 .. v103}, LL/util;->print(J)V invoke-static/range {v104 .. v105}, LL/util;->print(J)V invoke-static/range {v106}, LL/util;->print(F)V invoke-static/range {v107 .. v108}, LL/util;->print(J)V invoke-static/range {v109}, LL/util;->print(I)V invoke-static/range {v110}, LL/util;->print(I)V invoke-static/range {v111}, LL/util;->print(F)V invoke-static/range {v113}, LL/util;->print(I)V invoke-static/range {v114 .. v115}, LL/util;->print(D)V invoke-static/range {v117 .. v118}, LL/util;->print(J)V invoke-static/range {v119 .. v120}, LL/util;->print(D)V invoke-static/range {v121}, LL/util;->print(I)V invoke-static/range {v123 .. v124}, LL/util;->print(J)V invoke-static/range {v125}, LL/util;->print(I)V invoke-static/range {v126}, LL/util;->print(F)V invoke-static/range {v127 .. v128}, LL/util;->print(J)V invoke-static/range {v129 .. v130}, LL/util;->print(J)V invoke-static/range {v131}, LL/util;->print(I)V invoke-static/range {v133 .. v134}, LL/util;->print(D)V invoke-static/range {v135 .. v136}, LL/util;->print(J)V invoke-static/range {v137}, LL/util;->print(I)V invoke-static/range {v139}, LL/util;->print(I)V invoke-static/range {v140}, LL/util;->print(I)V invoke-static/range {v141}, LL/util;->print(I)V invoke-static/range {v143 .. v144}, LL/util;->print(J)V invoke-static/range {v145}, LL/util;->print(I)V invoke-static/range {v146}, LL/util;->print(I)V invoke-static/range {v147}, LL/util;->print(F)V invoke-static/range {v149 .. v150}, LL/util;->print(D)V invoke-static/range {v151 .. v152}, LL/util;->print(D)V invoke-static/range {v153}, LL/util;->print(I)V invoke-static/range {v154}, LL/util;->print(I)V invoke-static/range {v155}, LL/util;->print(F)V invoke-static/range {v156}, LL/util;->print(I)V invoke-static/range {v157}, LL/util;->print(I)V invoke-static/range {v159}, LL/util;->print(I)V invoke-static/range {v160 .. v161}, LL/util;->print(J)V invoke-static/range {v162 .. v163}, LL/util;->print(D)V invoke-static/range {v164}, LL/util;->print(I)V invoke-static/range {v165 .. v166}, LL/util;->print(D)V invoke-static/range {v168}, LL/util;->print(I)V invoke-static/range {v170}, LL/util;->print(I)V invoke-static/range {v172}, LL/util;->print(I)V invoke-static/range {v173}, LL/util;->print(I)V invoke-static/range {v175}, LL/util;->print(I)V invoke-static/range {v176}, LL/util;->print(I)V invoke-static/range {v177}, LL/util;->print(I)V invoke-static/range {v180 .. v181}, LL/util;->print(D)V invoke-static/range {v185}, LL/util;->print(I)V invoke-static/range {v187}, LL/util;->print(I)V invoke-static/range {v188}, LL/util;->print(I)V invoke-static/range {v189 .. v190}, LL/util;->print(J)V invoke-static/range {v192}, LL/util;->print(F)V invoke-static/range {v193}, LL/util;->print(I)V invoke-static/range {v194}, LL/util;->print(I)V invoke-static/range {v197}, LL/util;->print(F)V invoke-static/range {v198 .. v199}, LL/util;->print(J)V invoke-static/range {v201 .. v202}, LL/util;->print(J)V invoke-static/range {v203}, LL/util;->print(F)V invoke-static/range {v205}, LL/util;->print(I)V invoke-static/range {v206}, LL/util;->print(I)V invoke-static/range {v207}, LL/util;->print(I)V invoke-static/range {v208}, LL/util;->print(I)V invoke-static/range {v209 .. v210}, LL/util;->print(J)V invoke-static/range {v211}, LL/util;->print(F)V invoke-static/range {v213}, LL/util;->print(I)V invoke-static/range {v214}, LL/util;->print(I)V invoke-static/range {v215 .. v216}, LL/util;->print(D)V invoke-static/range {v217}, LL/util;->print(I)V invoke-static/range {v219}, LL/util;->print(I)V invoke-static/range {v220}, LL/util;->print(F)V invoke-static/range {v221}, LL/util;->print(I)V invoke-static/range {v223}, LL/util;->print(F)V invoke-static/range {v225}, LL/util;->print(I)V invoke-static/range {v227}, LL/util;->print(F)V invoke-static/range {v229}, LL/util;->print(I)V invoke-static/range {v231}, LL/util;->print(F)V invoke-static/range {v233 .. v234}, LL/util;->print(J)V invoke-static/range {v235}, LL/util;->print(I)V invoke-static/range {v236}, LL/util;->print(I)V invoke-static/range {v237}, LL/util;->print(I)V invoke-static/range {v239 .. v240}, LL/util;->print(D)V invoke-static/range {v241}, LL/util;->print(I)V invoke-static/range {v243 .. v244}, LL/util;->print(D)V invoke-static/range {v245}, LL/util;->print(F)V invoke-static/range {v246}, LL/util;->print(I)V invoke-static/range {v248}, LL/util;->print(I)V invoke-static/range {v249}, LL/util;->print(F)V invoke-static/range {v250}, LL/util;->print(F)V invoke-static/range {v251 .. v252}, LL/util;->print(D)V invoke-static/range {v253 .. v254}, LL/util;->print(J)V invoke-static/range {v255}, LL/util;->print(I)V return-void ################################################################################ .end method .method static testMathOps()V .locals 71 const-string v0, "testMathOps" invoke-static {v0}, LL/util;->print(Ljava/lang/String;)V const v0, 0x2B474BF7 const v1, 0x14A58531 const v2, 0x72A3E46D const v3, 0xB7BEE1D const v4, 0x651618D1 const v5, 0x3D130D1C const-wide v6, 0x2CECF008F2BE4BD7L const-wide v8, 0x4E64550E594A49DFL const-wide v10, 0x7978EE668D7A0429L const-wide v12, 0x44884D0A131B5ED4L const-wide v14, 0x5D99F95670217C19L const-wide v16, 0x2812F2EE8A6C4DBL const-wide v18, 0x000000000000001L invoke-static/range {v0..v19}, La/a;->testMathOpsSub(IIIFFFJJJDDDJ)V invoke-static/range {v0..v19}, La/a;->testMathOpsSub2(IIIFFFJJJDDDJ)V const v0, 0xB16AEF39 const v1, 0x9BCFEAE4 const v2, 0xEE2666CA const v3, 0xAC87DEF8 const v4, 0x7021D78D const v5, 0x2CA7A611 const-wide v6, 0xEEC114876FBAB127L const-wide v8, 0xF00840148D88A4L const-wide v10, 0x1B8B994F7C805FEEL const-wide v12, 0xAAE2D6A105ECA0DEL const-wide v14, 0x20F2BCD3F7A8D5EEL const-wide v16, 0x82E1DA57B523421DL const-wide v18, 0x000000000000002L invoke-static/range {v0..v19}, La/a;->testMathOpsSub(IIIFFFJJJDDDJ)V invoke-static/range {v0..v19}, La/a;->testMathOpsSub2(IIIFFFJJJDDDJ)V return-void .end method .method public onCreate(Landroid/os/Bundle;)V .locals 12 move-object/from16 v10, p0 move-object/from16 v11, p1 invoke-super {v10, v11}, Landroid/app/Activity;->onCreate(Landroid/os/Bundle;)V invoke-virtual {v10}, La/a;->testMoves()V invoke-static {v10}, La/a;->testCatchAll(L_;)V invoke-static {v10}, La/a;->testMonitor(L_;)V invoke-static {}, La/a;->testCasts()V invoke-static {}, La/a;->testImplicitCasts()V invoke-static {}, La/a;->testMathOps()V return-void .end method
Smali
1
jbg168/enjarify
tests/test5/smali/a/a.smali
[ "Apache-2.0" ]
"""Constants for emulated_hue.""" HUE_SERIAL_NUMBER = "001788FFFE23BFC2" HUE_UUID = "2f402f80-da50-11e1-9b23-001788255acc" DOMAIN = "emulated_hue"
Python
1
liangleslie/core
homeassistant/components/emulated_hue/const.py
[ "Apache-2.0" ]
--TEST-- Error when setting session.save_handler to user via ini_set --EXTENSIONS-- session --SKIPIF-- <?php include('skipif.inc'); ?> --FILE-- <?php ini_set('session.save_handler', 'user'); ?> --EXPECTF-- Warning: ini_set(): Session save handler "user" cannot be set by ini_set() in %s on line %d
PHP
4
NathanFreeman/php-src
ext/session/tests/error_when_setting_save_handler_ini_setting_in_runtime.phpt
[ "PHP-3.01" ]
@ui Feature: UI - Random Number Generator Scenario: Successfully generate a random number Given we are expecting a random number between min and max And I am on random-number-generator page When I enter min 1 And I enter max 10 And I press Generate button Then I should receive a random number between 1 and 10
Cucumber
3
DBatOWL/tutorials
testing-modules/cucumber/src/test/resources/com/baeldung/cucumber/tags/acceptance/ui/random-number.feature
[ "MIT" ]
/*############################################################################## HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ############################################################################## */ import text; RULE WORD := Text.alpha+; RULE Article := 'the' | 'a' | 'an'; RULE NounPhraseComponent := (Word penalty(1)) | (article Text.ws Word); rs := RECORD STRING100 line; END; ds := DATASET([{'the fox or the hen'}], rs); Matches := RECORD match := MATCHTEXT(NounPhraseComponent); END; ret := PARSE(ds, line, NounPhraseComponent, Matches, BEST, MANY, NOCASE); output(ret);
ECL
3
miguelvazq/HPCC-Platform
ecl/regress/mluber8.ecl
[ "Apache-2.0" ]
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <RootNamespace>XMLBuilder</RootNamespace> <OutputType>Library</OutputType> <AssemblyName>XMLBuilder</AssemblyName> <AllowGlobals>False</AllowGlobals> <AllowLegacyOutParams>False</AllowLegacyOutParams> <AllowLegacyCreate>False</AllowLegacyCreate> <Configuration Condition="'$(Configuration)' == ''">Release</Configuration> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <ProjectGuid>{A9DD250E-069C-4E34-BECA-0F21709FD4DE}</ProjectGuid> <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> <DefineConstants>DEBUG;TRACE;</DefineConstants> <OutputPath>.\bin\Debug</OutputPath> <GeneratePDB>True</GeneratePDB> <GenerateMDB>True</GenerateMDB> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> <OutputPath>.\bin\Release</OutputPath> <EnableAsserts>False</EnableAsserts> </PropertyGroup> <ItemGroup> <Reference Include="mscorlib"> <HintPath>$(Framework)\mscorlib.dll</HintPath> </Reference> <Reference Include="System"> <HintPath>$(Framework)\System.dll</HintPath> </Reference> <Reference Include="System.Core"> <HintPath>$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll</HintPath> </Reference> <Reference Include="System.Data"> <HintPath>$(Framework)\System.Data.dll</HintPath> </Reference> <Reference Include="System.Data.DataSetExtensions"> <HintPath>$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll</HintPath> </Reference> <Reference Include="System.Drawing"> <HintPath>$(Framework)\System.Drawing.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="System.Windows.Forms"> <HintPath>$(Framework)\System.Windows.Forms.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="System.Xml"> <HintPath>$(Framework)\System.Xml.dll</HintPath> </Reference> <Reference Include="System.Xml.Linq"> <HintPath>$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Compile Include="Properties\AssemblyInfo.pas" /> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> </EmbeddedResource> <Compile Include="Properties\Resources.Designer.pas" /> <None Include="Properties\Settings.settings"> <Generator>SettingsSingleFileGenerator</Generator> </None> <Compile Include="Properties\Settings.Designer.pas" /> <Compile Include="XMLBuilder.pas" /> </ItemGroup> <Import Project="$(MSBuildExtensionsPath)\RemObjects Software\Oxygene\RemObjects.Oxygene.targets" /> </Project>
Oxygene
3
ararog/xmlbuilder
XMLBuilder/XMLBuilder.oxygene
[ "Apache-2.0" ]
export default /* glsl */` #ifdef USE_ALPHATEST uniform float alphaTest; #endif `;
JavaScript
2
brunnacroches/portifolio-brunna
node_modules/three/src/renderers/shaders/ShaderChunk/alphatest_pars_fragment.glsl.js
[ "Unlicense" ]
name = "tests"
Python
0
jorges119/localstack
tests/__init__.py
[ "Apache-2.0" ]
[attr\~=x] {}
CSS
1
mengxy/swc
crates/swc_css_parser/tests/fixture/esbuild/misc/sI7kJsMAHm4ehV5Ec9i9hg/input.css
[ "Apache-2.0" ]
(define defstruct Name Attributes -> (let Selectors (selectors Name Attributes) Constructor (constructor Name Attributes) Recognisor (recognisor Name) Name)) (define selectors Name Attributes -> (map (/. A (selector Name A)) Attributes)) (define selector Name Attribute -> (let SelectorName (concat Name (concat - Attribute)) (eval [define SelectorName (protect Structure) -> [let (protect LookUp) [assoc Attribute (protect Structure)] [if [empty? (protect LookUp)] [error "~A is not an attribute of ~A.~%" Attribute Name] [tail (protect LookUp)]]]]))) (define constructor Name Attributes -> (let ConstructorName (concat make- Name) Parameters (params Attributes) (eval [define ConstructorName | (append Parameters [-> [cons [cons structure Name] (make-association-list Attributes Parameters)]])]))) (define params [] -> [] [_ | Attributes] -> [(gensym (protect X)) | (params Attributes)]) (define make-association-list [] [] -> [] [A | As] [P | Ps] -> [cons [cons A P] (make-association-list As Ps)]) (define recognisor Name -> (let RecognisorName (concat Name ?) (eval [define RecognisorName [cons [cons structure Name] _] -> true _ -> false])))
Shen
3
WilliamStone/Shen.java
shen/test/structures-untyped.shen
[ "Unlicense" ]
#![feature(intrinsics)] extern "rust-intrinsic" { fn atomic_foo(); //~ ERROR E0092 } fn main() { }
Rust
2
Eric-Arellano/rust
src/test/ui/error-codes/E0092.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
module ModuleWithDeadCode (class FooBar, bar, exportThatUsesBar, foo, results) where import Prelude class FooBar a where foo :: a bar :: a -> Boolean instance intFooBar :: FooBar Int where foo = 0 bar _ = true exportThatUsesBar :: forall a. (FooBar a) => a -> Boolean exportThatUsesBar = bar foreign import results :: { fooIsNotEliminated :: Boolean, barIsExported :: Boolean, barIsNotEliminated :: Boolean, exportThatUsesBarIsExported :: Boolean }
PureScript
3
andys8/purescript
tests/purs/bundle/3551/ModuleWithDeadCode.purs
[ "BSD-3-Clause" ]
200 5 0 1 11 3 4 177 9 7 2 8 10 1 5 6 [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] [0] 1 1 3 37 141 137 [-3] [15] [6] 2 1 5 169 178 41 22 156 [23] [22] [23] [9] [16] 3 1 3 187 155 18 [3] [3] [-1] 4 1 3 93 12 191 [4] [7] [-7] 5 1 1 134 [0] 6 1 6 67 200 102 36 94 57 [0] [3] [3] [1] [0] [1] 7 1 5 98 82 191 12 130 [-5] [8] [0] [3] [14] 8 1 5 163 59 188 42 159 [0] [-2] [3] [-2] [0] 9 1 4 87 26 91 97 [8] [6] [-3] [25] 10 1 3 47 161 165 [13] [12] [18] 11 1 2 112 182 [2] [20] 12 1 9 108 4 86 191 69 45 16 7 106 [7] [-192] [-216] [9] [0] [-295] [4] [-246] [-407] 13 1 8 165 97 142 180 81 146 117 91 [16] [3] [8] [12] [7] [17] [-5] [23] 14 1 3 142 29 13 [-3] [-1] [6] 15 1 3 36 57 131 [2] [2] [-187] 16 1 4 191 138 69 108 [-5] [-378] [-265] [9] 17 1 5 149 81 85 196 97 [1] [0] [1] [0] [1] 18 1 4 180 146 196 111 [4] [2] [5] [1] 19 1 2 143 139 [9] [-3] 20 1 5 61 172 190 108 144 [10] [15] [6] [8] [-1] 21 1 5 126 39 62 40 59 [-1] [6] [4] [6] [3] 22 1 10 88 65 45 61 30 174 138 57 78 103 [-360] [2] [-172] [-290] [0] [-247] [0] [0] [-304] [3] 23 1 2 41 78 [-373] [0] 24 1 9 187 64 10 125 126 31 54 59 158 [0] [27] [-821] [-808] [-7] [-824] [-567] [-786] [26] 25 1 5 66 197 192 70 176 [11] [9] [-1] [-4] [4] 26 1 5 141 126 147 111 40 [2] [3] [-872] [-2] [3] 27 1 4 58 123 103 129 [4] [3] [1] [4] 28 1 3 148 111 126 [3] [-505] [1] 29 1 4 165 189 91 146 [5] [0] [4] [2] 30 1 2 57 140 [-6] [-2] 31 1 1 18 [2] 32 1 3 123 106 61 [2] [0] [-268] 33 1 7 187 129 73 196 84 71 54 [19] [-2] [20] [11] [-4] [-132] [11] 34 1 3 118 10 171 [0] [-515] [1] 35 1 3 116 50 57 [3] [2] [3] 36 1 6 58 190 103 116 50 37 [-193] [1] [1] [-1] [4] [6] 37 1 3 50 77 123 [18] [-2] [19] 38 1 3 188 128 113 [5] [0] [1] 39 1 7 117 142 14 28 59 11 187 [0] [-374] [-803] [13] [-505] [-753] [-3] 40 1 8 141 119 97 189 200 146 94 49 [2] [0] [2] [0] [1] [1] [0] [0] 41 1 3 156 72 178 [3] [2] [0] 42 1 4 142 14 187 117 [2] [3] [3] [1] 43 1 3 47 163 194 [2] [1] [1] 44 1 10 101 32 45 106 123 181 61 132 166 178 [0] [8] [0] [2] [6] [6] [5] [3] [5] [5] 45 1 3 86 72 130 [-194] [13] [-2] 46 1 1 26 [0] 47 1 7 24 81 80 54 163 158 75 [-1] [1] [-1] [0] [3] [1] [5] 48 1 6 89 197 170 109 66 79 [14] [-6] [-2] [26] [25] [12] 49 1 8 133 54 146 153 105 97 91 147 [26] [-7] [16] [0] [19] [-4] [20] [-671] 50 1 7 27 116 37 190 35 129 123 [-181] [-1] [-148] [1] [-206] [0] [0] 51 1 3 170 89 157 [9] [10] [2] 52 1 5 88 78 190 151 32 [21] [-305] [10] [-5] [15] 53 1 4 200 160 95 165 [-9] [9] [-1] [3] 54 1 6 145 10 91 163 180 142 [6] [-532] [-5] [-694] [6] [-859] 55 1 1 193 [0] 56 1 2 43 85 [21] [5] 57 1 4 50 123 190 131 [-123] [1] [1] [-193] 58 1 7 190 129 131 37 135 57 183 [21] [11] [21] [8] [9] [7] [15] 59 1 6 153 49 145 95 24 122 [30] [7] [17] [-5] [6] [8] 60 1 6 175 73 159 54 122 153 [7] [-170] [10] [0] [-3] [0] 61 1 5 106 130 144 103 45 [19] [16] [9] [17] [18] 62 1 3 146 59 148 [-1] [0] [3] 63 1 4 26 68 112 50 [25] [-9] [27] [-1] 64 1 7 97 187 91 148 168 28 126 [-1] [5] [6] [-1] [13] [1] [-1] 65 1 5 166 88 103 129 130 [-6] [-159] [23] [-6] [0] 66 1 2 197 176 [0] [0] 67 1 9 1 123 77 127 159 6 135 160 36 [-187] [22] [22] [-2] [-153] [-169] [1] [-145] [-1] 68 1 3 53 194 27 [1] [5] [0] 69 1 5 16 191 4 108 106 [-4] [7] [-340] [0] [-206] 70 1 1 192 [19] 71 1 2 74 73 [9] [6] 72 1 3 16 88 181 [3] [1] [3] 73 1 3 63 196 33 [23] [16] [-87] 74 1 3 180 58 33 [5] [0] [7] 75 1 3 119 194 200 [21] [1] [-8] 76 1 4 196 136 40 95 [-7] [20] [24] [29] 77 1 5 35 129 50 135 116 [20] [25] [8] [-140] [2] 78 1 8 181 61 23 72 30 185 22 88 [0] [3] [-239] [6] [1] [-3] [5] [11] 79 1 2 89 100 [6] [0] 80 1 2 167 92 [0] [3] 81 1 5 180 9 54 97 59 [0] [-471] [-1] [7] [-565] 82 1 6 181 16 124 130 144 107 [6] [18] [9] [-2] [5] [-4] 83 1 7 39 165 149 168 158 143 34 [-1] [9] [3] [0] [2] [3] [12] 84 1 8 175 94 159 54 96 113 183 62 [3] [-2] [-170] [14] [-3] [13] [-1] [-5] 85 1 5 125 187 111 133 119 [6] [0] [9] [11] [1] 86 1 8 106 169 199 44 144 166 22 178 [3] [-294] [3] [0] [0] [2] [2] [3] 87 1 4 90 89 48 176 [1] [30] [-1] [26] 88 1 5 69 108 61 32 193 [11] [4] [-255] [4] [11] 89 1 3 66 25 192 [16] [22] [15] 90 1 3 157 184 179 [5] [6] [4] 91 1 5 187 126 28 180 121 [11] [-338] [-380] [-794] [-792] 92 1 3 83 117 39 [0] [21] [16] 93 1 3 16 69 12 [1] [2] [0] 94 1 3 105 38 188 [21] [19] [14] 95 1 3 94 128 141 [8] [-3] [-1] 96 1 3 105 95 188 [12] [-1] [4] 97 1 4 158 187 177 148 [1] [1] [-694] [1] 98 1 3 55 193 130 [17] [23] [1] 99 1 4 177 57 3 97 [-2] [-3] [-716] [22] 100 1 3 51 70 197 [9] [4] [12] 101 1 4 199 116 61 104 [6] [17] [2] [-4] 102 1 3 76 150 75 [8] [0] [0] 103 1 6 129 116 37 57 190 123 [-147] [2] [-146] [11] [7] [5] 104 1 5 178 132 199 195 30 [10] [3] [29] [9] [13] 105 1 2 141 38 [9] [0] 106 1 7 130 22 104 12 195 138 107 [-8] [7] [23] [24] [26] [-3] [11] 107 1 3 55 193 181 [8] [21] [19] 108 1 5 172 20 191 201 16 [-319] [-432] [2] [5] [-336] 109 1 5 89 197 25 70 176 [12] [9] [8] [1] [-2] 110 1 2 125 143 [10] [12] 111 1 5 99 126 31 28 40 [-833] [-1] [-489] [15] [-437] 112 1 4 200 194 75 119 [1] [2] [12] [10] 113 1 3 128 188 141 [14] [5] [4] 114 1 6 158 123 173 103 15 117 [-4] [0] [-4] [0] [4] [-2] 115 1 3 194 76 117 [15] [23] [5] 116 1 6 35 201 57 190 103 132 [-127] [9] [-85] [-3] [-179] [-102] 117 1 6 24 64 148 91 158 133 [9] [-3] [-1] [24] [5] [-466] 118 1 7 111 120 180 146 143 85 163 [18] [5] [1] [17] [14] [22] [6] 119 1 2 200 194 [2] [7] 120 1 3 142 162 196 [-4] [8] [13] 121 1 5 196 163 117 180 83 [0] [7] [5] [-2] [-422] 122 1 3 133 46 148 [24] [11] [20] 123 1 6 116 129 57 103 201 190 [-1] [-205] [-206] [-201] [7] [-2] 124 1 1 138 [-3] 125 1 4 187 148 92 121 [-3] [5] [-380] [10] 126 1 5 148 187 196 168 91 [2] [3] [2] [-816] [0] 127 1 8 33 8 57 6 27 159 116 84 [-200] [-210] [3] [-74] [0] [-113] [6] [-141] 128 1 1 188 [-1] 129 1 6 30 190 50 103 116 123 [-135] [8] [-178] [10] [7] [1] 130 1 2 107 144 [15] [-4] 131 1 6 135 35 190 123 183 37 [1] [1] [13] [-1] [2] [1] 132 1 7 116 178 30 195 123 57 190 [15] [-2] [0] [10] [15] [3] [1] 133 1 5 111 112 165 24 80 [1] [1] [2] [1] [-697] 134 1 2 198 186 [7] [17] 135 1 1 15 [3] 136 1 2 11 112 [11] [18] 137 1 8 36 71 81 188 196 123 53 67 [20] [15] [21] [5] [27] [5] [15] [22] 138 1 9 12 16 191 98 7 55 107 130 144 [0] [29] [10] [0] [-344] [18] [14] [0] [4] 139 1 7 180 165 56 163 85 118 97 [1] [-7] [15] [-8] [24] [13] [16] 140 1 3 129 57 195 [13] [-5] [-2] 141 1 1 128 [0] 142 1 1 29 [10] 143 1 4 13 125 171 43 [0] [-2] [3] [-725] 144 1 4 55 181 107 193 [16] [26] [7] [0] 145 1 5 64 189 158 146 121 [-1] [-5] [15] [18] [-724] 146 1 7 54 177 121 167 56 111 148 [-330] [-714] [-876] [2] [-693] [3] [6] 147 1 2 21 119 [5] [7] 148 1 3 187 91 111 [4] [4] [-655] 149 1 3 147 133 117 [-738] [5] [-1] 150 1 5 39 59 115 94 158 [10] [8] [1] [0] [13] 151 1 5 156 86 172 12 164 [-239] [4] [-260] [-2] [7] 152 1 5 20 123 164 101 108 [-4] [3] [-3] [15] [0] 153 1 6 165 96 117 163 95 200 [-4] [8] [1] [1] [15] [17] 154 1 5 109 48 170 197 51 [6] [2] [0] [-2] [11] 155 1 5 97 99 146 129 196 [12] [-3] [-3] [3] [2] 156 1 4 152 193 116 72 [-2] [0] [-4] [8] 157 1 4 70 109 192 176 [26] [22] [8] [16] 158 1 5 3 177 168 64 97 [-854] [-416] [1] [-761] [-841] 159 1 7 62 49 8 84 94 128 141 [15] [0] [-102] [16] [19] [-5] [0] 160 1 4 53 187 60 91 [-103] [9] [17] [19] 161 1 5 19 146 163 56 148 [2] [3] [3] [2] [0] 162 1 3 17 149 110 [3] [3] [2] 163 1 5 168 81 121 149 64 [-1] [13] [-860] [-2] [-2] 164 1 3 193 86 138 [-3] [18] [18] 165 1 8 9 180 126 102 168 97 81 148 [-697] [2] [18] [-692] [24] [27] [18] [12] 166 1 6 138 151 44 55 199 104 [6] [-266] [-363] [18] [1] [19] 167 1 10 28 81 180 125 158 39 64 24 168 143 [0] [-570] [1] [-422] [2] [1] [0] [0] [0] [-581] 168 1 6 182 99 9 111 115 28 [-829] [-427] [-422] [4] [-773] [6] 169 1 1 41 [4] 170 1 4 179 157 176 89 [2] [6] [5] [6] 171 1 5 148 13 187 142 17 [15] [-1] [-1] [6] [0] 172 1 2 181 174 [23] [8] 173 1 3 97 31 126 [-7] [11] [17] 174 1 5 138 30 2 23 108 [5] [13] [-390] [22] [18] 175 1 7 160 131 8 67 116 15 58 [-118] [8] [-146] [20] [-6] [15] [-4] 176 1 2 70 192 [2] [-1] 177 1 5 77 114 31 57 167 [6] [11] [12] [-5] [5] 178 1 4 195 104 30 129 [10] [-159] [3] [2] 179 1 3 89 66 157 [7] [21] [3] 180 1 8 91 39 158 28 76 148 126 168 [-3] [0] [2] [-3] [-621] [9] [-5] [-4] 181 1 2 193 55 [6] [0] 182 1 2 112 147 [0] [-1] 183 1 4 116 103 36 135 [16] [11] [7] [7] 184 1 2 109 154 [-5] [13] 185 1 5 69 86 169 52 30 [17] [0] [-186] [3] [7] 186 1 3 5 201 134 [-19] [3] [-18] 187 1 7 201 85 42 117 13 148 40 [7] [-888] [-763] [-416] [-760] [-646] [-623] 188 1 1 201 [10] 189 1 1 201 [6] 190 1 1 201 [7] 191 1 5 41 201 124 88 78 [-252] [2] [-427] [-350] [-303] 192 1 1 201 [2] 193 1 1 201 [1] 194 1 1 201 [9] 195 1 1 201 [8] 196 1 1 201 [10] 197 1 1 201 [6] 198 1 1 201 [4] 199 1 1 201 [4] 200 1 1 201 [6] 201 1 0 0 1 0 0 0 0 0 1 1 0 -1 -1 -1 -1 2 1 0 0 1 2 0 3 1 1 0 2 0 2 4 1 -1 -1 -1 -2 -2 5 1 0 2 -1 -1 0 6 1 -1 1 -2 -2 1 7 1 1 2 -1 2 -2 8 1 1 2 -2 1 -2 9 1 -2 0 0 1 -2 10 1 0 0 0 2 0 11 1 -1 0 0 -1 1 12 1 -2 -1 -1 1 2 13 1 0 0 0 0 -1 14 1 0 -1 -1 2 2 15 1 -1 0 -2 1 0 16 1 2 1 1 -2 1 17 1 -2 -1 2 2 2 18 1 1 2 -1 -1 1 19 1 -1 0 1 -1 0 20 1 2 1 1 -2 0 21 1 -2 0 1 0 2 22 1 1 2 1 1 -2 23 1 1 0 0 0 -1 24 1 2 -1 0 2 0 25 1 0 0 -2 0 -2 26 1 1 -2 -2 1 -1 27 1 -2 -2 -2 1 -1 28 1 2 -2 2 1 -2 29 1 2 2 1 -1 -2 30 1 -1 -1 -1 1 1 31 1 -2 -2 0 0 0 32 1 2 2 0 -2 1 33 1 2 1 0 0 0 34 1 -1 0 -2 -1 0 35 1 -2 2 2 1 -1 36 1 -1 1 -2 2 2 37 1 -1 -2 2 -2 -2 38 1 0 2 2 1 0 39 1 -1 -1 1 2 -2 40 1 2 -1 -1 1 1 41 1 0 2 0 -1 -1 42 1 -2 -1 2 2 1 43 1 -1 -2 0 1 -1 44 1 0 0 0 0 -1 45 1 0 -2 -2 0 0 46 1 -2 0 -1 1 -1 47 1 -1 1 -1 0 -2 48 1 0 0 -1 0 -2 49 1 0 0 -1 2 -1 50 1 1 -2 0 1 2 51 1 2 -2 -2 0 1 52 1 -1 0 0 2 0 53 1 1 1 -1 -1 -1 54 1 -1 -1 2 -2 1 55 1 1 2 2 -2 0 56 1 2 0 0 -2 1 57 1 1 1 2 -2 -2 58 1 -1 -2 1 -2 0 59 1 1 0 -1 0 0 60 1 -1 -2 0 -1 0 61 1 -2 -1 -1 -2 2 62 1 -1 0 -1 -1 -1 63 1 0 0 0 -2 0 64 1 0 -2 -2 0 2 65 1 -1 1 0 -1 -1 66 1 -2 2 2 -2 2 67 1 2 1 -2 1 2 68 1 0 -2 2 1 -1 69 1 -2 2 -1 0 2 70 1 0 2 -1 -2 0 71 1 1 2 1 1 1 72 1 2 2 2 2 -1 73 1 0 -1 2 -1 -2 74 1 -2 -1 2 1 -2 75 1 2 -2 0 1 -1 76 1 -1 -1 0 0 2 77 1 2 1 1 2 -2 78 1 1 0 -1 -2 -1 79 1 0 1 0 0 2 80 1 2 -1 -1 1 2 81 1 1 0 0 -2 -2 82 1 -2 -1 0 0 2 83 1 2 0 1 -2 1 84 1 -2 -1 1 -1 1 85 1 2 2 -2 -1 -2 86 1 -2 2 -1 1 -2 87 1 0 2 0 -1 -2 88 1 1 -2 2 -1 -1 89 1 1 -1 -2 -1 -1 90 1 0 -1 1 -1 0 91 1 1 2 2 2 -1 92 1 -1 -2 -1 2 2 93 1 2 0 0 2 -1 94 1 -2 2 -2 2 -2 95 1 0 -1 0 -1 -2 96 1 2 -2 1 1 1 97 1 2 1 -2 -2 -2 98 1 -2 0 1 -2 1 99 1 -1 1 -2 -2 -1 100 1 2 1 -1 -2 -1 101 1 0 -1 2 -2 -2 102 1 1 2 1 -2 -1 103 1 0 -2 2 -1 0 104 1 0 0 -1 0 0 105 1 2 0 -1 1 -2 106 1 0 0 -1 -2 2 107 1 1 -2 -1 2 2 108 1 1 -2 2 -2 0 109 1 0 0 -2 -1 2 110 1 1 1 1 1 1 111 1 -2 -2 0 2 1 112 1 -1 2 2 -1 2 113 1 1 -1 1 1 1 114 1 -1 2 -1 2 2 115 1 0 -1 -2 0 0 116 1 0 -2 -2 0 0 117 1 -2 -1 0 -1 2 118 1 0 -2 -1 0 0 119 1 2 0 0 0 1 120 1 0 -2 -2 0 -2 121 1 0 0 0 -1 2 122 1 -2 0 0 0 2 123 1 -1 1 -1 -1 2 124 1 1 2 -2 -1 2 125 1 0 0 0 -1 -2 126 1 -2 1 -2 0 2 127 1 2 -1 0 2 2 128 1 0 0 -1 1 -2 129 1 -1 -2 0 1 0 130 1 1 0 0 0 0 131 1 2 2 -1 1 -2 132 1 2 0 2 2 -1 133 1 0 2 2 -1 0 134 1 1 1 2 -1 1 135 1 1 2 -1 2 -2 136 1 2 2 -2 0 -2 137 1 1 0 0 0 0 138 1 1 -2 -2 -1 2 139 1 0 0 0 0 2 140 1 -2 0 0 1 1 141 1 2 -1 1 2 1 142 1 2 0 0 -2 -2 143 1 1 1 -1 -2 2 144 1 -2 0 2 2 -1 145 1 2 0 1 2 1 146 1 2 -2 -1 1 -1 147 1 0 0 -2 2 -2 148 1 0 1 -1 0 0 149 1 -2 1 1 -1 1 150 1 0 0 2 1 1 151 1 -1 -1 2 2 -1 152 1 -2 1 -2 -2 2 153 1 2 1 2 1 1 154 1 -2 1 -2 0 2 155 1 0 0 2 2 1 156 1 2 -1 -1 -2 -2 157 1 1 -1 0 -1 -1 158 1 0 0 -1 2 -2 159 1 -1 2 0 0 0 160 1 -1 -1 -2 1 1 161 1 2 0 -2 1 0 162 1 0 2 0 -2 -1 163 1 -1 1 0 2 0 164 1 1 2 2 -1 2 165 1 2 -1 0 1 0 166 1 1 1 0 -1 1 167 1 1 0 -2 2 0 168 1 0 1 2 0 1 169 1 0 0 1 0 1 170 1 0 2 2 0 -2 171 1 2 1 1 1 -2 172 1 -2 0 -1 1 0 173 1 0 1 -1 0 -2 174 1 2 0 2 0 -2 175 1 0 -2 2 1 -2 176 1 -2 0 0 2 -2 177 1 1 2 -1 -1 2 178 1 0 -1 0 0 0 179 1 0 0 0 0 1 180 1 2 1 0 0 0 181 1 -1 2 1 2 -1 182 1 2 -2 1 -2 1 183 1 -1 -2 1 2 2 184 1 0 -2 -2 0 -1 185 1 1 2 -1 -2 2 186 1 -2 -2 1 2 2 187 1 -2 2 -1 1 2 188 1 2 -2 2 1 1 189 1 -1 -1 -2 1 2 190 1 0 0 2 -2 2 191 1 0 0 0 0 -1 192 1 -1 2 2 -2 -1 193 1 2 -2 -2 -2 -1 194 1 1 -1 -1 1 0 195 1 0 -1 1 0 0 196 1 1 0 0 1 1 197 1 2 2 -2 0 1 198 1 1 -1 0 0 2 199 1 -1 -2 -1 1 2 200 1 1 1 -1 0 2 201 1 0 0 0 0 0 1 -2 -25 -24 -7 30 19 0 9 12
Eagle
1
klorel/or-tools
examples/data/rcpsp/single_mode_consumer_producer/ubo200_rs09/psp200_5.sch
[ "Apache-2.0" ]
Markdown ======== Rich can render Markdown to the console. To render markdown, construct a :class:`~rich.markdown.Markdown` object then print it to the console. Markdown is a great way of adding rich content to your command line applications. Here's an example of use:: MARKDOWN = """ # This is an h1 Rich can do a pretty *decent* job of rendering markdown. 1. This is a list item 2. This is another list item """ from rich.console import Console from rich.markdown import Markdown console = Console() md = Markdown(MARKDOWN) console.print(md) Note that code blocks are rendered with full syntax highlighting! You can also use the Markdown class from the command line. The following example displays a readme in the terminal:: python -m rich.markdown README.md Run the following to see the full list of arguments for the markdown command:: python -m rich.markdown -h
reStructuredText
5
traviscook21/rich
docs/source/markdown.rst
[ "MIT" ]
/*--------------------------------------------------*/ /* SAS Programming for R Users - code for exercises */ /* Copyright 2016 SAS Institute Inc. */ /*--------------------------------------------------*/ /*SP4R04d01*/ /*Part A*/ data sp4r.random (drop=i); call streaminit(123); do i=1 to 10; rnorm = rand('Normal',20,5); rbinom = rand('Binomial',.25,1); runif = rand('Uniform')*10; rexp = rand('Exponential')*5; output; end; run; proc print data=sp4r.random; run; /*Part B*/ data sp4r.random; call streaminit(123); set sp4r.random; rgeom = rand('Geometric',.1); run; proc print data=sp4r.random; run; /*Part C*/ data sp4r.doloop (drop=j); call streaminit(123); do group=1 to 5; do j=1 to 3; rpois = rand('Poisson',25); rbeta = rand('Beta',.5,.5); seq+1; output; end; end; run; proc print data=sp4r.doloop; run; /*Part D*/ data sp4r.quants; do q=-3 to 3 by .5; pdf = pdf('Normal',q,0,1); cdf = cdf('Normal',q,0,1); quantile = quantile('Normal',cdf,0,1); output; end; run; proc print data=sp4r.quants; run;
SAS
5
snowdj/sas-prog-for-r-users
code/SP4R04d01.sas
[ "CC-BY-4.0" ]
{{#imports}} import '{{{ . }}}'; {{/imports}} {{^imports}} import 'core-js'; {{/imports}} import 'regenerator-runtime/runtime'; export {};
Smarty
2
Dolov/umi
packages/preset-built-in/src/plugins/generateFiles/core/polyfill.tpl
[ "MIT" ]
sleep 1 t ia2 -warp 1
AGS Script
0
waltersgrey/autoexechack
SuperViewHERO3Black/Hero3PlusSilver/autoexec.ash
[ "MIT" ]
(class_definition body: (_) @scope) (block) @scope (try_statement) @scope (catch_clause) @scope (finally_clause) @scope
Scheme
3
yzia2000/nvim-treesitter
queries/dart/locals.scm
[ "Apache-2.0" ]
# Copyright 2021 The Google Research Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #!/bin/bash set -u # # Process options. # USAGE_MESSAGE="Usage: $0 [options...] Options: --out_file (Generated output file) --golden_file (Golden file) --allow_updates (Optional. If provided update goldens instead of testing) --update_dir (Optional. Update goldens instead of testing) --diff_lines (Optional. If provided overrides default number of diff lines) Both update args must be set for updating of goldens" LONG_OPTS="out_file:,golden_file:,allow_updates:,update_dir:,diff_lines:" args=`getopt -n $0 -o v -l "${LONG_OPTS}" -- $*` if [ $? != 0 ] then echo "${USAGE_MESSAGE}" exit 2 fi set -- $args FLAGS_out_file="" FLAGS_golden_file="" FLAGS_update_dir="" FLAGS_allow_updates=false FLAGS_diff_lines=40 stripquotes() { local temp="${1%\'}" local temp="${temp#\'}" echo "$temp" } for i do case "$i" in --out_file) FLAGS_out_file=`stripquotes $2`; shift; shift;; --golden_file) FLAGS_golden_file=`stripquotes $2`; shift; shift;; --update_dir) FLAGS_update_dir=`stripquotes $2`; shift; shift;; --allow_updates) FLAGS_allow_updates=`stripquotes $2`; shift; shift;; --diff_lines) FLAGS_diff_lines=`stripquotes $2`; shift; shift;; --) shift; break;; esac done # # Demand filenames. # if [ -z "$FLAGS_out_file" ] || [ -z "$FLAGS_golden_file" ] then echo -ne "\nMissing file name.\n\n" echo "${USAGE_MESSAGE}" exit 2 fi # # Update goldens. # if [ ! -z "$FLAGS_update_dir" ] && [ "$FLAGS_allow_updates" = "true" ] then echo "Updating golden $FLAGS_update_dir/$FLAGS_golden_file from output file $FLAGS_out_file." cp $FLAGS_out_file $FLAGS_update_dir/$FLAGS_golden_file if [ $? != 0 ] then echo "Error updating goldens. Ensure that you are using local \"test strategy\"." exit 1 fi fi # # Test diff. # diff -q --unidirectional-new-file $FLAGS_golden_file $FLAGS_out_file >/dev/null if [ $? != 0 ] then echo -e "ERROR: Files $FLAGS_golden_file and $FLAGS_out_file differ.\n" diff -u $FLAGS_golden_file $FLAGS_out_file | head -$FLAGS_diff_lines echo -e "\n(Diff output limited to $FLAGS_diff_lines lines.)" exit 1 else exit 0 fi
Shell
5
DionysisChristopoulos/google-research
zebraix/base/diff_test.sh
[ "Apache-2.0" ]
module org-openroadm-degree { namespace "http://org/openroadm/degree"; prefix org-openroadm-degree; import org-openroadm-common-types { prefix org-openroadm-common-types; } organization "Open ROADM MSA"; contact "OpenROADM.org."; description "YANG definitions for a Degree in Network Model Copyright of the Members of the Open ROADM MSA Agreement dated (c) 2016, AT&T Intellectual Property. All other rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the Members of the Open ROADM MSA Agreement nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE MEMBERS OF THE OPEN ROADM MSA AGREEMENT ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT THE MEMBERS OF THE OPEN ROADM MSA AGREEMENT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."; revision 2016-10-14 { description "Version 1.2"; } grouping roadm-degree { list degrees { key "degree-number"; leaf degree-number { type uint16; description "Identifier for each direction/degree"; } container external { leaf clli { type string; description "Location CLLI where ROADM resides"; } leaf node-number{ type uint32; description "Number assigned to a ROADM node in a given office"; } leaf node-id { type string; description "Identifier of the ROADM"; } leaf degree-number { type uint16; description "Identifier for direction/degree in far-end ROADM"; } leaf oms-clfi { type string; description "Unique facility name given to the OMS tails"; } leaf-list facility-routing-subpath { type string; description ""; } leaf max-wavelengths { type uint32; description "Numeric value specifies the maximum # of wavelengths supported by the OMS"; } leaf-list available-wavelengths { type uint32; description "list of wavelengths that are supported by the degree"; } leaf distance { type decimal64 { fraction-digits 1; } description "Span distance measured in km."; units "km"; } leaf spanloss-base { description "Baseline ROADM span loss measured and accepted during degree turn-up."; type org-openroadm-common-types:ratio-dB; } leaf spanloss-current { description "Current ROADM span loss captured by the controller."; type org-openroadm-common-types:ratio-dB; } container oms-ttp-tx { leaf-list wavelength-number { type uint32; description "The wavelength # assigned by PCE to a service/circuit"; } } container oms-ttp-rx { leaf-list wavelength-number { type uint32; description "The wavelength # assigned by PCE to a service/circuit"; } } } container ctp-tx { leaf-list wavelength-number { type uint32; description "The wavelength # assigned by PCE to a service/circuit"; } } container ctp-rx { leaf-list wavelength-number { type uint32; description "The wavelength # assigned by PCE to a service/circuit"; } } } } }
YANG
4
tohotforice/onos-sdwsn
models/openroadm/src/main/yang/org-openroadm-degree.yang
[ "Apache-2.0" ]
fun handler r = return <xml><body> {[r.A]}, {[r.B]} </body></xml> fun main () = return <xml><body> <form> <textbox{#A}/> <textbox{#B}/> <submit action={handler}/> </form> </body></xml>
UrWeb
3
apple314159/urweb
tests/formLimit.ur
[ "BSD-3-Clause" ]
signature dpd_ssl_server { ip-proto == tcp # Server hello. payload /^((\x15\x03[\x00\x01\x02\x03]....)?\x16\x03[\x00\x01\x02\x03]..\x02...((\x03[\x00\x01\x02\x03\x04])|(\x7F[\x00-\x50]))|...?\x04..\x00\x02).*/ requires-reverse-signature dpd_ssl_client enable "ssl" tcp-state responder } signature dpd_ssl_client { ip-proto == tcp # Client hello. payload /^(\x16\x03[\x00\x01\x02\x03]..\x01...\x03[\x00\x01\x02\x03]|...?\x01[\x00\x03][\x00\x01\x02\x03\x04]).*/ tcp-state originator } signature dpd_dtls_client { ip-proto == udp # Client hello. payload /^\x16\xfe[\xff\xfd]\x00\x00\x00\x00\x00\x00\x00...\x01...........\xfe[\xff\xfd].*/ enable "dtls" }
Standard ML
3
yaplej/bro
scripts/base/protocols/ssl/dpd.sig
[ "Apache-2.0" ]
(set-logic QF_AUFBV) (declare-fun SymVar_0 () (_ BitVec 64)) (declare-fun SymVar_1 () (_ BitVec 64)) (declare-fun SymVar_2 () (_ BitVec 64)) (assert (= (_ bv16 64) (bvand (_ bv16 64) (bvxor SymVar_0 (bvxor SymVar_1 SymVar_2))))) (check-sat) (get-model)
SMT
3
o2e/Triton
src/samples/smt/af.smt2
[ "Apache-2.0" ]
async = require '../lib/asyncControl' should = require 'chai'.should() describe 'while statement' throws (error) = with callback (callback) = throw (error) returns error (error) = with callback (callback) = callback (error) returns (result) = with callback (callback) = callback (nil, result) returns true = returns (true) returns false = returns (false) does nothing (callback) = callback () when while has the following loops (loops) then (assertions) and done (done) = current loop index = 0 loops executed = 0 current loop = nil condition (callback) = current loop := loops.(current loop index) ++current loop index current loop.condition (callback) loop (callback) = ++loops executed current loop.loop (callback) async.while (condition, loop) @(error, result) try should.equal (error, assertions.error) should.equal (result, nil) should.equal (loops executed, assertions.loops executed) done () catch (error) done (error) context 'condition starts false' it 'skips the while statement' @(done) when while has the following loops [ {condition = returns false, loop = does nothing} ] then { loops executed = 0 } and done (done) context 'when the condition is true for the first 5 times' it 'executes the loop once' @(done) when while has the following loops [ {condition = returns true, loop = does nothing} {condition = returns true, loop = does nothing} {condition = returns true, loop = does nothing} {condition = returns true, loop = does nothing} {condition = returns true, loop = does nothing} {condition = returns false, loop = does nothing} ] then { loops executed = 5 } and done (done) context 'condition returns true' context 'loop returns' it 'ignores the loop result' @(done) when while has the following loops [ {condition = returns true, loop = returns 'result 1'} {condition = returns true, loop = returns 'result 2'} {condition = returns false, loop = returns 'result 3'} ] then { loops executed = 2 } and done (done) context 'loop throws' it 'returns the loop error' @(done) when while has the following loops [ {condition = returns true, loop = throws 'error'} {condition = returns true, loop = returns 'result 2'} {condition = returns false, loop = returns 'result 3'} ] then { loops executed = 1 error = 'error' } and done (done) context 'loop returns error' it 'returns the loop error' @(done) when while has the following loops [ {condition = returns true, loop = returns error 'error'} {condition = returns true, loop = returns 'result 2'} {condition = returns false, loop = returns 'result 3'} ] then { loops executed = 1 error = 'error' } and done (done) context 'condition throws' it 'ignores the loop result' @(done) when while has the following loops [ {condition = throws 'condition error', loop = does nothing} ] then { loops executed = 0 error = 'condition error' } and done (done) context 'condition returns error' it 'ignores the loop result' @(done) when while has the following loops [ {condition = returns error 'condition error', loop = does nothing} ] then { loops executed = 0 error = 'condition error' } and done (done)
PogoScript
4
featurist/pogoscript
test/asyncWhileSpec.pogo
[ "BSD-2-Clause" ]
module Data.Semigroup.App.Spec (testTree) where import Data.Semigroup.App import Hedgehog import qualified Hedgehog.Gen as Gen import qualified Hedgehog.Range as Range import Properties import qualified Test.Tasty as Tasty import qualified Test.Tasty.Hedgehog as Tasty app :: MonadGen m => m (App Maybe Integer) app = App <$> Gen.maybe (Gen.integral (Range.linear 0 10000)) merge :: MonadGen m => m (AppMerge Maybe String) merge = AppMerge <$> Gen.maybe (Gen.string (Range.linear 0 10) Gen.ascii) testTree :: Tasty.TestTree testTree = Tasty.testGroup "Data.Semigroup.App" [ Tasty.testGroup "App" [ Tasty.testProperty "is associative" (associative (<>) app) ] , Tasty.testGroup "AppMerge" [ Tasty.testProperty "is associative" (associative (<>) merge) , Tasty.testProperty "is monoidal" (monoidal merge) ] ]
Haskell
4
Temurson/semantic
test/Data/Semigroup/App/Spec.hs
[ "MIT" ]
{ "cells": [ { "cell_type": "markdown", "id": "3c78dad1-bbc2-4f32-b4fa-ecc18285eacf", "metadata": {}, "source": [ "# Lab: Chicago taxifare tip prediction on Google Cloud Vertex Pipelines using the TFX SDK" ] }, { "cell_type": "markdown", "id": "6c0fc146-a03f-49eb-8a2b-92f97f1935de", "metadata": {}, "source": [ "## Learning objectives" ] }, { "cell_type": "markdown", "id": "33ecae6b-f501-4dc2-8fa7-cc66f3176d00", "metadata": {}, "source": [ "* Define a machine learning pipeline to predict taxi fare tips using the TFX SDK.\n", "* Compile and run a TFX pipeline on Google Cloud's Vertex Pipelines." ] }, { "cell_type": "code", "execution_count": null, "id": "f16d68ac-5d8c-4930-b622-45797462312f", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "a7eb3452-b06f-4617-8bb0-620526c016db", "metadata": {}, "source": [ "## Dataset\n", "\n", "The [Chicago Taxi Trips](https://pantheon.corp.google.com/marketplace/details/city-of-chicago-public-data/chicago-taxi-trips) dataset is one of the [public datasets hosted with BigQuery](https://cloud.google.com/bigquery/public-data/), which includes taxi trips from 2013 to the present, reported to the City of Chicago in its role as a regulatory agency. The task is to predict whether a given trip will result in a tip > 20%." ] }, { "cell_type": "markdown", "id": "19614574-410b-47e3-a249-dcc092156b44", "metadata": {}, "source": [ "## Setup" ] }, { "cell_type": "markdown", "id": "ab6764e2-6f1c-4dc0-a770-579daf9ca5f5", "metadata": {}, "source": [ "### Define constants" ] }, { "cell_type": "code", "execution_count": 1, "id": "cc5267aa-5544-4d76-a835-1637f6f254ae", "metadata": {}, "outputs": [], "source": [ "GOOGLE_CLOUD_PROJECT_ID = !(gcloud config get-value core/project)\n", "GOOGLE_CLOUD_PROJECT_ID = GOOGLE_CLOUD_PROJECT_ID[0]" ] }, { "cell_type": "code", "execution_count": 2, "id": "fcac2822-fecb-4b8c-8808-6d1be78e7cf3", "metadata": {}, "outputs": [], "source": [ "GOOGLE_CLOUD_REGION = 'us-central1'" ] }, { "cell_type": "code", "execution_count": 3, "id": "d656c11a-15a9-4b62-8eb0-bd03825aca78", "metadata": {}, "outputs": [], "source": [ "BQ_DATASET_NAME = 'chicago_taxifare_tips'\n", "BQ_TABLE_NAME = 'chicago_taxi_tips_ml'\n", "BQ_LOCATION = 'US'\n", "BQ_URI = f\"bq://{GOOGLE_CLOUD_PROJECT_ID}.{BQ_DATASET_NAME}.{BQ_TABLE_NAME}\"" ] }, { "cell_type": "code", "execution_count": 169, "id": "61e3c5d0-4a46-4e99-839c-07e3059dc55b", "metadata": {}, "outputs": [], "source": [ "DATASET_DISPLAY_NAME = 'chicago-taxifare-tips'\n", "MODEL_DISPLAY_NAME = f'{DATASET_DISPLAY_NAME}-classifier'\n", "PIPELINE_NAME = f'{MODEL_DISPLAY_NAME}-train-pipeline'" ] }, { "cell_type": "markdown", "id": "565613f5-7b43-4158-ae6b-1836b8a89ac9", "metadata": {}, "source": [ "### Create Google Cloud Storage bucket for storing Vertex Pipeline artifacts" ] }, { "cell_type": "code", "execution_count": 6, "id": "3ba449d5-84fe-45bc-8bf0-10de640f9722", "metadata": {}, "outputs": [], "source": [ "GCS_LOCATION = f\"gs://{GOOGLE_CLOUD_PROJECT_ID}-tfx\"" ] }, { "cell_type": "code", "execution_count": 8, "id": "2041a651-22d0-4eaa-bb4b-aa4968268317", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Creating gs://dougkelly-vertex-demos-tfx/...\n", "ServiceException: 409 A Cloud Storage bucket named 'dougkelly-vertex-demos-tfx' already exists. Try another name. Bucket names must be globally unique across all Google Cloud projects, including those outside of your organization.\n" ] } ], "source": [ "!gsutil mb -l $GOOGLE_CLOUD_REGION $GCS_LOCATION" ] }, { "cell_type": "markdown", "id": "be3d6ffc-9e50-4bea-a393-74625f022235", "metadata": {}, "source": [ "### Import libraries" ] }, { "cell_type": "code", "execution_count": 9, "id": "aef724ec-6963-46d3-afbf-32e4af5312d7", "metadata": {}, "outputs": [], "source": [ "import os\n", "import tensorflow as tf\n", "import tfx\n", "import kfp\n", "\n", "from google.cloud import bigquery\n", "from google.cloud import aiplatform as vertex_ai" ] }, { "cell_type": "code", "execution_count": 10, "id": "6c1166c8-4096-44d4-a6fa-b35d34c239e4", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensorflow: 2.6.2\n", "tfx: 1.4.0\n", "kfp: 1.8.1\n", "Google Cloud Vertex AI Python SDK: 1.7.1\n" ] } ], "source": [ "print(f\"tensorflow: {tf.__version__}\")\n", "print(f\"tfx: {tfx.__version__}\")\n", "print(f\"kfp: {kfp.__version__}\")\n", "print(f\"Google Cloud Vertex AI Python SDK: {vertex_ai.__version__}\")" ] }, { "cell_type": "markdown", "id": "eed174fa-206e-4a3d-80ea-2e6f1948106b", "metadata": {}, "source": [ "## Create BigQuery dataset" ] }, { "cell_type": "code", "execution_count": 11, "id": "1c3f7c5a-d5bf-47c6-890b-c9f64f58c0d6", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Dataset 'dougkelly-vertex-demos:chicago_taxifare_tips' successfully created.\n" ] } ], "source": [ "!bq --location=$BQ_LOCATION mk -d \\\n", "$GOOGLE_CLOUD_PROJECT_ID:$BQ_DATASET_NAME" ] }, { "cell_type": "markdown", "id": "5e627a7f-027d-422b-a3b4-880ab26ad56d", "metadata": {}, "source": [ "## Create BigQuery dataset for ML classification task" ] }, { "cell_type": "code", "execution_count": 12, "id": "52be50bf-de33-446f-8e83-05e31005ae34", "metadata": {}, "outputs": [], "source": [ "SAMPLE_SIZE = 20000\n", "YEAR = 2020" ] }, { "cell_type": "code", "execution_count": 85, "id": "1b1f3be3-d8dd-458b-92d8-8b01b8791ede", "metadata": {}, "outputs": [], "source": [ "sql_script = '''\n", "CREATE OR REPLACE TABLE `@PROJECT_ID.@DATASET.@TABLE` \n", "AS (\n", " WITH\n", " taxitrips AS (\n", " SELECT\n", " trip_start_timestamp,\n", " trip_seconds,\n", " trip_miles,\n", " payment_type,\n", " pickup_longitude,\n", " pickup_latitude,\n", " dropoff_longitude,\n", " dropoff_latitude,\n", " tips,\n", " fare\n", " FROM\n", " `bigquery-public-data.chicago_taxi_trips.taxi_trips`\n", " WHERE 1=1 \n", " AND pickup_longitude IS NOT NULL\n", " AND pickup_latitude IS NOT NULL\n", " AND dropoff_longitude IS NOT NULL\n", " AND dropoff_latitude IS NOT NULL\n", " AND trip_miles > 0\n", " AND trip_seconds > 0\n", " AND fare > 0\n", " AND EXTRACT(YEAR FROM trip_start_timestamp) = @YEAR\n", " )\n", "\n", " SELECT\n", " trip_start_timestamp,\n", " EXTRACT(MONTH from trip_start_timestamp) as trip_month,\n", " EXTRACT(DAY from trip_start_timestamp) as trip_day,\n", " EXTRACT(DAYOFWEEK from trip_start_timestamp) as trip_day_of_week,\n", " EXTRACT(HOUR from trip_start_timestamp) as trip_hour,\n", " trip_seconds,\n", " trip_miles,\n", " payment_type,\n", " ST_AsText(\n", " ST_SnapToGrid(ST_GeogPoint(pickup_longitude, pickup_latitude), 0.1)\n", " ) AS pickup_grid,\n", " ST_AsText(\n", " ST_SnapToGrid(ST_GeogPoint(dropoff_longitude, dropoff_latitude), 0.1)\n", " ) AS dropoff_grid,\n", " ST_Distance(\n", " ST_GeogPoint(pickup_longitude, pickup_latitude), \n", " ST_GeogPoint(dropoff_longitude, dropoff_latitude)\n", " ) AS euclidean,\n", " CONCAT(\n", " ST_AsText(ST_SnapToGrid(ST_GeogPoint(pickup_longitude,\n", " pickup_latitude), 0.1)), \n", " ST_AsText(ST_SnapToGrid(ST_GeogPoint(dropoff_longitude,\n", " dropoff_latitude), 0.1))\n", " ) AS loc_cross,\n", " IF((tips/fare >= 0.2), 1, 0) AS tip_bin,\n", " IF(ABS(MOD(FARM_FINGERPRINT(STRING(trip_start_timestamp)), 10)) < 9, 'UNASSIGNED', 'TEST') AS ml_use\n", " FROM\n", " taxitrips\n", " LIMIT @LIMIT\n", ")\n", "'''" ] }, { "cell_type": "code", "execution_count": 86, "id": "2780c13f-4d9d-462d-b370-e753d1f596bb", "metadata": {}, "outputs": [], "source": [ "sql_script = sql_script.replace(\n", " '@PROJECT_ID', GOOGLE_CLOUD_PROJECT_ID).replace(\n", " '@DATASET', BQ_DATASET_NAME).replace(\n", " '@TABLE', BQ_TABLE_NAME).replace(\n", " '@YEAR', str(YEAR)).replace(\n", " '@LIMIT', str(SAMPLE_SIZE))" ] }, { "cell_type": "code", "execution_count": 87, "id": "6e1a1755-1cc9-4f8e-9b70-a0c8384e843e", "metadata": {}, "outputs": [], "source": [ "bq_client = bigquery.Client(project=GOOGLE_CLOUD_PROJECT_ID, location=BQ_LOCATION)\n", "job = bq_client.query(sql_script)\n", "_ = job.result()" ] }, { "cell_type": "code", "execution_count": 90, "id": "cc7656de-762f-4d91-aa61-526737d8d177", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Query complete after 0.00s: 100%|██████████| 2/2 [00:00<00:00, 1100.00query/s] \n", "Downloading: 100%|██████████| 2/2 [00:01<00:00, 1.49rows/s]\n" ] }, { "data": { "text/html": [ "<div>\n", "<style scoped>\n", " .dataframe tbody tr th:only-of-type {\n", " vertical-align: middle;\n", " }\n", "\n", " .dataframe tbody tr th {\n", " vertical-align: top;\n", " }\n", "\n", " .dataframe thead th {\n", " text-align: right;\n", " }\n", "</style>\n", "<table border=\"1\" class=\"dataframe\">\n", " <thead>\n", " <tr style=\"text-align: right;\">\n", " <th></th>\n", " <th>ml_use</th>\n", " <th>f0_</th>\n", " </tr>\n", " </thead>\n", " <tbody>\n", " <tr>\n", " <th>0</th>\n", " <td>UNASSIGNED</td>\n", " <td>18127</td>\n", " </tr>\n", " <tr>\n", " <th>1</th>\n", " <td>TEST</td>\n", " <td>1873</td>\n", " </tr>\n", " </tbody>\n", "</table>\n", "</div>" ], "text/plain": [ " ml_use f0_\n", "0 UNASSIGNED 18127\n", "1 TEST 1873" ] }, "execution_count": 90, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%%bigquery\n", "\n", "SELECT ml_use, COUNT(*)\n", "FROM chicago_taxifare_tips.chicago_taxi_tips_ml\n", "GROUP BY ml_use" ] }, { "cell_type": "markdown", "id": "54dcce56-6ef5-49fe-a2f8-9556fc96a119", "metadata": {}, "source": [ "## Create a Vertex AI managed dataset resource for pipeline dataset lineage tracking" ] }, { "cell_type": "markdown", "id": "5c7b5043-2be4-437b-965e-5b96853a340b", "metadata": {}, "source": [ "### Initialize Vertex AI Python SDK" ] }, { "cell_type": "code", "execution_count": 91, "id": "94bb4d8c-f454-454d-b7eb-120dfea14280", "metadata": {}, "outputs": [], "source": [ "vertex_ai.init(project=GOOGLE_CLOUD_PROJECT_ID, location=GOOGLE_CLOUD_REGION)" ] }, { "cell_type": "markdown", "id": "666a9708-40ca-431f-84b1-6a89e29f90d2", "metadata": {}, "source": [ "### Create Vertex managed tabular dataset" ] }, { "cell_type": "code", "execution_count": 94, "id": "31b9ff56-26c4-4449-98ed-7e16ced14487", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "INFO:google.cloud.aiplatform.datasets.dataset:Creating TabularDataset\n", "INFO:google.cloud.aiplatform.datasets.dataset:Create TabularDataset backing LRO: projects/617979904441/locations/us-central1/datasets/4914403559786676224/operations/8192561262836580352\n", "INFO:google.cloud.aiplatform.datasets.dataset:TabularDataset created. Resource name: projects/617979904441/locations/us-central1/datasets/4914403559786676224\n", "INFO:google.cloud.aiplatform.datasets.dataset:To use this TabularDataset in another session:\n", "INFO:google.cloud.aiplatform.datasets.dataset:ds = aiplatform.TabularDataset('projects/617979904441/locations/us-central1/datasets/4914403559786676224')\n" ] }, { "data": { "text/plain": [ "name: \"projects/617979904441/locations/us-central1/datasets/4914403559786676224\"\n", "display_name: \"chicago-taxifare-tips\"\n", "metadata_schema_uri: \"gs://google-cloud-aiplatform/schema/dataset/metadata/tabular_1.0.0.yaml\"\n", "create_time {\n", " seconds: 1638842506\n", " nanos: 675382000\n", "}\n", "update_time {\n", " seconds: 1638842507\n", " nanos: 274500000\n", "}\n", "etag: \"AMEw9yMUktBa4vLbkjJG08QJYd65MitZkjzr9qSHPVOlHLazO097R4ZOem8WwjyM1psz\"\n", "labels {\n", " key: \"aiplatform.googleapis.com/dataset_metadata_schema\"\n", " value: \"TABLE\"\n", "}\n", "metadata {\n", " struct_value {\n", " fields {\n", " key: \"inputConfig\"\n", " value {\n", " struct_value {\n", " fields {\n", " key: \"bigquerySource\"\n", " value {\n", " struct_value {\n", " fields {\n", " key: \"uri\"\n", " value {\n", " string_value: \"bq://dougkelly-vertex-demos.chicago_taxifare_tips.chicago_taxi_tips_ml\"\n", " }\n", " }\n", " }\n", " }\n", " }\n", " }\n", " }\n", " }\n", " }\n", "}" ] }, "execution_count": 94, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tabular_dataset = vertex_ai.TabularDataset.create(display_name=f\"{DATASET_DISPLAY_NAME}\", bq_source=f\"{BQ_URI}\")\n", "tabular_dataset.gca_resource" ] }, { "cell_type": "markdown", "id": "6f53417c-65e2-46d2-94eb-46936cc61fb9", "metadata": {}, "source": [ "## Create a TFX pipeline" ] }, { "cell_type": "code", "execution_count": 20, "id": "17dd8442-12a5-4eef-880f-afa8ebcdb414", "metadata": {}, "outputs": [], "source": [ "PIPELINE_DIR=\"tfx_taxifare_tips\"" ] }, { "cell_type": "markdown", "id": "e843dfd9-0f10-462a-bb05-004ee4be0f20", "metadata": {}, "source": [ "### Write model code" ] }, { "cell_type": "markdown", "id": "867de278-6b20-4844-87b3-801105b71e9d", "metadata": {}, "source": [] }, { "cell_type": "code", "execution_count": null, "id": "1c2562a4-435c-49a3-825a-9a5435e97c52", "metadata": {}, "outputs": [], "source": [ "%%writefile {PIPELINE_DIR}/model_training/features.py\n" ] }, { "cell_type": "code", "execution_count": null, "id": "94fe59a2-7064-4bb2-b4b1-2206464c6e83", "metadata": {}, "outputs": [], "source": [ "%%writefile {PIPELINE_DIR}/model_training/preprocessing.py\n" ] }, { "cell_type": "code", "execution_count": null, "id": "3b9426ff-470b-4960-96c5-cb016743f487", "metadata": {}, "outputs": [], "source": [ "%%writefile {PIPELINE_DIR}/model_training/model.py\n" ] }, { "cell_type": "markdown", "id": "3dfe0130-731a-44a6-a883-b6830bf295a7", "metadata": {}, "source": [ "### Write pipeline definition with the TFX SDK" ] }, { "cell_type": "code", "execution_count": null, "id": "0f176f69-9233-4cbd-a1b9-27440cc7fc36", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "c2713bdd-5262-4224-965f-e770a6bc1d85", "metadata": {}, "outputs": [], "source": [ "%%writefile {PIPELINE_DIR}/pipeline.py\n" ] }, { "cell_type": "code", "execution_count": null, "id": "a3a38825-409b-48e3-bf78-47b97fa117f6", "metadata": {}, "outputs": [], "source": [ "%%writefile {PIPELINE_DIR}/runner.py\n" ] }, { "cell_type": "markdown", "id": "a56673d8-9072-4cd9-94f0-ede8a88074ca", "metadata": {}, "source": [ "## Run your TFX pipeline on Vertex Pipelines" ] }, { "cell_type": "markdown", "id": "e814f703-5de0-4dcb-9263-ff6ba2eae877", "metadata": {}, "source": [ "### Create a Artifact Registry on Google Cloud for your pipeline container image" ] }, { "cell_type": "code", "execution_count": 155, "id": "3291170d-90ea-42e2-a508-f41ab4d5c026", "metadata": {}, "outputs": [], "source": [ "ARTIFACT_REGISTRY=\"tfx-taxifare-tips\"" ] }, { "cell_type": "code", "execution_count": 96, "id": "93175bc2-4ffd-4944-96fc-7be4f4cca0cd", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1;31mERROR:\u001b[0m (gcloud.artifacts.repositories.create) ALREADY_EXISTS: the repository already exists\n" ] } ], "source": [ "# TODO: create a Docker Artifact Registry using the gcloud CLI.\n", "# Documentation link: https://cloud.google.com/sdk/gcloud/reference/artifacts/repositories/create\n", "\n", "!gcloud artifacts repositories create {ARTIFACT_REGISTRY} \\\n", "--repository-format=docker \\\n", "--location={GOOGLE_CLOUD_REGION} \\\n", "--description=\"Artifact registry for TFX pipeline images for Chicago taxifare prediction.\"" ] }, { "cell_type": "code", "execution_count": 156, "id": "89e7f6f0-c9c0-4c05-a282-6b7e7ea2ad04", "metadata": {}, "outputs": [], "source": [ "IMAGE_NAME=\"tfx-taxifare-tips\"\n", "IMAGE_TAG=\"latest\"\n", "IMAGE_URI=f\"{GOOGLE_CLOUD_REGION}-docker.pkg.dev/{GOOGLE_CLOUD_PROJECT_ID}/{ARTIFACT_REGISTRY}/{IMAGE_NAME}:{IMAGE_TAG}\"" ] }, { "cell_type": "markdown", "id": "3f5e5d41-0486-4ace-a4fc-0f8dae7fb95d", "metadata": {}, "source": [ "### Set the pipeline configurations for the Vertex AI run" ] }, { "cell_type": "code", "execution_count": 234, "id": "067d386a-b5c9-4f57-afeb-ca2426cb865c", "metadata": {}, "outputs": [], "source": [ "os.environ[\"DATASET_DISPLAY_NAME\"] = DATASET_DISPLAY_NAME\n", "os.environ[\"MODEL_DISPLAY_NAME\"] = MODEL_DISPLAY_NAME\n", "os.environ[\"PIPELINE_NAME\"] = PIPELINE_NAME\n", "os.environ[\"GOOGLE_CLOUD_PROJECT_ID\"] = GOOGLE_CLOUD_PROJECT_ID\n", "os.environ[\"GOOGLE_CLOUD_REGION\"] = GOOGLE_CLOUD_REGION\n", "os.environ[\"GCS_LOCATION\"] = GCS_LOCATION\n", "os.environ[\"TRAIN_LIMIT\"] = \"5000\"\n", "os.environ[\"TEST_LIMIT\"] = \"1000\"\n", "os.environ[\"BEAM_RUNNER\"] = \"DataflowRunner\"\n", "os.environ[\"TRAINING_RUNNER\"] = \"vertex\"\n", "os.environ[\"TFX_IMAGE_URI\"] = IMAGE_URI\n", "os.environ[\"ENABLE_CACHE\"] = \"1\"" ] }, { "cell_type": "code", "execution_count": 235, "id": "b7d86b95-693c-4506-8885-3872ea07184b", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "GOOGLE_CLOUD_PROJECT_ID: dougkelly-vertex-demos\n", "GOOGLE_CLOUD_REGION: us-central1\n", "GCS_LOCATION: gs://dougkelly-vertex-demos-tfx\n", "ARTIFACT_STORE_URI: gs://dougkelly-vertex-demos-tfx/tfx-artifacts\n", "MODEL_REGISTRY_URI: gs://dougkelly-vertex-demos-tfx/model-registry\n", "DATASET_DISPLAY_NAME: chicago-taxifare-tips\n", "MODEL_DISPLAY_NAME: chicago-taxifare-tips-classifier\n", "PIPELINE_NAME: chicago-taxifare-tips-classifier-train-pipeline\n", "ML_USE_COLUMN: ml_use\n", "EXCLUDE_COLUMNS: trip_start_timestamp\n", "TRAIN_LIMIT: 5000\n", "TEST_LIMIT: 1000\n", "SERVE_LIMIT: 0\n", "NUM_TRAIN_SPLITS: 4\n", "NUM_EVAL_SPLITS: 1\n", "ACCURACY_THRESHOLD: 0.8\n", "USE_KFP_SA: False\n", "TFX_IMAGE_URI: us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest\n", "BEAM_RUNNER: DataflowRunner\n", "BEAM_DIRECT_PIPELINE_ARGS: ['--project=dougkelly-vertex-demos', '--temp_location=gs://dougkelly-vertex-demos-tfx/temp']\n", "BEAM_DATAFLOW_PIPELINE_ARGS: ['--project=dougkelly-vertex-demos', '--temp_location=gs://dougkelly-vertex-demos-tfx/temp', '--region=us-central1', '--runner=DataflowRunner']\n", "TRAINING_RUNNER: vertex\n", "VERTEX_TRAINING_ARGS: {'project': 'dougkelly-vertex-demos', 'worker_pool_specs': [{'machine_spec': {'machine_type': 'n1-standard-4'}, 'replica_count': 1, 'container_spec': {'image_uri': 'us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest'}}]}\n", "VERTEX_TRAINING_CONFIG: {'ai_platform_training_enable_ucaip': True, 'ai_platform_training_ucaip_region': 'us-central1', 'ai_platform_training_args': {'project': 'dougkelly-vertex-demos', 'worker_pool_specs': [{'machine_spec': {'machine_type': 'n1-standard-4'}, 'replica_count': 1, 'container_spec': {'image_uri': 'us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest'}}]}, 'use_gpu': False}\n", "ENABLE_CACHE: 1\n" ] } ], "source": [ "from tfx_taxifare_tips.tfx_pipeline import config\n", "import importlib\n", "importlib.reload(config)\n", "\n", "for key, value in config.__dict__.items():\n", " if key.isupper(): print(f'{key}: {value}')" ] }, { "cell_type": "markdown", "id": "e3958359-abdc-4cec-a435-7c775d05c3fb", "metadata": {}, "source": [ "### Build the TFX pipeline container image" ] }, { "cell_type": "code", "execution_count": 254, "id": "4b50cdf5-cc4b-4352-839f-a48a04315361", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest\n" ] } ], "source": [ "!echo $TFX_IMAGE_URI" ] }, { "cell_type": "code", "execution_count": 255, "id": "860a5559-ea0f-48b3-94f1-871ec084e35d", "metadata": {}, "outputs": [], "source": [ "# !docker build . -t test-image" ] }, { "cell_type": "code", "execution_count": 256, "id": "9f2adad6-ff8e-41be-9d56-ec078822e197", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Creating temporary tarball archive of 26 file(s) totalling 267.1 KiB before compression.\n", "Uploading tarball of [.] to [gs://dougkelly-vertex-demos_cloudbuild/source/1639112263.267746-dc49aada98f941ca8a3d522f7e57a263.tgz]\n", "Created [https://cloudbuild.googleapis.com/v1/projects/dougkelly-vertex-demos/locations/global/builds/2b8a42f1-fa91-43ee-b1ac-3269318afa84].\n", "Logs are available at [https://console.cloud.google.com/cloud-build/builds/2b8a42f1-fa91-43ee-b1ac-3269318afa84?project=617979904441].\n", "----------------------------- REMOTE BUILD OUTPUT ------------------------------\n", "starting build \"2b8a42f1-fa91-43ee-b1ac-3269318afa84\"\n", "\n", "FETCHSOURCE\n", "Fetching storage object: gs://dougkelly-vertex-demos_cloudbuild/source/1639112263.267746-dc49aada98f941ca8a3d522f7e57a263.tgz#1639112263639872\n", "Copying gs://dougkelly-vertex-demos_cloudbuild/source/1639112263.267746-dc49aada98f941ca8a3d522f7e57a263.tgz#1639112263639872...\n", "/ [1 files][ 48.4 KiB/ 48.4 KiB] \n", "Operation completed over 1 objects/48.4 KiB. \n", "BUILD\n", "Already have image (with digest): gcr.io/cloud-builders/docker\n", "Sending build context to Docker daemon 297.5kB\n", "Step 1/5 : FROM gcr.io/tfx-oss-public/tfx:1.4.0\n", "1.4.0: Pulling from tfx-oss-public/tfx\n", "e4ca327ec0e7: Pulling fs layer\n", "0fa9fc055636: Pulling fs layer\n", "448bb2d7fba5: Pulling fs layer\n", "a084e2627368: Pulling fs layer\n", "de932d3a14d8: Pulling fs layer\n", "ebe7db8e97e0: Pulling fs layer\n", "66fef8aabad3: Pulling fs layer\n", "9696f5331161: Pulling fs layer\n", "7799e2177407: Pulling fs layer\n", "56d35ebee226: Pulling fs layer\n", "f23d5847df7e: Pulling fs layer\n", "85729b3aa914: Pulling fs layer\n", "27594cd25c9b: Pulling fs layer\n", "420dbd17143e: Pulling fs layer\n", "71797a45a0de: Pulling fs layer\n", "b073ad8b8421: Pulling fs layer\n", "4b7516634a4b: Pulling fs layer\n", "434af55afd20: Pulling fs layer\n", "85d42009e725: Pulling fs layer\n", "a084e2627368: Waiting\n", "de932d3a14d8: Waiting\n", "6d895d7b587a: Pulling fs layer\n", "9ff76d709282: Pulling fs layer\n", "ebe7db8e97e0: Waiting\n", "4160ec915caf: Pulling fs layer\n", "66fef8aabad3: Waiting\n", "eb84f1e37919: Pulling fs layer\n", "b073ad8b8421: Waiting\n", "85729b3aa914: Waiting\n", "a616daa88ca5: Pulling fs layer\n", "9696f5331161: Waiting\n", "27594cd25c9b: Waiting\n", "420dbd17143e: Waiting\n", "71797a45a0de: Waiting\n", "99b8f7435830: Pulling fs layer\n", "1e2f495eab09: Pulling fs layer\n", "d880b09bf9ec: Pulling fs layer\n", "56d35ebee226: Waiting\n", "f23d5847df7e: Waiting\n", "434af55afd20: Waiting\n", "85d42009e725: Waiting\n", "6d895d7b587a: Waiting\n", "eb84f1e37919: Waiting\n", "9ff76d709282: Waiting\n", "4160ec915caf: Waiting\n", "a616daa88ca5: Waiting\n", "4b7516634a4b: Waiting\n", "99b8f7435830: Waiting\n", "1e2f495eab09: Waiting\n", "7799e2177407: Waiting\n", "403fe241a00b: Pulling fs layer\n", "ca533ed5e802: Pulling fs layer\n", "9d118b4c5fa6: Pulling fs layer\n", "388915f48178: Pulling fs layer\n", "d880b09bf9ec: Waiting\n", "ddeefb06ab95: Pulling fs layer\n", "62d0755e4559: Pulling fs layer\n", "58a229d727c0: Pulling fs layer\n", "c4606a99c9de: Pulling fs layer\n", "403fe241a00b: Waiting\n", "ca533ed5e802: Waiting\n", "62d0755e4559: Waiting\n", "9d118b4c5fa6: Waiting\n", "58a229d727c0: Waiting\n", "388915f48178: Waiting\n", "ddeefb06ab95: Waiting\n", "448bb2d7fba5: Download complete\n", "0fa9fc055636: Verifying Checksum\n", "0fa9fc055636: Download complete\n", "e4ca327ec0e7: Verifying Checksum\n", "e4ca327ec0e7: Download complete\n", "a084e2627368: Verifying Checksum\n", "a084e2627368: Download complete\n", "de932d3a14d8: Download complete\n", "66fef8aabad3: Download complete\n", "7799e2177407: Verifying Checksum\n", "7799e2177407: Download complete\n", "e4ca327ec0e7: Pull complete\n", "0fa9fc055636: Pull complete\n", "448bb2d7fba5: Pull complete\n", "a084e2627368: Pull complete\n", "de932d3a14d8: Pull complete\n", "9696f5331161: Verifying Checksum\n", "9696f5331161: Download complete\n", "f23d5847df7e: Verifying Checksum\n", "f23d5847df7e: Download complete\n", "ebe7db8e97e0: Verifying Checksum\n", "ebe7db8e97e0: Download complete\n", "56d35ebee226: Verifying Checksum\n", "56d35ebee226: Download complete\n", "420dbd17143e: Verifying Checksum\n", "420dbd17143e: Download complete\n", "71797a45a0de: Verifying Checksum\n", "71797a45a0de: Download complete\n", "27594cd25c9b: Verifying Checksum\n", "27594cd25c9b: Download complete\n", "4b7516634a4b: Verifying Checksum\n", "4b7516634a4b: Download complete\n", "434af55afd20: Download complete\n", "85d42009e725: Verifying Checksum\n", "85d42009e725: Download complete\n", "6d895d7b587a: Verifying Checksum\n", "6d895d7b587a: Download complete\n", "9ff76d709282: Verifying Checksum\n", "9ff76d709282: Download complete\n", "4160ec915caf: Verifying Checksum\n", "4160ec915caf: Download complete\n", "eb84f1e37919: Verifying Checksum\n", "eb84f1e37919: Download complete\n", "a616daa88ca5: Verifying Checksum\n", "a616daa88ca5: Download complete\n", "99b8f7435830: Download complete\n", "85729b3aa914: Verifying Checksum\n", "85729b3aa914: Download complete\n", "b073ad8b8421: Verifying Checksum\n", "b073ad8b8421: Download complete\n", "403fe241a00b: Verifying Checksum\n", "403fe241a00b: Download complete\n", "1e2f495eab09: Download complete\n", "9d118b4c5fa6: Verifying Checksum\n", "9d118b4c5fa6: Download complete\n", "388915f48178: Verifying Checksum\n", "388915f48178: Download complete\n", "ddeefb06ab95: Verifying Checksum\n", "ddeefb06ab95: Download complete\n", "62d0755e4559: Verifying Checksum\n", "62d0755e4559: Download complete\n", "58a229d727c0: Verifying Checksum\n", "58a229d727c0: Download complete\n", "ca533ed5e802: Download complete\n", "c4606a99c9de: Verifying Checksum\n", "c4606a99c9de: Download complete\n", "d880b09bf9ec: Verifying Checksum\n", "d880b09bf9ec: Download complete\n", "ebe7db8e97e0: Pull complete\n", "66fef8aabad3: Pull complete\n", "9696f5331161: Pull complete\n", "7799e2177407: Pull complete\n", "56d35ebee226: Pull complete\n", "f23d5847df7e: Pull complete\n", "85729b3aa914: Pull complete\n", "27594cd25c9b: Pull complete\n", "420dbd17143e: Pull complete\n", "71797a45a0de: Pull complete\n", "b073ad8b8421: Pull complete\n", "4b7516634a4b: Pull complete\n", "434af55afd20: Pull complete\n", "85d42009e725: Pull complete\n", "6d895d7b587a: Pull complete\n", "9ff76d709282: Pull complete\n", "4160ec915caf: Pull complete\n", "eb84f1e37919: Pull complete\n", "a616daa88ca5: Pull complete\n", "99b8f7435830: Pull complete\n", "1e2f495eab09: Pull complete\n", "d880b09bf9ec: Pull complete\n", "403fe241a00b: Pull complete\n", "ca533ed5e802: Pull complete\n", "9d118b4c5fa6: Pull complete\n", "388915f48178: Pull complete\n", "ddeefb06ab95: Pull complete\n", "62d0755e4559: Pull complete\n", "58a229d727c0: Pull complete\n", "c4606a99c9de: Pull complete\n", "Digest: sha256:1c90d7c7df1d78147013ae8d0377b1496b211391d740b88da6d9892946c30fb1\n", "Status: Downloaded newer image for gcr.io/tfx-oss-public/tfx:1.4.0\n", " ---> 8badc9bc28b6\n", "Step 2/5 : COPY requirements.txt requirements.txt\n", " ---> c6ea2cfbfb34\n", "Step 3/5 : RUN pip install -r requirements.txt\n", " ---> Running in 3c0db03dcad5\n", "Requirement already satisfied: tfx==1.4.0 in /opt/conda/lib/python3.7/site-packages (from -r requirements.txt (line 1)) (1.4.0)\n", "Collecting kfp==1.8.1\n", " Downloading kfp-1.8.1.tar.gz (248 kB)\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Collecting google-cloud-aiplatform==1.7.1\n", " Downloading google_cloud_aiplatform-1.7.1-py2.py3-none-any.whl (1.6 MB)\n", "Requirement already satisfied: grpcio<2,>=1.28.1 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.41.1)\n", "Requirement already satisfied: google-api-python-client<2,>=1.8 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.12.8)\n", "Requirement already satisfied: tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (2.6.2)\n", "Requirement already satisfied: numpy<1.20,>=1.16 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.19.5)\n", "Requirement already satisfied: pyyaml<6,>=3.12 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (5.4.1)\n", "Requirement already satisfied: tensorflow-hub<0.13,>=0.9.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (0.12.0)\n", "Requirement already satisfied: ml-metadata<1.5.0,>=1.4.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.4.0)\n", "Requirement already satisfied: kubernetes<13,>=10.0.1 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (12.0.1)\n", "Requirement already satisfied: ml-pipelines-sdk==1.4.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.4.0)\n", "Requirement already satisfied: tensorflow-serving-api!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<3,>=1.15 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (2.6.1)\n", "Requirement already satisfied: absl-py<0.13,>=0.9 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (0.12.0)\n", "Requirement already satisfied: tfx-bsl<1.5.0,>=1.4.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.4.0)\n", "Requirement already satisfied: tensorflow-transform<1.5.0,>=1.4.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.4.0)\n", "Requirement already satisfied: keras-tuner<2,>=1.0.4 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.0.4)\n", "Requirement already satisfied: tensorflow-data-validation<1.5.0,>=1.4.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.4.0)\n", "Requirement already satisfied: jinja2<4,>=2.7.3 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (2.11.3)\n", "Requirement already satisfied: click<8,>=7 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (7.1.2)\n", "Requirement already satisfied: google-cloud-bigquery<3,>=2.26.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (2.30.1)\n", "Requirement already satisfied: portpicker<2,>=1.3.1 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (1.5.0)\n", "Requirement already satisfied: protobuf<4,>=3.13 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (3.19.1)\n", "Requirement already satisfied: attrs<21,>=19.3.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (20.3.0)\n", "Requirement already satisfied: google-apitools<1,>=0.5 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (0.5.31)\n", "Requirement already satisfied: docker<5,>=4.1 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (4.4.4)\n", "Requirement already satisfied: apache-beam[gcp]<3,>=2.33 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (2.33.0)\n", "Requirement already satisfied: tensorflow-model-analysis<0.36,>=0.35.0 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (0.35.0)\n", "Requirement already satisfied: pyarrow<6,>=1 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (4.0.1)\n", "Requirement already satisfied: packaging<21,>=20 in /opt/conda/lib/python3.7/site-packages (from tfx==1.4.0->-r requirements.txt (line 1)) (20.9)\n", "Collecting absl-py<0.13,>=0.9\n", " Downloading absl_py-0.11.0-py3-none-any.whl (127 kB)\n", "Requirement already satisfied: google-cloud-storage<2,>=1.20.0 in /opt/conda/lib/python3.7/site-packages (from kfp==1.8.1->-r requirements.txt (line 2)) (1.42.3)\n", "Requirement already satisfied: google-auth<2,>=1.6.1 in /opt/conda/lib/python3.7/site-packages (from kfp==1.8.1->-r requirements.txt (line 2)) (1.35.0)\n", "Collecting requests-toolbelt<1,>=0.8.0\n", " Downloading requests_toolbelt-0.9.1-py2.py3-none-any.whl (54 kB)\n", "Collecting cloudpickle<2,>=1.3.0\n", " Downloading cloudpickle-1.6.0-py3-none-any.whl (23 kB)\n", "Collecting kfp-server-api<2.0.0,>=1.1.2\n", " Downloading kfp-server-api-1.7.1.tar.gz (52 kB)\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Collecting jsonschema<4,>=3.0.1\n", " Downloading jsonschema-3.2.0-py2.py3-none-any.whl (56 kB)\n", "Collecting tabulate<1,>=0.8.6\n", " Downloading tabulate-0.8.9-py3-none-any.whl (25 kB)\n", "Collecting Deprecated<2,>=1.2.7\n", " Downloading Deprecated-1.2.13-py2.py3-none-any.whl (9.6 kB)\n", "Collecting strip-hints<1,>=0.1.8\n", " Downloading strip-hints-0.1.10.tar.gz (29 kB)\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Collecting docstring-parser<1,>=0.7.3\n", " Downloading docstring_parser-0.13.tar.gz (23 kB)\n", " Installing build dependencies: started\n", " Installing build dependencies: finished with status 'done'\n", " Getting requirements to build wheel: started\n", " Getting requirements to build wheel: finished with status 'done'\n", " Preparing metadata (pyproject.toml): started\n", " Preparing metadata (pyproject.toml): finished with status 'done'\n", "Requirement already satisfied: kfp-pipeline-spec<0.2.0,>=0.1.10 in /opt/conda/lib/python3.7/site-packages (from kfp==1.8.1->-r requirements.txt (line 2)) (0.1.13)\n", "Collecting fire<1,>=0.3.1\n", " Downloading fire-0.4.0.tar.gz (87 kB)\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Requirement already satisfied: pydantic<2,>=1.8.2 in /opt/conda/lib/python3.7/site-packages (from kfp==1.8.1->-r requirements.txt (line 2)) (1.8.2)\n", "Requirement already satisfied: google-api-core[grpc]<3.0.0dev,>=1.26.0 in /opt/conda/lib/python3.7/site-packages (from google-cloud-aiplatform==1.7.1->-r requirements.txt (line 3)) (1.31.4)\n", "Requirement already satisfied: proto-plus>=1.10.1 in /opt/conda/lib/python3.7/site-packages (from google-cloud-aiplatform==1.7.1->-r requirements.txt (line 3)) (1.19.7)\n", "Requirement already satisfied: six in /opt/conda/lib/python3.7/site-packages (from absl-py<0.13,>=0.9->tfx==1.4.0->-r requirements.txt (line 1)) (1.15.0)\n", "Requirement already satisfied: pytz>=2018.3 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (2021.3)\n", "Requirement already satisfied: avro-python3!=1.9.2,<1.10.0,>=1.8.1 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.9.2.1)\n", "Requirement already satisfied: pymongo<4.0.0,>=3.8.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (3.12.1)\n", "Requirement already satisfied: hdfs<3.0.0,>=2.1.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (2.6.0)\n", "Requirement already satisfied: orjson<4.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (3.6.4)\n", "Requirement already satisfied: oauth2client<5,>=2.0.1 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (4.1.3)\n", "Requirement already satisfied: requests<3.0.0,>=2.24.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (2.25.1)\n", "Requirement already satisfied: pydot<2,>=1.2.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.4.2)\n", "Requirement already satisfied: typing-extensions<4,>=3.7.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (3.7.4.3)\n", "Requirement already satisfied: future<1.0.0,>=0.18.2 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.18.2)\n", "Requirement already satisfied: crcmod<2.0,>=1.7 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.7)\n", "Requirement already satisfied: fastavro<2,>=0.21.4 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.4.7)\n", "Requirement already satisfied: httplib2<0.20.0,>=0.8 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.19.1)\n", "Requirement already satisfied: python-dateutil<3,>=2.8.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (2.8.2)\n", "Requirement already satisfied: dill<0.3.2,>=0.3.1.1 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.3.1.1)\n", "Requirement already satisfied: google-cloud-vision<2,>=0.38.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.0.0)\n", "Requirement already satisfied: google-cloud-bigtable<2,>=0.31.1 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.7.0)\n", "Requirement already satisfied: google-cloud-datastore<2,>=1.8.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.15.3)\n", "Requirement already satisfied: google-cloud-spanner<2,>=1.13.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.19.1)\n", "Requirement already satisfied: google-cloud-dlp<2,>=0.12.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.0.0)\n", "Requirement already satisfied: grpcio-gcp<1,>=0.2.2 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.2.2)\n", "Requirement already satisfied: google-cloud-recommendations-ai<=0.2.0,>=0.1.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.2.0)\n", "Requirement already satisfied: cachetools<5,>=3.1.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (4.2.4)\n", "Requirement already satisfied: google-cloud-core<2,>=0.28.1 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.7.2)\n", "Requirement already satisfied: google-cloud-videointelligence<2,>=1.8.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.16.1)\n", "Requirement already satisfied: google-cloud-language<2,>=1.3.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.3.0)\n", "Requirement already satisfied: google-cloud-pubsub<2,>=0.39.0 in /opt/conda/lib/python3.7/site-packages (from apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (1.7.0)\n", "Requirement already satisfied: wrapt<2,>=1.10 in /opt/conda/lib/python3.7/site-packages (from Deprecated<2,>=1.2.7->kfp==1.8.1->-r requirements.txt (line 2)) (1.12.1)\n", "Requirement already satisfied: websocket-client>=0.32.0 in /opt/conda/lib/python3.7/site-packages (from docker<5,>=4.1->tfx==1.4.0->-r requirements.txt (line 1)) (0.57.0)\n", "Requirement already satisfied: termcolor in /opt/conda/lib/python3.7/site-packages (from fire<1,>=0.3.1->kfp==1.8.1->-r requirements.txt (line 2)) (1.1.0)\n", "Requirement already satisfied: setuptools>=40.3.0 in /opt/conda/lib/python3.7/site-packages (from google-api-core[grpc]<3.0.0dev,>=1.26.0->google-cloud-aiplatform==1.7.1->-r requirements.txt (line 3)) (58.5.3)\n", "Requirement already satisfied: googleapis-common-protos<2.0dev,>=1.6.0 in /opt/conda/lib/python3.7/site-packages (from google-api-core[grpc]<3.0.0dev,>=1.26.0->google-cloud-aiplatform==1.7.1->-r requirements.txt (line 3)) (1.53.0)\n", "Requirement already satisfied: uritemplate<4dev,>=3.0.0 in /opt/conda/lib/python3.7/site-packages (from google-api-python-client<2,>=1.8->tfx==1.4.0->-r requirements.txt (line 1)) (3.0.1)\n", "Requirement already satisfied: google-auth-httplib2>=0.0.3 in /opt/conda/lib/python3.7/site-packages (from google-api-python-client<2,>=1.8->tfx==1.4.0->-r requirements.txt (line 1)) (0.1.0)\n", "Requirement already satisfied: fasteners>=0.14 in /opt/conda/lib/python3.7/site-packages (from google-apitools<1,>=0.5->tfx==1.4.0->-r requirements.txt (line 1)) (0.16.3)\n", "Requirement already satisfied: pyasn1-modules>=0.2.1 in /opt/conda/lib/python3.7/site-packages (from google-auth<2,>=1.6.1->kfp==1.8.1->-r requirements.txt (line 2)) (0.2.7)\n", "Requirement already satisfied: rsa<5,>=3.1.4 in /opt/conda/lib/python3.7/site-packages (from google-auth<2,>=1.6.1->kfp==1.8.1->-r requirements.txt (line 2)) (4.7.2)\n", "Requirement already satisfied: google-resumable-media<3.0dev,>=0.6.0 in /opt/conda/lib/python3.7/site-packages (from google-cloud-bigquery<3,>=2.26.0->tfx==1.4.0->-r requirements.txt (line 1)) (2.1.0)\n", "Requirement already satisfied: MarkupSafe>=0.23 in /opt/conda/lib/python3.7/site-packages (from jinja2<4,>=2.7.3->tfx==1.4.0->-r requirements.txt (line 1)) (1.1.1)\n", "Requirement already satisfied: pyrsistent>=0.14.0 in /opt/conda/lib/python3.7/site-packages (from jsonschema<4,>=3.0.1->kfp==1.8.1->-r requirements.txt (line 2)) (0.18.0)\n", "Requirement already satisfied: importlib-metadata in /opt/conda/lib/python3.7/site-packages (from jsonschema<4,>=3.0.1->kfp==1.8.1->-r requirements.txt (line 2)) (4.8.1)\n", "Requirement already satisfied: tensorboard in /opt/conda/lib/python3.7/site-packages (from keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (2.6.0)\n", "Requirement already satisfied: scipy in /opt/conda/lib/python3.7/site-packages (from keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (1.7.1)\n", "Requirement already satisfied: kt-legacy in /opt/conda/lib/python3.7/site-packages (from keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (1.0.4)\n", "Requirement already satisfied: ipython in /opt/conda/lib/python3.7/site-packages (from keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (7.29.0)\n", "Requirement already satisfied: urllib3>=1.15 in /opt/conda/lib/python3.7/site-packages (from kfp-server-api<2.0.0,>=1.1.2->kfp==1.8.1->-r requirements.txt (line 2)) (1.26.7)\n", "Requirement already satisfied: certifi in /opt/conda/lib/python3.7/site-packages (from kfp-server-api<2.0.0,>=1.1.2->kfp==1.8.1->-r requirements.txt (line 2)) (2021.10.8)\n", "Requirement already satisfied: requests-oauthlib in /opt/conda/lib/python3.7/site-packages (from kubernetes<13,>=10.0.1->tfx==1.4.0->-r requirements.txt (line 1)) (1.3.0)\n", "Requirement already satisfied: pyparsing>=2.0.2 in /opt/conda/lib/python3.7/site-packages (from packaging<21,>=20->tfx==1.4.0->-r requirements.txt (line 1)) (2.4.7)\n", "Requirement already satisfied: psutil in /opt/conda/lib/python3.7/site-packages (from portpicker<2,>=1.3.1->tfx==1.4.0->-r requirements.txt (line 1)) (5.8.0)\n", "Requirement already satisfied: wheel in /opt/conda/lib/python3.7/site-packages (from strip-hints<1,>=0.1.8->kfp==1.8.1->-r requirements.txt (line 2)) (0.37.0)\n", "Requirement already satisfied: gast==0.4.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (0.4.0)\n", "Requirement already satisfied: flatbuffers~=1.12.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (1.12)\n", "Requirement already satisfied: astunparse~=1.6.3 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (1.6.3)\n", "Requirement already satisfied: tensorflow-estimator<2.7,>=2.6.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (2.6.0)\n", "Requirement already satisfied: opt-einsum~=3.3.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (3.3.0)\n", "Requirement already satisfied: google-pasta~=0.2 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (0.2.0)\n", "Requirement already satisfied: h5py~=3.1.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (3.1.0)\n", "Requirement already satisfied: keras<2.7,>=2.6.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (2.6.0)\n", "Requirement already satisfied: clang~=5.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (5.0)\n", "Requirement already satisfied: keras-preprocessing~=1.1.2 in /opt/conda/lib/python3.7/site-packages (from tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (1.1.2)\n", "Requirement already satisfied: joblib<0.15,>=0.12 in /opt/conda/lib/python3.7/site-packages (from tensorflow-data-validation<1.5.0,>=1.4.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.14.1)\n", "Requirement already satisfied: pandas<2,>=1.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow-data-validation<1.5.0,>=1.4.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.3.4)\n", "Requirement already satisfied: tensorflow-metadata<1.5,>=1.4 in /opt/conda/lib/python3.7/site-packages (from tensorflow-data-validation<1.5.0,>=1.4.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.4.0)\n", "Requirement already satisfied: ipywidgets<8,>=7 in /opt/conda/lib/python3.7/site-packages (from tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (7.6.5)\n", "Requirement already satisfied: grpc-google-iam-v1<0.13dev,>=0.12.3 in /opt/conda/lib/python3.7/site-packages (from google-cloud-bigtable<2,>=0.31.1->apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.12.3)\n", "Requirement already satisfied: google-crc32c<2.0dev,>=1.0 in /opt/conda/lib/python3.7/site-packages (from google-resumable-media<3.0dev,>=0.6.0->google-cloud-bigquery<3,>=2.26.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.1.2)\n", "Requirement already satisfied: cached-property in /opt/conda/lib/python3.7/site-packages (from h5py~=3.1.0->tensorflow!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7,>=1.15.2->tfx==1.4.0->-r requirements.txt (line 1)) (1.5.2)\n", "Requirement already satisfied: docopt in /opt/conda/lib/python3.7/site-packages (from hdfs<3.0.0,>=2.1.0->apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.6.2)\n", "Requirement already satisfied: prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0 in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (3.0.22)\n", "Requirement already satisfied: matplotlib-inline in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.1.3)\n", "Requirement already satisfied: pygments in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (2.10.0)\n", "Requirement already satisfied: pickleshare in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.7.5)\n", "Requirement already satisfied: pexpect>4.3 in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (4.8.0)\n", "Requirement already satisfied: traitlets>=4.2 in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (5.1.1)\n", "Requirement already satisfied: backcall in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.2.0)\n", "Requirement already satisfied: jedi>=0.16 in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.18.0)\n", "Requirement already satisfied: decorator in /opt/conda/lib/python3.7/site-packages (from ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (5.1.0)\n", "Requirement already satisfied: ipykernel>=4.5.1 in /opt/conda/lib/python3.7/site-packages (from ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (6.4.2)\n", "Requirement already satisfied: ipython-genutils~=0.2.0 in /opt/conda/lib/python3.7/site-packages (from ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.2.0)\n", "Requirement already satisfied: jupyterlab-widgets>=1.0.0 in /opt/conda/lib/python3.7/site-packages (from ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.0.2)\n", "Requirement already satisfied: nbformat>=4.2.0 in /opt/conda/lib/python3.7/site-packages (from ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (5.1.3)\n", "Requirement already satisfied: widgetsnbextension~=3.5.0 in /opt/conda/lib/python3.7/site-packages (from ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (3.5.2)\n", "Requirement already satisfied: pyasn1>=0.1.7 in /opt/conda/lib/python3.7/site-packages (from oauth2client<5,>=2.0.1->apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (0.4.8)\n", "Requirement already satisfied: chardet<5,>=3.0.2 in /opt/conda/lib/python3.7/site-packages (from requests<3.0.0,>=2.24.0->apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (4.0.0)\n", "Requirement already satisfied: idna<3,>=2.5 in /opt/conda/lib/python3.7/site-packages (from requests<3.0.0,>=2.24.0->apache-beam[gcp]<3,>=2.33->tfx==1.4.0->-r requirements.txt (line 1)) (2.10)\n", "Requirement already satisfied: tensorboard-data-server<0.7.0,>=0.6.0 in /opt/conda/lib/python3.7/site-packages (from tensorboard->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.6.1)\n", "Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in /opt/conda/lib/python3.7/site-packages (from tensorboard->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (1.8.0)\n", "Requirement already satisfied: werkzeug>=0.11.15 in /opt/conda/lib/python3.7/site-packages (from tensorboard->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (2.0.2)\n", "Requirement already satisfied: markdown>=2.6.8 in /opt/conda/lib/python3.7/site-packages (from tensorboard->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (3.3.4)\n", "Requirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in /opt/conda/lib/python3.7/site-packages (from tensorboard->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.4.6)\n", "Requirement already satisfied: zipp>=0.5 in /opt/conda/lib/python3.7/site-packages (from importlib-metadata->jsonschema<4,>=3.0.1->kfp==1.8.1->-r requirements.txt (line 2)) (3.6.0)\n", "Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/lib/python3.7/site-packages (from requests-oauthlib->kubernetes<13,>=10.0.1->tfx==1.4.0->-r requirements.txt (line 1)) (3.1.1)\n", "Requirement already satisfied: cffi>=1.0.0 in /opt/conda/lib/python3.7/site-packages (from google-crc32c<2.0dev,>=1.0->google-resumable-media<3.0dev,>=0.6.0->google-cloud-bigquery<3,>=2.26.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.15.0)\n", "Requirement already satisfied: jupyter-client<8.0 in /opt/conda/lib/python3.7/site-packages (from ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (7.0.6)\n", "Requirement already satisfied: argcomplete>=1.12.3 in /opt/conda/lib/python3.7/site-packages (from ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.12.3)\n", "Requirement already satisfied: debugpy<2.0,>=1.0.0 in /opt/conda/lib/python3.7/site-packages (from ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.5.1)\n", "Requirement already satisfied: tornado<7.0,>=4.2 in /opt/conda/lib/python3.7/site-packages (from ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (6.1)\n", "Requirement already satisfied: parso<0.9.0,>=0.8.0 in /opt/conda/lib/python3.7/site-packages (from jedi>=0.16->ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.8.2)\n", "Requirement already satisfied: jupyter-core in /opt/conda/lib/python3.7/site-packages (from nbformat>=4.2.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (4.9.1)\n", "Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/lib/python3.7/site-packages (from pexpect>4.3->ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.7.0)\n", "Requirement already satisfied: wcwidth in /opt/conda/lib/python3.7/site-packages (from prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0->ipython->keras-tuner<2,>=1.0.4->tfx==1.4.0->-r requirements.txt (line 1)) (0.2.5)\n", "Requirement already satisfied: notebook>=4.4.1 in /opt/conda/lib/python3.7/site-packages (from widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (6.4.5)\n", "Requirement already satisfied: pycparser in /opt/conda/lib/python3.7/site-packages (from cffi>=1.0.0->google-crc32c<2.0dev,>=1.0->google-resumable-media<3.0dev,>=0.6.0->google-cloud-bigquery<3,>=2.26.0->tfx==1.4.0->-r requirements.txt (line 1)) (2.20)\n", "Requirement already satisfied: entrypoints in /opt/conda/lib/python3.7/site-packages (from jupyter-client<8.0->ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.3)\n", "Requirement already satisfied: nest-asyncio>=1.5 in /opt/conda/lib/python3.7/site-packages (from jupyter-client<8.0->ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.5.1)\n", "Requirement already satisfied: pyzmq>=13 in /opt/conda/lib/python3.7/site-packages (from jupyter-client<8.0->ipykernel>=4.5.1->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (22.3.0)\n", "Requirement already satisfied: nbconvert in /opt/conda/lib/python3.7/site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (6.2.0)\n", "Requirement already satisfied: argon2-cffi in /opt/conda/lib/python3.7/site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (21.1.0)\n", "Requirement already satisfied: terminado>=0.8.3 in /opt/conda/lib/python3.7/site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.12.1)\n", "Requirement already satisfied: Send2Trash>=1.5.0 in /opt/conda/lib/python3.7/site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.8.0)\n", "Requirement already satisfied: prometheus-client in /opt/conda/lib/python3.7/site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.12.0)\n", "Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (1.5.0)\n", "Requirement already satisfied: jupyterlab-pygments in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.1.2)\n", "Requirement already satisfied: mistune<2,>=0.8.1 in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.8.4)\n", "Requirement already satisfied: bleach in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (4.1.0)\n", "Requirement already satisfied: testpath in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.5.0)\n", "Requirement already satisfied: defusedxml in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.7.1)\n", "Requirement already satisfied: nbclient<0.6.0,>=0.5.0 in /opt/conda/lib/python3.7/site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.5.4)\n", "Requirement already satisfied: webencodings in /opt/conda/lib/python3.7/site-packages (from bleach->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets<8,>=7->tensorflow-model-analysis<0.36,>=0.35.0->tfx==1.4.0->-r requirements.txt (line 1)) (0.5.1)\n", "Building wheels for collected packages: kfp, docstring-parser, fire, kfp-server-api, strip-hints\n", " Building wheel for kfp (setup.py): started\n", " Building wheel for kfp (setup.py): finished with status 'done'\n", " Created wheel for kfp: filename=kfp-1.8.1-py3-none-any.whl size=345340 sha256=2f7985b1afddd0806f7bdadb0355bf2993d7b0e646a491a2e3bf240b4d8e9367\n", " Stored in directory: /root/.cache/pip/wheels/02/dd/71/45fa445fd9ea0c60ab0bd00b31760b1102ef2999f8002ee892\n", " Building wheel for docstring-parser (pyproject.toml): started\n", " Building wheel for docstring-parser (pyproject.toml): finished with status 'done'\n", " Created wheel for docstring-parser: filename=docstring_parser-0.13-py3-none-any.whl size=31865 sha256=4aba5e28c4cb94be0e0fba69398ec4e61ff4e9c3e5c34b8d1bf6de37bace9cc1\n", " Stored in directory: /root/.cache/pip/wheels/bd/88/3c/d1aa049309f7945178cac9fbe6561a86424f432da57c18ca0f\n", " Building wheel for fire (setup.py): started\n", " Building wheel for fire (setup.py): finished with status 'done'\n", " Created wheel for fire: filename=fire-0.4.0-py2.py3-none-any.whl size=115943 sha256=8d1d9e00e28dbf74be38c27603a8a45622f7772a4c4c5d061ff71333ab8392de\n", " Stored in directory: /root/.cache/pip/wheels/8a/67/fb/2e8a12fa16661b9d5af1f654bd199366799740a85c64981226\n", " Building wheel for kfp-server-api (setup.py): started\n", " Building wheel for kfp-server-api (setup.py): finished with status 'done'\n", " Created wheel for kfp-server-api: filename=kfp_server_api-1.7.1-py3-none-any.whl size=92618 sha256=e9f814954bcc910b2f059efc21a5b7c7f6f246f5f81d2b4332fe604e15359554\n", " Stored in directory: /root/.cache/pip/wheels/68/3f/d5/734c0278dd6c8969cef359edcf059505a61452c5eb0e2760e1\n", " Building wheel for strip-hints (setup.py): started\n", " Building wheel for strip-hints (setup.py): finished with status 'done'\n", " Created wheel for strip-hints: filename=strip_hints-0.1.10-py2.py3-none-any.whl size=22302 sha256=4bd8a555357032e18e80a0d005a3590fa25302dada70b42756c7e54e7179f972\n", " Stored in directory: /root/.cache/pip/wheels/5e/14/c3/6e44e9b2545f2d570b03f5b6d38c00b7534aa8abb376978363\n", "Successfully built kfp docstring-parser fire kfp-server-api strip-hints\n", "Installing collected packages: jsonschema, absl-py, tabulate, strip-hints, requests-toolbelt, kfp-server-api, google-cloud-aiplatform, fire, docstring-parser, Deprecated, cloudpickle, kfp\n", " Attempting uninstall: jsonschema\n", " Found existing installation: jsonschema 4.1.2\n", " Uninstalling jsonschema-4.1.2:\n", " Successfully uninstalled jsonschema-4.1.2\n", " Attempting uninstall: absl-py\n", " Found existing installation: absl-py 0.12.0\n", " Uninstalling absl-py-0.12.0:\n", " Successfully uninstalled absl-py-0.12.0\n", " Attempting uninstall: google-cloud-aiplatform\n", " Found existing installation: google-cloud-aiplatform 1.6.2\n", " Uninstalling google-cloud-aiplatform-1.6.2:\n", " Successfully uninstalled google-cloud-aiplatform-1.6.2\n", " Attempting uninstall: cloudpickle\n", " Found existing installation: cloudpickle 2.0.0\n", " Uninstalling cloudpickle-2.0.0:\n", " Successfully uninstalled cloudpickle-2.0.0\n", "\u001b[91mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "tensorflow-io 0.18.0 requires tensorflow-io-gcs-filesystem==0.18.0, which is not installed.\n", "explainable-ai-sdk 1.3.2 requires xai-image-widget, which is not installed.\n", "tensorflow-io 0.18.0 requires tensorflow<2.6.0,>=2.5.0, but you have tensorflow 2.6.2 which is incompatible.\n", "WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv\n", "\u001b[0mSuccessfully installed Deprecated-1.2.13 absl-py-0.11.0 cloudpickle-1.6.0 docstring-parser-0.13 fire-0.4.0 google-cloud-aiplatform-1.7.1 jsonschema-3.2.0 kfp-1.8.1 kfp-server-api-1.7.1 requests-toolbelt-0.9.1 strip-hints-0.1.10 tabulate-0.8.9\n", "Removing intermediate container 3c0db03dcad5\n", " ---> 8b28648b69bf\n", "Step 4/5 : COPY tfx_taxifare_tips/ tfx_taxifare_tips/\n", " ---> a3640da07f5d\n", "Step 5/5 : ENV PYTHONPATH=\"/tfx_taxifare_tips:${PYTHONPATH}\"\n", " ---> Running in 2d17fd8fe1dc\n", "Removing intermediate container 2d17fd8fe1dc\n", " ---> 5b5ad17cd62c\n", "Successfully built 5b5ad17cd62c\n", "Successfully tagged us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest\n", "PUSH\n", "Pushing us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest\n", "The push refers to repository [us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips]\n", "ba90b5382c25: Preparing\n", "cc55b5367f15: Preparing\n", "a03f64bd036b: Preparing\n", "47eadc53848d: Preparing\n", "360afeadb83c: Preparing\n", "610c8c70c225: Preparing\n", "11aaa1ad9bbe: Preparing\n", "c1540b4fd089: Preparing\n", "5be20e773bf8: Preparing\n", "f0aed3b553c7: Preparing\n", "e55c134eccb1: Preparing\n", "b3e660ff020a: Preparing\n", "1795fd5db4de: Preparing\n", "dad41956ce77: Preparing\n", "ab61683fbd20: Preparing\n", "117941aa2d3f: Preparing\n", "3a4c764c9a45: Preparing\n", "34db85e87fb0: Preparing\n", "782857218c62: Preparing\n", "195f2f019955: Preparing\n", "9546e4c87db8: Preparing\n", "78613865172b: Preparing\n", "97676aba1403: Preparing\n", "0fb4d6eba0b6: Preparing\n", "e8b9f9e4195c: Preparing\n", "eb1f25078652: Preparing\n", "b7ce5de9980f: Preparing\n", "0796fbb63752: Preparing\n", "1233ef617acb: Preparing\n", "390ace10d575: Preparing\n", "c1b078f0e002: Preparing\n", "70720fcb790d: Preparing\n", "e05247f7d2f8: Preparing\n", "ab7c37becce8: Preparing\n", "5ccc1cf20429: Preparing\n", "b2d48dbbbef2: Preparing\n", "260b0b2ff58a: Preparing\n", "6babb56be259: Preparing\n", "610c8c70c225: Waiting\n", "11aaa1ad9bbe: Waiting\n", "c1b078f0e002: Waiting\n", "78613865172b: Waiting\n", "70720fcb790d: Waiting\n", "97676aba1403: Waiting\n", "e05247f7d2f8: Waiting\n", "0fb4d6eba0b6: Waiting\n", "e8b9f9e4195c: Waiting\n", "ab7c37becce8: Waiting\n", "eb1f25078652: Waiting\n", "b7ce5de9980f: Waiting\n", "5ccc1cf20429: Waiting\n", "0796fbb63752: Waiting\n", "c1540b4fd089: Waiting\n", "b2d48dbbbef2: Waiting\n", "1233ef617acb: Waiting\n", "260b0b2ff58a: Waiting\n", "390ace10d575: Waiting\n", "5be20e773bf8: Waiting\n", "6babb56be259: Waiting\n", "3a4c764c9a45: Waiting\n", "e55c134eccb1: Waiting\n", "b3e660ff020a: Waiting\n", "34db85e87fb0: Waiting\n", "ab61683fbd20: Waiting\n", "1795fd5db4de: Waiting\n", "117941aa2d3f: Waiting\n", "782857218c62: Waiting\n", "195f2f019955: Waiting\n", "dad41956ce77: Waiting\n", "9546e4c87db8: Waiting\n", "360afeadb83c: Layer already exists\n", "47eadc53848d: Layer already exists\n", "610c8c70c225: Layer already exists\n", "11aaa1ad9bbe: Layer already exists\n", "c1540b4fd089: Layer already exists\n", "5be20e773bf8: Layer already exists\n", "f0aed3b553c7: Layer already exists\n", "e55c134eccb1: Layer already exists\n", "b3e660ff020a: Layer already exists\n", "1795fd5db4de: Layer already exists\n", "dad41956ce77: Layer already exists\n", "ab61683fbd20: Layer already exists\n", "117941aa2d3f: Layer already exists\n", "a03f64bd036b: Pushed\n", "ba90b5382c25: Pushed\n", "34db85e87fb0: Layer already exists\n", "3a4c764c9a45: Layer already exists\n", "782857218c62: Layer already exists\n", "195f2f019955: Layer already exists\n", "9546e4c87db8: Layer already exists\n", "78613865172b: Layer already exists\n", "97676aba1403: Layer already exists\n", "0fb4d6eba0b6: Layer already exists\n", "e8b9f9e4195c: Layer already exists\n", "b7ce5de9980f: Layer already exists\n", "eb1f25078652: Layer already exists\n", "0796fbb63752: Layer already exists\n", "390ace10d575: Layer already exists\n", "1233ef617acb: Layer already exists\n", "c1b078f0e002: Layer already exists\n", "70720fcb790d: Layer already exists\n", "5ccc1cf20429: Layer already exists\n", "e05247f7d2f8: Layer already exists\n", "ab7c37becce8: Layer already exists\n", "b2d48dbbbef2: Layer already exists\n", "260b0b2ff58a: Layer already exists\n", "6babb56be259: Layer already exists\n", "cc55b5367f15: Pushed\n", "latest: digest: sha256:641d6ce8dcad2a89f1d6ac09af716d8a9a555e0b956052d9155c1e41a4a2bf45 size: 8306\n", "DONE\n", "--------------------------------------------------------------------------------\n", "ID CREATE_TIME DURATION SOURCE IMAGES STATUS\n", "2b8a42f1-fa91-43ee-b1ac-3269318afa84 2021-12-10T04:57:43+00:00 4M55S gs://dougkelly-vertex-demos_cloudbuild/source/1639112263.267746-dc49aada98f941ca8a3d522f7e57a263.tgz us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips (+1 more) SUCCESS\n" ] } ], "source": [ "!gcloud builds submit --tag $TFX_IMAGE_URI . --timeout=20m --machine-type=e2-highcpu-8" ] }, { "cell_type": "markdown", "id": "36d61482-3a1c-40de-bf0d-1982637b6e58", "metadata": {}, "source": [ "### Compile the TFX pipeline" ] }, { "cell_type": "code", "execution_count": 249, "id": "4ba9bf02-ab96-4f35-b214-426115f558a3", "metadata": {}, "outputs": [], "source": [ "import tfx_taxifare_tips" ] }, { "cell_type": "code", "execution_count": 260, "id": "8c55f083-c87b-4d13-87c9-d1dde8744f66", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob created. Resource name: projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353\n", "INFO:google.cloud.aiplatform.pipeline_jobs:To use this PipelineJob in another session:\n", "INFO:google.cloud.aiplatform.pipeline_jobs:pipeline_job = aiplatform.PipelineJob.get('projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353')\n", "INFO:google.cloud.aiplatform.pipeline_jobs:View Pipeline Job:\n", "https://console.cloud.google.com/vertex-ai/locations/us-central1/pipelines/runs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353?project=617979904441\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_PENDING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211210050353 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n" ] } ], "source": [ "# importlib.reload(tfx_taxifare_tips)" ] }, { "cell_type": "code", "execution_count": 257, "id": "7ff0ce75-5af6-4154-ac9c-4ba70af01a3b", "metadata": {}, "outputs": [], "source": [ "PIPELINE_DEFINITION_FILE = f'{config.PIPELINE_NAME}.json'" ] }, { "cell_type": "code", "execution_count": 258, "id": "5c9ec875-4ef4-425f-bcd3-e1e7c5c38af6", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "INFO:root:pipeline_root: gs://dougkelly-vertex-demos-tfx/tfx-artifacts/chicago-taxifare-tips-classifier-train-pipeline\n", "INFO:root:tfx_image_uri: us-central1-docker.pkg.dev/dougkelly-vertex-demos/tfx-taxifare-tips/tfx-taxifare-tips:latest\n", "INFO:absl:Excluding no splits because exclude_splits is not set.\n", "INFO:absl:Excluding no splits because exclude_splits is not set.\n", "INFO:root:Pipeline components: TrainDataGen, TestDataGen, SchemaImporter, StatisticsGen, ExampleValidator, Tranform, ModelTrainer, BaselineModelResolver, ModelEvaluator, ModelPusher\n", "INFO:root:Beam pipeline args: ['--project=dougkelly-vertex-demos', '--temp_location=gs://dougkelly-vertex-demos-tfx/temp', '--region=us-central1', '--runner=DataflowRunner']\n", "INFO:root:pipeline_info: PipelineInfo(pipeline_name: chicago-taxifare-tips-classifier-train-pipeline, pipeline_root: gs://dougkelly-vertex-demos-tfx/tfx-artifacts/chicago-taxifare-tips-classifier-train-pipeline, run_id: None)\n" ] } ], "source": [ "from tfx_taxifare_tips.tfx_pipeline import pipeline_runner\n", "\n", "pipeline_definition = pipeline_runner.compile_training_pipeline(PIPELINE_DEFINITION_FILE)" ] }, { "cell_type": "code", "execution_count": 259, "id": "ac4b2f1f-3542-4f45-abad-fec15391aa8b", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "INFO:google.cloud.aiplatform.pipeline_jobs:Creating PipelineJob\n" ] } ], "source": [ "pipeline_job = vertex_ai.pipeline_jobs.PipelineJob(\n", " display_name=config.PIPELINE_NAME,\n", " template_path=PIPELINE_DEFINITION_FILE,\n", " pipeline_root=os.path.join(config.ARTIFACT_STORE_URI,config.PIPELINE_NAME)\n", " )\n", "pipeline_job.run(sync=False)" ] }, { "cell_type": "markdown", "id": "2e3f6dee-c9a2-4b42-9c27-a9b382be6c3f", "metadata": {}, "source": [ "### Extracting pipeline run metadata" ] }, { "cell_type": "code", "execution_count": 175, "id": "b775b668-4567-473b-82cd-458248cf4b1c", "metadata": {}, "outputs": [ { "data": { "text/html": [ "<div>\n", "<style scoped>\n", " .dataframe tbody tr th:only-of-type {\n", " vertical-align: middle;\n", " }\n", "\n", " .dataframe tbody tr th {\n", " vertical-align: top;\n", " }\n", "\n", " .dataframe thead th {\n", " text-align: right;\n", " }\n", "</style>\n", "<table border=\"1\" class=\"dataframe\">\n", " <thead>\n", " <tr style=\"text-align: right;\">\n", " <th></th>\n", " <th>0</th>\n", " <th>1</th>\n", " <th>2</th>\n", " </tr>\n", " </thead>\n", " <tbody>\n", " <tr>\n", " <th>pipeline_name</th>\n", " <td>chicago-taxifare-tips-classifier-train-pipeline</td>\n", " <td>chicago-taxifare-tips-classifier-train-pipeline</td>\n", " <td>chicago-taxifare-tips-classifier-train-pipeline</td>\n", " </tr>\n", " <tr>\n", " <th>run_name</th>\n", " <td>chicago-taxifare-tips-classifier-train-pipelin...</td>\n", " <td>chicago-taxifare-tips-classifier-train-pipelin...</td>\n", " <td>chicago-taxifare-tips-classifier-train-pipelin...</td>\n", " </tr>\n", " </tbody>\n", "</table>\n", "</div>" ], "text/plain": [ " 0 \\\n", "pipeline_name chicago-taxifare-tips-classifier-train-pipeline \n", "run_name chicago-taxifare-tips-classifier-train-pipelin... \n", "\n", " 1 \\\n", "pipeline_name chicago-taxifare-tips-classifier-train-pipeline \n", "run_name chicago-taxifare-tips-classifier-train-pipelin... \n", "\n", " 2 \n", "pipeline_name chicago-taxifare-tips-classifier-train-pipeline \n", "run_name chicago-taxifare-tips-classifier-train-pipelin... " ] }, "execution_count": 175, "metadata": {}, "output_type": "execute_result" }, { "name": "stdout", "output_type": "stream", "text": [ "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211208235005 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211208235005 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211208235005 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211208235005 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n", "INFO:google.cloud.aiplatform.pipeline_jobs:PipelineJob projects/617979904441/locations/us-central1/pipelineJobs/chicago-taxifare-tips-classifier-train-pipeline-20211208235005 current state:\n", "PipelineState.PIPELINE_STATE_RUNNING\n" ] } ], "source": [ "pipeline_df = vertex_ai.get_pipeline_df(PIPELINE_NAME)\n", "pipeline_df = pipeline_df[pipeline_df.pipeline_name == PIPELINE_NAME]\n", "pipeline_df.T" ] }, { "cell_type": "markdown", "id": "eb6946ca-303d-492a-985d-d6a3a83bd15b", "metadata": {}, "source": [ "### Upload trained model from Google Cloud Storage to Vertex AI" ] }, { "cell_type": "code", "execution_count": 228, "id": "22bc4960-cca0-4439-99bc-8757d7e59c7a", "metadata": {}, "outputs": [], "source": [ "\"\"\"Pipeline definition code.\"\"\"\n", "import os\n", "import sys\n", "import logging\n", "from typing import Text\n", "\n", "import tensorflow_model_analysis as tfma\n", "from tfx.proto import example_gen_pb2, transform_pb2, pusher_pb2\n", "from tfx.v1.types.standard_artifacts import Model, ModelBlessing, Schema\n", "from tfx.v1.extensions.google_cloud_big_query import BigQueryExampleGen\n", "from tfx.v1.extensions.google_cloud_ai_platform import Trainer as VertexTrainer\n", "from tfx.v1.dsl import Pipeline, Importer, Resolver, Channel\n", "from tfx.v1.dsl.experimental import LatestBlessedModelStrategy\n", "from tfx.v1.components import (\n", " StatisticsGen,\n", " ExampleValidator,\n", " Transform,\n", " Evaluator,\n", " Pusher,\n", ")\n", "\n", "from tfx_taxifare_tips.tfx_pipeline import config\n", "from tfx_taxifare_tips.model_training import features, bq_datasource_utils" ] }, { "cell_type": "code", "execution_count": 135, "id": "bca058d0-2419-4d72-b6c7-b2fc45f0e047", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "WARNING:absl:InteractiveContext metadata_connection_config not provided: using SQLite ML Metadata database at /home/jupyter/artifact-store/tfx-covertype-classifier/20211208_173153/metadata.sqlite.\n" ] } ], "source": [ "import os, time\n", "from tfx.orchestration.experimental.interactive.interactive_context import (\n", " InteractiveContext,\n", ")\n", "ARTIFACT_STORE = os.path.join(os.sep, \"home\", \"jupyter\", \"artifact-store\")\n", "SERVING_MODEL_DIR = os.path.join(os.sep, \"home\", \"jupyter\", \"serving_model\")\n", "DATA_ROOT = \"../../../data\"\n", "\n", "PIPELINE_NAME = \"tfx-covertype-classifier\"\n", "PIPELINE_ROOT = os.path.join(\n", " ARTIFACT_STORE, PIPELINE_NAME, time.strftime(\"%Y%m%d_%H%M%S\")\n", ")\n", "\n", "os.makedirs(PIPELINE_ROOT, exist_ok=True)\n", "\n", "context = InteractiveContext(\n", " pipeline_name=PIPELINE_NAME,\n", " pipeline_root=PIPELINE_ROOT,\n", " metadata_connection_config=None,\n", ")" ] }, { "cell_type": "code", "execution_count": 229, "id": "932b9f46-230d-47c5-a5c5-f24a0813937f", "metadata": {}, "outputs": [], "source": [ "import_schema = Importer(\n", " source_uri=\"tfx_taxifare_tips/raw_schema\",\n", " artifact_type=Schema,\n", ").with_id(\"SchemaImporter\")" ] }, { "cell_type": "code", "execution_count": 230, "id": "e1bbcb79-f0ff-4573-8d01-be28621f1745", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "INFO:absl:Running driver for SchemaImporter\n", "INFO:absl:MetadataStore with DB connection initialized\n", "INFO:absl:Processing source uri: tfx_taxifare_tips/raw_schema, properties: {}, custom_properties: {}\n", "INFO:absl:Reusing existing artifact\n", "INFO:absl:Running executor for SchemaImporter\n", "INFO:absl:Running publisher for SchemaImporter\n", "INFO:absl:MetadataStore with DB connection initialized\n" ] }, { "data": { "text/html": [ "<style>\n", ".tfx-object.expanded {\n", " padding: 4px 8px 4px 8px;\n", " background: white;\n", " border: 1px solid #bbbbbb;\n", " box-shadow: 4px 4px 2px rgba(0,0,0,0.05);\n", "}\n", ".tfx-object, .tfx-object * {\n", " font-size: 11pt;\n", "}\n", ".tfx-object > .title {\n", " cursor: pointer;\n", "}\n", ".tfx-object .expansion-marker {\n", " color: #999999;\n", "}\n", ".tfx-object.expanded > .title > .expansion-marker:before {\n", " content: '▼';\n", "}\n", ".tfx-object.collapsed > .title > .expansion-marker:before {\n", " content: '▶';\n", "}\n", ".tfx-object .class-name {\n", " font-weight: bold;\n", "}\n", ".tfx-object .deemphasize {\n", " opacity: 0.5;\n", "}\n", ".tfx-object.collapsed > table.attr-table {\n", " display: none;\n", "}\n", ".tfx-object.expanded > table.attr-table {\n", " display: block;\n", "}\n", ".tfx-object table.attr-table {\n", " border: 2px solid white;\n", " margin-top: 5px;\n", "}\n", ".tfx-object table.attr-table td.attr-name {\n", " vertical-align: top;\n", " font-weight: bold;\n", "}\n", ".tfx-object table.attr-table td.attrvalue {\n", " text-align: left;\n", "}\n", "</style>\n", "<script>\n", "function toggleTfxObject(element) {\n", " var objElement = element.parentElement;\n", " if (objElement.classList.contains('collapsed')) {\n", " objElement.classList.remove('collapsed');\n", " objElement.classList.add('expanded');\n", " } else {\n", " objElement.classList.add('collapsed');\n", " objElement.classList.remove('expanded');\n", " }\n", "}\n", "</script>\n", "<div class=\"tfx-object expanded\"><div class = \"title\" onclick=\"toggleTfxObject(this)\"><span class=\"expansion-marker\"></span><span class=\"class-name\">ExecutionResult</span><span class=\"deemphasize\"> at 0x7fe3a97a8f50</span></div><table class=\"attr-table\"><tr><td class=\"attr-name\">.execution_id</td><td class = \"attrvalue\">2</td></tr><tr><td class=\"attr-name\">.component</td><td class = \"attrvalue\">&lt;tfx.dsl.components.common.importer.Importer object at 0x7fe3a875eb90&gt;</td></tr><tr><td class=\"attr-name\">.component.inputs</td><td class = \"attrvalue\">{}</td></tr><tr><td class=\"attr-name\">.component.outputs</td><td class = \"attrvalue\"><table class=\"attr-table\"><tr><td class=\"attr-name\">['result']</td><td class = \"attrvalue\"><style>\n", ".tfx-object.expanded {\n", " padding: 4px 8px 4px 8px;\n", " background: white;\n", " border: 1px solid #bbbbbb;\n", " box-shadow: 4px 4px 2px rgba(0,0,0,0.05);\n", "}\n", ".tfx-object, .tfx-object * {\n", " font-size: 11pt;\n", "}\n", ".tfx-object > .title {\n", " cursor: pointer;\n", "}\n", ".tfx-object .expansion-marker {\n", " color: #999999;\n", "}\n", ".tfx-object.expanded > .title > .expansion-marker:before {\n", " content: '▼';\n", "}\n", ".tfx-object.collapsed > .title > .expansion-marker:before {\n", " content: '▶';\n", "}\n", ".tfx-object .class-name {\n", " font-weight: bold;\n", "}\n", ".tfx-object .deemphasize {\n", " opacity: 0.5;\n", "}\n", ".tfx-object.collapsed > table.attr-table {\n", " display: none;\n", "}\n", ".tfx-object.expanded > table.attr-table {\n", " display: block;\n", "}\n", ".tfx-object table.attr-table {\n", " border: 2px solid white;\n", " margin-top: 5px;\n", "}\n", ".tfx-object table.attr-table td.attr-name {\n", " vertical-align: top;\n", " font-weight: bold;\n", "}\n", ".tfx-object table.attr-table td.attrvalue {\n", " text-align: left;\n", "}\n", "</style>\n", "<script>\n", "function toggleTfxObject(element) {\n", " var objElement = element.parentElement;\n", " if (objElement.classList.contains('collapsed')) {\n", " objElement.classList.remove('collapsed');\n", " objElement.classList.add('expanded');\n", " } else {\n", " objElement.classList.add('collapsed');\n", " objElement.classList.remove('expanded');\n", " }\n", "}\n", "</script>\n", "<div class=\"tfx-object collapsed\"><div class = \"title\" onclick=\"toggleTfxObject(this)\"><span class=\"expansion-marker\"></span><span class=\"class-name\">Channel</span> of type <span class=\"class-name\">'Schema'</span> (1 artifact)<span class=\"deemphasize\"> at 0x7fe3a875eb10</span></div><table class=\"attr-table\"><tr><td class=\"attr-name\">.type_name</td><td class = \"attrvalue\">Schema</td></tr><tr><td class=\"attr-name\">._artifacts</td><td class = \"attrvalue\"><table class=\"attr-table\"><tr><td class=\"attr-name\">[0]</td><td class = \"attrvalue\"><style>\n", ".tfx-object.expanded {\n", " padding: 4px 8px 4px 8px;\n", " background: white;\n", " border: 1px solid #bbbbbb;\n", " box-shadow: 4px 4px 2px rgba(0,0,0,0.05);\n", "}\n", ".tfx-object, .tfx-object * {\n", " font-size: 11pt;\n", "}\n", ".tfx-object > .title {\n", " cursor: pointer;\n", "}\n", ".tfx-object .expansion-marker {\n", " color: #999999;\n", "}\n", ".tfx-object.expanded > .title > .expansion-marker:before {\n", " content: '▼';\n", "}\n", ".tfx-object.collapsed > .title > .expansion-marker:before {\n", " content: '▶';\n", "}\n", ".tfx-object .class-name {\n", " font-weight: bold;\n", "}\n", ".tfx-object .deemphasize {\n", " opacity: 0.5;\n", "}\n", ".tfx-object.collapsed > table.attr-table {\n", " display: none;\n", "}\n", ".tfx-object.expanded > table.attr-table {\n", " display: block;\n", "}\n", ".tfx-object table.attr-table {\n", " border: 2px solid white;\n", " margin-top: 5px;\n", "}\n", ".tfx-object table.attr-table td.attr-name {\n", " vertical-align: top;\n", " font-weight: bold;\n", "}\n", ".tfx-object table.attr-table td.attrvalue {\n", " text-align: left;\n", "}\n", "</style>\n", "<script>\n", "function toggleTfxObject(element) {\n", " var objElement = element.parentElement;\n", " if (objElement.classList.contains('collapsed')) {\n", " objElement.classList.remove('collapsed');\n", " objElement.classList.add('expanded');\n", " } else {\n", " objElement.classList.add('collapsed');\n", " objElement.classList.remove('expanded');\n", " }\n", "}\n", "</script>\n", "<div class=\"tfx-object collapsed\"><div class = \"title\" onclick=\"toggleTfxObject(this)\"><span class=\"expansion-marker\"></span><span class=\"class-name\">Artifact</span> of type <span class=\"class-name\">'Schema'</span> (uri: tfx_taxifare_tips/raw_schema)<span class=\"deemphasize\"> at 0x7fe3a9798890</span></div><table class=\"attr-table\"><tr><td class=\"attr-name\">.type</td><td class = \"attrvalue\">&lt;class &#x27;tfx.types.standard_artifacts.Schema&#x27;&gt;</td></tr><tr><td class=\"attr-name\">.uri</td><td class = \"attrvalue\">tfx_taxifare_tips/raw_schema</td></tr></table></div></td></tr></table></td></tr></table></div></td></tr></table></td></tr></table></div>" ], "text/plain": [ "ExecutionResult(\n", " component_id: SchemaImporter\n", " execution_id: 2\n", " outputs:\n", " result: Channel(\n", " type_name: Schema\n", " artifacts: [Artifact(artifact: id: 1\n", " type_id: 14\n", " uri: \"tfx_taxifare_tips/raw_schema\"\n", " custom_properties {\n", " key: \"tfx_version\"\n", " value {\n", " string_value: \"1.4.0\"\n", " }\n", " }\n", " create_time_since_epoch: 1638984854306\n", " last_update_time_since_epoch: 1638984854306\n", " , artifact_type: id: 14\n", " name: \"Schema\"\n", " )]\n", " additional_properties: {}\n", " additional_custom_properties: {}\n", " ))" ] }, "execution_count": 230, "metadata": {}, "output_type": "execute_result" } ], "source": [ "context.run(import_schema)" ] }, { "cell_type": "code", "execution_count": 231, "id": "a6705ad7-f1dc-42a7-9c9f-a3712682af9f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'tfx_taxifare_tips/raw_schema'" ] }, "execution_count": 231, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import_schema.outputs[\"result\"].get()[0].uri" ] }, { "cell_type": "code", "execution_count": null, "id": "ec1f65cf-ab62-4c71-8ea2-52dc100ab811", "metadata": {}, "outputs": [], "source": [ " examplevalidator = ExampleValidator(\n", " statistics=statisticsgen.outputs[\"statistics\"],\n", " schema=import_schema.outputs[\"result\"],\n", " ).with_id(\"ExampleValidator\")" ] } ], "metadata": { "environment": { "kernel": "python3", "name": "tf2-gpu.2-6.m86", "type": "gcloud", "uri": "gcr.io/deeplearning-platform-release/tf2-gpu.2-6:m86" }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.12" } }, "nbformat": 4, "nbformat_minor": 5 }
Jupyter Notebook
5
memeyankm/training-data-analyst
self-paced-labs/vertex-ai/vertex-pipelines/tfx/lab_exercise.ipynb
[ "Apache-2.0" ]
;; Testing the property-list-mixin. (include-file "include/flavors.lfe") (defflavor pl1 () (property-list-mixin) ) (endflavor pl1)
LFE
3
rvirding/flavors
test/p-list.lfe
[ "Apache-2.0" ]
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body> <p>Hi ${recipientName}</p> <p>${text}</p> <p>Regards,</p> <p> <em>${senderName} at Baeldung</em> <br /> <img src="cid:attachment.png" /> </p> </body> </html>
FreeMarker
3
DBatOWL/tutorials
spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-templates/template-freemarker.ftl
[ "MIT" ]
#pragma once #include <fstream> #include <string> #include "cereal/gen/cpp/log.capnp.h" #include "selfdrive/sensord/sensors/sensor.h" class FileSensor : public Sensor { protected: std::ifstream file; public: FileSensor(std::string filename); ~FileSensor(); int init(); virtual void get_event(cereal::SensorEventData::Builder &event) = 0; };
C
3
shoes22/openpilot
selfdrive/sensord/sensors/file_sensor.h
[ "MIT" ]
12 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0
NetLinx
0
mdp19pn/Chaste
apps/texttest/weekly/MeshConvert/simple_cube.axi
[ "Apache-2.0", "BSD-3-Clause" ]
sleep 1 t app led red_front on sleep 1 t app led red_front off sleep 1 t app led red_top_bottom on sleep 1 t app led red_top_bottom off sleep 1 t app led red_front on sleep 1 t app led red_front off sleep 1 t app led red_top_bottom on sleep 1 t app led red_top_bottom off sleep 1 t app led red_front on sleep 1 t app led red_front off sleep 1 t app led red_top_bottom on sleep 1 t app led red_top_bottom off sleep 1 t app led red_front on sleep 1 t app led red_front off sleep 1 t app led red_top_bottom on sleep 1 t app led red_top_bottom off d:\autoexec.ash REBOOT yes
AGS Script
1
waltersgrey/autoexechack
LED-Dance/Hero3PlusBlack/autoexec.ash
[ "MIT" ]
20 5 2 0 0 1 18 12 5 15 16 4 18 6 2 1 13 20 9 3 10 17 8 7 14 [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] 1 5 2 17 21 [3 6 -1 8 4 -1 1 0 4 0 -2 6 17 4 -4 14 0 19 3 18 7 7 5 10 7] [4 2 6 7 4] 2 5 4 20 21 18 13 [7 5 1 0 11 2 2 3 0 2 5 5 3 7 6 22 4 9 6 0 0 14 0 -7 -8] [4 1 3 8 9] [5 6 0 6 6 3 0 0 0 3 6 1 0 4 5 17 7 1 -5 2 11 16 -7 13 -1] [2 5 4 11 0 2 1 0 3 1 6 -1 -1 6 0 9 10 22 22 19 2 12 -6 -2 16] 3 5 3 11 19 21 [0 0 3 1 1 7 1 4 0 0 3 1 0 0 0 17 1 0 0 2 2 1 0 0 3] [1 1 1 0 0 10 0 7 4 3 3 0 2 1 0 1 12 18 6 1 2 1 2 3 1] [1 4 1 6 1] 4 5 4 8 11 21 12 [3 2 12 4 3 5 0 9 0 -2 6 0 5 0 6 19 1 2 15 -4 7 -2 3 3 1] [11 -1 8 -1 6 0 12 10 14 4 1 0 4 1 -1 24 14 19 22 -2 6 -1 5 -2 -2] [4 5 2 8 3] [3 -3 -2 10 8 15 13 6 -2 13 -1 1 6 4 5 6 -3 -4 7 21 0 1 3 -1 0] 5 5 3 10 21 15 [0 14 23 5 26 -8 13 10 26 19 12 0 12 12 2 2 5 6 5 -1 9 17 24 12 26] [10 9 6 2 10] [25 8 10 21 30 0 2 17 -6 -7 6 1 8 0 -4 1 5 3 -1 -1 1 0 -9 -4 4] 6 5 2 21 14 [6 1 4 6 7] [5 9 -2 9 6 2 2 0 1 2 0 1 1 6 3 8 -2 9 2 -1 2 8 18 -3 21] 7 5 4 13 18 21 20 [5 2 4 4 2 11 2 8 -2 3 5 18 26 18 10 14 -6 20 12 5 10 12 -1 21 11] [6 2 -1 3 5 -2 0 7 10 11 -6 24 5 0 23 10 5 0 6 18 11 15 15 9 7] [2 4 9 7 7] [0 2 2 2 2 -3 4 10 3 0 -6 12 -7 17 3 -5 3 9 9 8 0 14 16 -2 17] 8 5 5 21 4 18 20 9 [4 3 10 4 6] [-34 -41 -19 -37 -41 -44 -17 -26 -39 -36 -30 -14 -37 -11 -16 -42 -42 -14 -34 -40 -18 -33 -41 -35 -24] [2 7 4 0 -2 4 2 9 9 2 -8 16 0 19 11 0 6 3 6 0 1 7 0 -5 0] [4 -3 11 7 2 2 9 9 8 8 22 10 -8 15 7 12 3 12 0 -3 0 1 4 9 14] [8 8 6 -3 5 0 3 1 0 3 17 20 -1 -6 10 9 -1 3 4 3 4 9 6 3 0] 9 5 2 16 21 [8 22 26 22 -1 9 -2 0 0 2 11 9 -4 12 19 3 12 10 5 0 14 14 19 -4 -5] [10 3 9 4 8] 10 5 4 8 12 11 21 [23 17 8 12 3 15 10 14 18 6 20 23 17 11 2 -3 12 -2 13 4 11 16 3 -5 3] [4 -1 3 20 0 4 14 21 9 18 13 4 0 6 5 7 7 -1 14 1 1 -3 17 0 -6] [3 0 -2 4 24 11 0 8 21 17 -4 16 -6 22 8 11 0 11 13 0 -1 0 -3 0 17] [8 7 8 5 7] 11 5 3 21 20 18 [6 1 6 4 7] [-1 16 0 5 8 0 1 0 3 0 0 5 2 9 7 11 8 8 8 8 9 14 17 10 16] [0 17 2 13 18 1 1 0 3 0 11 -3 18 13 8 4 7 11 9 6 13 13 16 7 -4] 12 5 3 7 21 10 [2 4 1 4 0 25 22 3 -6 0 2 11 -2 16 12 19 12 -7 -2 25 5 9 2 -2 9] [2 9 6 10 4] [-39 -36 -25 -31 -29 -23 -12 -23 -38 -18 -26 -12 -45 -49 -49 -47 -19 -49 -19 -26 -35 -40 -38 -29 -22] 13 5 2 9 21 [3 4 4 0 0 1 3 9 17 -4 4 5 10 24 12 0 0 1 3 0 2 0 2 1 3] [3 6 8 1 1] 14 5 2 19 21 [1 14 5 11 10 -2 -2 8 13 15 2 4 2 4 -1 4 4 1 8 -2 0 1 3 5 0] [7 5 3 3 3] 15 5 4 21 11 12 8 [2 1 4 5 4] [3 6 5 2 2 1 3 0 3 1 5 1 6 10 9 15 0 7 -3 8 -3 5 9 0 10] [2 4 0 2 6 0 0 2 1 3 0 -3 0 6 0 7 -1 9 -4 -4 10 3 4 2 7] [1 2 -1 0 2 2 0 0 0 1 3 10 11 10 0 -1 13 14 0 8 4 -2 4 4 5] 16 5 3 21 7 6 [5 9 10 5 10] [-84 -58 -74 -42 -101 -51 -45 -96 -77 -83 -63 -22 -57 -23 -25 -47 -83 -46 -41 -86 -47 -32 -52 -76 -96] [1 4 12 7 8 20 -3 22 -4 6 -9 -9 -8 -8 19 6 11 4 4 -2 6 4 30 24 22] 17 5 3 15 10 21 [-3 5 -5 3 6 -2 5 -2 3 2 -1 3 1 0 4 27 17 27 17 -4 3 0 4 4 -2] [12 0 -3 15 4 5 6 4 7 9 2 5 -1 0 5 13 8 -8 -6 0 6 -1 2 -1 0] [6 3 2 10 3] 18 5 1 21 [10 7 3 8 10] 19 5 3 21 6 7 [6 7 3 7 4] [-111 -116 -65 -54 -79 -72 -123 -40 -130 -37 -56 -126 -122 -82 -51 -97 -72 -93 -85 -84 -41 -109 -72 -84 -91] [-54 -28 -106 -80 -22 -34 -84 -113 -42 -90 -29 -118 -123 -55 -29 -98 -30 -94 -38 -16 -79 -79 -75 -83 -24] 20 5 1 21 [3 6 3 5 9] 21 1 0 0 1 0 0 0 0 0 0 0 0 1 1 4 1 3 1 3 4 4 2 2 2 1 3 1 3 4 4 2 3 6 1 3 1 3 4 4 2 4 7 1 3 1 3 4 4 2 5 4 1 3 1 3 4 4 2 2 1 4 2 4 2 3 3 3 1 2 1 2 4 2 3 3 3 1 3 3 2 4 2 3 3 3 1 4 8 2 4 2 3 3 3 1 5 9 2 4 2 3 3 3 1 3 1 1 3 2 2 2 1 2 4 2 4 3 2 2 2 1 2 4 3 1 3 2 2 2 1 2 4 4 6 3 2 2 2 1 2 4 5 1 3 2 2 2 1 2 4 4 1 4 1 4 5 5 2 3 1 2 5 1 4 5 5 2 3 1 3 2 1 4 5 5 2 3 1 4 8 1 4 5 5 2 3 1 5 3 1 4 5 5 2 3 1 5 1 10 5 2 1 1 1 1 2 2 9 5 2 1 1 1 1 2 3 6 5 2 1 1 1 1 2 4 2 5 2 1 1 1 1 2 5 10 5 2 1 1 1 1 2 6 1 6 5 1 1 5 4 5 2 2 1 5 1 1 5 4 5 2 3 4 5 1 1 5 4 5 2 4 6 5 1 1 5 4 5 2 5 7 5 1 1 5 4 5 2 7 1 2 2 3 2 2 1 1 4 2 4 2 3 2 2 1 1 4 3 9 2 3 2 2 1 1 4 4 7 2 3 2 2 1 1 4 5 7 2 3 2 2 1 1 4 8 1 4 4 5 3 5 4 4 3 2 3 4 5 3 5 4 4 3 3 10 4 5 3 5 4 4 3 4 4 4 5 3 5 4 4 3 5 6 4 5 3 5 4 4 3 9 1 10 3 3 4 3 2 3 3 2 3 3 3 4 3 2 3 3 3 9 3 3 4 3 2 3 3 4 4 3 3 4 3 2 3 3 5 8 3 3 4 3 2 3 3 10 1 8 4 1 3 4 2 1 2 2 7 4 1 3 4 2 1 2 3 8 4 1 3 4 2 1 2 4 5 4 1 3 4 2 1 2 5 7 4 1 3 4 2 1 2 11 1 6 2 1 5 2 5 2 2 2 1 2 1 5 2 5 2 2 3 6 2 1 5 2 5 2 2 4 4 2 1 5 2 5 2 2 5 7 2 1 5 2 5 2 2 12 1 2 2 1 4 3 5 1 1 2 9 2 1 4 3 5 1 1 3 6 2 1 4 3 5 1 1 4 10 2 1 4 3 5 1 1 5 4 2 1 4 3 5 1 1 13 1 3 1 4 3 5 4 2 1 2 6 1 4 3 5 4 2 1 3 8 1 4 3 5 4 2 1 4 1 1 4 3 5 4 2 1 5 1 1 4 3 5 4 2 1 14 1 7 4 1 1 5 1 1 2 2 5 4 1 1 5 1 1 2 3 3 4 1 1 5 1 1 2 4 3 4 1 1 5 1 1 2 5 3 4 1 1 5 1 1 2 15 1 2 3 3 2 5 2 5 4 2 1 3 3 2 5 2 5 4 3 4 3 3 2 5 2 5 4 4 5 3 3 2 5 2 5 4 5 4 3 3 2 5 2 5 4 16 1 5 3 5 3 1 1 3 1 2 9 3 5 3 1 1 3 1 3 10 3 5 3 1 1 3 1 4 5 3 5 3 1 1 3 1 5 10 3 5 3 1 1 3 1 17 1 6 1 3 5 5 4 3 5 2 3 1 3 5 5 4 3 5 3 2 1 3 5 5 4 3 5 4 10 1 3 5 5 4 3 5 5 3 1 3 5 5 4 3 5 18 1 10 3 3 4 1 3 3 1 2 7 3 3 4 1 3 3 1 3 3 3 3 4 1 3 3 1 4 8 3 3 4 1 3 3 1 5 10 3 3 4 1 3 3 1 19 1 6 2 2 5 3 5 4 2 2 7 2 2 5 3 5 4 2 3 3 2 2 5 3 5 4 2 4 7 2 2 5 3 5 4 2 5 4 2 2 5 3 5 4 2 20 1 3 3 1 4 1 2 5 3 2 6 3 1 4 1 2 5 3 3 3 3 1 4 1 2 5 3 4 5 3 1 4 1 2 5 3 5 9 3 1 4 1 2 5 3 21 1 0 0 0 0 0 0 0 0 5 5 5 5 5 56 102
Eagle
1
klorel/or-tools
examples/data/rcpsp/multi_mode_max_delay/mm_j20/psp246.sch
[ "Apache-2.0" ]
VarComparability implicit DECLARE Math::BigFloat.STORE_s():::ENTER DECLARE Math::BigFloat.STORE_s():::EXIT13 return String java.lang.String 22 DECLARE Math::BigFloat.TIESCALAR_s():::ENTER $class String # isParam = true java.lang.String 22 DECLARE Math::BigFloat.TIESCALAR_s():::EXIT11 $class String # isParam = true java.lang.String 22 return.deref.is_defined boolean boolean 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bdiv_s():::ENTER $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 DECLARE Math::BigFloat.bdiv_s():::EXIT100 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bdiv_s():::EXIT117 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bdiv_s():::EXIT36 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bdiv_s():::EXIT411 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bdiv_s():::EXIT70 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::ENTER $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT104 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT135 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT186 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT197 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT245 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT319 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bfround_s():::EXIT80 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a.is_defined boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.binf_s():::ENTER $self._a int int 1 $self._a.is_defined boolean boolean 22 $self._a.is_empty boolean boolean 22 $self._e._a.is_defined boolean boolean 22 $self._e._f int int 1 $self._e._p.is_defined boolean boolean 22 $self._e.sign String java.lang.String 22 $self._e.value.deref[] int[] int[] 22[22] $self._e.value Object # hasNull = false hashcode 22 $self._e Object # hasNull = false hashcode 22 $self._m._a.is_defined boolean boolean 22 $self._m._f int int 1 $self._m._p.is_defined boolean boolean 22 $self._m.sign String java.lang.String 22 $self._m.value.deref[] int[] int[] 22[22] $self._m.value Object # hasNull = false hashcode 22 $self._m Object # hasNull = false hashcode 22 $self._p int int 1 $self._p.is_defined boolean boolean 22 $self._p.is_empty boolean boolean 22 $self.sign String java.lang.String 22 $self Object # isParam = true, hasNull = false hashcode 22 $sign String # isParam = true java.lang.String 22 $sign.is_defined boolean # isParam = true boolean 22 DECLARE Math::BigFloat.binf_s():::EXIT104 $self._a int int 1 $self._a.is_defined boolean boolean 22 $self._a.is_empty boolean boolean 22 $self._e._a.is_defined boolean boolean 22 $self._e._f int int 1 $self._e._p.is_defined boolean boolean 22 $self._e.sign String java.lang.String 22 $self._e.value.deref[] int[] int[] 22[22] $self._e.value Object # hasNull = false hashcode 22 $self._e Object # hasNull = false hashcode 22 $self._m._a.is_defined boolean boolean 22 $self._m._f int int 1 $self._m._p.is_defined boolean boolean 22 $self._m.sign String java.lang.String 22 $self._m.value.deref[] int[] int[] 22[22] $self._m.value Object # hasNull = false hashcode 22 $self._m Object # hasNull = false hashcode 22 $self._p int int 1 $self._p.is_defined boolean boolean 22 $self._p.is_empty boolean boolean 22 $self.sign String java.lang.String 22 $self Object # isParam = true, hasNull = false hashcode 22 $sign String # isParam = true java.lang.String 22 $sign.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bmul_s():::ENTER $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 DECLARE Math::BigFloat.bmul_s():::EXIT105 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bmul_s():::EXIT113 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bmul_s():::EXIT169 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bmul_s():::EXIT53 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bmul_s():::EXIT86 $self String # isParam = true java.lang.String 22 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 $y._a int int 1 $y._a.is_defined boolean boolean 22 $y._a.is_empty boolean boolean 22 $y._e._a.is_defined boolean boolean 22 $y._e._f int int 1 $y._e._p.is_defined boolean boolean 22 $y._e.sign String java.lang.String 22 $y._e.value.deref[] int[] int[] 22[22] $y._e.value Object # hasNull = false hashcode 22 $y._e Object # hasNull = false hashcode 22 $y._m._a.is_defined boolean boolean 22 $y._m._f int int 1 $y._m._p.is_defined boolean boolean 22 $y._m.sign String java.lang.String 22 $y._m.value.deref[] int[] int[] 22[22] $y._m.value Object # hasNull = false hashcode 22 $y._m Object # hasNull = false hashcode 22 $y._p int int 1 $y._p.is_defined boolean boolean 22 $y._p.is_empty boolean boolean 22 $y.sign String java.lang.String 22 $y Object # isParam = true, hasNull = false hashcode 22 $a int # isParam = true int 1 $a.is_defined boolean # isParam = true boolean 22 $a.is_empty boolean # isParam = true boolean 22 $p int # isParam = true int 1 $p.is_defined boolean # isParam = true boolean 22 $p.is_empty boolean # isParam = true boolean 22 $r.is_defined boolean # isParam = true boolean 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bnan_s():::ENTER $self._a int int 1 $self._a.is_defined boolean boolean 22 $self._a.is_empty boolean boolean 22 $self._e._a.is_defined boolean boolean 22 $self._e._f int int 1 $self._e._p.is_defined boolean boolean 22 $self._e.sign String java.lang.String 22 $self._e.value.deref[] int[] int[] 22[22] $self._e.value Object # hasNull = false hashcode 22 $self._e Object # hasNull = false hashcode 22 $self._m._a.is_defined boolean boolean 22 $self._m._f int int 1 $self._m._p.is_defined boolean boolean 22 $self._m.sign String java.lang.String 22 $self._m.value.deref[] int[] int[] 22[22] $self._m.value Object # hasNull = false hashcode 22 $self._m Object # hasNull = false hashcode 22 $self._p int int 1 $self._p.is_defined boolean boolean 22 $self._p.is_empty boolean boolean 22 $self.sign String java.lang.String 22 $self Object # isParam = true, hasNull = false hashcode 22 DECLARE Math::BigFloat.bnan_s():::EXIT84 $self._a int int 1 $self._a.is_defined boolean boolean 22 $self._a.is_empty boolean boolean 22 $self._e._a.is_defined boolean boolean 22 $self._e._f int int 1 $self._e._p.is_defined boolean boolean 22 $self._e.sign String java.lang.String 22 $self._e.value.deref[] int[] int[] 22[22] $self._e.value Object # hasNull = false hashcode 22 $self._e Object # hasNull = false hashcode 22 $self._m._a.is_defined boolean boolean 22 $self._m._f int int 1 $self._m._p.is_defined boolean boolean 22 $self._m.sign String java.lang.String 22 $self._m.value.deref[] int[] int[] 22[22] $self._m.value Object # hasNull = false hashcode 22 $self._m Object # hasNull = false hashcode 22 $self._p int int 1 $self._p.is_defined boolean boolean 22 $self._p.is_empty boolean boolean 22 $self.sign String java.lang.String 22 $self Object # isParam = true, hasNull = false hashcode 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bnorm_s():::ENTER DECLARE Math::BigFloat.bnorm_s():::EXIT146 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bnorm_s():::EXIT24 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bround_s():::ENTER $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 DECLARE Math::BigFloat.bround_s():::EXIT118 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bround_s():::EXIT149 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bround_s():::EXIT201 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bround_s():::EXIT94 $x._a int int 1 $x._a.is_defined boolean boolean 22 $x._a.is_empty boolean boolean 22 $x._e._a.is_defined boolean boolean 22 $x._e._f int int 1 $x._e._p.is_defined boolean boolean 22 $x._e.sign String java.lang.String 22 $x._e.value.deref[] int[] int[] 22[22] $x._e.value Object # hasNull = false hashcode 22 $x._e Object # hasNull = false hashcode 22 $x._m._a.is_defined boolean boolean 22 $x._m._f int int 1 $x._m._p.is_defined boolean boolean 22 $x._m.sign String java.lang.String 22 $x._m.value.deref[] int[] int[] 22[22] $x._m.value Object # hasNull = false hashcode 22 $x._m Object # hasNull = false hashcode 22 $x._p int int 1 $x._p.is_defined boolean boolean 22 $x._p.is_empty boolean boolean 22 $x.sign String java.lang.String 22 $x Object # isParam = true, hasNull = false hashcode 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.bstr_s():::ENTER DECLARE Math::BigFloat.bstr_s():::EXIT221 return String java.lang.String 22 DECLARE Math::BigFloat.bstr_s():::EXIT36 return String java.lang.String 22 DECLARE Math::BigFloat.bstr_s():::EXIT40 return String java.lang.String 22 DECLARE Math::BigFloat.bzero_s():::ENTER $self._a int int 1 $self._a.is_defined boolean boolean 22 $self._a.is_empty boolean boolean 22 $self._e._a.is_defined boolean boolean 22 $self._e._f int int 1 $self._e._p.is_defined boolean boolean 22 $self._e.sign String java.lang.String 22 $self._e.value.deref[] int[] int[] 22[22] $self._e.value Object # hasNull = false hashcode 22 $self._e Object # hasNull = false hashcode 22 $self._m._a.is_defined boolean boolean 22 $self._m._f int int 1 $self._m._p.is_defined boolean boolean 22 $self._m.sign String java.lang.String 22 $self._m.value.deref[] int[] int[] 22[22] $self._m.value Object # hasNull = false hashcode 22 $self._m Object # hasNull = false hashcode 22 $self._p int int 1 $self._p.is_defined boolean boolean 22 $self._p.is_empty boolean boolean 22 $self.sign String java.lang.String 22 $self Object # isParam = true, hasNull = false hashcode 22 DECLARE Math::BigFloat.bzero_s():::EXIT84 $self._a int int 1 $self._a.is_defined boolean boolean 22 $self._a.is_empty boolean boolean 22 $self._e._a.is_defined boolean boolean 22 $self._e._f int int 1 $self._e._p.is_defined boolean boolean 22 $self._e.sign String java.lang.String 22 $self._e.value.deref[] int[] int[] 22[22] $self._e.value Object # hasNull = false hashcode 22 $self._e Object # hasNull = false hashcode 22 $self._m._a.is_defined boolean boolean 22 $self._m._f int int 1 $self._m._p.is_defined boolean boolean 22 $self._m.sign String java.lang.String 22 $self._m.value.deref[] int[] int[] 22[22] $self._m.value Object # hasNull = false hashcode 22 $self._m Object # hasNull = false hashcode 22 $self._p int int 1 $self._p.is_defined boolean boolean 22 $self._p.is_empty boolean boolean 22 $self.sign String java.lang.String 22 $self Object # isParam = true, hasNull = false hashcode 22 return._a int int 1 return._a.is_defined boolean boolean 22 return._a.is_empty boolean boolean 22 return._e._a.is_defined boolean boolean 22 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return._p int int 1 return._p.is_defined boolean boolean 22 return._p.is_empty boolean boolean 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.import_s():::ENTER $self String # isParam = true java.lang.String 22 DECLARE Math::BigFloat.import_s():::EXIT67 $self String # isParam = true java.lang.String 22 return.is_defined boolean boolean 22 DECLARE Math::BigFloat.is_one_s():::ENTER DECLARE Math::BigFloat.is_one_s():::EXIT56 return int int 22 DECLARE Math::BigFloat.is_one_s():::EXIT60 return int int 22 DECLARE Math::BigFloat.is_zero_s():::ENTER DECLARE Math::BigFloat.is_zero_s():::EXIT32 return int int 22 DECLARE Math::BigFloat.is_zero_s():::EXIT36 return int int 22 DECLARE Math::BigFloat.new_s():::ENTER $class String # isParam = true java.lang.String 22 $wanted String # isParam = true java.lang.String 22 DECLARE Math::BigFloat.new_s():::EXIT167 $class String # isParam = true java.lang.String 22 $wanted String # isParam = true java.lang.String 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22 DECLARE Math::BigFloat.new_s():::EXIT253 $class String # isParam = true java.lang.String 22 $wanted String # isParam = true java.lang.String 22 return._e._a.is_defined boolean boolean 22 return._e._f int int 1 return._e._p.is_defined boolean boolean 22 return._e.sign String java.lang.String 22 return._e.value.deref[] int[] int[] 22[22] return._e.value Object # hasNull = false hashcode 22 return._e Object # hasNull = false hashcode 22 return._m._a.is_defined boolean boolean 22 return._m._f int int 1 return._m._p.is_defined boolean boolean 22 return._m.sign String java.lang.String 22 return._m.value.deref[] int[] int[] 22[22] return._m.value Object # hasNull = false hashcode 22 return._m Object # hasNull = false hashcode 22 return.sign String java.lang.String 22 return Object # hasNull = false hashcode 22
BlitzBasic
2
eurecom-s3/invscov
daikon/java/daikon/test/split/targets/BigFloat.decls
[ "Apache-2.0" ]
#include "helper.h" #include "../utils/string_utils.h" #include <algorithm> #include <sstream> VersionHelper::VersionHelper(const size_t major, const size_t minor, const size_t revision) : major{ major }, minor{ minor }, revision{ revision } { } template<typename CharT> struct Constants; template<> struct Constants<char> { static inline const char* V = "v"; static inline const char* DOT = "."; static inline const char SPACE = ' '; }; template<> struct Constants<wchar_t> { static inline const wchar_t* V = L"v"; static inline const wchar_t* DOT = L"."; static inline const wchar_t SPACE = L' '; }; template<typename CharT> std::optional<VersionHelper> fromString(std::basic_string_view<CharT> str) { try { str = left_trim<CharT>(trim<CharT>(str), Constants<CharT>::V); std::basic_string<CharT> spacedStr{ str }; replace_chars<CharT>(spacedStr, Constants<CharT>::DOT, Constants<CharT>::SPACE); std::basic_istringstream<CharT> ss{ spacedStr }; VersionHelper result{ 0, 0, 0 }; ss >> result.major; ss >> result.minor; ss >> result.revision; if (!ss.fail() && ss.eof()) { return result; } } catch (...) { } return std::nullopt; } std::optional<VersionHelper> VersionHelper::fromString(std::string_view s) { return ::fromString(s); } std::optional<VersionHelper> VersionHelper::fromString(std::wstring_view s) { return ::fromString(s); } std::wstring VersionHelper::toWstring() const { std::wstring result{ L"v" }; result += std::to_wstring(major); result += L'.'; result += std::to_wstring(minor); result += L'.'; result += std::to_wstring(revision); return result; } std::string VersionHelper::toString() const { std::string result{ "v" }; result += std::to_string(major); result += '.'; result += std::to_string(minor); result += '.'; result += std::to_string(revision); return result; }
C++
4
tameemzabalawi/PowerToys
src/common/version/helper.cpp
[ "MIT" ]
use std::marker; struct Foo<T> { foo: Option<Option<Foo<T>>>, marker: marker::PhantomData<T> } //~^ ERROR recursive type `Foo` has infinite size impl<T> Foo<T> { fn bar(&self) {} } fn main() {}
Rust
3
Eric-Arellano/rust
src/test/ui/issues/issue-17431-4.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
package test public fun getFoo(): kotlin.Int
Text
1
qussarah/declare
compiler/testData/loadJava/compiledKotlin/fun/nonGeneric/NsFunGetFoo.txt
[ "Apache-2.0" ]
#ifndef CAFFE2_OPERATORS_SPATIAL_BATCH_NORM_OP_IMPL_CUH_ #define CAFFE2_OPERATORS_SPATIAL_BATCH_NORM_OP_IMPL_CUH_ #include "caffe2/operators/spatial_batch_norm_op.h" #include <limits> #include <cub/block/block_reduce.cuh> #include <cub/cub.cuh> #include "caffe2/core/context_gpu.h" #include "caffe2/utils/math.h" #include "caffe2/utils/math/reduce.cuh" namespace caffe2 { namespace { template <typename T> __global__ void ComputeFusedParamCUDAKernel( const int C, const T epsilon, const T* scale, const T* bias, const T* mean, const T* var, T* alpha, T* beta); template <> __global__ void ComputeFusedParamCUDAKernel<float>( const int C, const float epsilon, const float* scale, const float* bias, const float* mean, const float* var, float* alpha, float* beta) { const int c = blockIdx.x * CAFFE_CUDA_NUM_THREADS + threadIdx.x; if (c < C) { const float scale_x_rstd = scale[c] * rsqrtf(var[c] + epsilon); alpha[c] = scale_x_rstd; beta[c] = -scale_x_rstd * mean[c] + bias[c]; } } template <typename T> __global__ void ComputeBatchMomentsCUDAKernel( const int C, const T scale, const T* batch_mean_sum, const T* batch_var_sum, T* mean, T* var) { const int c = blockIdx.x * CAFFE_CUDA_NUM_THREADS + threadIdx.x; if (c < C) { const T mu = scale * batch_mean_sum[c]; mean[c] = mu; var[c] = scale * batch_var_sum[c] - mu * mu; } } template <typename T> __global__ void ComputeRunningMomentsAndFusedParamCUDAKernel( const int C, const int reduce_size, const T momentum, const T epsilon, const T* scale, const T* bias, const T* mean, const T* var, T* running_mean, T* running_var, T* rstd, T* alpha, T* beta); template <> __global__ void ComputeRunningMomentsAndFusedParamCUDAKernel<float>( const int C, const int reduce_size, const float momentum, const float epsilon, const float* scale, const float* bias, const float* mean, const float* var, float* running_mean, float* running_var, float* rstd, float* alpha, float* beta) { const int c = blockIdx.x * CAFFE_CUDA_NUM_THREADS + threadIdx.x; const float a = 1.0f - momentum; const float b = momentum; const float unbias_scale = reduce_size == 1 ? std::numeric_limits<float>::infinity() : static_cast<float>(reduce_size) / static_cast<float>(reduce_size - 1); if (c < C) { const float rstd_val = rsqrtf(var[c] + epsilon); const float scale_x_rstd = scale[c] * rstd_val; running_mean[c] = a * mean[c] + b * running_mean[c]; running_var[c] = a * unbias_scale * var[c] + b * running_var[c]; rstd[c] = rstd_val; alpha[c] = scale_x_rstd; beta[c] = -scale_x_rstd * mean[c] + bias[c]; } } template <typename T> __global__ void ComputeMultiBatchScaleBiasGradientsAndFusedParamsCUDAKernel( const int C, const T batch_scale, const T mean_scale, const T* scale, const T* mean, const T* rstd, const T* dscale_sum, const T* dbias_sum, T* dscale, T* dbias, T* alpha, T* beta, T* gamma) { const int c = blockIdx.x * CAFFE_CUDA_NUM_THREADS + threadIdx.x; if (c < C) { const T dscale_val = dscale_sum[c] * batch_scale; const T dbias_val = dbias_sum[c] * batch_scale; const T scale_x_rstd = scale[c] * rstd[c]; const T dscale_x_rstd = dscale_val * rstd[c]; dscale[c] = dscale_val; dbias[c] = dbias_val; alpha[c] = scale_x_rstd; beta[c] = -scale_x_rstd * dscale_x_rstd * mean_scale; gamma[c] = scale_x_rstd * (mean[c] * dscale_x_rstd - dbias_val) * mean_scale; } } template <typename T, int kBlockDimX, int kBlockDimY> __global__ void ComputeScaleBiasGradientsAndFusedParamsNCHWCUDAKernel( const int N, const int C, const int HxW, const T* dY, const T* X, const T* scale, const T* mean, const T* rstd, T* dscale, T* dbias, T* alpha, T* beta, T* gamma) { __shared__ typename BlockReduce2D<T, kBlockDimX, kBlockDimY>::TempStorage ds_storage; __shared__ typename BlockReduce2D<T, kBlockDimX, kBlockDimY>::TempStorage db_storage; const int c = blockIdx.x; const T mean_scale = T(1) / static_cast<T>(N * HxW); T ds_val = 0; T db_val = 0; for (int i = threadIdx.x; i < N; i += blockDim.x) { for (int j = threadIdx.y; j < HxW; j += blockDim.y) { const int index = (i * C + c) * HxW + j; ds_val += dY[index] * X[index]; db_val += dY[index]; } } ds_val = BlockReduce2D<T, kBlockDimX, kBlockDimY>(ds_storage).Sum(ds_val); db_val = BlockReduce2D<T, kBlockDimX, kBlockDimY>(db_storage).Sum(db_val); if (threadIdx.x == 0 && threadIdx.y == 0) { ds_val = (ds_val - mean[c] * db_val) * rstd[c]; const T scale_x_rstd = scale[c] * rstd[c]; const T dscale_x_rstd = ds_val * rstd[c]; dscale[c] = ds_val; dbias[c] = db_val; alpha[c] = scale_x_rstd; beta[c] = -scale_x_rstd * dscale_x_rstd * mean_scale; gamma[c] = scale_x_rstd * (mean[c] * dscale_x_rstd - db_val) * mean_scale; } } template <typename T> __global__ void ComputeScaleGradientAndFusedParamsNHWCCUDAKernel( const int C, const T mean_scale, const T* dYxX, const T* dbias, const T* scale, const T* mean, const T* rstd, T* dscale, T* alpha, T* beta, T* gamma) { const int c = blockIdx.x * CAFFE_CUDA_NUM_THREADS + threadIdx.x; if (c < C) { const T ds = (dYxX[c] - dbias[c] * mean[c]) * rstd[c]; dscale[c] = ds; const T scale_x_rstd = scale[c] * rstd[c]; const T dscale_x_rstd = ds * rstd[c]; alpha[c] = scale_x_rstd; beta[c] = -scale_x_rstd * dscale_x_rstd * mean_scale; gamma[c] = scale_x_rstd * (mean[c] * dscale_x_rstd - dbias[c]) * mean_scale; } } template <typename T> __global__ void ComputeXGradientNCHWCUDAKernel( const int C, const int M, const int HxW, const T* dY, const T* X, const T* alpha, const T* beta, const T* gamma, T* dX) { const int nc = blockIdx.x / M; const int c = nc % C; const int x = blockIdx.x % M * CAFFE_CUDA_NUM_THREADS + threadIdx.x; if (x < HxW) { const int index = nc * HxW + x; dX[index] = alpha[c] * dY[index] + beta[c] * X[index] + gamma[c]; } } template <typename T> __global__ void ComputeXGradientNHWCCUDAKernel( const int C, const int HxW, const T* dY, const T* X, const T* alpha, const T* beta, const T* gamma, T* dX) { const int c = blockIdx.y * CAFFE_CUDA_NUM_THREADS + threadIdx.x; if (c < C) { const int index = blockIdx.x * C + c; dX[index] = alpha[c] * dY[index] + beta[c] * X[index] + gamma[c]; } } } // namespace template <> template <typename T> void SpatialBNOp<CUDAContext>::ComputeFusedParam( const int C, const T* scale, const T* bias, const T* mean, const T* var, T* alpha, T* beta) { const int M = math::DivUp(C, CAFFE_CUDA_NUM_THREADS); ComputeFusedParamCUDAKernel<T> <<<M, CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>( C, static_cast<T>(epsilon_), scale, bias, mean, var, alpha, beta); C10_CUDA_KERNEL_LAUNCH_CHECK(); } template <> template <typename T> void SpatialBNOp<CUDAContext>::ComputeBatchMoments( const int N, const int C, const int HxW, const T* batch_mean_sum, const T* batch_var_sum, T* mean, T* var) { const int M = math::DivUp(C, CAFFE_CUDA_NUM_THREADS); const T scale = T(1) / static_cast<T>(num_batches_ * N * HxW); ComputeBatchMomentsCUDAKernel<T> <<<M, CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>( C, scale, batch_mean_sum, batch_var_sum, mean, var); C10_CUDA_KERNEL_LAUNCH_CHECK(); } template <> template <typename T> void SpatialBNOp<CUDAContext>::ComputeRunningMomentsAndFusedParam( const int C, const int reduce_size, const T* scale, const T* bias, const T* mean, const T* var, T* running_mean, T* running_var, T* rstd, T* alpha, T* beta) { const int M = math::DivUp(C, CAFFE_CUDA_NUM_THREADS); ComputeRunningMomentsAndFusedParamCUDAKernel<T> <<<M, CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>( C, reduce_size, static_cast<T>(momentum_), static_cast<T>(epsilon_), scale, bias, mean, var, running_mean, running_var, rstd, alpha, beta); C10_CUDA_KERNEL_LAUNCH_CHECK(); } template <> template <typename T> void SpatialBNGradientOp<CUDAContext>:: ComputeMultiBatchScaleBiasGradientsAndFusedParams( const int N, const int C, const int HxW, const T* scale, const T* mean, const T* rstd, const T* dscale_sum, const T* dbias_sum, T* dscale, T* dbias, T* alpha, T* beta, T* gamma) { const int M = math::DivUp(C, CAFFE_CUDA_NUM_THREADS); const T batch_scale = T(1) / static_cast<T>(num_batches_); const T mean_scale = T(1) / static_cast<T>(N * HxW); ComputeMultiBatchScaleBiasGradientsAndFusedParamsCUDAKernel<T> <<<M, CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>( C, batch_scale, mean_scale, scale, mean, rstd, dscale_sum, dbias_sum, dscale, dbias, alpha, beta, gamma); C10_CUDA_KERNEL_LAUNCH_CHECK(); } template <> template <typename T> void SpatialBNGradientOp<CUDAContext>::ComputeScaleBiasGradientsAndFusedParams( const int N, const int C, const int HxW, const T* dY, const T* X, const T* scale, const T* mean, const T* rstd, T* dscale, T* dbias, T* alpha, T* beta, T* gamma, T* scratch) { if (order_ == StorageOrder::NCHW) { DISPATCH_REDUCE_KERNEL_BY_2D_BLOCK_WITH_TYPE_1( HxW, ComputeScaleBiasGradientsAndFusedParamsNCHWCUDAKernel, T, C, context_.cuda_stream(), N, C, HxW, dY, X, scale, mean, rstd, dscale, dbias, alpha, beta, gamma); } else { ReinitializeTensor(&ones_, N * HxW, at::dtype<T>().device(CUDA)); math::Set<T, CUDAContext>( N * HxW, T(1), ones_.template mutable_data<T>(), &context_); const T* ones_data = ones_.template data<T>(); math::Mul<T, CUDAContext>(N * C * HxW, dY, X, scratch, &context_); math::Gemm<T, CUDAContext>( CblasTrans, CblasNoTrans, C, 1, N * HxW, 1.0f, scratch, ones_data, 0.0f, dscale, &context_); math::Gemm<T, CUDAContext>( CblasTrans, CblasNoTrans, C, 1, N * HxW, 1.0f, dY, ones_data, 0.0f, dbias, &context_); const int M = math::DivUp(C, CAFFE_CUDA_NUM_THREADS); ComputeScaleGradientAndFusedParamsNHWCCUDAKernel<T> <<<M, CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>( C, T(1) / static_cast<T>(N * HxW), dscale, dbias, scale, mean, rstd, dscale, alpha, beta, gamma); C10_CUDA_KERNEL_LAUNCH_CHECK(); } } template <> template <typename T> void SpatialBNGradientOp<CUDAContext>::ComputeXGradient( const int N, const int C, const int HxW, const T* dY, const T* X, const T* alpha, const T* beta, const T* gamma, T* dX) { if (order_ == StorageOrder::NCHW) { const int M = math::DivUp(HxW, CAFFE_CUDA_NUM_THREADS); ComputeXGradientNCHWCUDAKernel<T> <<<N * C * M, CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>( C, M, HxW, dY, X, alpha, beta, gamma, dX); C10_CUDA_KERNEL_LAUNCH_CHECK(); } else { const int M = math::DivUp(C, CAFFE_CUDA_NUM_THREADS); ComputeXGradientNHWCCUDAKernel<T> <<<dim3(N * HxW, M), CAFFE_CUDA_NUM_THREADS, 0, context_.cuda_stream()>>>(C, HxW, dY, X, alpha, beta, gamma, dX); C10_CUDA_KERNEL_LAUNCH_CHECK(); } } } // namespace caffe2 #endif // CAFFE2_OPERATORS_SPATIAL_BATCH_NORM_OP_IMPL_CUH_
Cuda
4
Hacky-DH/pytorch
caffe2/operators/spatial_batch_norm_op_impl.cuh
[ "Intel" ]
--TEST-- Trying use name of an internal class as interface name --FILE-- <?php interface stdClass { } ?> --EXPECTF-- Fatal error: Cannot declare interface stdClass, because the name is already in use in %s on line %d
PHP
3
thiagooak/php-src
Zend/tests/inter_06.phpt
[ "PHP-3.01" ]
void allow(int addr, int len, string mark) { string block=sprintf("%d.%d.%d.%d/%d",addr>>24,(addr>>16)&255,(addr>>8)&255,addr&255,len); //string block = sprintf("%d:%d", addr, addr + (1<<(16-len)) - 1); write("Allowing: %s\n",block); Process.create_process(({"iptables","-I","INPUT","--src",block,"-j","ACCEPT", "-m", "comment", "--comment", mark}))->wait(); } int main() { int count_packets = 0; //TODO: Have a command-line option to set this. 0 counts bytes, 1 counts packets. int addr; //Clean out old ones array(int) deleteme = ({ }); foreach (Process.run("iptables --line-numbers -nvxL INPUT")->stdout/"\n", string line) if (sscanf(line, "%d %*s/* probe: %d */", int idx, int probe) == 3) deleteme += ({idx}); foreach (reverse(deleteme), int idx) Process.create_process(({"iptables","-D","INPUT",(string)idx}))->wait(); //TODO: Do the above on Ctrl-C too int size = 32; //To probe TCP or UDP port numbers, change size to 16 and adjust allow() for (int len=1;len<=size;++len) { allow(addr, len, "probe: 0"); allow(addr+(1<<(size-len)), len, "probe: 1"); array(int) idx = ({-1, -1}), pkt = ({0, 0}), bytes = ({0, 0}); while (1) { sleep(2); foreach (Process.run("iptables --line-numbers -nvxL INPUT")->stdout/"\n", string line) { if (sscanf(line, "%d %d %d %*s/* probe: %d */", int i, int p, int b, int probe) == 5) { idx[probe] = i; pkt[probe] = p; bytes[probe] = b; } } write("%d/%d for 0, %d/%d for 1\n", bytes[0], pkt[0], bytes[1], pkt[1]); int traf0 = count_packets ? pkt[0] * 5 : bytes[0]; //Packet count is scaled by 5 for the sake int traf1 = count_packets ? pkt[1] * 5 : bytes[1]; //of the "insufficient traffic" check if (traf0 < 10000 && traf1 < 10000) {write("Insufficient traffic to be confident; waiting for more.\n"); continue;} if (traf1>traf0) addr+=(1<<(size-len)); break; } Process.create_process(({"iptables","-D","INPUT",(string)max(idx[0], idx[1])}))->wait(); Process.create_process(({"iptables","-D","INPUT",(string)min(idx[0], idx[1])}))->wait(); } string ip=sprintf("%d.%d.%d.%d",addr>>24,(addr>>16)&255,(addr>>8)&255,addr&255); Process.create_process(({"whois",ip}))->wait(); Process.create_process(({"ip","r","get",ip}))->wait(); }
Pike
4
stephenangelico/shed
find_traffic.pike
[ "MIT" ]
(* * aPLib compression library - the smaller the better :) * * TMT Pascal packing example * * Copyright (c) 1998-2009 by Joergen Ibsen / Jibz * All Rights Reserved * * http://www.ibsensoftware.com/ * * -> VPascal by Veit Kannegieser, 23.09.1998 * -> TMT Pascal by Oleg Prokhorov *) uses aplibu; var infile,outfile :file; inbuffer,outbuffer :pointer; workmem :pointer; insize,outsize :longint; begin (* check number of parameters *) if paramcount<1 then begin writeln; writeln('Syntax: APPACK <input file> [output file]'); writeln; halt(1); end; (* open input file and read data *) assign(infile,paramstr(1)); reset(infile,1); insize:=filesize(infile); getmem(inbuffer,insize); blockread(infile,inbuffer^,insize); close(infile); (* get output mem and workmem *) getmem(outbuffer,aP_max_packed_size(insize)); getmem(workmem,aP_workmem_size(insize)); (* pack data *) outsize:=aPsafe_pack(inbuffer^,outbuffer^,insize,workmem^,@cb1,nil); writeln; if outsize=aPLib_Error then begin WriteLn; WriteLn('ERR: an error occured while compressing'); WriteLn; Halt(1); end; (* write packed data *) if paramcount<2 then begin assign(outfile,'out.apk'); writeln; writeln('No output file specified, writing to ''out.apk'''); end else assign(outfile,paramstr(2)); rewrite(outfile,1); blockwrite(outfile,outbuffer^,outsize); close(outfile); (* free mem *) freemem(inbuffer,insize); freemem(outbuffer,aP_max_packed_size(insize)); freemem(workmem,aP_workmem_size(insize)); end.
Pascal
4
nehalem501/gendev
tools/files/applib/contrib/tmt/appack.pas
[ "BSD-3-Clause" ]
extensions [ nw ] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Declare Variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; globals [ ;; Globals that come from the widget Topology ;type of graph Num-Agents ;number of turtles Connection-Probability ;for random network Initial-Neighbours ;for small world network Rewiring-Probability Scale-Free-Exponent ;for scale-free network Initial-Random-Types? ;Agents' types initialization Initial-Maxi-% Initial-Mini-% Initial-Conf-% Initial-Anti-% Strength-of-Dilemma ;prisoner's dilemma inicoop replacement? cultural-constant load-topology? FileIn FileOut ;stopping condition lAvg condition cooperation-list avg1 avg2 var1 var2 ;NETWORK CONSTRUCTION ;for scale-free graphical? sequence p_k Z uniform ;for connectivity success? ;;appearance sizeT radius ;;OUTPUTS cooperation-rate satisfaction-rate satisfaction-rate2 life-expectation mortality-rate prob-to-die prob-die-imitation infinity ;;IN THE NETWORK CONTEXT ; clustering-coefficient ;; average of clustering coefficients of all turtles ; average-path-length ;; average path length of the network ; network-density ; diameter ; n-links ; clustering-coefficient-2 ;TURTLE POPULATION maxi mini conf anti turtles-maxi turtles-mini turtles-conf turtles-anti ;perception ] turtles-own [ cooperate ;; patch will cooperate my.rule ;; patch will have one of four rules: 1=Maxi 2=mini 3=conformist 4=anticonformist score ;; score resulting from interaction of neighboring patches. It is dictated by the PD payoffs and the discount factor last.score inst.score ; satisfaction satisfaction2 age chances.imitations rule? behavior? ;for network computations ;%%%%% ;distance-from-other-turtles degree free-stubs ;node-clustering-coefficient ;betweenness-centrality ;eigenvector-centrality ;page-rank ;closeness-centrality ;longest-path ;mean-path ;time since last changes rule.history behavior.history ticks.at.death.list satisfaction.history scores.history best.history ;time.rule ;time.behavior ;n.changes ;n.changes.behavior ;n.changes.list ;time.rule.list ;time.behavior.list ;rule.at.death.list ;age.at.death.list ;rule.history ;time.history ;ticks.history ;counter.age ;counter.ticks ;age.history ;neighbors' type n.maxi n.mini n.anti n.conf ;neighbors' type n.maxi.list n.mini.list n.anti.list n.conf.list ;for outputs ; theta_1 ; theta_2 ; weighting-history ; copy-error-rule ; copy-error-behavior run.info ] links-own[ ; for small-world rewired? ] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Setup ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to setup clear-all ;always need to be setup set Num-Agents *-Num-Agents set Topology *-Topology set Strength-of-Dilemma *-strength-of-dilemma set inicoop *-inicoop set replacement? *-replacement? set cultural-constant *-cultural-constant set load-topology? Load-Topology set FileIn *-fileIn let seed random 2000000000 random-seed seed ;only setup if RN if Topology = "Random" [set Connection-Probability *-Connection-Probability] ;only setup if SW if Topology = "Small-World" [ set Initial-Neighbours *-Initial-Neighbours set Rewiring-Probability *-Rewiring-Probability ] ;if Topology = "Scale-Free" [set Scale-Free-Exponent *-Scale-Free-Exponent] set Initial-Random-Types? *-Initial-Random-Types? ifelse not Initial-Random-Types? [ set Initial-Maxi-% *-Initial-Maxi-% set Initial-Mini-% *-Initial-Mini-% set Initial-Conf-% *-Initial-Conf-% set Initial-Anti-% (100 - Initial-Conf-% - Initial-Mini-% - Initial-Maxi-%) ] [ set Initial-Maxi-% (random-float 1) * 100 set Initial-Mini-% (random-float (1 - Initial-Maxi-%)) * 100 set Initial-Conf-% (random-float (1 - Initial-Maxi-% - Initial-Mini-%)) * 100 set Initial-Anti-% (100 - Initial-Conf-% - Initial-Mini-% - Initial-Maxi-%) ] ;set Transcription-error 1 ;set PER *-p-Error-Copy-Rule ;set PEB *-p-Error-Copy-Behavior set radius ( ( min (list world-width world-height) ) / 2 - 1) set FileOut (word Rewiring-Probability "_" inicoop "_" seed "_" Strength-of-Dilemma "_" cultural-constant "_" Initial-Neighbours "_" replacement? ) common-setup end to common-setup set Initial-Anti-% (100 - Initial-Conf-% - Initial-Mini-% - Initial-Maxi-%) set infinity Num-Agents * 100 set success? false set condition false set cooperation-list [] set avg1 0 set avg2 0 set var1 0 set var2 0 set lAvg 50 ifelse not load-topology? [setup-Topology] ;[nw:load-matrix FileName turtles links ;; ask links [set color gray] ;] [ nw:load-graphml FileIn nw:set-context turtles links ] set Num-Agents count turtles setup-init-turtles if Topology != "Lattice" [ask turtles [set size 3]] set sizeT [size] of one-of turtles set-life-distribution-USA2010 ;if replacement? [ ; init-age-USA2010 ; ] ask turtles [set degree count link-neighbors] reset-ticks end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Open Mole Routines ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to run-to-grid [tmax] common-setup while [not condition and ticks < tmax ][go] ;set-last-measures reset-ticks end to run-Logo [tmax] while [not condition and ticks < tmax] [go] ;set-last-measures end to-report go-stop? let res true let a1 max (list avg1 avg2) let a2 min (list avg1 avg2) let v1 max (list var1 var2) let v2 min (list var1 var2) let c1 (a1 - a2) let c2 (v1 - v2) ifelse c1 < .03 and c2 < .005 [set res true][set res false] if c2 = 0 and c2 = 0 [set res true ] if majority != 3 and replacement? [set res false] report res end to-report majority let lista (list maxi mini conf anti) let lista2 sort lista report (( position (item 3 lista2 ) lista ) + 1) end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Measures & EXPORT;;;;;;;;;; ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to calculate-Neighbors ask turtles [ set n.maxi count link-neighbors with [my.rule = 1] / degree set n.mini count link-neighbors with [my.rule = 2] / degree set n.conf count link-neighbors with [my.rule = 3] / degree set n.anti count link-neighbors with [my.rule = 4] / degree set n.maxi.list lput n.maxi n.maxi.list set n.mini.list lput n.mini n.mini.list set n.anti.list lput n.anti n.anti.list set n.conf.list lput n.conf n.conf.list ] end to set-outputs ;populations set turtles-maxi turtles with [ my.rule = 1] set turtles-mini turtles with [ my.rule = 2] set turtles-conf turtles with [ my.rule = 3] set turtles-anti turtles with [ my.rule = 4] set maxi count turtles-maxi set mini count turtles-mini set conf count turtles-conf set anti count turtles-anti set cooperation-rate count turtles with [cooperate] / Num-Agents ;set satisfaction-rate count turtles with [shape = "face happy"] / Num-Agents set satisfaction-rate2 mean [satisfaction2] of turtles ;;;##FILL STOP CONDITION MEASURES ifelse length cooperation-list < lAvg [set cooperation-list fput cooperation-rate cooperation-list] [ set cooperation-list fput cooperation-rate cooperation-list set cooperation-list remove-item (lAvg - 1) cooperation-list if ticks = 150 [set avg1 mean cooperation-list set var1 sqrt variance cooperation-list ] if ticks = 200 [ set avg2 mean cooperation-list set var2 sqrt variance cooperation-list set condition go-stop? ] if ticks mod 50 = 0 and ticks > 200 [ set avg1 avg2 set var1 var2 set avg2 mean cooperation-list set var2 sqrt variance cooperation-list set condition go-stop? ] ] end to export-graphL let name (word FileOut "_graph.graphml") nw:save-graphml name end to export-coopL let name (word FileOut "_coop.csv") export-plot "Cooperation and Satisfaction" name end to export-propL let name (word FileOut "_popul.csv") export-plot "Population" name end to export-agesL let name (word FileOut "_ages.csv") export-plot "Age Plot" name end to export-graph nw:save-graphml "graph.graphml" end to export-coop export-plot "Cooperation and Satisfaction" "coop.csv" end to export-prop export-plot "Population" "popul.csv" end to export-ages export-plot "Age Plot" "ages.csv" end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Setup Turtles ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to setup-init-turtles if-else Initial-Random-Types? [ask turtles [set my.rule (random 4) + 1]] [ ask n-of (floor (Initial-Maxi-% * Num-Agents / 100 )) turtles [set my.rule 1] ask n-of floor ((Initial-Mini-% * Num-Agents / 100 )) turtles with [my.rule != 1] [set my.rule 2] ask n-of floor ((Initial-Conf-% * Num-Agents / 100 )) turtles with [my.rule != 1 and my.rule != 2] [set my.rule 3] ask turtles with [my.rule != 1 and my.rule != 2 and my.rule != 3] [set my.rule 4] ] ask turtles [ set shape "face sad" set size sizeT set age 0 set satisfaction2 1 ifelse random-float 1.0 < (inicoop / 100) [set cooperate true] [set cooperate false] establish-color set score 0.0 set rule? false set behavior? false set chances.imitations 0 ;set perception 0 set run.info (word Topology "*" Strength-of-Dilemma "*" inicoop "*" replacement? "*" cultural-constant "*" Rewiring-Probability "*" Initial-Neighbours "*" Connection-Probability "*" Scale-Free-Exponent "*" Initial-Random-Types? "*" load-topology? "*" Num-Agents ) set rule.history [] set behavior.history [] set ticks.at.death.list [] set satisfaction.history [] set scores.history [] set best.history [] set n.maxi.list [] set n.mini.list [] set n.anti.list [] set n.conf.list [] ] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; To Go ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to go ;;;;;;;;;;;;;;;;;;;;; ;uncomment to change dynamically on widget ;set Strength-of-Dilemma *-strength-of-dilemma ;set inicoop *-inicoop ;set replacement? *-replacement? ;set cultural-constant *-cultural-constant ;if replacement? [set-life-distribution-USA2010] ;;;;;;;;;;;;;;;;;;;;; ask turtles [interact] decision-stage learn-stage ask turtles [fill.state.info] ;;;;;;;;;;;;;;;;;;;;;;; ;uncomment to view changes widget ;ask turtles [establish-color] ;ask turtles [set-faces] ;;;;;;;;;;;;;;;;;;;;;;; ask turtles [set satisfaction2 satisfaction-2] set-outputs calculate-Neighbors my-update-plots reset-change ask turtles [set chances.imitations chances.imitations + 1 ifelse replacement? [ if chances.imitations >= cultural-constant [set age age + 1 set chances.imitations 0 ] ][set age age + 1] ] if replacement? [replacement] tick end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Go Routines ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to fill.state.info set rule.history lput my.rule rule.history set behavior.history lput cooperate behavior.history set satisfaction.history lput satisfaction2 satisfaction.history set scores.history lput score scores.history set best.history lput am-i-the-best? best.history end to reset-change ask turtles [ set rule? false set behavior? false ] end to set-faces ifelse am-i-the-best? [set shape "face happy"] [set shape "face sad"] end to interact ;; calculates the agents' payoffs for Prisioner's Dilema. let total-cooperators count link-neighbors with [cooperate] set inst.score 0 ifelse cooperate [set inst.score (total-cooperators * (1 - Strength-of-Dilemma) / degree)] [set inst.score ((total-cooperators + (degree - total-cooperators) * Strength-of-Dilemma ) / degree)] set last.score score set score inst.score end to-report am-i-the-best? ;; reports true if the agent is the best in its neighborhood let test false if ( my.rule = 1) and (score >= [score] of max-one-of link-neighbors [score] * 0.99) [set test true] if ( my.rule = 2) and (score <= [score] of min-one-of link-neighbors [score] * 1.01) [set test true] if ( my.rule = 3) and (member? my.rule majority-rules) [set test true] if ( my.rule = 4) and (member? my.rule minority-rules) and not all? (link-neighbors) [ my.rule = 4] [set test true] report test end to decision-stage ask turtles [ let satisfaction am-i-the-best? ; ; if error_on_satisfaction ; [ ; if random-float 1 <= copy-error-rule ; ; [set satisfaction not am-i-the-best?] ; ] if not satisfaction [ ;if random-float 1 <= theta ;only some agents will be allowed to change rule ; [ set rule? true set behavior? true ; ] ; if random-float 1 <= theta ; [set behavior? true] ] if age < 15 [set rule? false] ] end to learn-stage ask turtles [ if rule? [select-rule] if behavior? [select-behavior] ] end to-report is-my-rule-the-best? ;; reports true if the agent's my.rule is used by any of the best valuated agents in its neighborhood (according with its rule) and false otherwise let test false ifelse am-i-the-best? [set test true][ if member? my.rule [my.rule] of best-elements [set test true] ] report test end ; choose strategy if your rule is not the best, if innovate? choose rule if you are unsatisfied to select-rule ;ifelse not is-my-rule-the-best? if not is-my-rule-the-best? [copy-strategy (one-of best-elements)] ;[if not am-i-the-best? and member? rule [rule] of best-elements and innovate? ;stuck agent will innovate with probability error-copy ; [set rule (random 4 + 1)] ;] end to copy-strategy [temp-agent] ;;;RULE STEP ;ifelse random-float 1.0 > copy-error-rule ; some agents do the right thing ; [ set my.rule [my.rule] of temp-agent ; set theta_1 [theta_1] of temp-agent ; set theta_2 [theta_2] of temp-agent ; if Copy-Thetas? [ ; set theta_1 add-noise "theta_1" Transcription-Error ; set theta_2 add-noise "theta_2" Transcription-Error ; ] ; ] ; [set my.rule random 4 + 1 ] ;do a random thing ; set rule? false end to select-behavior ;ifelse random-float 1 > copy-error-behavior ;only some agents do the right thing ; [ if ( my.rule = 1) or ( my.rule = 2) [set cooperate [cooperate] of one-of best-elements ] if my.rule = 3 [set cooperate majority-behavior] if my.rule = 4 [set cooperate not majority-behavior] ; ] ; [ ; ifelse random-float 1.0 < .5 [set cooperate true] [set cooperate false] ;choose random behaviour ; ] set behavior? false end to-report majority-behavior let mylist [cooperate] of (turtle-set link-neighbors self) report one-of modes mylist end to-report satisfaction-2 let sat2 0 let myset (turtle-set link-neighbors self) if my.rule = 1 [ ifelse abs(max [score] of myset - min [score] of myset) = 0 [set sat2 1] [set sat2 ( (score - min [score] of myset ) / (max [score] of myset - min [score] of myset))] ] if my.rule = 2 [ ifelse (max [score] of myset - min [score] of myset) = 0 [set sat2 1] [set sat2 ( ( max [score] of myset - score ) / ( max [score] of myset - min [score] of myset ))] ] if my.rule = 3 [ let my-frequency ( count link-neighbors with [ my.rule = 3] + 1 ) / (degree + 1) ifelse abs(min-frequency - max-frequency) = 0 [set sat2 1] [set sat2 (my-frequency - min-frequency) / (max-frequency - min-frequency)] ] if my.rule = 4 [ let my-frequency (count link-neighbors with [ my.rule = 4] + 1) / ( degree + 1) ifelse abs( max-frequency - min-frequency ) = 0 [set sat2 1] [set sat2 ( max-frequency - my-frequency ) / ( max-frequency - min-frequency)] ] report sat2 end to-report majority-rules ;; reports a set with the number of the most frequent rules in agent's neighborhood (agent included) ;; be careful when use in an ask cycle as the command is applied to "self" let mylist [ my.rule ] of (turtle-set link-neighbors self) set mylist modes mylist report mylist end to-report minority-rules ;; reports a set with the number of the less frequent rules in agent's neighborhood (agent included) ;; be careful when use in an ask cycle as the command is applied to "self" let mylist_1 [ my.rule ] of (turtle-set link-neighbors self) let mylist [] let j 1 while [empty? mylist] [ let i 1 repeat 4 [ if length filter [? = i] mylist_1 = j [set mylist lput i mylist] set i i + 1 ] set j j + 1 ] report mylist end to-report best-elements ;; report a list with the agents with the best performance according to agents let myset (turtle-set link-neighbors self) if my.rule = 1 [set myset myset with [score >= [score] of max-one-of myset [score] * 0.99]] if my.rule = 2 [set myset myset with [score <= [score] of min-one-of myset [score] * 1.01]] if my.rule = 3 [ let rules-list majority-rules set myset myset with [member? my.rule rules-list] ] if my.rule = 4 [ let rules-list minority-rules if not empty? rules-list [ set myset myset with [member? my.rule rules-list] ] ] report myset end to-report add-noise [value noise-std] let epsilon random-normal 0.0 noise-std if ( epsilon <= -100 ) [ set epsilon -99] let noisy-value runresult value * 100 / ( 100 + epsilon ) if (noisy-value > 1) [set noisy-value 1] if (noisy-value < 0) [set noisy-value 0] report noisy-value end to-report min-frequency let l item 0 minority-rules report count (turtle-set link-neighbors self) with [ my.rule = l] / (degree + 1) end to-report max-frequency let l item 0 majority-rules report count (turtle-set link-neighbors self) with [ my.rule = l] / (degree + 1) end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Life Distributions ;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;census-dist : fractions of people with age 0, 5, ...100 ;life-expect : expected life at ages 0, 5, ...100 (life expectancy = 1/M_age) ;expected rate at which people die per unit time at each age* = M_age* ;probability of dying at age* = 1-exp(-M_age*) :: ;F_age*= fraction of population of age* that dies within one year :: M_age*=-ln(1-F_age*) ;if M is done in intervals (as we have here), M is the value at age A+5 to init-age-USA2010 ;;Population fraction for ages according data colected ;By Lindsay M. Howden and Julie A. Meyer in ;Age and Sex Composition: 2010 Census briefs ;Reported fractions have an interval of 5 years starting from 0 until 100 years let census-dist (list 0.0654 0.0659 0.0670 0.0714 0.0699 0.0683 0.0647 0.0654 0.0677 0.0735 0.0722 0.0637 0.0545 0.0403 0.0301 0.0237 0.0186 0.0117 0.0047 0.0012 0.0002) ask turtles [ let index floor random 21 while [random-float 1 > item index census-dist] [ set index floor random 21 ] set age ( (index) * 5 + random 5) ] end to set-life-distribution-USA2010 ;;Life expectation for ages according data colected by the Centers for Disease Control ;and Prevention’s National Center for Health Statistics (NCHS) USA 2010 ;Murphy, Xu, and Kochanek 'Deaths: preliminary data 2010' National Vital Stat. Reports 60-4 ;Reported ages have an interval of 5 years starting from 0 until 100 years set life-expectation (list 78.7 74.3 69.3 64.4 59.5 54.8 50.0 45.3 40.6 36.0 31.5 27.2 23.1 19.2 15.5 12.2 9.2 6.6 4.7 3.3 2.4) set mortality-rate map [1 / ?] life-expectation set prob-to-die map [ (1 - exp ( ( - 1 ) * ? ) )] mortality-rate set prob-die-imitation map [( 1 - exp ( ( ln ( 1 - ? )) / cultural-constant )) ] prob-to-die end to-report prob-die let index ceiling ( floor ( age / 5 )) if index > 20 [set index 20] if index < 0 [set index 0] let p.die item (index) prob-die-imitation report p.die ;let mortality item index mortality-rate ;let prob-to-die ( 1 - exp ( (- 1 ) * mortality ) ) ;let prob-die-imitation ( 1 - exp ( (ln ( 1 - prob-to-die )) / cultural-constant )) ;report prob-die-imitation end to replacement ask turtles [ if random-float 1 < prob-die [ set ticks.at.death.list lput ticks ticks.at.death.list replace set shape "target" ] ] end to replace set age 0 set rule? false set behavior? false set my.rule (random 4) + 1 set shape "face sad" set size sizeT set satisfaction2 1 ifelse random-float 1.0 < .5 ;(inicoop / 100) [set cooperate true] [set cooperate false] establish-color set score 0.0 set rule? false set behavior? false set chances.imitations 0 ;set shuffled? false end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Layout ;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;Layout code citation ;Wilensky, U. (2005). NetLogo Preferential Attachment model. http://ccl.northwestern.edu/netlogo/models/PreferentialAttachment. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL. ;Wilensky, U. (1999). NetLogo. http://ccl.northwestern.edu/netlogo/. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL. ;; resize-nodes, change back and forth from size based on degree to a size of 1 to resize-nodes ifelse all? turtles [size <= 1] [ ;; a node is a circle with diameter determined by ;; the SIZE variable; using SQRT makes the circle's ;; area proportional to its degree ask turtles [ set size sqrt degree ] ] [ ask turtles [ set size 1 ] ] end to layout ;; the number here is arbitrary; more repetitions slows down the ;; model, but too few gives poor layouts repeat 10 [ ;; the more turtles we have to fit into the same amount of space, ;; the smaller the inputs to layout-spring we'll need to use let factor sqrt count turtles ;; numbers here are arbitrarily chosen for pleasing appearance layout-spring turtles links (1 / factor) (7 / factor) (1 / factor) ; layout-spring (turtles) links 0.4 6 1 ; display ;; for smooth animation ] ;; don't bump the edges of the world let x-offset max [xcor] of turtles + min [xcor] of turtles let y-offset max [ycor] of turtles + min [ycor] of turtles ;; big jumps look funny, so only adjust a little each time set x-offset limit-magnitude x-offset 0.1 set y-offset limit-magnitude y-offset 0.1 ask turtles [ setxy (xcor - x-offset / 2) (ycor - y-offset / 2) ] end to-report limit-magnitude [number limit] if number > limit [ report limit ] if number < (- limit) [ report (- limit) ] report number end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Setup Topologies ;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to setup-Topology if-else Topology = "Lattice" [Create-Lattice] [ if-else Topology = "Random" [Create-Random-Network] [if-else Topology = "Small-World" [Create-Small-World][Create-Barabasi] ] ] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Lattice ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to Create-Lattice let rows floor (sqrt Num-Agents ) let columns ( floor (Num-Agents / rows ) ) set rows ( rows / 2 ) set columns ( columns / 2 ) let myPatches patches with [ abs (pxcor ) <= rows and abs (pycor ) <= columns ] ask myPatches [sprout 1] ;Num-Agents ask turtles [create-links-with turtles-on neighbors] ;wrap world let maxxcor max [xcor] of turtles let minxcor min [xcor] of turtles let maxycor max [ycor] of turtles let minycor min [ycor] of turtles let rightcorner patches with [pxcor = maxxcor] let leftcorner patches with [pxcor = minxcor] let bottomcorner patches with [pycor = maxycor] let topcorner patches with [pycor = minycor] set rightcorner turtles-on rightcorner set leftcorner turtles-on leftcorner set bottomcorner turtles-on bottomcorner set topcorner turtles-on topcorner ask rightcorner [create-links-with leftcorner with [ pycor = [pycor] of myself ]] ask rightcorner [create-links-with leftcorner with [ pycor = [pycor + 1] of myself]] ask rightcorner [create-links-with leftcorner with [ pycor = [pycor - 1] of myself ]] ask bottomcorner [create-links-with topcorner with [ pxcor = [pxcor] of myself ]] ask bottomcorner [create-links-with topcorner with [ pxcor = [pxcor + 1 ] of myself ]] ask bottomcorner [create-links-with topcorner with [ pxcor = [pxcor - 1] of myself ]] let corners (patch-set patch minxcor minycor patch minxcor maxycor patch maxxcor maxycor patch maxxcor minycor) ask turtles-on corners [create-links-with other turtles-on corners] set success? true spread-turtles set sizeT [size] of one-of turtles end to spread-turtles let num-rows length remove-duplicates sort [ycor] of turtles let num-cols length remove-duplicates sort [xcor] of turtles let horizontal-spacing (world-width / num-cols) let vertical-spacing (world-height / num-rows) ask turtles [ let x ( xcor * horizontal-spacing) let y ( ycor * vertical-spacing) setxy (x) (y) ] ;ask turtles [set size ceiling sqrt distance ( one-of link-neighbors ) * 1.5] ask turtles [set size min (list horizontal-spacing vertical-spacing)] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Random Network ;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to Create-Random-Network ;; Make a circle of turtles create-turtles Num-Agents layout-circle sort turtles (radius ) while [not success?] [ ;; create links ask links [die] ask turtles [ ;; each pair of turtles is only considered once create-links-with turtles with [self > myself and random-float 1.0 < Connection-Probability] ] ; nw:generate-random turtles links Num-Agents Connection-Probability ; nw:set-context turtles links set success? do-calculations ] ;ask links [set color gray] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Barabasi ;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to Create-Barabasi set success? true ;; Make a circle of turtles create-turtles Num-Agents layout-circle sort turtles (radius ) while [not success?] [ ;; create links ask links [die] nw:generate-preferential-attachment turtles links Num-Agents nw:set-context turtles links set success? do-calculations ] ;ask links [set color gray] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Small World ;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to Create-Small-World ;; taken from the netlogo library create-turtles Num-Agents layout-circle sort turtles (radius ) wire-rewire-them end to wire-them ask links [die] let n 0 while [n < Num-Agents] [;; make edges with the next "Initial-Neighbours" let i 1 while [i <= ceiling ( Initial-Neighbours / 2 ) ] [ ask turtle n [create-link-with turtle ((n + i) mod Num-Agents) [set rewired? false] ] set i i + 1 ] set n (n + 1) ] end to wire-rewire-them ;; set up a variable to see if the network is connected set success? false ;; if we end up with a disconnected network, keep trying while [not success?] [ ;; kill the old lattice, reset neighbors, and create new lattice wire-them ask links [ ;; whether to rewire it or not? if (random-float 1) < Rewiring-Probability [ ;; "a" remains the same let node1 end1 ;; if "a" is not connected to everybody if [ count link-neighbors ] of end1 < ( Num-Agents - 1) [ ;; find a node distinct from node1 and not already a neighbor of node1 let node2 one-of turtles with [ (self != node1) and (not link-neighbor? node1) ] ;; wire the new edge ask node1 [ create-link-with node2 [ set rewired? true ] ] set rewired? true ] ] ;; remove the old edge if (rewired?) [ die ] ] ;; check to see if the new network is connected and calculate path length and clustering ;; coefficient at the same time nw:set-context turtles links set success? do-calculations ] ;ask links [set color gray] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;; Scale Free ;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ;to Create-Scale-Free ;set graphical? false ;setup-sf-parameters ;set success? false ;let connected? false ; ;create-turtles Num-Agents [ ; set xcor random-xcor ; set ycor random-ycor ; set degree infinity * (-1) ; ;layout-circle sort turtles (max-pxcor - 1) ; ] ;let trials 1 ;while [not success?] ;tells us if created network is connected ;[ ;show "constructing" ;while [not connected?] ;tells us if sequence has the potential to create a connected network ;[ ;while [not graphical?] ; verify if created sequence is graphical ;[ ;create-degree-sequence ;set graphical? verify-graphicality sequence Num-Agents ;show "sequence" ;] ; ;if-else sum sequence >= 2 * (Num-Agents - 1) [set connected? true] ; [set graphical? false] ;] ;configuration-model ;construct network ;;havel-hakimi ;nw:set-context turtles links ;set success? do-calculations ;is it connected? ;if success? = false [set trials trials + 1 ] ;try again to make it connected ; ;if trials > 30 [set success? false ;if sufficient trials, start again ; set graphical? false ; set connected? false ; set trials 1 ; ] ;;ask links [set color gray] ;] ;end ; ;to assign-degrees-to-turtles [degree-sequence] ;let i 0 ;foreach degree-sequence ;[ ;ask item i (sort turtles) ; [ ; set degree ? ; set free-stubs ? ; ] ;set i ( i + 1) ;] ;end ; ;to Havel-Hakimi ;;Havel Hakimi procedure constructs a graph from degree sequence, only produces a subset of all possible graphs with given sequence ;let free-turtles turtles with [free-stubs > 0] ;while [any? free-turtles] ;[ ;set free-turtles turtles with [free-stubs > 0] ;let current-turtle max-one-of free-turtles [free-stubs] ;let forbiden-turtles [link-neighbors] of current-turtle ;ask current-turtle [set free-turtles other free-turtles with [not (member? self forbiden-turtles)]] ; ;while[ [free-stubs] of current-turtle > 0] ;[ ;let link-turtle max-one-of free-turtles [free-stubs] ;ask current-turtle [create-link-with link-turtle] ;ask (turtle-set current-turtle link-turtle) [set free-stubs (free-stubs - 1)] ;ask link-turtle [set free-turtles other free-turtles] ;] ;] ;layout-circle turtles radius ;end ; ;to configuration-model ;;star constrained graphicality configuration model more efficient, ; ;;produces greater variety of graphs. The probability of producing a certain graph can be calculated for ensemble values ; ;assign-degrees-to-turtles sequence ;clear-links ; ;let value -1 ;let id -1 ; ;let residual-sequence sequence ;let possible [] ; ;let current-turtle turtle (position (max residual-sequence) residual-sequence) ;let free-turtles turtles with [free-stubs > 0] ;let forbiden-turtles [link-neighbors] of current-turtle ;let link-turtle one-of turtles ; ;let contradiction? false ; ;while [any? free-turtles and not contradiction? ] ;[ ;set current-turtle turtle (position (max residual-sequence) residual-sequence) ;set forbiden-turtles [link-neighbors] of current-turtle ;set free-turtles turtles with [free-stubs > 0] ;ask current-turtle [set free-turtles other free-turtles with [ not (member? self forbiden-turtles)]] ; ;while [ [free-stubs] of current-turtle > 0] ;[ ; ;ifelse (length filter [? > 0] residual-sequence) = 2 ; and ; (sum residual-sequence = 2)[set link-turtle one-of free-turtles ; ] ; ; [ ; set possible (possible-connections current-turtle free-turtles residual-sequence) ; if-else empty? possible ; [set contradiction? true];start construction again. ; [set link-turtle turtle (one-of possible)] ; ] ; ;ask current-turtle [create-link-with link-turtle] ;ask (turtle-set link-turtle current-turtle) [set free-stubs (free-stubs - 1)] ;ask link-turtle [set free-turtles other free-turtles] ; ;set id [who] of current-turtle ;set value (item id residual-sequence) ;set residual-sequence replace-item id residual-sequence (value - 1) ; ;set id [who] of link-turtle ;set value (item id residual-sequence) ;set residual-sequence replace-item id residual-sequence (value - 1) ;] ;] ;end ; ; ;to-report possible-connections [current-turtle free-turtles residual-sequence] ;let final-list n-values Num-Agents [false] ;let candidates [] ;let subsequence residual-sequence ;let value -1 ;let id -1 ; ;foreach sort free-turtles ;[ ;set subsequence residual-sequence ; ;set id [who] of current-turtle ;set value (item id residual-sequence) ;set subsequence replace-item id subsequence (value - 1) ; ;set id [who] of ? ;set value (item id residual-sequence) ;set subsequence replace-item id subsequence (value - 1) ; ;set subsequence reverse sort subsequence ;set subsequence filter [? > 0 ] subsequence ; ;ifelse length subsequence = 2 and sum subsequence = 2 [set final-list replace-item ([who] of ?) final-list true] ;[ ; ifelse item 0 subsequence >= length(subsequence) [set final-list replace-item ([who] of ?) final-list false] ; [ ; set final-list replace-item ([who] of ?) final-list (verify-graphicality subsequence length subsequence) ; ] ;] ; ;] ; ;set candidates (positions final-list true) ;report candidates ;end ; ;to-report positions [a-list value] ; let ids n-values (length a-list) [?] ; let ids-values map [list ? item ? a-list] ids ; report map [first ?] filter [item 1 ? = value] ids-values ;end ; ; ;to-report verify-graphicality [seq length-sequence] ;; k goes from 0 to length sequence - 1 ;let x_k n-values (length-sequence) [false] ;let seqqx n-values (length-sequence) [?] ;set seqqx map [? + 1] seqqx ; ;let k_star 0 ;let flag false ; ;let i (-1) ; ;if-else max seq > (length-sequence - 1) [set flag false] ;[if-else (sum seq) mod 2 != 0 [set flag false] ;[ ; ;;set x_k replace-item 0 x_k length-sequence ;while [not flag] ;[ ;;;find position of min index i such that sequence < seqqx(i) ;let pos item (i + 1) seqqx ;set pos max-position pos seq ;set x_k replace-item (i + 1) x_k pos ;if item (i + 1) x_k < (i + 1)[set flag true] ;set i (i + 1) ;] ; ;let j 0 ;set flag false ;while [j < (length x_k ) and not flag] ;[ ;if item j (x_k) < (j + 1) ;[ ;set k_star j ;set flag true ;] ;set j (j + 1) ;] ; ; ;let k 0 ;let L_k item k seq ;let R_k (length-sequence - 1) ;set flag false ;set k 1 ; ;while [not flag and k <= (length-sequence - 1)] ;[ ;;;;show k ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;set L_k (L_k + item k seq) ; ;if-else k < k_star ;[set R_k (R_k + (item k x_k) - 1)] ;[set R_k (R_k + 2 * k - (item k seq))] ; ;if L_k > R_k [set flag true] ;set k (k + 1) ;] ; ;set flag (not flag) ;]] ; ;report flag ;end ; ; ;to-report max-position [number seq] ;let count-positions 0 ;let max-iter (length seq) ;let flag false ; ;while [ count-positions < max-iter and not flag ] ;[ ;;show count-positions ;if-else (item count-positions seq) < number ;[set flag true] ;[set count-positions (count-positions + 1)] ;] ;report (count-positions) ;end ; ; ; ; ;to create-degree-sequence ;create sequence with sum of degrees even ;let parity 1 ;while [parity mod 2 != 0] ;[ ;;create uniform ;set uniform n-values (Num-Agents) [random-float 1] ;set sequence [] ;foreach uniform [set sequence lput (create-one-degree ?) sequence] ;set parity sum sequence ;] ;set sequence (sort sequence) ;set sequence (reverse sequence) ;end ; ; ;to-report create-one-degree [R] ;let x 0 ;let S (item x p_k)/ Z ;while [S < R] ;[ ;set x (x + 1) ;set S (S + ((item x p_k) / Z)) ;] ;report (x + 1) ;end ; ;to setup-sf-parameters ;set seq p_k (1, nodes-1,1)^(-g) ;set p_k n-values (Num-Agents - 1 ) [?] ;set p_k map [? + 1] p_k ;set p_k map [? ^ (- Scale-Free-Exponent)] p_k ;set Z sum p_k ;end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Network Computations ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Connected Network? and Clustering ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; do-calculations reports true if the network is connected, finds path lengths to-report do-calculations let connected? true ;let num-connected-pairs sum [length remove false (remove 0 distance-from-other-turtles)] of turtles ;;; In a connected network on N nodes, we should have N(N-1) measurements of distances between pairs, ;;; and none of those distances should be infinity. ;ifelse ( num-connected-pairs != (Num-Agents * (Num-Agents - 1) )) ;[set average-path-length infinity ; set connected? false ;] ;[ let mean-path-length nw:mean-path-length ;] ;;find the clustering coefficient and add to the aggregate for all iterations ;; report whether the network is connected or not if not is-number? mean-path-length [set connected? false] report connected? end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;; Outputs and Plots ;; ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; to my-update-plots set-current-plot "Cooperation and Satisfaction" set-current-plot-pen "Cooperation" plot cooperation-rate ; set-current-plot-pen "satisfaction" ; plot satisfaction-rate set-current-plot-pen "Satisfaction" plot satisfaction-rate2 ; set-current-plot-pen "Happy and Cooperating" ; plot count turtles with [shape = "face happy" and cooperate] / Num-Agents set-current-plot "Population" set-current-plot-pen "Maxi" plot maxi / Num-Agents set-current-plot-pen "Mini" plot mini / Num-Agents set-current-plot-pen "Conf" plot conf / Num-Agents set-current-plot-pen "Anti" plot anti / Num-Agents set-current-plot "Age Plot" set-current-plot-pen "maxi" ifelse maxi > 0 [plot mean [age] of turtles with [ my.rule = 1 ]][plot -1] set-current-plot-pen "mini" ifelse mini > 0 [plot mean [age] of turtles with [ my.rule = 2 ]][plot -1] set-current-plot-pen "conf" ifelse conf > 0 [plot mean [age] of turtles with [ my.rule = 3 ]][plot -1] set-current-plot-pen "anti" ifelse anti > 0 [plot mean [age] of turtles with [ my.rule = 4 ]][plot -1] set-current-plot-pen "all" plot mean [age] of turtles ;;;UNCOMMENT TO SEE PLOTS ON WIDGET ; let maxi-t turtles-maxi with [ cooperate = TRUE] ; let maxi-f turtles-maxi with [ cooperate = FALSE] ; let maxi-h turtles-maxi with [ last best.history = TRUE] ; let maxi-s turtles-maxi with [ last best.history = FALSE] ; let maxi-sc turtles-maxi with [ last best.history = FALSE and cooperate = TRUE] ; let maxi-hc turtles-maxi with [ last best.history = TRUE and cooperate = TRUE] ; let maxi-sd turtles-maxi with [ last best.history = FALSE and cooperate = FALSE] ; let maxi-hd turtles-maxi with [ last best.history = TRUE and cooperate = FALSE] ; ; ; ; let mini-t turtles-mini with [ cooperate = TRUE] ; let mini-f turtles-mini with [ cooperate = FALSE] ; let mini-h turtles-mini with [ last best.history = TRUE] ; let mini-s turtles-mini with [ last best.history = FALSE] ; ; ; let conf-t turtles-conf with [ cooperate = TRUE] ; let conf-f turtles-conf with [ cooperate = FALSE] ; let conf-h turtles-conf with [ last best.history = TRUE] ; let conf-s turtles-conf with [ last best.history = FALSE] ; ; ; let anti-t turtles-anti with [ cooperate = TRUE] ; let anti-f turtles-anti with [ cooperate = FALSE] ; let anti-h turtles-anti with [ last best.history = TRUE] ; let anti-s turtles-anti with [ last best.history = FALSE] ; ; let mini-sc turtles-mini with [ last best.history = FALSE and cooperate = TRUE] ; let conf-sc turtles-conf with [ last best.history = FALSE and cooperate = TRUE] ; let anti-sc turtles-anti with [ last best.history = FALSE and cooperate = TRUE] ; ; let mini-hc turtles-mini with [ last best.history = TRUE and cooperate = TRUE] ; let conf-hc turtles-conf with [ last best.history = TRUE and cooperate = TRUE] ; let anti-hc turtles-anti with [ last best.history = TRUE and cooperate = TRUE] ; ; ; let mini-sd turtles-mini with [ last best.history = FALSE and cooperate = FALSE] ; let conf-sd turtles-conf with [ last best.history = FALSE and cooperate = FALSE] ; let anti-sd turtles-anti with [ last best.history = FALSE and cooperate = FALSE] ; ; ; let mini-hd turtles-mini with [ last best.history = TRUE and cooperate = FALSE] ; let conf-hd turtles-conf with [ last best.history = TRUE and cooperate = FALSE] ; let anti-hd turtles-anti with [ last best.history = TRUE and cooperate = FALSE] ; ; ; set-current-plot "Scores Coop" ; set-current-plot-pen "mini" ; ifelse count mini-t > 0 [plot mean [score] of mini-t ][plot -1] ; ; set-current-plot "Scores Coop" ; set-current-plot-pen "conf" ; ifelse count conf-t > 0 [plot mean [score] of conf-t ][plot -1] ; ; set-current-plot "Scores Coop" ; set-current-plot-pen "anti" ; ifelse count anti-t > 0 [plot mean [score] of anti-t ][plot -1] ; ; set-current-plot "Scores Defecting" ; set-current-plot-pen "maxi" ; ifelse count maxi-f > 0 [plot mean [score] of maxi-f ][plot -1] ; ; set-current-plot "Scores Defecting" ; set-current-plot-pen "mini" ; ifelse count mini-f > 0 [plot mean [score] of mini-f ][plot -1] ; ; set-current-plot "Scores Defecting" ; set-current-plot-pen "conf" ; ifelse count conf-f > 0 [plot mean [score] of conf-f ][plot -1] ; ; set-current-plot "Scores Defecting" ; set-current-plot-pen "anti" ; ifelse count anti-f > 0 [plot mean [score] of anti-f ][plot -1] ; ; set-current-plot "Scores Happy" ; set-current-plot-pen "maxi" ; ifelse count maxi-h > 0 [plot mean [score] of maxi-h ][plot -1] ; set-current-plot "Scores Happy" ; set-current-plot-pen "mini" ; ifelse count mini-h > 0 [plot mean [score] of mini-h ][plot -1] ; set-current-plot "Scores Happy" ; set-current-plot-pen "conf" ; ifelse count conf-h > 0 [plot mean [score] of conf-h ][plot -1] ; set-current-plot "Scores Happy" ; set-current-plot-pen "anti" ; ifelse count anti-h > 0 [plot mean [score] of anti-h ][plot -1] ; ; ; set-current-plot "Scores UnHappy" ; set-current-plot-pen "maxi" ; ifelse count maxi-s > 0 [plot mean [score] of maxi-s ][plot -1] ; set-current-plot "Scores UnHappy" ; set-current-plot-pen "mini" ; ifelse count mini-s > 0 [plot mean [score] of mini-s ][plot -1] ; set-current-plot "Scores UnHappy" ; set-current-plot-pen "conf" ; ifelse count conf-s > 0 [plot mean [score] of conf-s ][plot -1] ; set-current-plot "Scores UnHappy" ; set-current-plot-pen "anti" ; ifelse count anti-s > 0 [plot mean [score] of anti-s ][plot -1] ; ; ; set-current-plot "S&C" ; set-current-plot-pen "maxi" ; ifelse count maxi-sc > 0[plot mean [score] of maxi-sc][plot -1] ; set-current-plot "S&C" ; set-current-plot-pen "mini" ; ifelse count mini-sc > 0[plot mean [score] of mini-sc][plot -1] ; set-current-plot "S&C" ; set-current-plot-pen "conf" ; ifelse count conf-sc > 0[plot mean [score] of conf-sc][plot -1] ; set-current-plot "S&C" ; set-current-plot-pen "anti" ; ifelse count anti-sc > 0[plot mean [score] of anti-sc][plot -1] ; ; ;set-current-plot "H&C" ; set-current-plot-pen "maxi" ; ifelse count maxi-hc > 0[plot mean [score] of maxi-hc][plot -1] ;set-current-plot "H&C" ; set-current-plot-pen "mini" ; ifelse count mini-hc > 0[plot mean [score] of mini-hc][plot -1] ;set-current-plot "H&C" ; set-current-plot-pen "conf" ; ifelse count conf-hc > 0 [plot mean [score] of conf-hc][plot -1] ;set-current-plot "H&C" ; set-current-plot-pen "anti" ; ifelse count anti-hc > 0 [plot mean [score] of anti-hc][plot -1] ; ;set-current-plot "S&D" ; set-current-plot-pen "maxi" ; ifelse count maxi-sd > 0[plot mean [score] of maxi-sd][plot -1] ;set-current-plot "S&D" ; set-current-plot-pen "mini" ; ifelse count mini-sd > 0[plot mean [score] of mini-sd][plot -1] ;set-current-plot "S&D" ; set-current-plot-pen "conf" ; ifelse count conf-sd > 0[plot mean [score] of conf-sd][plot -1] ;set-current-plot "S&D" ; set-current-plot-pen "anti" ; ifelse count anti-sd > 0[plot mean [score] of anti-sd][plot -1] ; ;set-current-plot "H&D" ; set-current-plot-pen "maxi" ; ifelse count maxi-hd > 0[plot mean [score] of maxi-hd][plot -1] ;set-current-plot "H&D" ; set-current-plot-pen "mini" ; ifelse count mini-hd > 0[plot mean [score] of mini-hd][plot -1] ;set-current-plot "H&D" ; set-current-plot-pen "conf" ; ifelse count conf-hd > 0[plot mean [score] of conf-hd][plot -1] ;set-current-plot "H&D" ; set-current-plot-pen "anti" ; ifelse count anti-hd > 0[plot mean [score] of anti-hd][plot -1] ; ; ; ; ; ; ; ;set-current-plot "Sat S&C" ; set-current-plot-pen "maxi" ; ifelse count maxi-sc > 0[plot mean [satisfaction2] of maxi-sc][plot -1] ;set-current-plot "Sat S&C" ; set-current-plot-pen "mini" ; ifelse count mini-sc > 0[plot mean [satisfaction2] of mini-sc][plot -1] ;set-current-plot "Sat S&C" ; set-current-plot-pen "conf" ; ifelse count conf-sc > 0[plot mean [satisfaction2] of conf-sc][plot -1] ;set-current-plot "Sat S&C" ; set-current-plot-pen "anti" ; ifelse count anti-sc > 0[plot mean [satisfaction2] of anti-sc][plot -1] ; ; ;set-current-plot "Sat H&C" ; set-current-plot-pen "maxi" ; ifelse count maxi-hc > 0[plot mean [satisfaction2] of maxi-hc][plot -1] ;set-current-plot "Sat H&C" ; set-current-plot-pen "mini" ; ifelse count mini-hc > 0[plot mean [satisfaction2] of mini-hc][plot -1] ;set-current-plot "Sat H&C" ; set-current-plot-pen "conf" ; ifelse count conf-hc > 0 [plot mean [satisfaction2] of conf-hc][plot -1] ;set-current-plot "Sat H&C" ; set-current-plot-pen "anti" ; ifelse count anti-hc > 0 [plot mean [satisfaction2] of anti-hc][plot -1] ; ;set-current-plot "Sat S&D" ; set-current-plot-pen "maxi" ; ifelse count maxi-sd > 0[plot mean [satisfaction2] of maxi-sd][plot -1] ;set-current-plot "Sat S&D" ; set-current-plot-pen "mini" ; ifelse count mini-sd > 0[plot mean [satisfaction2] of mini-sd][plot -1] ;set-current-plot "Sat S&D" ; set-current-plot-pen "conf" ; ifelse count conf-sd > 0[plot mean [satisfaction2] of conf-sd][plot -1] ;set-current-plot "Sat S&D" ; set-current-plot-pen "anti" ; ifelse count anti-sd > 0[plot mean [satisfaction2] of anti-sd][plot -1] ; ;set-current-plot "Sat H&D" ; set-current-plot-pen "maxi" ; ifelse count maxi-hd > 0[plot mean [satisfaction2] of maxi-hd][plot -1] ;set-current-plot "Sat H&D" ; set-current-plot-pen "mini" ; ifelse count mini-hd > 0[plot mean [satisfaction2] of mini-hd][plot -1] ;set-current-plot "Sat H&D" ; set-current-plot-pen "conf" ; ifelse count conf-hd > 0[plot mean [satisfaction2] of conf-hd][plot -1] ;set-current-plot "Sat H&D" ; set-current-plot-pen "anti" ; ifelse count anti-hd > 0[plot mean [satisfaction2] of anti-hd][plot -1] ; ;set-current-plot "Sat Coop" ; set-current-plot-pen "maxi" ; ifelse count maxi-t > 0 [plot mean [satisfaction2] of maxi-t ][plot -1] ;set-current-plot "Sat Coop" ; set-current-plot-pen "mini" ; ifelse count mini-t > 0 [plot mean [satisfaction2] of mini-t ][plot -1] ;set-current-plot "Sat Coop" ; set-current-plot-pen "conf" ; ifelse count conf-t > 0 [plot mean [satisfaction2] of conf-t ][plot -1] ;set-current-plot "Sat Coop" ; set-current-plot-pen "anti" ; ifelse count anti-t > 0 [plot mean [satisfaction2] of anti-t ][plot -1] ; ; set-current-plot "Sat Defecting" ; set-current-plot-pen "maxi" ; ifelse count maxi-f > 0 [plot mean [satisfaction2] of maxi-f ][plot -1] ; set-current-plot "Sat Defecting" ; set-current-plot-pen "mini" ; ifelse count mini-f > 0 [plot mean [satisfaction2] of mini-f ][plot -1] ; set-current-plot "Sat Defecting" ; set-current-plot-pen "conf" ; ifelse count conf-f > 0 [plot mean [satisfaction2] of conf-f ][plot -1] ; set-current-plot "Sat Defecting" ; set-current-plot-pen "anti" ; ifelse count anti-f > 0 [plot mean [satisfaction2] of anti-f ][plot -1] ; ; set-current-plot "Sat Happy" ; set-current-plot-pen "maxi" ; ifelse count maxi-h > 0 [plot mean [satisfaction2] of maxi-h ][plot -1] ; set-current-plot "Sat Happy" ; set-current-plot-pen "mini" ; ifelse count mini-h > 0 [plot mean [satisfaction2] of mini-h ][plot -1] ; set-current-plot "Sat Happy" ; set-current-plot-pen "conf" ; ifelse count conf-h > 0 [plot mean [satisfaction2] of conf-h ][plot -1] ; set-current-plot "Sat Happy" ; set-current-plot-pen "anti" ; ifelse count anti-h > 0 [plot mean [satisfaction2] of anti-h ][plot -1] ; ; ; set-current-plot "Sat UnHappy" ; set-current-plot-pen "maxi" ; ifelse count maxi-s > 0 [plot mean [satisfaction2] of maxi-s ][plot -1] ; set-current-plot "Sat UnHappy" ; set-current-plot-pen "mini" ; ifelse count mini-s > 0 [plot mean [satisfaction2] of mini-s ][plot -1] ; set-current-plot "Sat UnHappy" ; set-current-plot-pen "conf" ; ifelse count conf-s > 0 [plot mean [satisfaction2] of conf-s ][plot -1] ; set-current-plot "Sat UnHappy" ; set-current-plot-pen "anti" ; ifelse count anti-s > 0 [plot mean [satisfaction2] of anti-s ][plot -1] ; ; ; set-current-plot "Maxi Neighbors" ; set-current-plot-pen "maxi" ; ifelse maxi > 0 [plot mean [n.maxi] of turtles-maxi][plot -1] ; set-current-plot "Maxi Neighbors" ; set-current-plot-pen "mini" ; ifelse mini > 0 [plot mean [n.mini] of turtles-maxi][plot -1] ; set-current-plot "Maxi Neighbors" ; set-current-plot-pen "conf" ; ifelse conf > 0 [plot mean [n.conf] of turtles-maxi][plot -1] ; set-current-plot "Maxi Neighbors" ; set-current-plot-pen "anti" ; ifelse anti > 0 [plot mean [n.anti] of turtles-maxi ][plot -1] ; ; set-current-plot "Mini Neighbors" ; set-current-plot-pen "maxi" ; ifelse maxi > 0 [plot mean [n.maxi] of turtles-mini][plot -1] ; set-current-plot "Mini Neighbors" ; set-current-plot-pen "mini" ; ifelse mini > 0 [plot mean [n.mini] of turtles-mini][plot -1] ; set-current-plot "Mini Neighbors" ; set-current-plot-pen "conf" ; ifelse conf > 0 [plot mean [n.conf] of turtles-mini][plot -1] ; set-current-plot "Mini Neighbors" ; set-current-plot-pen "anti" ; ifelse anti > 0 [plot mean [n.anti] of turtles-mini ][plot -1] ; ; set-current-plot "Conf Neighbors" ; set-current-plot-pen "maxi" ; ifelse maxi > 0 [plot mean [n.maxi] of turtles-conf][plot -1] ; set-current-plot "Conf Neighbors" ; set-current-plot-pen "mini" ; ifelse mini > 0 [plot mean [n.mini] of turtles-conf][plot -1] ; set-current-plot "Conf Neighbors" ; set-current-plot-pen "conf" ; ifelse conf > 0 [plot mean [n.conf] of turtles-conf][plot -1] ; set-current-plot "Conf Neighbors" ; set-current-plot-pen "anti" ; ifelse anti > 0 [plot mean [n.anti] of turtles-conf ][plot -1] ; ; set-current-plot "Anti Neighbors" ; set-current-plot-pen "maxi" ; ifelse maxi > 0 [plot mean [n.maxi] of turtles-anti][plot -1] ; set-current-plot "Anti Neighbors" ; set-current-plot-pen "mini" ; ifelse mini > 0 [plot mean [n.mini] of turtles-anti][plot -1] ; set-current-plot "Anti Neighbors" ; set-current-plot-pen "conf" ; ifelse conf > 0 [plot mean [n.conf] of turtles-anti][plot -1] ; set-current-plot "Anti Neighbors" ; set-current-plot-pen "anti" ; ifelse anti > 0 [plot mean [n.anti] of turtles-anti ][plot -1] ; ;; set-current-plot "Degrees Plot" ;; set-current-plot-pen "maxi" ;; ifelse maxi > 0 [plot mean [degree] of turtles with [ my.rule = 1]][plot -1] ;; set-current-plot-pen "mini" ;; ifelse mini > 0 [plot mean [degree] of turtles with [ my.rule = 2]][plot -1] ;; set-current-plot-pen "conf" ;; ifelse conf > 0 [plot mean [degree] of turtles with [ my.rule = 3]][plot -1] ;; set-current-plot-pen "anti" ;; ifelse anti > 0 [plot mean [degree] of turtles with [ my.rule = 4]][plot -1] ; ;; ;; set-current-plot "Clustering Coefficient Plot" ;; set-current-plot-pen "maxi" ;; ifelse maxi > 0 [plot mean [node-clustering-coefficient] of turtles with [ my.rule = 1]][plot -1] ;; set-current-plot-pen "mini" ;; ifelse mini > 0 [plot mean [node-clustering-coefficient] of turtles with [ my.rule = 2]][plot -1] ;; set-current-plot-pen "conf" ;; ifelse conf > 0 [plot mean [node-clustering-coefficient] of turtles with [ my.rule = 3]][plot -1] ;; set-current-plot-pen "anti" ;; ifelse anti > 0 [plot mean [node-clustering-coefficient] of turtles with [ my.rule = 4]][plot -1] ;; ;; set-current-plot "Page Rank Plot" ;; set-current-plot-pen "maxi" ;; ifelse maxi > 0 [plot mean [page-rank] of turtles with [ my.rule = 1]][plot -1] ;; set-current-plot-pen "mini" ;; ifelse mini > 0 [plot mean [page-rank] of turtles with [ my.rule = 2]][plot -1] ;; set-current-plot-pen "conf" ;; ifelse conf > 0 [plot mean [page-rank] of turtles with [ my.rule = 3]][plot -1] ;; set-current-plot-pen "anti" ;; ifelse anti > 0 [plot mean [page-rank] of turtles with [ my.rule = 4]][plot -1] ; end to establish-color ;; agent procedure if-else Colormap-View = "Strategies" [ if-else my.rule = 1 [set color red] [if-else my.rule = 2 [set color green] [if-else my.rule = 3 [set color blue] [set color white]]] ] [ if-else cooperate [set color blue] [set color orange] ] end @#$#@#$#@ GRAPHICS-WINDOW 32 27 333 349 -1 -1 2.91 1 10 1 1 1 0 0 0 1 -50 49 -50 49 1 1 1 ticks 30.0 BUTTON 161 371 242 404 NIL setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 256 371 333 404 NIL go T 1 T OBSERVER NIL NIL NIL NIL 1 TEXTBOX 25 461 163 547 *Strategies colormap\n\nRed Maxi\nGreen Mini\nBlue Conformist\nWhite Anti-conf\n \n 9 0.0 0 SLIDER 402 32 583 65 *-strength-of-dilemma *-strength-of-dilemma 0 0.5 0.2 0.01 1 NIL HORIZONTAL PLOT 827 40 1135 160 Cooperation and Satisfaction time NIL 0.0 500.0 0.0 1.0 true true "" "" PENS "Cooperation" 1.0 0 -2674135 true "" "" "Satisfaction" 1.0 0 -13345367 true "" "" PLOT 828 162 1135 288 Population time fraction 0.0 500.0 0.0 1.0 true true "" "" PENS "Maxi" 1.0 0 -2674135 true "" "" "Mini" 1.0 0 -13840069 true "" "" "Conf" 1.0 0 -13345367 true "" "" "Anti" 1.0 0 -16777216 true "" "" SLIDER 404 70 579 103 *-inicoop *-inicoop 0 100 80 1 1 NIL HORIZONTAL SLIDER 388 361 589 394 *-Connection-Probability *-Connection-Probability 0.0 1 0.076 .001 1 NIL HORIZONTAL INPUTBOX 489 287 565 347 *-Num-Agents 500 1 0 Number TEXTBOX 389 271 563 289 *Choose Topology\n 10 15.0 1 CHOOSER 394 299 486 344 *-Topology *-Topology "Random" "Small-World" "Lattice" 2 TEXTBOX 391 349 601 367 Random Network Connection Probability 9 0.0 1 TEXTBOX 392 399 542 417 Small World Parameters 9 0.0 1 SLIDER 389 446 587 479 *-Rewiring-Probability *-Rewiring-Probability 0 1 0 .001 1 NIL HORIZONTAL TEXTBOX 147 464 255 540 *Behaviour Colormap\n\nBlue Cooperate\nOrange Defect 9 0.0 1 TEXTBOX 380 16 555 34 *Prisoner's Dilemma Parameters 9 15.0 1 SLIDER 390 410 587 443 *-Initial-Neighbours *-Initial-Neighbours 1 *-Num-Agents - 1 8 1 1 NIL HORIZONTAL CHOOSER 30 372 145 417 Colormap-View Colormap-View "Strategies" "Behaviours" 0 MONITOR 683 153 741 198 Maxi % count turtles with [ my.rule = 1 ] * 100 / count turtles 2 1 11 MONITOR 744 154 802 199 Mini % count turtles with [my.rule = 2 ] * 100 / count turtles 2 1 11 MONITOR 683 202 743 247 Conf % count turtles with [my.rule = 3 ] * 100 / count turtles 2 1 11 MONITOR 744 202 803 247 Anti % count turtles with [my.rule = 4 ] * 100 / count turtles 2 1 11 TEXTBOX 47 419 197 437 *Network Properties 9 0.0 1 TEXTBOX 381 109 590 133 *Add noise by replacing the population? 9 15.0 1 SWITCH 620 325 795 358 *-Initial-Random-Types? *-Initial-Random-Types? 0 1 -1000 TEXTBOX 622 310 792 329 *Random Assignation of Types? 9 0.0 1 INPUTBOX 619 374 704 434 *-Initial-Maxi-% 100 1 0 Number INPUTBOX 706 374 789 434 *-Initial-Mini-% 0 1 0 Number INPUTBOX 620 434 703 494 *-Initial-Conf-% 0 1 0 Number MONITOR 709 436 793 481 Initial-Anti-% 100 - *-Initial-Maxi-% - *-Initial-Mini-% - *-Initial-Conf-% 0 1 11 TEXTBOX 620 360 807 380 Otherwise Input % Initial Types 9 0.0 1 TEXTBOX 723 135 823 158 Types % 9 0.0 1 TEXTBOX 391 259 558 279 *Network Parameters 9 0.0 1 MONITOR 708 23 805 68 Cooperation % count turtles with [cooperate ] * 100 / count turtles 2 1 11 MONITOR 708 73 804 118 Satisfaction % mean [satisfaction2] of turtles * 100 2 1 11 SWITCH 404 507 571 540 Load-Topology Load-Topology 1 1 -1000 INPUTBOX 454 543 530 603 *-fileIn NIL 1 0 String PLOT 829 290 1134 410 Age Plot Count Age 0.0 500.0 45.0 70.0 true true "" "" PENS "maxi" 1.0 0 -2674135 true "" "" "mini" 1.0 0 -10899396 true "" "" "conf" 1.0 0 -13345367 true "" "" "anti" 1.0 0 -16777216 true "" "" "all" 1.0 0 -2064490 true "" "" BUTTON 274 465 347 498 Layout layout NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 273 500 352 533 resize-nodes resize-nodes NIL 1 T OBSERVER NIL NIL NIL NIL 1 SWITCH 377 120 528 153 *-replacement? *-replacement? 0 1 -1000 MONITOR 630 153 680 198 % New Turtles count turtles with [shape = \"target\"] * 100 / count turtles 2 1 11 TEXTBOX 639 293 789 311 *Choose types distribution 9 15.0 1 SLIDER 377 154 526 187 *-cultural-constant *-cultural-constant .001 20 4.628 .001 1 NIL HORIZONTAL MONITOR 629 202 679 247 Mean Age mean [age] of turtles 2 1 11 SWITCH 376 188 527 221 *-innovation? *-innovation? 1 1 -1000 BUTTON 180 405 320 438 NIL setup-init-turtles NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 259 537 367 572 layout circle layout-circle turtles radius NIL 1 T OBSERVER NIL NIL NIL NIL 1 @#$#@#$#@ ## WHAT IS IT? This is an implementation of a prisonner’s dilemma metamimetic game for different network topologies under netlogo 5.1.0. Agents play the prisoner's dilemma game with each one of their neighbours in a torus lattice or a network (small world or random). The parameter p corresponds to the strength of dilemma in the widget: Payoff Matrix ------------- OPPONENT BEHAVIORS Cooperate Defect ----------------------------- Cooperate |(1-p, 1-p) (0, 1) YOU | Defect |(1, 0) (p, p) (x, y) = x: your score, y: your partner's score Note: higher the score (amount of the benefit), the better. The agents can have one of 4 types: Maxi : The agent tries to maximize the score (payoff) Mini : The agent tries to minimize the score Conformist: The agent tries to behave as the majority Anti-conformist: The agent tries to behave as the minority Each round agents play they copy the most succesfull agent in their neighborhood according to their own current type: A Maxi agent would copy the type and behavior (C or D) of the agent in its neighborhood with highest payoffs. A Mini agent would copy the type and behavior (C or D) of the agent in its neighborhood with lower payoffs. A Conformist would copy the type and behavior (C or D) that the majority of its neighborhood is using. An Anti-Conformist would copy the type and behavior (C or D) that the minority of its neighborhood is using. ## HOW TO USE IT Decide the topology structure or load one. Decide a Number of Agents that will be playing. Decide what percentage of agents should cooperate at the initial stage with inicoop. Decide what is the strenght of the dilemma p. If you are not loading a topology; choose the parameters for the desired topology. Choose to add noise to the model by renovating the population and have some agents die. ## HOW IT WORKS At each period: Each agent A plays a prisoner's dilemma game pairwise with all of its neighbours. The scores for all the pairwise games played are summed up to become the new payoffs of the agent. Each agent looks at the payoffs, decision-making rules and behaviours of other agents in its neighbourhood Gamma_A. For any agent A, if according to A's type (payoffs based or non-materialistic) there is one neighbour B that is more successful than A himself, and if B has a different decision-making rule, then A copies the rule of agent B. In the case of two or more candidates to copy, then A chooses one of the rules at random. If according to its new rule of behaviour and its associated utility function, A is still not among the most successful agents in the neighborhood, then A copies the behaviour of the neighbour with the best situation. ## EXAMPLE: If agent A had the conformist type and if the majority of its neighbours have turned to maxi since last round, then A will adopt the maxi rule. Here, the imitation rule is used to update itself (reflexivity). If same agent A, which is now a maxi agent, played C last round but a D-player did strictly better than all of A’s neighbours (A included), then A will become a D-player. Here, the imitation rule is used to update the behaviour (metacognition). ## THINGS TO NOTICE How do populations change with the strength of the dilemma? What is the effect of noise with renovation of the population? Where are agents located in the network at the attractor? What is the effect of the initial disposition towards cooperation? Are there differences in the final populations for each topology? @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 5.1.0 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ <experiments> <experiment name="ASW" repetitions="10" runMetricsEveryStep="true"> <setup>setup</setup> <go>run-Logo 500</go> <final>export-graphL export-coopL export-propL export-agesL</final> <exitCondition>condition or ticks &gt; 500</exitCondition> <enumeratedValueSet variable="Load-Topology"> <value value="false"/> </enumeratedValueSet> <enumeratedValueSet variable="Colormap-View"> <value value="&quot;Strategies&quot;"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Topology"> <value value="&quot;Small-World&quot;"/> </enumeratedValueSet> <steppedValueSet variable="*-Rewiring-Probability" first="0" step="0.025" last="1"/> <enumeratedValueSet variable="*-Initial-Neighbours"> <value value="25"/> </enumeratedValueSet> <enumeratedValueSet variable="*-inicoop"> <value value="50"/> </enumeratedValueSet> <steppedValueSet variable="*-strength-of-dilemma" first="0" step="0.025" last="0.5"/> <enumeratedValueSet variable="*-Initial-Random-Types?"> <value value="true"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Num-Agents"> <value value="500"/> </enumeratedValueSet> <enumeratedValueSet variable="*-fileIn"> <value value="&quot;&quot;"/> </enumeratedValueSet> <enumeratedValueSet variable="*-cultural-constant"> <value value="1"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Scale-Free-Exponent"> <value value="2"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Conf-%"> <value value="0"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Mini-%"> <value value="0"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Maxi-%"> <value value="100"/> </enumeratedValueSet> <enumeratedValueSet variable="*-replacement?"> <value value="false"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Connection-Probability"> <value value="0.076"/> </enumeratedValueSet> </experiment> <experiment name="ASW2" repetitions="10" runMetricsEveryStep="true"> <setup>setup</setup> <go>run-Logo 500</go> <final>export-graphL export-coopL export-propL export-agesL</final> <exitCondition>condition or ticks &gt; 500</exitCondition> <enumeratedValueSet variable="Load-Topology"> <value value="false"/> </enumeratedValueSet> <enumeratedValueSet variable="Colormap-View"> <value value="&quot;Strategies&quot;"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Topology"> <value value="&quot;Small-World&quot;"/> </enumeratedValueSet> <steppedValueSet variable="*-Rewiring-Probability" first="0" step="0.1" last="1"/> <enumeratedValueSet variable="*-Initial-Neighbours"> <value value="25"/> </enumeratedValueSet> <enumeratedValueSet variable="*-inicoop"> <value value="0"/> <value value="5"/> <value value="100"/> </enumeratedValueSet> <steppedValueSet variable="*-strength-of-dilemma" first="0" step="0.1" last="0.5"/> <enumeratedValueSet variable="*-Initial-Random-Types?"> <value value="true"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Num-Agents"> <value value="500"/> </enumeratedValueSet> <enumeratedValueSet variable="*-fileIn"> <value value="&quot;&quot;"/> </enumeratedValueSet> <enumeratedValueSet variable="*-cultural-constant"> <value value="1"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Scale-Free-Exponent"> <value value="2"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Conf-%"> <value value="0"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Mini-%"> <value value="0"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Maxi-%"> <value value="100"/> </enumeratedValueSet> <enumeratedValueSet variable="*-replacement?"> <value value="false"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Connection-Probability"> <value value="0.076"/> </enumeratedValueSet> </experiment> <experiment name="ASW3" repetitions="10" runMetricsEveryStep="false"> <setup>setup</setup> <go>run-Logo 500</go> <final>export-graphL export-coopL export-propL export-agesL</final> <exitCondition>condition or ticks &gt; 500</exitCondition> <enumeratedValueSet variable="Load-Topology"> <value value="false"/> </enumeratedValueSet> <enumeratedValueSet variable="Colormap-View"> <value value="&quot;Strategies&quot;"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Topology"> <value value="&quot;Small-World&quot;"/> </enumeratedValueSet> <steppedValueSet variable="*-Rewiring-Probability" first="0" step="0.1" last="1"/> <enumeratedValueSet variable="*-Initial-Neighbours"> <value value="12"/> <value value="50"/> <value value="75"/> </enumeratedValueSet> <enumeratedValueSet variable="*-inicoop"> <value value="50"/> </enumeratedValueSet> <steppedValueSet variable="*-strength-of-dilemma" first="0" step="0.1" last="0.5"/> <enumeratedValueSet variable="*-Initial-Random-Types?"> <value value="true"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Num-Agents"> <value value="500"/> </enumeratedValueSet> <enumeratedValueSet variable="*-fileIn"> <value value="&quot;&quot;"/> </enumeratedValueSet> <enumeratedValueSet variable="*-cultural-constant"> <value value="1"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Scale-Free-Exponent"> <value value="2"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Conf-%"> <value value="0"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Mini-%"> <value value="0"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Initial-Maxi-%"> <value value="100"/> </enumeratedValueSet> <enumeratedValueSet variable="*-replacement?"> <value value="false"/> </enumeratedValueSet> <enumeratedValueSet variable="*-Connection-Probability"> <value value="0.076"/> </enumeratedValueSet> </experiment> </experiments> @#$#@#$#@ VIEW 55 40 385 370 0 0 0 1 1 1 1 1 0 1 1 1 -50 49 -50 49 @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@
NetLogo
5
ajnavarro/language-dataset
data/github.com/openmole/openmole-market/efd649088e6e4acb741a6fdfa0688563c8441a69/metamimetic-networks/model/OM_Metamimetic_Networks_GIT.nlogo
[ "MIT" ]
public func getVersion() -> Int { #if BEFORE return 0 #else return 1 #endif } #if BEFORE public final class AddStoredProperty { public init() { forth = "Chuck Moore" } public var forth: String public var languageDesigners: [String] { return [forth] } } #else public final class AddStoredProperty { public init() { forth = "Chuck Moore" lisp = "John McCarthy" c = "Dennis Ritchie" } public var forth: String public var lisp: String public var c: String public var languageDesigners: [String] { return [forth, lisp, c] } } #endif
Swift
4
lwhsu/swift
validation-test/Evolution/Inputs/class_add_property.swift
[ "Apache-2.0" ]