def run():
	print '--> mission Technological Secrets (2 of 3)'

	# this is a transport mission
	if not (station.openInventory() \
		and station.loadItem('img/dna_sample.bmp') \
		and station.closeInventory()):
		return False

	if not station.undock():
		return False

	pilot.autopilot()

	if not space.setMissionWaypoint():
		return False
		
	print '<-- mission Technological Secrets (2 of 3)\n'
	return True