If you wanted to use
this table, you can do in various ways, using a Map and a Type.
Private mapMCC as Map
mapMCC.Initialize
mapMCC.Put("Afghanistan", "412")
mapMCC.Put("Albania", "276")
Or, if you wanted also ISO code:
Type MCCcode(MCC as String, ISO3166 as String)
Private mapMCC as Map
mapMCC.Initialize
Private Code as MCCcode
Code.Initialize
Code.MCC = "412"
Code.ISO3166 = "AF"
mapMCC.Put("Afghanistan", Code)
...