CA.php 434 B

12345678910111213141516171819
  1. <?php
  2. return [
  3. "country" => "Canada",
  4. "subdivisions" => [
  5. "AB" => "Alberta",
  6. "BC" => "British Columbia",
  7. "MB" => "Manitoba",
  8. "NB" => "New Brunswick",
  9. "NL" => "Newfoundland and Labrador",
  10. "NS" => "Nova Scotia",
  11. "NT" => "Northwest Territories",
  12. "NU" => "Nunavut",
  13. "ON" => "Ontario",
  14. "PE" => "Prince Edward Island",
  15. "QC" => "Quebec",
  16. "SK" => "Saskatchewan",
  17. "YT" => "Yukon"
  18. ]
  19. ];