Post away!
This project seems to have died as fast as it was spawned! Shame though as i made the main menu epic! My last version had flashing lightning and thinder sound fx!
side note : Halloweeeeeeeeeeeeeeeeeeeeen games....I will never finish this, but heres an idea of a Bat based flappy birds game...press space to make the bat go up
Code: (Select All)
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
RANDOMIZE TIMER
CONST Fall_Rate = .15, NumSpikes = 20, Lvl_Speed = 4.5, ScrnW& = 1024, ScrnH& = 660
DIM SHARED Bat AS LONG, Bat_y AS INTEGER, Bat_Frame AS _BYTE, GT#, AT#, DT#
SCREEN _NEWIMAGE(1024, 660, 32)
_SCREENMOVE 0, 0
Bat = Load_Sprite_Data
Bat_y = 300
TYPE Spike
X AS INTEGER
Height AS INTEGER
Is_Floor AS _BYTE '// if true then is floor else is ceiling
Visible AS _BYTE
END TYPE
DIM SHARED Spikes(1 TO NumSpikes) AS Spike
DIM SHARED Score AS LONG, Game_Over AS _BYTE
DO '///////////////////////////////////////////////////////////////////////////////////////////////////////////////
GT# = TIMER(.001)
_LIMIT 60
IF _KEYDOWN(32) THEN Fall_Speed = -4 ELSE IF Fall_Speed < 10 THEN Fall_Speed = Fall_Speed + Fall_Rate
IF Bat_y < 550 THEN Bat_y = Bat_y + Fall_Speed 'ELSE Bat_y = 560
IF GT# - AT# > .2 THEN
IF Bat_Frame < 3 THEN Bat_Frame = Bat_Frame + 1 ELSE Bat_Frame = 1
AT# = GT#
END IF
IF GT# - st# > NextSpike THEN
Spawn_Spike
st# = GT#
NextSpike = RND + .1
END IF
IF Check_Collision THEN Game_Over = 1 ELSE Score = Score + 1 ' increment score only if not game over
CLS
LINE (0, 600)-(1024, 600), _RGB32(110, 110, 210)
LINE (0, 150)-(1024, 150), _RGB32(110, 110, 210)
FOR i = 1 TO NumSpikes
IF Spikes(i).Visible THEN
IF Spikes(i).X < -20 THEN
Spikes(i).Visible = 0
ELSE
Spikes(i).X = Spikes(i).X - Lvl_Speed
IF Spikes(i).Is_Floor THEN
LINE (Spikes(i).X - 10, 600)-(Spikes(i).X, 600 - Spikes(i).Height), _RGB32(120, 120, 220)
LINE (Spikes(i).X + 10, 600)-(Spikes(i).X, 600 - Spikes(i).Height), _RGB32(120, 120, 220)
ELSE
LINE (Spikes(i).X - 10, 150)-(Spikes(i).X, 150 + Spikes(i).Height), _RGB32(120, 120, 220)
LINE (Spikes(i).X + 10, 150)-(Spikes(i).X, 150 + Spikes(i).Height), _RGB32(120, 120, 220)
END IF
END IF
END IF
NEXT
Draw_Sprite Bat, 200, Bat_y, Bat_Frame, 3
LOCATE 1, 1: PRINT "Score: "; Score ' Display the score
_DISPLAY
LOOP UNTIL INKEY$ = CHR$(27)
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
SUB Spawn_Spike
FOR i = 1 TO NumSpikes
IF Spikes(i).Visible = 0 THEN
Spikes(i).Visible = 1
Spikes(i).X = 1075
Spikes(i).Height = INT(RND * 160) + 80 ' Random height
IF INT(RND * 4) + 1 < 2 THEN Spikes(i).Is_Floor = 0 ELSE Spikes(i).Is_Floor = 1
EXIT FOR
END IF
NEXT
END SUB
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
SUB Restart_game
' Reset player variables
Bat_y = 330 ' Set the bat to a starting y position
Fall_Speed = 0 ' Stop any initial movement
Score = 0 ' Reset the player's score
Game_Over = 0 ' Reset the game over flag
' Reset spikes array
FOR i = 1 TO NumSpikes
Spikes(i).Visible = 0 ' Make all spikes invisible
Spikes(i).X = 0
Spikes(i).Height = 0
Spikes(i).Is_Floor = 0
NEXT i
' Reset timers and spawn next spike quickly
GT# = TIMER(.001)
AT# = GT#
st# = GT#
NextSpike = 0 ' Set to 0 to spawn a spike immediately
END SUB
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
FUNCTION Load_Sprite_Data&
READ w%, h%
image& = _NEWIMAGE(w%, h%, 32)
_DEST image&
FOR y = 0 TO h%
FOR x = 0 TO w%
READ clr~&
PSET (x, y), clr~&
NEXT
NEXT
_DEST 0
_CLEARCOLOR _RGB32(255, 0, 255), image&
Load_Sprite_Data = image&
END FUNCTION
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
SUB Draw_Sprite (Image&, X%, y%, Frame%, XFrames%)
Fw% = (_WIDTH(Image&) / XFrames%)
Fs% = ((Frame% - 1) * Fw%)
_PUTIMAGE (X%, y%), Image&, , (Fs%, 0)-(Fs% + Fw%, _HEIGHT(Image&))
END SUB
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
FUNCTION Check_Collision%%
Fw% = (_WIDTH(Bat) / 3) ' Bat frame width
batLeft = 200
batRight = 200 + Fw%
batTop = Bat_y
batBottom = Bat_y + _HEIGHT(Bat)
FOR i = 1 TO NumSpikes
IF Spikes(i).Visible THEN
spikeX = Spikes(i).X
spikeHeight = Spikes(i).Height
' Simplified rectangular collision for demonstration
' Check for X-overlap
IF batRight > (spikeX - 10) AND batLeft < (spikeX + 10) THEN
' Check for Y-overlap (for floor spikes)
IF Spikes(i).Is_Floor AND batBottom > (600 - spikeHeight) THEN
Check_Collision = 1 ' Collision detected
EXIT FUNCTION
END IF
' Check for Y-overlap (for ceiling spikes)
IF NOT Spikes(i).Is_Floor AND batTop < (150 + spikeHeight) THEN
Check_Collision = 1 ' Collision detected
EXIT FUNCTION
END IF
END IF
END IF
NEXT
' Check for collision with ceiling and floor
IF Bat_y < 150 OR Bat_y + _HEIGHT(Bat) > 600 THEN
Check_Collision = 1 ' Collision detected with the world boundaries
EXIT FUNCTION
END IF
Check_Collision = 0 ' No collision
END FUNCTION
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
DATA 183,51
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295
John