yole
class Player data class PlayerCatalogue(private val players: HashMap<String, Player>) { fun findPlayer(name: String) = players[name] }